From charlesreid1

This page documents a completed project. I created a map to visualize commute methods by ratio of income to poverty line.

The map: http://charlesreid1.github.io/a-shrubbery/triplepie/

The Github repo: http://github.com/charlesreid1/a-shrubbery

Goal is to set up a map that connects census tract data with some other census data, e.g., population or median income.

Picking an API

Census.gov API Key

I started with the SunglightLabs Census library, which provides a Python wrapper to the 2010 Census data API (wow!):

https://github.com/sunlightlabs/census

But it requires a developer key from census.gov (obtained here http://www.census.gov/developers/), which I requested, and then waited, and waited, and waited...

Census Reporter API

After giving up on waiting for a Census.gov developer key in the next day, I found the census reporter API, which allows for queries of census data in a very sensible REST format.

Detailed documentation of their API available here: https://github.com/censusreporter/census-api/blob/master/API.md

A very, very nice interface!

Mapping Census Regions

In order to accomplish the ultimate goal of mapping census data, we have to be able to first map census regions - counties, states, congressional districts, and so on. This section covers attempts to do this.

Shapefiles for U.S. Counties

I started with a shapefile defining US county boundaries.

Here is a list of shapefile information that is provided by the Census Bureau: http://www.census.gov/cgi-bin/geo/shapefiles2010/main

I started with a county map of California, tl_2010_06_county10.zip. The zip file contained a set of files, including the shapefile. I fired up QGIS to have a look at it.

QGIS CaliforniaCounties.png

Next, I loaded up a (quite large) US counties map - 70 MB total. It was straightforward to find, download, and view in QGIS:

QGIS USCounties.png

Note that you can also obtain geographic information from various APIs - for example, the Census Reporter API returns GeoJSON for geographic entities by ID:

$ curl "https://api.censusreporter.org/1.0/geo/tiger2016/04000US55?geom=true"
{
    "geometry": {
        "type": "MultiPolygon",
        "coordinates": [
            [
                [
                    [
                        -92.674543,
                        45.382868
                    ],
                    ...
                ]
            ]
        ]
    },
    "type": "Feature",
    "properties": {
        "awater": 29365986992,
        "display_name": "Wisconsin",
        "simple_name": "Wisconsin",
        "sumlevel": "040",
        "population": 5664893,
        "full_geoid": "04000US55",
        "aland": 140268861626
    }
}

Visualizing County Boundaries with GeoJSON in QGIS

I'll show you another way to visualize county boundaries, this one using GeoJSON instead of shape files.

First, use the Census Reporter API to extract GeoJSON data for a particular county (in this case, Yuma County in Arizona):

$ curl "https://api.censusreporter.org/1.0/geo/tiger2016/05000US04027?geom=True"

{"geometry": {"type": "MultiPolygon", "coordinates": [[[[-114.563779, 32.418853999999996], [-114.813613, 32.494276], [-114.816591, 32.507695999999996], [-114.802211, 32.513191], [-114.813348, 32.524186], [-114.802181, 32.536414], [-114.80583, 32.546354], [-114.791551, 32.557023], [-114.793224, 32.569459], [-114.80683, 32.55888], [-114.813995, 32.562201], [-114.812995, 32.568706], [-114.801877, 32.576009], [-114.799737, 32.592177], [-114.807906, 32.602782999999995], [-114.809393, 32.617118999999995], [-114.799302, 32.625115], [-114.782573, 32.624303999999995], [-114.779215, 32.633578], [-114.764382, 32.642666], [-114.76495, 32.649391], [-114.74948, 32.66178], [-114.730086, 32.704298], [-114.702223, 32.74541], [-114.68823, 32.73753], [-114.617395, 32.728257], [-114.615112, 32.734515], [-114.581784, 32.734946], [-114.581736, 32.74232], [-114.564508, 32.742274], [-114.564447, 32.749553999999996], [-114.539224, 32.749812], [-114.539092, 32.756949], [-114.526856, 32.757093999999995], [-114.532432, 32.776922], [-114.529633, 32.795477], [-114.510327, 32.816488], [-114.494116, 32.823287], [-114.468971, 32.845155], [-114.46289, 32.905797], [-114.48092, 32.935252], [-114.468061, 32.955259999999996], [-114.468605, 32.971649], [-114.47653199999999, 32.975173999999996], [-114.492938, 32.971781], [-114.501226, 33.007556], [-114.516454, 33.027617], [-114.268748, 33.029815], [-114.267815, 33.463574], [-113.958042, 33.464655], [-113.958046, 33.377578], [-113.33392, 33.377424999999995], [-113.333767, 32.038607], [-114.563779, 32.418853999999996]]]]}, "type": "Feature", "properties": {"awater": 13175612, "display_name": "Yuma County, AZ", "simple_name": "Yuma County", "sumlevel": "050", "population": 199026, "full_geoid": "05000US04027", "aland": 14281187259}}

Now we can save that output to a GeoJSON file,

$ curl "https://api.censusreporter.org/1.0/geo/tiger2016/05000US04027?geom=True" > yuma.geojson

and open up the GeoJSON file in QGIS, by picking Add Vector Layer, then picking GeoJSON or All File Formats from the file format drop-down box.

FileFormatDropDown.png

This vector layer can then be plotted on top of the existing US county map for comparison, or added by itself in a new document. Either way, it works out great:

QGIS YumaCounty.png

Every County in State N

If we want to get every county for state N, we can use the API endpoint GET /1.0/geo/show/tiger2013, to which we can pass two pices of information: what entity level we want boundaries for (county level), and the parent entity (the state of N).

National level is code 010, state level is code 040, and county level is code 050.

States are identified by the string 04000USXX, where XX is a state FIPS code.

A complete list of FIPS codes for states is here: http://www.census.gov/geo/reference/ansi_statetables.html

A complete list of FIPS codes for various entity levels here: http://www.census.gov/geo/reference/ansi.html

Illinois

Illinois is number 17. So to get GeoJSON for every boundary in Illinois, we can issue the command:

$ curl "http://api.censusreporter.org/1.0/geo/show/tiger2016?geo_ids=050|04000US17"

This spits out a whole bunch of GeoJSON:

{"type": "FeatureCollection", "features": [{"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.23629199999999, 40.675019999999996], [-88.24730000000001, 40.99456], [-88.13193799999999, 40.997839], [-88.12561099999999, 40.763403], [-88.12298299999999, 40.691153], [-88.12223499999999, 40.676673], [-88.12123299999999, 40.676697], [-88.11831699999999, 40.575168], [-88.117905, 40.488085999999996], [-88.004076, 40.488672], [-87.99260000000001, 40.485568], [-87.93530899999999, 40.485923], [-87.93168, 40.3994], [-88.116616, 40.400611999999995], [-88.329228, 40.398585], [-88.459957, 40.398849999999996], [-88.459475, 40.617345], [-88.234949, 40.618165999999995], [-88.23629199999999, 40.675019999999996]]]]}, "type": "Feature", "properties": {"geoid": "05000US17053", "name": "Ford County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-87.968267, 39.773922], [-87.9666, 39.685928], [-88.026224, 39.684867], [-88.026208, 39.681664999999995], [-88.063467, 39.681312999999996], [-88.063437, 39.652555], [-88.472073, 39.651588], [-88.473182, 39.791837], [-88.462328, 39.79182], [-88.46220699999999, 39.879092], [-88.236583, 39.879109], [-88.122326, 39.880227], [-87.93764499999999, 39.879802999999995], [-87.937029, 39.792370999999996], [-87.968777, 39.79235], [-87.968267, 39.773922]]]]}, "type": "Feature", "properties": {"geoid": "05000US17041", "name": "Douglas County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-90.186914, 38.6079], [-90.179377, 38.626657], [-90.177897, 38.633776], [-90.17786799999999, 38.642649], [-90.181615, 38.660368999999996], [-89.70702399999999, 38.655152], [-89.70459, 38.480278], [-89.703256, 38.219404], [-89.89906099999999, 38.220755], [-89.90351299999999, 38.225043], [-89.904471, 38.227461], [-89.89770399999999, 38.228708], [-89.896948, 38.23111], [-89.90191, 38.235580999999996], [-89.908684, 38.237531], [-89.906819, 38.240556999999995], [-89.90913499999999, 38.245408], [-89.910687, 38.246021999999996], [-89.911323, 38.24841], [-89.917174, 38.251396], [-89.91349699999999, 38.254523], [-89.91469699999999, 38.259378999999996], [-89.923755, 38.269186999999995], [-89.920412, 38.272158999999995], [-89.925029, 38.272715999999996], [-89.92206, 38.276018], [-89.919629, 38.281684999999996], [-89.920345, 38.284179], [-89.919478, 38.28617], [-89.916945, 38.285163], [-89.912706, 38.285652999999996], [-89.91111099999999, 38.284445], [-89.91162899999999, 38.282468], [-89.918138, 38.279706999999995], [-89.917853, 38.278110999999996], [-89.91511799999999, 38.277214], [-89.90728399999999, 38.276756], [-89.904113, 38.278866], [-89.902428, 38.28205], [-89.90115399999999, 38.287437], [-89.906793, 38.293313999999995], [-89.904082, 38.29763], [-89.90968099999999, 38.302465], [-89.913226, 38.307829], [-90.036018, 38.30885], [-90.03607799999999, 38.323347], [-90.128665, 38.397324], [-90.145608, 38.412152999999996], [-90.145336, 38.426266], [-90.264056, 38.521025], [-90.247187, 38.548556999999995], [-90.241272, 38.553191], [-90.23232, 38.56672], [-90.22305999999999, 38.575731999999995], [-90.20318499999999, 38.588125999999995], [-90.19738799999999, 38.593004], [-90.192441, 38.598619], [-90.186914, 38.6079]]]]}, "type": "Feature", "properties": {"geoid": "05000US17163", "name": "St. Clair County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.59279699999999, 38.219271], [-89.703256, 38.219404], [-89.70441699999999, 38.415667], [-89.69449399999999, 38.417153], [-89.69256899999999, 38.420204], [-89.695377, 38.421845999999995], [-89.696452, 38.425118999999995], [-89.688919, 38.426542], [-89.686545, 38.429846], [-89.683791, 38.428118], [-89.68589, 38.426378], [-89.68556199999999, 38.425193], [-89.677279, 38.425002], [-89.67831, 38.427143], [-89.67777799999999, 38.431961], [-89.671849, 38.429679], [-89.67432099999999, 38.434442], [-89.66888399999999, 38.432078], [-89.666636, 38.43261], [-89.66545599999999, 38.435141], [-89.66851899999999, 38.435445], [-89.66840499999999, 38.441151999999995], [-89.665273, 38.444694999999996], [-89.66269, 38.445304], [-89.65641, 38.44309], [-89.64473699999999, 38.441721], [-89.643739, 38.44405], [-89.64692699999999, 38.446062999999995], [-89.646182, 38.447773], [-89.63902499999999, 38.445223999999996], [-89.637135, 38.446708], [-89.638616, 38.4491], [-89.63802199999999, 38.44995], [-89.635975, 38.447758], [-89.63283799999999, 38.447739], [-89.634914, 38.450168999999995], [-89.633997, 38.452073999999996], [-89.63205599999999, 38.451999], [-89.630319, 38.449740999999996], [-89.62820699999999, 38.450465], [-89.626697, 38.454626999999995], [-89.62888, 38.463373], [-89.626249, 38.464231], [-89.62517, 38.463269], [-89.62541999999999, 38.460575], [-89.622565, 38.461131], [-89.620115, 38.463552], [-89.620379, 38.466498], [-89.616509, 38.467231999999996], [-89.614306, 38.472803], [-89.607309, 38.474959], [-89.602969, 38.474213], [-89.60032799999999, 38.476044], [-89.594145, 38.474990999999996], [-89.591651, 38.476436], [-89.588577, 38.475753999999995], [-89.579644, 38.480039], [-89.57763899999999, 38.483159], [-89.575735, 38.478135], [-89.574193, 38.477502], [-89.572975, 38.478643], [-89.574242, 38.48061], [-89.573279, 38.482541], [-89.568878, 38.481260999999996], [-89.565182, 38.482862999999995], [-89.56505399999999, 38.481153], [-89.56731099999999, 38.479341999999995], [-89.568236, 38.476137], [-89.560205, 38.477601], [-89.55909899999999, 38.475016], [-89.55712, 38.475519999999996], [-89.557847, 38.477624], [-89.552027, 38.478242], [-89.55106699999999, 38.477258], [-89.552115, 38.475702999999996], [-89.549379, 38.477052], [-89.546644, 38.474672999999996], [-89.540967, 38.474342], [-89.539701, 38.475722], [-89.54177899999999, 38.478687], [-89.539648, 38.480936], [-89.534273, 38.480664999999995], [-89.53110099999999, 38.479017], [-89.528161, 38.480869], [-89.52801699999999, 38.477255], [-89.524553, 38.47929], [-89.520045, 38.474827], [-89.516437, 38.473476], [-89.511693, 38.472514], [-89.50802499999999, 38.474686], [-89.504592, 38.473631999999995], [-89.501914, 38.474409], [-89.490085, 38.471686999999996], [-89.49297, 38.475505999999996], [-89.489944, 38.477520999999996], [-89.488952, 38.474295999999995], [-89.48391699999999, 38.473337], [-89.48275, 38.46883], [-89.481556, 38.468464999999995], [-89.478124, 38.471326], [-89.469512, 38.473251], [-89.467417, 38.476065999999996], [-89.461073, 38.477028], [-89.455253, 38.479729], [-89.45531199999999, 38.482726], [-89.44844499999999, 38.489270999999995], [-89.43455999999999, 38.490736], [-89.43421099999999, 38.494488], [-89.428185, 38.498903999999996], [-89.425331, 38.496158], [-89.417879, 38.494465], [-89.41066099999999, 38.487417], [-89.408216, 38.489018], [-89.405856, 38.495629], [-89.40149, 38.494256], [-89.402045, 38.489497], [-89.400502, 38.489131], [-89.395639, 38.490272999999995], [-89.398724, 38.492219], [-89.39834499999999, 38.494712], [-89.396307, 38.493797], [-89.393425, 38.495146], [-89.389029, 38.494229], [-89.38792199999999, 38.496997], [-89.38507, 38.494364999999995], [-89.382274, 38.497338], [-89.37947899999999, 38.496925], [-89.38078999999999, 38.495187], [-89.38006299999999, 38.49434], [-89.376887, 38.497015], [-89.377381, 38.498090999999995], [-89.37552099999999, 38.498044], [-89.375433, 38.499393999999995], [-89.372728, 38.500479], [-89.371714, 38.500049], [-89.372992, 38.497057999999996], [-89.371769, 38.496853], [-89.370025, 38.499551], [-89.36690899999999, 38.497999], [-89.36873899999999, 38.500479999999996], [-89.36513, 38.501008], [-89.36498499999999, 38.502792], [-89.367926, 38.503133999999996], [-89.36795699999999, 38.504940999999995], [-89.360824, 38.506294], [-89.361466, 38.507919], [-89.363911, 38.507093999999995], [-89.365979, 38.507985], [-89.363186, 38.510388999999996], [-89.35910799999999, 38.508812], [-89.35878799999999, 38.510871], [-89.360742, 38.515332], [-89.36001499999999, 38.516613], [-89.357073, 38.514922], [-89.35861799999999, 38.517002], [-89.35698699999999, 38.517986], [-89.35489, 38.516476999999995], [-89.35425, 38.517942], [-89.350872, 38.518584], [-89.34959099999999, 38.517761], [-89.35008499999999, 38.516343], [-89.34775599999999, 38.516641], [-89.345221, 38.514285], [-89.34679299999999, 38.513003], [-89.345918, 38.510211999999996], [-89.345337, 38.512454], [-89.342337, 38.510282], [-89.341144, 38.512433], [-89.33823199999999, 38.513371], [-89.337183, 38.512502], [-89.338231, 38.510968999999996], [-89.333688, 38.512251], [-89.328621, 38.510376], [-89.325739, 38.513351], [-89.325768, 38.511497], [-89.32274, 38.512755999999996], [-89.323118, 38.510650999999996], [-89.32110899999999, 38.510949], [-89.316391, 38.508638], [-89.31510999999999, 38.51143], [-89.31109099999999, 38.512344999999996], [-89.309985, 38.509553], [-89.30873299999999, 38.510926], [-89.30771399999999, 38.508798], [-89.307189, 38.510377], [-89.302967, 38.509599], [-89.299793, 38.51088], [-89.30130799999999, 38.508317], [-89.29813399999999, 38.509141], [-89.299328, 38.507562], [-89.29877499999999, 38.505938], [-89.295048, 38.506052], [-89.293593, 38.504906999999996], [-89.29426199999999, 38.507515999999995], [-89.292194, 38.50779], [-89.291525, 38.506004999999995], [-89.28904999999999, 38.505272999999995], [-89.28971899999999, 38.508476], [-89.28456399999999, 38.509367], [-89.284274, 38.506507], [-89.279876, 38.50781], [-89.28045999999999, 38.50582], [-89.279557, 38.505499], [-89.27693599999999, 38.507625999999995], [-89.276646, 38.504858], [-89.27309199999999, 38.507145], [-89.272453, 38.504422], [-89.271463, 38.505725], [-89.269571, 38.504855], [-89.27035599999999, 38.506685999999995], [-89.26569599999999, 38.507508], [-89.264122, 38.510253], [-89.260396, 38.507276999999995], [-89.25859, 38.508809], [-89.25698899999999, 38.508099], [-89.253785, 38.509333], [-89.25370099999999, 38.508147], [-89.143898, 38.503088], [-89.14741599999999, 38.212896], [-89.408845, 38.214642999999995], [-89.59279699999999, 38.219271]]]]}, "type": "Feature", "properties": {"geoid": "05000US17189", "name": "Washington County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-90.51794, 39.789629999999995], [-90.483063, 39.78924], [-90.483385, 39.753434], [-90.371253, 39.753388], [-90.372969, 39.665780999999996], [-90.337812, 39.665583], [-90.338123, 39.63672], [-90.30066599999999, 39.636541], [-90.301801, 39.520192], [-90.58105499999999, 39.521727999999996], [-90.581767, 39.525881999999996], [-90.574356, 39.535191999999995], [-90.572293, 39.539166], [-90.57244299999999, 39.542997], [-90.574362, 39.546185], [-90.57661999999999, 39.559536], [-90.580666, 39.567105], [-90.582664, 39.574003], [-90.592092, 39.596683], [-90.598096, 39.604760999999996], [-90.604884, 39.619749999999996], [-90.607351, 39.628695], [-90.607394, 39.635508], [-90.608871, 39.640287], [-90.61635299999999, 39.650372], [-90.617919, 39.654162], [-90.62364099999999, 39.661094], [-90.62870699999999, 39.669332], [-90.63349099999999, 39.673007999999996], [-90.644488, 39.693110999999995], [-90.646112, 39.698291], [-90.64575099999999, 39.704594], [-90.64098399999999, 39.717425999999996], [-90.628422, 39.729485], [-90.619552, 39.743254], [-90.611246, 39.758551], [-90.60763399999999, 39.763873], [-90.606247, 39.768431], [-90.607447, 39.772929999999995], [-90.606931, 39.776376], [-90.599105, 39.79006], [-90.51794, 39.789629999999995]]]]}, "type": "Feature", "properties": {"geoid": "05000US17171", "name": "Scott County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.023341, 38.849726], [-87.908113, 38.850107], [-87.909847, 38.589994999999995], [-87.910258, 38.575074], [-87.912351, 38.569908999999996], [-88.02396999999999, 38.570552], [-88.147773, 38.569039], [-88.148044, 38.597988], [-88.253851, 38.599502], [-88.253136, 38.600498], [-88.251269, 38.599719], [-88.24873199999999, 38.601503], [-88.25216999999999, 38.603885], [-88.25193499999999, 38.605213], [-88.257622, 38.607046], [-88.26010199999999, 38.606474999999996], [-88.26059699999999, 38.607231], [-88.259138, 38.608878], [-88.260217, 38.609428], [-88.26316299999999, 38.608329999999995], [-88.262783, 38.610276], [-88.26511599999999, 38.610825999999996], [-88.26669, 38.612474], [-88.270658, 38.611514], [-88.271416, 38.612086999999995], [-88.271326, 38.615932], [-88.269167, 38.617442], [-88.269312, 38.618449], [-88.27307499999999, 38.619366], [-88.275002, 38.616505], [-88.277277, 38.615522], [-88.278094, 38.616712], [-88.27640099999999, 38.61884], [-88.278646, 38.620672], [-88.27934599999999, 38.620397], [-88.278414, 38.617216], [-88.282265, 38.616896], [-88.283577, 38.618705], [-88.285969, 38.619116999999996], [-88.286611, 38.620056], [-88.283051, 38.621977], [-88.282758, 38.623808], [-88.28080299999999, 38.624567], [-88.284038, 38.62643], [-88.286551, 38.624625], [-88.29247, 38.626546], [-88.29173999999999, 38.627804999999995], [-88.288702, 38.628375999999996], [-88.28871, 38.629731], [-88.29736899999999, 38.63447], [-88.295239, 38.636708999999996], [-88.295822, 38.638265], [-88.293312, 38.639866999999995], [-88.293866, 38.641239999999996], [-88.293195, 38.641904], [-88.28680399999999, 38.642748], [-88.287708, 38.643504], [-88.290189, 38.642886], [-88.290686, 38.643755999999996], [-88.284089, 38.648514], [-88.28446699999999, 38.649888], [-88.28213099999999, 38.650622], [-88.27938499999999, 38.65314], [-88.275148, 38.654422], [-88.276579, 38.655545], [-88.27395, 38.656164], [-88.273035, 38.658048], [-88.276488, 38.659642], [-88.274356, 38.660143999999995], [-88.27546699999999, 38.661815], [-88.27246099999999, 38.662293999999996], [-88.272053, 38.663599], [-88.272753, 38.665085999999995], [-88.274766, 38.665704], [-88.274416, 38.666893], [-88.275993, 38.667944999999996], [-88.27625599999999, 38.669433], [-88.279321, 38.669663], [-88.279466, 38.672799], [-88.27788799999999, 38.675339], [-88.28433799999999, 38.681543], [-88.28141699999999, 38.683555999999996], [-88.283869, 38.686395], [-88.28331299999999, 38.688271], [-88.28518199999999, 38.689187], [-88.28159, 38.690216], [-88.283925, 38.691727], [-88.28518, 38.694291], [-88.282026, 38.694908], [-88.281296, 38.695961], [-88.282726, 38.696236], [-88.28298799999999, 38.699188], [-88.285208, 38.698890999999996], [-88.28468199999999, 38.700379], [-88.286287, 38.701591], [-88.284067, 38.702666], [-88.286199, 38.704269], [-88.28409599999999, 38.705459], [-88.285906, 38.707564999999995], [-88.28213799999999, 38.707837999999995], [-88.284007, 38.708501999999996], [-88.28389, 38.709693], [-88.285817, 38.711363999999996], [-88.283655, 38.711478], [-88.28324599999999, 38.712691], [-88.284589, 38.713698], [-88.282778, 38.714407], [-88.28219299999999, 38.716604], [-88.28543599999999, 38.715711999999996], [-88.28672, 38.716902999999995], [-88.286136, 38.718184], [-88.282192, 38.719511], [-88.28148999999999, 38.720563], [-88.284295, 38.719648], [-88.285814, 38.720220999999995], [-88.283622, 38.722784], [-88.284381, 38.724111], [-88.28254, 38.725759], [-88.286951, 38.728003], [-88.284117, 38.727636], [-88.28221599999999, 38.731252], [-88.28358899999999, 38.731801], [-88.257774, 38.730976999999996], [-88.258608, 38.847521], [-88.15026499999999, 38.846953], [-88.023341, 38.849726]]]]}, "type": "Feature", "properties": {"geoid": "05000US17159", "name": "Richland County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.90371499999999, 40.134037], [-89.898913, 40.127922], [-89.89177099999999, 40.130542999999996], [-89.88569299999999, 40.12797], [-89.88391999999999, 40.129891], [-89.88410499999999, 40.131659], [-89.885896, 40.133832999999996], [-89.88548399999999, 40.134839], [-89.88153799999999, 40.136306999999995], [-89.880769, 40.135889999999996], [-89.880966, 40.13381], [-89.87803799999999, 40.133722], [-89.87511099999999, 40.136528999999996], [-89.872554, 40.137415], [-89.870559, 40.136683999999995], [-89.86816999999999, 40.133948], [-89.867468, 40.132048999999995], [-89.86824899999999, 40.12972], [-89.86602099999999, 40.128206], [-89.863282, 40.128074], [-89.860753, 40.129951], [-89.857267, 40.129097], [-89.853397, 40.130302], [-89.843257, 40.126368], [-89.842075, 40.127055], [-89.841184, 40.130289], [-89.83939699999999, 40.130793], [-89.837263, 40.129695999999996], [-89.83720799999999, 40.127672], [-89.834886, 40.126639], [-89.833979, 40.124413], [-89.83210299999999, 40.123642], [-89.830041, 40.12558], [-89.827191, 40.125672], [-89.823331, 40.121303999999995], [-89.823939, 40.122932], [-89.822192, 40.123484], [-89.821826, 40.122625], [-89.820348, 40.122672], [-89.81908, 40.12525], [-89.81794, 40.125383], [-89.81419299999999, 40.124055999999996], [-89.81324, 40.122135], [-89.81007699999999, 40.121213999999995], [-89.808718, 40.121808], [-89.810636, 40.123404], [-89.80989799999999, 40.124505], [-89.806833, 40.124887], [-89.805996, 40.123985], [-89.803668, 40.124905], [-89.802595, 40.123653999999995], [-89.797721, 40.125461], [-89.794367, 40.123805], [-89.791288, 40.126404], [-89.791906, 40.129400000000004], [-89.79030999999999, 40.128195], [-89.7876, 40.130206], [-89.783149, 40.129487], [-89.782145, 40.127116], [-89.78087, 40.126905], [-89.77476, 40.129414], [-89.77403199999999, 40.130521], [-89.774525, 40.13196], [-89.773421, 40.132225999999996], [-89.76987199999999, 40.128448999999996], [-89.76819599999999, 40.128484], [-89.76823499999999, 40.129371], [-89.766395, 40.129171], [-89.766472, 40.128170999999995], [-89.764929, 40.129152], [-89.76288799999999, 40.128142], [-89.761212, 40.129726999999995], [-89.75806999999999, 40.127493], [-89.753694, 40.126652], [-89.75081999999999, 40.127561], [-89.749365, 40.126796999999996], [-89.747063, 40.12928], [-89.744222, 40.128423], [-89.74148199999999, 40.129791], [-89.742183, 40.131665999999996], [-89.739817, 40.131471999999995], [-89.73808199999999, 40.132871], [-89.734049, 40.132746999999995], [-89.733701, 40.133832999999996], [-89.735742, 40.134941], [-89.733581, 40.137952], [-89.731697, 40.137640999999995], [-89.73003299999999, 40.135622], [-89.72792199999999, 40.138776], [-89.728985, 40.141104999999996], [-89.728195, 40.142325], [-89.722397, 40.142494], [-89.722032, 40.140509], [-89.719152, 40.140327], [-89.71559099999999, 40.143543], [-89.71193, 40.142880999999996], [-89.71177899999999, 40.145911], [-89.709428, 40.147023], [-89.707638, 40.145987], [-89.70797499999999, 40.143045], [-89.704635, 40.142846], [-89.704326, 40.140626999999995], [-89.69873899999999, 40.14236], [-89.694797, 40.140712], [-89.692047, 40.142555], [-89.691654, 40.144922], [-89.686681, 40.146785], [-89.686949, 40.149324], [-89.68438599999999, 40.151862], [-89.685936, 40.153645999999995], [-89.683472, 40.154851], [-89.68251, 40.152031], [-89.681084, 40.151205999999995], [-89.6806, 40.152226], [-89.681758, 40.153557], [-89.68045599999999, 40.155426], [-89.671341, 40.15394], [-89.668962, 40.160663], [-89.66161199999999, 40.158108999999996], [-89.659955, 40.155629999999995], [-89.656069, 40.157044], [-89.651609, 40.154826], [-89.649592, 40.157655999999996], [-89.64639299999999, 40.153600999999995], [-89.638762, 40.155147], [-89.63751099999999, 40.152155], [-89.634524, 40.153575], [-89.631795, 40.148193], [-89.629997, 40.149405], [-89.628002, 40.148817], [-89.62804799999999, 40.146898], [-89.626803, 40.145913], [-89.62724, 40.143716], [-89.623868, 40.143164999999996], [-89.622256, 40.141857], [-89.620561, 40.138877], [-89.620678, 40.13659], [-89.61376299999999, 40.134581], [-89.609141, 40.129208999999996], [-89.61088699999999, 40.128555999999996], [-89.610889, 40.12733], [-89.605802, 40.126511], [-89.606402, 40.123619], [-89.605, 40.12211], [-89.60327199999999, 40.121424999999995], [-89.601604, 40.122431999999996], [-89.60112, 40.092265], [-89.579127, 40.092324], [-89.578289, 39.976127], [-89.698259, 39.975308999999996], [-89.697616, 39.938511], [-89.70231299999999, 39.938503], [-89.701864, 39.916787], [-89.769325, 39.916343999999995], [-89.76923599999999, 39.902415999999995], [-89.869636, 39.901509999999995], [-89.994506, 39.901925], [-89.99472399999999, 40.108373], [-89.99267499999999, 40.108733], [-89.993417, 40.110833], [-89.992736, 40.111716], [-89.985823, 40.111953], [-89.982562, 40.114377], [-89.983511, 40.116144999999996], [-89.987586, 40.116530999999995], [-89.988705, 40.117795], [-89.987839, 40.120605999999995], [-89.988607, 40.123605], [-89.98563, 40.12262], [-89.984512, 40.12394], [-89.986851, 40.128757], [-89.984928, 40.129332], [-89.98172799999999, 40.128257999999995], [-89.978456, 40.124959], [-89.976772, 40.12652], [-89.97357799999999, 40.127371], [-89.97348099999999, 40.128411], [-89.97581699999999, 40.129048], [-89.976612, 40.130651], [-89.972203, 40.132435], [-89.971357, 40.133821], [-89.974756, 40.135478], [-89.972993, 40.137388], [-89.969713, 40.138175], [-89.971121, 40.140868999999995], [-89.97049, 40.142081999999995], [-89.966191, 40.143071], [-89.96307999999999, 40.143046999999996], [-89.963034, 40.140239], [-89.96175699999999, 40.138633], [-89.96023699999999, 40.1388], [-89.958872, 40.134361], [-89.956903, 40.136889], [-89.95463, 40.136953999999996], [-89.95148499999999, 40.132051], [-89.950621, 40.135458], [-89.949287, 40.135681999999996], [-89.948601, 40.131603999999996], [-89.946139, 40.130264], [-89.94485499999999, 40.1312], [-89.944893, 40.13373], [-89.943713, 40.134384], [-89.942621, 40.133964999999996], [-89.942308, 40.131568], [-89.93677, 40.132445], [-89.936987, 40.134164], [-89.940969, 40.135290999999995], [-89.941867, 40.136143], [-89.94130299999999, 40.136936999999996], [-89.93166099999999, 40.137332], [-89.92780499999999, 40.14002], [-89.926058, 40.13995], [-89.92496799999999, 40.138514], [-89.924691, 40.135835], [-89.923474, 40.136092], [-89.92258299999999, 40.13848], [-89.92117499999999, 40.138822999999995], [-89.920388, 40.136584], [-89.914017, 40.132774999999995], [-89.90668199999999, 40.131985], [-89.906533, 40.133668], [-89.909106, 40.1353], [-89.908935, 40.137789999999995], [-89.90371499999999, 40.134037]]]]}, "type": "Feature", "properties": {"geoid": "05000US17129", "name": "Menard County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.374693, 38.000068], [-88.370491, 38.255413], [-88.24861399999999, 38.257085], [-88.027749, 38.255660999999996], [-88.02767999999999, 38.259771], [-87.9906, 38.259715], [-87.990656, 38.258230999999995], [-87.987911, 38.256957], [-87.987871, 38.255140999999995], [-87.983058, 38.250046], [-87.979789, 38.241661], [-87.980158, 38.236115], [-87.984838, 38.228674], [-87.985627, 38.217993], [-87.98397299999999, 38.209106999999996], [-87.975819, 38.197834], [-87.969865, 38.191786], [-87.9595, 38.184376], [-87.945135, 38.17756], [-87.937162, 38.172188999999996], [-87.933759, 38.164350999999996], [-87.935234, 38.159315], [-87.934299, 38.156459], [-87.93121099999999, 38.156348], [-87.925963, 38.159341999999995], [-87.92451299999999, 38.162025], [-87.925896, 38.166472999999996], [-87.92523, 38.170634], [-87.922901, 38.173291], [-87.917, 38.174078], [-87.913088, 38.17153], [-87.910792, 38.167666], [-87.911034, 38.162194], [-87.913664, 38.159197999999996], [-87.91909, 38.155132], [-87.927899, 38.151646], [-87.92823399999999, 38.150416], [-87.9255, 38.146251], [-87.926627, 38.142545999999996], [-87.935135, 38.139427999999995], [-87.945472, 38.126616], [-87.954858, 38.132622], [-87.966393, 38.132506], [-87.969464, 38.130744], [-87.97299799999999, 38.125046], [-87.974445, 38.120836], [-87.973832, 38.113396], [-87.976058, 38.109562], [-87.983068, 38.107139], [-87.998224, 38.108557], [-88.00988, 38.105066], [-88.015114, 38.101411], [-88.016806, 38.095717], [-88.01415, 38.088825], [-88.01138999999999, 38.084691], [-88.006717, 38.083923999999996], [-87.968813, 38.095932], [-87.96293399999999, 38.099917], [-87.96023, 38.099893], [-87.960279, 38.09647], [-87.95666399999999, 38.086202], [-87.967226, 38.067105], [-87.978735, 38.059815], [-88.00133, 38.051545], [-88.03003199999999, 38.052144999999996], [-88.037832, 38.050245], [-88.042132, 38.046344999999995], [-88.04153199999999, 38.037344999999995], [-88.034132, 38.032045], [-88.027731, 38.031745], [-88.017631, 38.034745], [-88.012131, 38.033845], [-88.007931, 38.030845], [-88.008631, 38.027544999999996], [-88.016931, 38.024045], [-88.021031, 38.019345], [-88.02443099999999, 38.013045], [-88.025831, 38.007245], [-88.022864, 37.997983], [-88.012574, 37.977062], [-88.012929, 37.966544], [-88.016311, 37.961574], [-88.020868, 37.959351], [-88.031989, 37.95859], [-88.036793, 37.956793], [-88.036125, 37.942744999999995], [-88.03034, 37.931045], [-88.034065, 37.926159], [-88.039644, 37.924309], [-88.044989, 37.925098999999996], [-88.049354, 37.927192], [-88.05412199999999, 37.933029], [-88.057127, 37.934151], [-88.063341, 37.932778], [-88.067561, 37.930214], [-88.069468, 37.925703999999996], [-88.068225, 37.922705], [-88.062242, 37.917898], [-88.032944, 37.91366], [-88.02251299999999, 37.914756], [-88.02082399999999, 37.913758], [-88.017816, 37.902696], [-88.01335499999999, 37.894853999999995], [-88.015155, 37.890792], [-88.018693, 37.888403], [-88.024217, 37.888628], [-88.02780399999999, 37.892044], [-88.031277, 37.892966], [-88.055373, 37.891238], [-88.071449, 37.895813], [-88.086237, 37.905713], [-88.092658, 37.906197999999996], [-88.09566199999999, 37.905808], [-88.09776, 37.904026], [-88.097892, 37.901517], [-88.094956, 37.893688999999995], [-88.092159, 37.890947], [-88.097984, 37.890129], [-88.097472, 37.893357], [-88.10118399999999, 37.894197999999996], [-88.103751, 37.898995], [-88.11337999999999, 37.905758], [-88.12503699999999, 37.909737], [-88.13605299999999, 37.916022999999996], [-88.13598499999999, 37.907793999999996], [-88.138702, 37.907647], [-88.37451999999999, 37.908432], [-88.374693, 38.000068]]]]}, "type": "Feature", "properties": {"geoid": "05000US17193", "name": "White County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.80442699999999, 40.282706], [-88.574885, 40.281501], [-88.68799299999999, 40.142269], [-88.68812199999999, 40.098583], [-88.745344, 40.098813], [-88.745212, 40.055122], [-88.803035, 40.055341], [-88.918263, 40.053186], [-89.028993, 40.049839999999996], [-89.144764, 40.048853], [-89.148764, 40.282038], [-89.052067, 40.283159], [-88.93680499999999, 40.283074], [-88.91955999999999, 40.282294], [-88.80442699999999, 40.282706]]]]}, "type": "Feature", "properties": {"geoid": "05000US17039", "name": "De Witt County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.333027, 41.132961], [-89.33303599999999, 41.139416], [-89.32927, 41.147931], [-89.466421, 41.148558], [-89.466534, 41.233872999999996], [-89.35667099999999, 41.233235], [-89.348372, 41.258936], [-89.33985899999999, 41.274339], [-89.33708299999999, 41.281667], [-89.33770899999999, 41.284669], [-89.34239699999999, 41.292761], [-89.341937, 41.295356], [-89.339754, 41.298275], [-89.33802, 41.299704], [-89.334901, 41.300877], [-89.304786, 41.306961], [-89.292693, 41.31095], [-89.28346599999999, 41.312385], [-89.280373, 41.314065], [-89.273921, 41.319261999999995], [-89.268851, 41.321819999999995], [-89.263543, 41.322457], [-89.256436, 41.322182], [-89.249427, 41.319314], [-89.236485, 41.316936], [-89.224854, 41.3131], [-89.213959, 41.312216], [-89.20055599999999, 41.312072], [-89.19329599999999, 41.310601], [-89.172539, 41.30846], [-89.163705, 41.310187], [-89.162238, 41.104079999999996], [-89.35859699999999, 41.103665], [-89.355666, 41.106494], [-89.349971, 41.109142], [-89.342248, 41.11138], [-89.337946, 41.114734999999996], [-89.334271, 41.120577999999995], [-89.333484, 41.123673], [-89.333027, 41.132961]]]]}, "type": "Feature", "properties": {"geoid": "05000US17155", "name": "Putnam County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-90.338195, 40.135559], [-90.348841, 40.125603], [-90.354524, 40.124217], [-90.364751, 40.125046], [-90.37375, 40.121660999999996], [-90.380748, 40.112049999999996], [-90.38502199999999, 40.101780999999995], [-90.39343099999999, 40.091865999999996], [-90.391302, 40.084128], [-90.39343199999999, 40.078759], [-90.39741599999999, 40.075562999999995], [-90.42482299999999, 40.06331], [-90.42863799999999, 40.060345], [-90.42968499999999, 40.056132], [-90.42866099999999, 40.04815], [-90.42932599999999, 40.039991], [-90.432588, 40.031031], [-90.433523, 40.024001], [-90.43725599999999, 40.019560999999996], [-90.455272, 40.010245999999995], [-90.47477099999999, 40.004621], [-90.48425399999999, 40.003374], [-90.506425, 39.996162], [-90.51222899999999, 39.992630999999996], [-90.515705, 39.984352], [-90.519926, 39.985679999999995], [-90.520727, 39.988310999999996], [-90.52723999999999, 39.987307], [-90.523614, 39.984218], [-90.525964, 39.982275], [-90.52795599999999, 39.982458], [-90.52994699999999, 39.985112], [-90.53414, 39.982459999999996], [-90.536726, 39.983993999999996], [-90.53931299999999, 39.98372], [-90.541455, 39.980723999999995], [-90.543596, 39.980359], [-90.550344, 39.983447999999996], [-90.56155299999999, 39.982625], [-90.56643, 39.983815], [-90.585534, 39.978829999999995], [-90.607134, 39.981657999999996], [-90.606009, 39.991197], [-90.603128, 39.996573], [-90.601947, 40.003316999999996], [-90.615814, 40.012758999999996], [-90.618015, 40.012392], [-90.619029, 40.015159], [-90.61692099999999, 40.020512], [-90.614035, 40.020353], [-90.611296, 40.017564], [-90.607282, 40.020835999999996], [-90.605679, 40.025113999999995], [-90.606782, 40.028864999999996], [-90.61166399999999, 40.032911999999996], [-90.616688, 40.027007999999995], [-90.62512699999999, 40.025997], [-90.630387, 40.023664], [-90.633952, 40.029222], [-90.645646, 40.030327], [-90.653887, 40.033440999999996], [-90.652127, 40.04005], [-90.659745, 40.041402], [-90.65953499999999, 40.044833], [-90.661022, 40.046388], [-90.667243, 40.046549999999996], [-90.669446, 40.043783], [-90.67506999999999, 40.045978999999996], [-90.678045, 40.051904], [-90.675484, 40.057072999999995], [-90.677567, 40.059886999999996], [-90.674798, 40.062151], [-90.676762, 40.065993999999996], [-90.67152, 40.077362], [-90.671995, 40.08013], [-90.67327499999999, 40.080884999999995], [-90.68605, 40.078804999999996], [-90.69563699999999, 40.079583], [-90.705525, 40.084590999999996], [-90.70451299999999, 40.087816], [-90.70916, 40.090423], [-90.70859399999999, 40.093077], [-90.699928, 40.094449999999995], [-90.699541, 40.097493], [-90.696176, 40.1009], [-90.697486, 40.102547], [-90.69588399999999, 40.103794], [-90.796246, 40.105768], [-90.91361599999999, 40.104451999999995], [-90.909756, 40.284394], [-90.67793999999999, 40.278562], [-90.55666599999999, 40.278265], [-90.450227, 40.276334999999996], [-90.45150199999999, 40.188891999999996], [-90.335663, 40.187723], [-90.199556, 40.183945], [-90.20150699999999, 40.180642], [-90.202685, 40.173939999999995], [-90.202671, 40.160689999999995], [-90.206144, 40.155789], [-90.21336, 40.151291], [-90.225796, 40.150054], [-90.257277, 40.154787], [-90.26814399999999, 40.154562999999996], [-90.280727, 40.149177], [-90.293826, 40.146144], [-90.30755099999999, 40.139950999999996], [-90.326037, 40.139342], [-90.338195, 40.135559]]]]}, "type": "Feature", "properties": {"geoid": "05000US17169", "name": "Schuyler County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.92700699999999, 42.505772], [-89.66982, 42.505044], [-89.52997099999999, 42.502019999999995], [-89.401423, 42.500554], [-89.398011, 42.375173], [-89.396192, 42.201916], [-89.47390399999999, 42.200742999999996], [-89.62982099999999, 42.200534], [-89.77596799999999, 42.197207], [-89.919657, 42.196304999999995], [-89.921122, 42.279005999999995], [-89.92049899999999, 42.284016], [-89.923571, 42.353195], [-89.92700699999999, 42.505772]]]]}, "type": "Feature", "properties": {"geoid": "05000US17177", "name": "Stephenson County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.153668, 37.600469], [-89.041401, 37.596576], [-89.04441, 37.454034], [-89.044787, 37.329845999999996], [-89.099277, 37.333556], [-89.11478799999999, 37.333749], [-89.251668, 37.335274999999996], [-89.385322, 37.334323], [-89.48606, 37.334829], [-89.474569, 37.338165], [-89.451303, 37.339596], [-89.434316, 37.345624], [-89.43056299999999, 37.350446999999996], [-89.428185, 37.356158], [-89.421382, 37.383465], [-89.420542, 37.388007], [-89.42093899999999, 37.393952], [-89.431933, 37.421847], [-89.439769, 37.437200000000004], [-89.450969, 37.450069], [-89.471201, 37.466473], [-89.47549, 37.471343], [-89.493557, 37.496477999999996], [-89.502917, 37.517869999999995], [-89.516447, 37.535558], [-89.52169699999999, 37.557325], [-89.521564, 37.572156], [-89.51807, 37.572935], [-89.510694, 37.578559999999996], [-89.50325, 37.578156], [-89.500647, 37.576681], [-89.50322299999999, 37.572446], [-89.50213, 37.570554], [-89.493355, 37.569727], [-89.48758199999999, 37.567102999999996], [-89.48268999999999, 37.567369], [-89.47849599999999, 37.563978], [-89.474243, 37.562090999999995], [-89.467731, 37.563165999999995], [-89.462493, 37.566631], [-89.457978, 37.574681], [-89.45324099999999, 37.579194], [-89.454758, 37.587368999999995], [-89.44941999999999, 37.591466], [-89.44789899999999, 37.597984], [-89.453355, 37.600195], [-89.319237, 37.599696], [-89.250084, 37.59844], [-89.153668, 37.600469]]]]}, "type": "Feature", "properties": {"geoid": "05000US17181", "name": "Union County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-87.813338, 41.004932], [-88.24730000000001, 40.99456], [-88.251995, 41.114229], [-88.240889, 41.114383], [-88.24415499999999, 41.201546], [-88.01181199999999, 41.205604], [-88.013919, 41.292446999999996], [-87.526731, 41.298052], [-87.526207, 41.010355], [-87.813338, 41.004932]]]]}, "type": "Feature", "properties": {"geoid": "05000US17091", "name": "Kankakee County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-87.958156, 38.562535], [-87.956553, 38.564091], [-87.957284, 38.567051], [-87.953334, 38.568432], [-87.954138, 38.569959], [-87.953203, 38.570194], [-87.651529, 38.568166], [-87.652745, 38.564459], [-87.65021399999999, 38.558420999999996], [-87.65070399999999, 38.556239999999995], [-87.665435, 38.549946], [-87.66922, 38.546811999999996], [-87.670084, 38.544132999999995], [-87.66878799999999, 38.541078], [-87.660978, 38.532145], [-87.659476, 38.526711], [-87.656144, 38.521668], [-87.646226, 38.51509], [-87.645118, 38.511109], [-87.64671899999999, 38.507767], [-87.650092, 38.504605999999995], [-87.656741, 38.501757], [-87.66370099999999, 38.502931], [-87.671898, 38.507611], [-87.682324, 38.494617999999996], [-87.69318799999999, 38.488037999999996], [-87.714047, 38.47988], [-87.73004499999999, 38.480253999999995], [-87.74002399999999, 38.479223], [-87.744644, 38.477266], [-87.750028, 38.471427], [-87.756179, 38.462537999999995], [-87.75682499999999, 38.458501999999996], [-87.75593099999999, 38.455875999999996], [-87.751477, 38.454212999999996], [-87.74052499999999, 38.454716], [-87.73572899999999, 38.452985999999996], [-87.731974, 38.45078], [-87.73013399999999, 38.446518], [-87.730699, 38.442907999999996], [-87.738812, 38.438929], [-87.74104, 38.435576], [-87.742828, 38.427335], [-87.74377199999999, 38.413115], [-87.745254, 38.408995999999995], [-87.76972099999999, 38.380694999999996], [-87.779996, 38.370841999999996], [-87.786093, 38.367649], [-87.80607499999999, 38.363143], [-87.813791, 38.353792], [-87.822721, 38.346911999999996], [-87.826483, 38.336631], [-87.832723, 38.324853], [-87.833344, 38.315649], [-87.830714, 38.303073], [-87.83152299999999, 38.296727], [-87.836495, 38.285486], [-87.84098399999999, 38.280105], [-87.84593699999999, 38.276666999999996], [-87.85113, 38.27512], [-87.856605, 38.275521999999995], [-87.861774, 38.278636999999996], [-87.865522, 38.286080999999996], [-87.866248, 38.28998], [-87.864812, 38.295389], [-87.86045299999999, 38.303112999999996], [-87.86045299999999, 38.305372], [-87.86310999999999, 38.309823], [-87.86888599999999, 38.312277], [-87.875664, 38.309931], [-87.87938899999999, 38.306506999999996], [-87.887849, 38.285298999999995], [-87.89706699999999, 38.280134], [-87.906841, 38.269633999999996], [-87.91011999999999, 38.268108], [-87.917092, 38.269701], [-87.91946999999999, 38.274547], [-87.917711, 38.279351], [-87.908529, 38.290957], [-87.907866, 38.293175999999995], [-87.909536, 38.296061], [-87.916489, 38.299372], [-87.922833, 38.299198], [-87.931873, 38.296498], [-87.93732899999999, 38.292431], [-87.940285, 38.281064], [-87.944017, 38.278681], [-87.95029799999999, 38.276792], [-87.952125, 38.273762999999995], [-87.952163, 38.270512], [-87.950651, 38.266819], [-87.948903, 38.264116], [-87.942067, 38.260301], [-87.94303, 38.25779], [-87.94606499999999, 38.255319], [-87.95614499999999, 38.251652], [-87.958883, 38.246666], [-87.95826, 38.239022], [-87.960225, 38.237117999999995], [-87.96427899999999, 38.236297], [-87.967556, 38.236729], [-87.9702, 38.238623], [-87.970466, 38.244568], [-87.98186799999999, 38.256443999999995], [-87.98470499999999, 38.257953], [-87.987911, 38.256957], [-87.990383, 38.257998], [-87.992226, 38.26281], [-87.991153, 38.265352], [-87.99167899999999, 38.269815], [-87.990343, 38.268625], [-87.988979, 38.269014999999996], [-87.990287, 38.271166], [-87.98845899999999, 38.273731], [-87.984482, 38.274328], [-87.98096799999999, 38.272726999999996], [-87.981228, 38.271055], [-87.97951499999999, 38.270965], [-87.978442, 38.273894999999996], [-87.975974, 38.273185999999995], [-87.9731, 38.2744], [-87.97794999999999, 38.276733], [-87.975657, 38.277879], [-87.977837, 38.282455999999996], [-87.97531, 38.281427], [-87.97452799999999, 38.283944999999996], [-87.97072399999999, 38.284839], [-87.968516, 38.282848], [-87.966223, 38.286235999999995], [-87.961607, 38.288641], [-87.96099799999999, 38.290999], [-87.958325, 38.290358], [-87.95591399999999, 38.291869999999996], [-87.95483999999999, 38.290701999999996], [-87.951325, 38.290290999999996], [-87.951994, 38.292946], [-87.953824, 38.294365], [-87.95397, 38.296745], [-87.957259, 38.299672], [-87.95495799999999, 38.300568], [-87.952955, 38.303039999999996], [-87.95725499999999, 38.305648999999995], [-87.954264, 38.308327999999996], [-87.948134, 38.307435999999996], [-87.94613, 38.310159999999996], [-87.948512, 38.312517], [-87.946072, 38.314738], [-87.949094, 38.316888999999996], [-87.946828, 38.317187], [-87.947409, 38.319362], [-87.94903599999999, 38.318400000000004], [-87.95069199999999, 38.320161999999996], [-87.949995, 38.31872], [-87.954934, 38.316866], [-87.958218, 38.319452], [-87.955547, 38.325472], [-87.957089, 38.332522], [-87.95412499999999, 38.336208], [-87.95444499999999, 38.339732999999995], [-87.95810999999999, 38.344448], [-87.958169, 38.348133], [-87.967298, 38.353556], [-87.968347, 38.359186], [-87.973379, 38.365458], [-87.973672, 38.370539], [-87.97594199999999, 38.373354], [-87.977221, 38.377839], [-87.976759, 38.384271], [-87.973069, 38.389353], [-87.968474, 38.389354999999995], [-87.964956, 38.391072], [-87.965859, 38.39533], [-87.972112, 38.395008], [-87.976012, 38.400614], [-87.970428, 38.402218], [-87.97022799999999, 38.410641], [-87.965924, 38.411237], [-87.959786, 38.420072999999995], [-87.958128, 38.42076], [-87.955246, 38.419865], [-87.95382, 38.417667], [-87.952016, 38.418423], [-87.950796, 38.423277999999996], [-87.954259, 38.42369], [-87.95559899999999, 38.425247999999996], [-87.95429, 38.426369], [-87.951003, 38.425913], [-87.94751199999999, 38.429438], [-87.95193499999999, 38.430033], [-87.95263399999999, 38.432047], [-87.95091599999999, 38.436752], [-87.947559, 38.438261], [-87.949023, 38.442098], [-87.946938, 38.441100999999996], [-87.94452799999999, 38.442955], [-87.94479799999999, 38.444609], [-87.947276, 38.444174], [-87.948979, 38.445555], [-87.944604, 38.445805], [-87.94382, 38.447041], [-87.945566, 38.447133], [-87.946758, 38.449124], [-87.942888, 38.449629], [-87.944606, 38.452534], [-87.948477, 38.45393], [-87.943383, 38.456196999999996], [-87.944722, 38.456174], [-87.947313, 38.458531], [-87.94283, 38.460018999999996], [-87.941812, 38.46224], [-87.94382, 38.461324], [-87.945392, 38.463933], [-87.948216, 38.463521], [-87.948275, 38.464574], [-87.94408299999999, 38.46739], [-87.947547, 38.468351999999996], [-87.947169, 38.469634], [-87.945073, 38.470481], [-87.945015, 38.472564], [-87.948567, 38.471396], [-87.948516, 38.474914999999996], [-87.95052299999999, 38.476319], [-87.947475, 38.476306], [-87.94888999999999, 38.477914], [-87.94810199999999, 38.479087], [-87.953198, 38.480253999999995], [-87.951568, 38.480803], [-87.95360699999999, 38.482679999999995], [-87.95346099999999, 38.483824], [-87.949618, 38.485061], [-87.949006, 38.486274], [-87.95191799999999, 38.485358], [-87.9509, 38.488586], [-87.953346, 38.488127999999996], [-87.955676, 38.489661], [-87.955822, 38.491561], [-87.953318, 38.49314], [-87.954949, 38.493528999999995], [-87.95681499999999, 38.4971], [-87.954717, 38.497878], [-87.955387, 38.500496], [-87.952997, 38.500764], [-87.954133, 38.501908], [-87.953814, 38.503945], [-87.947581, 38.505891], [-87.94865899999999, 38.508592], [-87.949561, 38.506418], [-87.949562, 38.507402], [-87.95235799999999, 38.507630999999996], [-87.950814, 38.508638], [-87.952213, 38.508752], [-87.953175, 38.511247], [-87.948165, 38.514244], [-87.94941899999999, 38.515068], [-87.95172, 38.514495], [-87.95206999999999, 38.515409999999996], [-87.955044, 38.514723], [-87.953558, 38.515569], [-87.95452, 38.516507], [-87.95300499999999, 38.519619], [-87.951725, 38.520627], [-87.94918899999999, 38.520283], [-87.94948099999999, 38.522137], [-87.947034, 38.521747], [-87.94184899999999, 38.528248], [-87.938993, 38.527241], [-87.93709799999999, 38.52818], [-87.93843799999999, 38.533536999999995], [-87.94155599999999, 38.534019], [-87.939399, 38.535095999999996], [-87.939312, 38.536355], [-87.941526, 38.536195], [-87.942313, 38.53734], [-87.94129199999999, 38.538622], [-87.944876, 38.539607], [-87.943564, 38.541416], [-87.946799, 38.541095], [-87.952191, 38.542926], [-87.952308, 38.545145999999995], [-87.95088, 38.545856], [-87.950589, 38.547526999999995], [-87.95210399999999, 38.548442], [-87.952805, 38.552837], [-87.954408, 38.553294], [-87.952514, 38.554781], [-87.95388299999999, 38.555856999999996], [-87.952426, 38.556909999999995], [-87.954379, 38.556956], [-87.953884, 38.558741], [-87.957078, 38.560339], [-87.958156, 38.562535]]]]}, "type": "Feature", "properties": {"geoid": "05000US17185", "name": "Wabash County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-91.136591, 40.63745], [-91.02262999999999, 40.634946], [-90.915013, 40.637687], [-90.90421599999999, 40.639201], [-90.911969, 40.193087999999996], [-91.505346, 40.200486], [-91.507269, 40.209337999999995], [-91.506947, 40.21555], [-91.50428199999999, 40.224298999999995], [-91.504289, 40.231712], [-91.506501, 40.236304], [-91.505828, 40.238839], [-91.502551, 40.244378999999995], [-91.497496, 40.248236], [-91.490524, 40.259498], [-91.489969, 40.262339999999995], [-91.492891, 40.269923], [-91.493061, 40.275262], [-91.490971, 40.283364], [-91.48245, 40.300582999999996], [-91.471826, 40.31734], [-91.46660299999999, 40.334461], [-91.46213999999999, 40.342414], [-91.446308, 40.361823], [-91.441586, 40.365372], [-91.426632, 40.371987999999995], [-91.41505099999999, 40.381747], [-91.396996, 40.383126999999995], [-91.38420099999999, 40.38643], [-91.375712, 40.391925], [-91.37292099999999, 40.399108], [-91.37282599999999, 40.414279], [-91.38096499999999, 40.435395], [-91.38176899999999, 40.442555], [-91.37814399999999, 40.456393999999996], [-91.366463, 40.478868999999996], [-91.36390999999999, 40.490122], [-91.364211, 40.500043], [-91.369059, 40.512532], [-91.384531, 40.530947999999995], [-91.400725, 40.536789], [-91.404125, 40.539127], [-91.406202, 40.542698], [-91.406373, 40.551831], [-91.401482, 40.559458], [-91.379752, 40.57445], [-91.359873, 40.601805], [-91.353989, 40.606553], [-91.339719, 40.613488], [-91.306568, 40.626219], [-91.26635999999999, 40.633587999999996], [-91.256788, 40.637113], [-91.247851, 40.63839], [-91.218437, 40.638436999999996], [-91.19790599999999, 40.636106999999996], [-91.185295, 40.637803], [-91.136591, 40.63745]]]]}, "type": "Feature", "properties": {"geoid": "05000US17067", "name": "Hancock County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.698087, 38.649584999999995], [-88.693531, 38.914617], [-88.559457, 38.915062999999996], [-88.361745, 38.910847], [-88.36175999999999, 38.851949], [-88.258608, 38.847521], [-88.257774, 38.730976999999996], [-88.28358899999999, 38.731801], [-88.28221599999999, 38.731252], [-88.284117, 38.727636], [-88.286951, 38.728003], [-88.28254, 38.725759], [-88.284381, 38.724111], [-88.283622, 38.722784], [-88.285814, 38.720220999999995], [-88.284295, 38.719648], [-88.28148999999999, 38.720563], [-88.286136, 38.718184], [-88.28672, 38.716902999999995], [-88.28543599999999, 38.715711999999996], [-88.28219299999999, 38.716604], [-88.282778, 38.714407], [-88.284589, 38.713698], [-88.28324599999999, 38.712691], [-88.283655, 38.711478], [-88.285817, 38.711363999999996], [-88.28389, 38.709693], [-88.284007, 38.708501999999996], [-88.28213799999999, 38.707837999999995], [-88.285906, 38.707564999999995], [-88.28409599999999, 38.705459], [-88.286199, 38.704269], [-88.284067, 38.702666], [-88.286287, 38.701591], [-88.28468199999999, 38.700379], [-88.285208, 38.698890999999996], [-88.28298799999999, 38.699188], [-88.282726, 38.696236], [-88.281296, 38.695961], [-88.28518, 38.694291], [-88.283925, 38.691727], [-88.28159, 38.690216], [-88.28518199999999, 38.689187], [-88.28331299999999, 38.688271], [-88.283869, 38.686395], [-88.28141699999999, 38.683555999999996], [-88.28433799999999, 38.681543], [-88.27788799999999, 38.675339], [-88.279466, 38.672799], [-88.279321, 38.669663], [-88.27625599999999, 38.669433], [-88.274416, 38.666893], [-88.274766, 38.665704], [-88.272753, 38.665085999999995], [-88.272053, 38.663599], [-88.27246099999999, 38.662293999999996], [-88.27546699999999, 38.661815], [-88.274356, 38.660143999999995], [-88.276488, 38.659642], [-88.273035, 38.658048], [-88.27395, 38.656164], [-88.276579, 38.655545], [-88.275148, 38.654422], [-88.27938499999999, 38.65314], [-88.28446699999999, 38.649888], [-88.284089, 38.648514], [-88.290686, 38.643755999999996], [-88.290189, 38.642886], [-88.286716, 38.64284], [-88.293195, 38.641904], [-88.293312, 38.639866999999995], [-88.295413, 38.63886], [-88.295239, 38.636708999999996], [-88.29739699999999, 38.634568], [-88.28871, 38.629731], [-88.288702, 38.628375999999996], [-88.292323, 38.627324], [-88.29173999999999, 38.625904999999996], [-88.286551, 38.624625], [-88.284038, 38.62643], [-88.28080299999999, 38.624567], [-88.282758, 38.623808], [-88.283051, 38.621977], [-88.286406, 38.62049], [-88.285969, 38.619116999999996], [-88.283577, 38.618705], [-88.282265, 38.616896], [-88.278852, 38.61701], [-88.278646, 38.620672], [-88.27640099999999, 38.61884], [-88.278094, 38.616712], [-88.277277, 38.615522], [-88.275002, 38.616505], [-88.27307499999999, 38.619366], [-88.269312, 38.618449], [-88.271794, 38.614376], [-88.27106599999999, 38.611720999999996], [-88.26669, 38.612474], [-88.262783, 38.610276], [-88.26316299999999, 38.608329999999995], [-88.260217, 38.609428], [-88.259138, 38.608878], [-88.26059699999999, 38.607231], [-88.26010199999999, 38.606474999999996], [-88.257622, 38.607046], [-88.252256, 38.605442], [-88.25182, 38.603519], [-88.24873199999999, 38.601822999999996], [-88.250395, 38.600062], [-88.271227, 38.599416], [-88.364178, 38.602492999999996], [-88.440378, 38.603165], [-88.584533, 38.607427], [-88.69845699999999, 38.606304], [-88.698087, 38.649584999999995]]]]}, "type": "Feature", "properties": {"geoid": "05000US17025", "name": "Clay County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.595103, 38.655947999999995], [-89.597321, 38.743235999999996], [-89.48185699999999, 38.740531], [-89.25007099999999, 38.742014999999995], [-89.138393, 38.736331], [-89.13943599999999, 38.655156999999996], [-89.143898, 38.503088], [-89.25370099999999, 38.508147], [-89.253785, 38.509333], [-89.25698899999999, 38.508099], [-89.25859, 38.508809], [-89.260396, 38.507276999999995], [-89.264122, 38.510253], [-89.26569599999999, 38.507508], [-89.27035599999999, 38.506685999999995], [-89.269571, 38.504855], [-89.271463, 38.505725], [-89.272453, 38.504422], [-89.27309199999999, 38.507145], [-89.276646, 38.504858], [-89.27693599999999, 38.507625999999995], [-89.279557, 38.505499], [-89.28045999999999, 38.50582], [-89.279876, 38.50781], [-89.284274, 38.506507], [-89.28456399999999, 38.509367], [-89.28971899999999, 38.508476], [-89.28904999999999, 38.505272999999995], [-89.291525, 38.506004999999995], [-89.292194, 38.50779], [-89.29426199999999, 38.507515999999995], [-89.293593, 38.504906999999996], [-89.295048, 38.506052], [-89.29877499999999, 38.505938], [-89.299328, 38.507562], [-89.29813399999999, 38.509141], [-89.30130799999999, 38.508317], [-89.299793, 38.51088], [-89.302967, 38.509599], [-89.307189, 38.510377], [-89.30771399999999, 38.508798], [-89.30873299999999, 38.510926], [-89.309985, 38.509553], [-89.31109099999999, 38.512344999999996], [-89.31510999999999, 38.51143], [-89.316391, 38.508638], [-89.32110899999999, 38.510949], [-89.323118, 38.510650999999996], [-89.32274, 38.512755999999996], [-89.325768, 38.511497], [-89.325739, 38.513351], [-89.328621, 38.510376], [-89.333688, 38.512251], [-89.338231, 38.510968999999996], [-89.337183, 38.512502], [-89.33823199999999, 38.513371], [-89.341144, 38.512433], [-89.342337, 38.510282], [-89.345337, 38.512454], [-89.345918, 38.510211999999996], [-89.34679299999999, 38.513003], [-89.345338, 38.514514], [-89.34775599999999, 38.516641], [-89.35008499999999, 38.516343], [-89.350436, 38.518446999999995], [-89.35375499999999, 38.518194], [-89.35489, 38.516476999999995], [-89.35623, 38.517918], [-89.358181, 38.517803], [-89.357073, 38.514922], [-89.36001499999999, 38.516613], [-89.360742, 38.515332], [-89.35910799999999, 38.508812], [-89.363186, 38.510388999999996], [-89.365979, 38.507985], [-89.363911, 38.507093999999995], [-89.361466, 38.507919], [-89.360621, 38.506546], [-89.36795699999999, 38.504940999999995], [-89.367926, 38.503133999999996], [-89.36498499999999, 38.502792], [-89.36513, 38.501008], [-89.36873899999999, 38.500479999999996], [-89.36690899999999, 38.497999], [-89.370025, 38.499551], [-89.371769, 38.496853], [-89.372992, 38.497057999999996], [-89.371714, 38.500049], [-89.372728, 38.500479], [-89.375433, 38.499393999999995], [-89.37552099999999, 38.498044], [-89.377381, 38.498090999999995], [-89.376887, 38.497015], [-89.38006299999999, 38.49434], [-89.38078999999999, 38.495187], [-89.37947899999999, 38.496925], [-89.382274, 38.497338], [-89.38507, 38.494364999999995], [-89.38792199999999, 38.496997], [-89.389029, 38.494229], [-89.39834499999999, 38.494712], [-89.398724, 38.492219], [-89.395639, 38.490272999999995], [-89.400502, 38.489131], [-89.402045, 38.489497], [-89.40149, 38.494256], [-89.405856, 38.495629], [-89.408216, 38.489018], [-89.41066099999999, 38.487417], [-89.417879, 38.494465], [-89.425331, 38.496158], [-89.428185, 38.498903999999996], [-89.43421099999999, 38.494488], [-89.43455999999999, 38.490736], [-89.44844499999999, 38.489270999999995], [-89.45531199999999, 38.482726], [-89.455253, 38.479729], [-89.461073, 38.477028], [-89.467417, 38.476065999999996], [-89.469512, 38.473251], [-89.478124, 38.471326], [-89.481556, 38.468464999999995], [-89.48275, 38.46883], [-89.48391699999999, 38.473337], [-89.488952, 38.474295999999995], [-89.489944, 38.477520999999996], [-89.49297, 38.475505999999996], [-89.490085, 38.471686999999996], [-89.501914, 38.474409], [-89.504592, 38.473631999999995], [-89.50802499999999, 38.474686], [-89.511693, 38.472514], [-89.516437, 38.473476], [-89.520045, 38.474827], [-89.524553, 38.47929], [-89.52801699999999, 38.477255], [-89.528161, 38.480869], [-89.53110099999999, 38.479017], [-89.534273, 38.480664999999995], [-89.539648, 38.480936], [-89.54177899999999, 38.478687], [-89.539701, 38.475722], [-89.540967, 38.474342], [-89.546644, 38.474672999999996], [-89.549379, 38.477052], [-89.552115, 38.475702999999996], [-89.55106699999999, 38.477258], [-89.552027, 38.478242], [-89.557847, 38.477624], [-89.55712, 38.475519999999996], [-89.55909899999999, 38.475016], [-89.560205, 38.477601], [-89.568236, 38.476137], [-89.56731099999999, 38.479341999999995], [-89.56505399999999, 38.481153], [-89.56605499999999, 38.483092], [-89.568092, 38.481307], [-89.573279, 38.482541], [-89.574242, 38.48061], [-89.572975, 38.478643], [-89.574193, 38.477502], [-89.575735, 38.478135], [-89.57763899999999, 38.483159], [-89.579644, 38.480039], [-89.588577, 38.475753999999995], [-89.591651, 38.476436], [-89.594145, 38.474990999999996], [-89.60032799999999, 38.476044], [-89.602969, 38.474213], [-89.607309, 38.474959], [-89.613022, 38.473354], [-89.615212, 38.472072], [-89.616675, 38.467061], [-89.620379, 38.466498], [-89.620115, 38.463552], [-89.622565, 38.461131], [-89.62541999999999, 38.460575], [-89.62517, 38.463269], [-89.626249, 38.464231], [-89.62888, 38.463373], [-89.626668, 38.453987], [-89.628552, 38.450177], [-89.630319, 38.449740999999996], [-89.63205599999999, 38.451999], [-89.633997, 38.452073999999996], [-89.634914, 38.450168999999995], [-89.63283799999999, 38.447739], [-89.635975, 38.447758], [-89.63802199999999, 38.44995], [-89.637135, 38.446708], [-89.63902499999999, 38.445223999999996], [-89.646182, 38.447773], [-89.64692699999999, 38.446062999999995], [-89.643739, 38.44405], [-89.64473699999999, 38.441721], [-89.664768, 38.444944], [-89.66840499999999, 38.441151999999995], [-89.66851899999999, 38.435445], [-89.66545599999999, 38.435141], [-89.666894, 38.432319], [-89.67432099999999, 38.434442], [-89.671849, 38.429679], [-89.67777799999999, 38.431961], [-89.67831, 38.427143], [-89.67688, 38.425573], [-89.67792999999999, 38.424838], [-89.68556199999999, 38.425193], [-89.68589, 38.426378], [-89.683791, 38.428118], [-89.686979, 38.429739], [-89.688919, 38.426542], [-89.69673499999999, 38.424839999999996], [-89.694983, 38.421405], [-89.69256899999999, 38.420204], [-89.694966, 38.416762999999996], [-89.70441699999999, 38.415667], [-89.70702399999999, 38.655152], [-89.595103, 38.655947999999995]]]]}, "type": "Feature", "properties": {"geoid": "05000US17027", "name": "Clinton County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.265024, 40.398465], [-89.26937099999999, 40.594367999999996], [-89.133752, 40.596734], [-89.13421699999999, 40.611489999999996], [-89.101134, 40.612325999999996], [-89.101569, 40.625036], [-89.04436799999999, 40.627427999999995], [-89.04531999999999, 40.663939], [-88.9847, 40.664954], [-88.986896, 40.752297], [-88.584272, 40.757608], [-88.58235499999999, 40.670792], [-88.575216, 40.670615999999995], [-88.574502, 40.61655], [-88.459475, 40.617345], [-88.46041799999999, 40.281935], [-89.052067, 40.283159], [-89.26265, 40.280919], [-89.265024, 40.398465]]]]}, "type": "Feature", "properties": {"geoid": "05000US17113", "name": "McLean County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-90.592165, 39.086765], [-90.60326099999999, 39.110695], [-90.603569, 39.117591999999995], [-90.597072, 39.127327], [-90.59904399999999, 39.133274], [-90.59795899999999, 39.136752], [-90.596167, 39.137988], [-90.591526, 39.138332], [-90.589382, 39.141169], [-90.584654, 39.142165], [-90.582803, 39.144327], [-90.583187, 39.149153999999996], [-90.58721299999999, 39.154872999999995], [-90.585364, 39.161553], [-90.58175299999999, 39.164845], [-90.57652399999999, 39.164708], [-90.575199, 39.167836], [-90.575904, 39.173083999999996], [-90.582106, 39.176927], [-90.58175299999999, 39.178162], [-90.578699, 39.179897], [-90.580587, 39.184895], [-90.57334, 39.184097], [-90.574699, 39.179075], [-90.57345199999999, 39.177489], [-90.570442, 39.177785], [-90.566406, 39.180031], [-90.566396, 39.181521], [-90.570421, 39.182625], [-90.567272, 39.183395], [-90.56782299999999, 39.191635999999995], [-90.56567799999999, 39.193740999999996], [-90.563716, 39.193404], [-90.561892, 39.190653], [-90.565377, 39.187435], [-90.56409, 39.184293], [-90.557767, 39.188482], [-90.545806, 39.190169999999995], [-90.545278, 39.187562], [-90.54624799999999, 39.184242], [-90.54338899999999, 39.183296999999996], [-90.540927, 39.189529], [-90.536991, 39.193002], [-90.535653, 39.190042], [-90.532737, 39.187489], [-90.52847299999999, 39.188365999999995], [-90.52922099999999, 39.191626], [-90.526816, 39.192448999999996], [-90.52301, 39.187053], [-90.520365, 39.188024], [-90.507508, 39.185193], [-90.50286, 39.180941], [-90.505674, 39.175447], [-90.505821, 39.172916], [-90.503963, 39.170907], [-90.502799, 39.164259], [-90.49884999999999, 39.161105], [-90.49579299999999, 39.160235], [-90.49119499999999, 39.16141], [-90.48787899999999, 39.164074], [-90.48634, 39.170055999999995], [-90.48749, 39.175132999999995], [-90.313531, 39.174279999999996], [-90.314071, 39.225052999999996], [-90.201769, 39.225497], [-90.203608, 39.25842], [-90.194655, 39.258402], [-90.194701, 39.261966], [-90.14806899999999, 39.261947], [-90.146299, 39.174289], [-90.145991, 39.000046], [-90.273686, 38.999347], [-90.27480899999999, 38.988848], [-90.275812, 38.923548], [-90.309454, 38.924119999999995], [-90.319052, 38.928667], [-90.333533, 38.933489], [-90.346442, 38.94079], [-90.392721, 38.959071], [-90.40753699999999, 38.962706], [-90.42978, 38.963778], [-90.43920299999999, 38.967287], [-90.445303, 38.966826], [-90.455359, 38.968686], [-90.467766, 38.969207999999995], [-90.487225, 38.967729], [-90.50011699999999, 38.963063999999996], [-90.515163, 38.954615], [-90.519644, 38.953942999999995], [-90.529877, 38.956333], [-90.534657, 38.958498999999996], [-90.543172, 38.964698], [-90.564634, 38.986512999999995], [-90.571561, 38.996096], [-90.576101, 39.009383], [-90.57591599999999, 39.017616], [-90.573724, 39.02344], [-90.57540399999999, 39.033032], [-90.578977, 39.038917999999995], [-90.588094, 39.045747], [-90.589849, 39.049501], [-90.58923, 39.054337], [-90.584068, 39.058712], [-90.581194, 39.064414], [-90.582557, 39.067771], [-90.58927, 39.076035999999995], [-90.592165, 39.086765]]]]}, "type": "Feature", "properties": {"geoid": "05000US17083", "name": "Jersey County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.46334499999999, 40.171071999999995], [-88.462328, 39.79182], [-88.745671, 39.792145999999995], [-88.745344, 40.098813], [-88.68812199999999, 40.098583], [-88.68799299999999, 40.142269], [-88.574885, 40.281501], [-88.4809, 40.281216], [-88.46041799999999, 40.281935], [-88.46072, 40.223321999999996], [-88.46365999999999, 40.223352], [-88.46334499999999, 40.171071999999995]]]]}, "type": "Feature", "properties": {"geoid": "05000US17147", "name": "Piatt County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.709456, 37.516338], [-88.708546, 37.599277], [-88.412112, 37.599911999999996], [-88.414281, 37.525002], [-88.41373399999999, 37.49373], [-88.415081, 37.424105], [-88.42434, 37.420615], [-88.435439, 37.418355999999996], [-88.45278599999999, 37.41112], [-88.466709, 37.40045], [-88.47408999999999, 37.391863], [-88.476951, 37.385683], [-88.47854199999999, 37.376019], [-88.482726, 37.363896], [-88.48309499999999, 37.352134], [-88.48472, 37.345135], [-88.49217399999999, 37.330458], [-88.499572, 37.319499], [-88.504612, 37.308764], [-88.51226299999999, 37.297095999999996], [-88.514538, 37.291373], [-88.515025, 37.288700999999996], [-88.514217, 37.288019], [-88.515745, 37.284604], [-88.51400699999999, 37.281504999999996], [-88.51413699999999, 37.279498], [-88.510009, 37.27559], [-88.50679699999999, 37.265018], [-88.50394, 37.264621], [-88.509295, 37.262067], [-88.512154, 37.263788999999996], [-88.511313, 37.261336], [-88.50706199999999, 37.259689], [-88.50092699999999, 37.253625], [-88.487794, 37.244507], [-88.48549299999999, 37.241695], [-88.47944199999999, 37.228795], [-88.47253599999999, 37.220503], [-88.457752, 37.21277], [-88.448016, 37.203403], [-88.43992899999999, 37.182611], [-88.437983, 37.180085999999996], [-88.433503, 37.166744], [-88.433374, 37.16314], [-88.424841, 37.15267], [-88.42987699999999, 37.137502999999995], [-88.44324999999999, 37.111363], [-88.443471, 37.108729], [-88.442697, 37.109182], [-88.44218699999999, 37.108115999999995], [-88.440674, 37.108993], [-88.442971, 37.102761], [-88.445776, 37.099683], [-88.444583, 37.096419], [-88.44561399999999, 37.093332], [-88.46011899999999, 37.074576], [-88.482624, 37.067257], [-88.490411, 37.068579], [-88.490336, 37.159358], [-88.563451, 37.216412], [-88.62504799999999, 37.266611999999995], [-88.67434999999999, 37.308489], [-88.71065, 37.337089999999996], [-88.71074399999999, 37.427585], [-88.709456, 37.516338]]]]}, "type": "Feature", "properties": {"geoid": "05000US17151", "name": "Pope County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.741359, 41.23393], [-89.857798, 41.234483], [-89.856613, 41.317295], [-89.857406, 41.518189], [-89.859197, 41.518724999999996], [-89.86235099999999, 41.584005], [-89.166561, 41.585288999999996], [-89.166431, 41.481649], [-89.163705, 41.310187], [-89.172539, 41.30846], [-89.20055599999999, 41.312072], [-89.224854, 41.3131], [-89.256436, 41.322182], [-89.268851, 41.321819999999995], [-89.28346599999999, 41.312385], [-89.334901, 41.300877], [-89.339754, 41.298275], [-89.34239699999999, 41.292761], [-89.33708299999999, 41.281667], [-89.348372, 41.258936], [-89.35667099999999, 41.233235], [-89.466534, 41.233872999999996], [-89.466421, 41.148558], [-89.638429, 41.148590999999996], [-89.638864, 41.233861999999995], [-89.741359, 41.23393]]]]}, "type": "Feature", "properties": {"geoid": "05000US17011", "name": "Bureau County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.80576099999999, 39.166191999999995], [-88.805325, 39.216263], [-88.470906, 39.215029], [-88.47086499999999, 39.171462999999996], [-88.360654, 39.171118], [-88.36050399999999, 39.089872], [-88.36277899999999, 39.001228999999995], [-88.361745, 38.910847], [-88.559457, 38.915062999999996], [-88.620486, 38.915303], [-88.69337, 38.914625], [-88.806794, 38.911656], [-88.80576099999999, 39.166191999999995]]]]}, "type": "Feature", "properties": {"geoid": "05000US17049", "name": "Effingham County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-90.585304, 42.445578], [-90.60632799999999, 42.451505], [-90.62432799999999, 42.458904], [-90.64441699999999, 42.470054999999995], [-90.65140099999999, 42.47549], [-90.655441, 42.480934999999995], [-90.65646199999999, 42.490961999999996], [-90.642843, 42.508480999999996], [-90.401703, 42.506889], [-90.07366999999999, 42.508275], [-89.92700699999999, 42.505772], [-89.923571, 42.353195], [-89.92049899999999, 42.284016], [-89.91964999999999, 42.196824], [-90.160191, 42.196827], [-90.317949, 42.193909], [-90.328273, 42.201046999999996], [-90.332177, 42.202231999999995], [-90.35696399999999, 42.205445], [-90.375129, 42.214811], [-90.391108, 42.225473], [-90.39474899999999, 42.229059], [-90.395883, 42.233132999999995], [-90.40065299999999, 42.239292999999996], [-90.420191, 42.255846], [-90.424098, 42.266363999999996], [-90.43088399999999, 42.27823], [-90.431039, 42.282452], [-90.426909, 42.290718999999996], [-90.424326, 42.293326], [-90.418915, 42.308327999999996], [-90.421047, 42.316109], [-90.415937, 42.322699], [-90.419027, 42.328505], [-90.43054599999999, 42.33686], [-90.443874, 42.355218], [-90.45272399999999, 42.359303], [-90.46261899999999, 42.367253], [-90.47027299999999, 42.378355], [-90.477279, 42.383793999999995], [-90.48715399999999, 42.385141], [-90.50012799999999, 42.395539], [-90.506829, 42.398792], [-90.55501799999999, 42.416138], [-90.558168, 42.420984], [-90.558801, 42.428517], [-90.560439, 42.432897], [-90.565248, 42.438742], [-90.570736, 42.441700999999995], [-90.585304, 42.445578]]]]}, "type": "Feature", "properties": {"geoid": "05000US17085", "name": "Jo Daviess County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.93070999999999, 40.84048], [-88.930881, 41.105900000000005], [-88.48729, 41.108619999999995], [-88.251995, 41.114229], [-88.234949, 40.618165999999995], [-88.574502, 40.61655], [-88.575216, 40.670615999999995], [-88.58235499999999, 40.670792], [-88.584272, 40.757608], [-88.92933099999999, 40.753336999999995], [-88.93070999999999, 40.84048]]]]}, "type": "Feature", "properties": {"geoid": "05000US17105", "name": "Livingston County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.370491, 38.255413], [-88.702405, 38.256664], [-88.700048, 38.342307], [-88.69845699999999, 38.606304], [-88.584533, 38.607427], [-88.271227, 38.599416], [-88.148044, 38.597988], [-88.14760199999999, 38.467647], [-88.15090000000001, 38.256097], [-88.24861399999999, 38.257085], [-88.370491, 38.255413]]]]}, "type": "Feature", "properties": {"geoid": "05000US17191", "name": "Wayne County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-90.673198, 40.631544], [-90.559983, 40.630448], [-90.445506, 40.627843], [-90.448269, 40.371545], [-90.450227, 40.276334999999996], [-90.55666599999999, 40.278265], [-90.67793999999999, 40.278562], [-90.72068499999999, 40.280300000000004], [-90.792619, 40.281062], [-90.909756, 40.284394], [-90.90790899999999, 40.381191], [-90.90754299999999, 40.488101], [-90.90421599999999, 40.639201], [-90.673198, 40.631544]]]]}, "type": "Feature", "properties": {"geoid": "05000US17109", "name": "McDonough County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.98455899999999, 41.149366], [-90.115702, 41.150138], [-90.208888, 41.152156], [-90.437657, 41.151252], [-90.43193, 41.456834], [-90.421129, 41.457634], [-90.404229, 41.464833999999996], [-90.387328, 41.476434], [-90.380382, 41.476675], [-90.376528, 41.478733999999996], [-90.37302799999999, 41.484634], [-90.369427, 41.496734], [-90.364227, 41.502834], [-90.35223099999999, 41.508832], [-90.333889, 41.514085], [-90.318733, 41.508897999999995], [-90.31505899999999, 41.509204], [-90.312094, 41.510591], [-90.304716, 41.517790999999995], [-90.29707599999999, 41.518207], [-90.28922399999999, 41.520334], [-90.250123, 41.522755], [-90.225842, 41.529917], [-90.222459, 41.53557], [-90.21901799999999, 41.5372], [-90.195324, 41.540686], [-90.192498, 41.543213], [-90.184991, 41.555457], [-90.179328, 41.572367], [-90.18005199999999, 41.578716], [-90.185609, 41.584652999999996], [-89.86235099999999, 41.584005], [-89.859197, 41.518724999999996], [-89.857406, 41.518189], [-89.856613, 41.317295], [-89.85756699999999, 41.234907], [-89.867738, 41.234429999999996], [-89.86838399999999, 41.148955], [-89.98455899999999, 41.149366]]]]}, "type": "Feature", "properties": {"geoid": "05000US17073", "name": "Henry County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-90.264488, 39.520005], [-90.15375, 39.520315], [-90.14806899999999, 39.261947], [-90.194701, 39.261966], [-90.194655, 39.258402], [-90.203608, 39.25842], [-90.201769, 39.225497], [-90.314071, 39.225052999999996], [-90.313531, 39.174279999999996], [-90.48749, 39.175132999999995], [-90.48634, 39.170055999999995], [-90.48787899999999, 39.164074], [-90.49119499999999, 39.16141], [-90.49579299999999, 39.160235], [-90.49884999999999, 39.161105], [-90.502799, 39.164259], [-90.503963, 39.170907], [-90.505821, 39.172916], [-90.505674, 39.175447], [-90.50286, 39.180941], [-90.507508, 39.185193], [-90.520365, 39.188024], [-90.52301, 39.187053], [-90.526816, 39.192448999999996], [-90.52922099999999, 39.191626], [-90.52847299999999, 39.188365999999995], [-90.532737, 39.187489], [-90.535653, 39.190042], [-90.536991, 39.193002], [-90.540927, 39.189529], [-90.54338899999999, 39.183296999999996], [-90.54624799999999, 39.184242], [-90.545806, 39.190169999999995], [-90.557767, 39.188482], [-90.56409, 39.184293], [-90.565377, 39.187435], [-90.561892, 39.190653], [-90.563716, 39.193404], [-90.56567799999999, 39.193740999999996], [-90.56782299999999, 39.191635999999995], [-90.567272, 39.183395], [-90.570421, 39.182625], [-90.566396, 39.181521], [-90.566406, 39.180031], [-90.570442, 39.177785], [-90.57345199999999, 39.177489], [-90.574699, 39.179075], [-90.57334, 39.184097], [-90.580587, 39.184895], [-90.578699, 39.179897], [-90.582106, 39.176927], [-90.575904, 39.173083999999996], [-90.575199, 39.167836], [-90.57652399999999, 39.164708], [-90.58175299999999, 39.164845], [-90.585364, 39.161553], [-90.58721299999999, 39.154872999999995], [-90.583187, 39.149153999999996], [-90.582803, 39.144327], [-90.584654, 39.142165], [-90.589382, 39.141169], [-90.591526, 39.138332], [-90.596167, 39.137988], [-90.59795899999999, 39.136752], [-90.59904399999999, 39.133274], [-90.597072, 39.127327], [-90.603569, 39.117591999999995], [-90.61453999999999, 39.142289999999996], [-90.614646, 39.153788999999996], [-90.611712, 39.168006999999996], [-90.608234, 39.173445], [-90.59945599999999, 39.180496], [-90.597482, 39.187531], [-90.592095, 39.195789999999995], [-90.591219, 39.201129], [-90.593009, 39.209956], [-90.59209899999999, 39.216439], [-90.597229, 39.235127], [-90.597989, 39.24333], [-90.605904, 39.251362], [-90.609796, 39.259812], [-90.606329, 39.279771], [-90.60239299999999, 39.287479999999995], [-90.60243, 39.292693], [-90.61125799999999, 39.311212999999995], [-90.612892, 39.324538], [-90.619638, 39.349095999999996], [-90.622267, 39.366935999999995], [-90.620162, 39.375692], [-90.620802, 39.381156], [-90.617301, 39.385692], [-90.61352699999999, 39.396508999999995], [-90.616807, 39.423877999999995], [-90.61601999999999, 39.430574], [-90.611998, 39.441407999999996], [-90.610502, 39.457446999999995], [-90.607597, 39.463829], [-90.592092, 39.486979], [-90.590605, 39.493674999999996], [-90.58838999999999, 39.496418999999996], [-90.586158, 39.503713], [-90.582202, 39.510332], [-90.58053, 39.517993], [-90.58105499999999, 39.521727999999996], [-90.264488, 39.520005]]]]}, "type": "Feature", "properties": {"geoid": "05000US17061", "name": "Greene County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-90.203626, 38.088814], [-90.03599899999999, 38.13563], [-90.036385, 38.223124999999996], [-89.815677, 38.219891], [-89.59279699999999, 38.219271], [-89.592411, 38.129830999999996], [-89.595084, 37.95531], [-89.656492, 37.858594], [-89.658417, 37.853018], [-89.657163, 37.851307], [-89.658119, 37.847573], [-89.657157, 37.847045], [-89.65934899999999, 37.844473], [-89.658374, 37.843593999999996], [-89.661002, 37.839867], [-89.660406, 37.838159], [-89.66225, 37.837613], [-89.66169599999999, 37.835164999999996], [-89.664295, 37.833178], [-89.664298, 37.831682], [-89.66317599999999, 37.831446], [-89.66449, 37.831029], [-89.664475, 37.829029], [-89.66542299999999, 37.828241999999996], [-89.66827599999999, 37.829519999999995], [-89.67201299999999, 37.825434], [-89.680904, 37.822502], [-89.674292, 37.80314], [-89.702844, 37.816812], [-89.71744199999999, 37.825722999999996], [-89.72943099999999, 37.835114], [-89.739875, 37.846921], [-89.754099, 37.846353], [-89.76520000000001, 37.851763], [-89.774305, 37.852126999999996], [-89.78199099999999, 37.855053], [-89.786326, 37.851689], [-89.793737, 37.857063], [-89.79754199999999, 37.862128], [-89.800353, 37.868626], [-89.797696, 37.874392], [-89.79804, 37.879653], [-89.799329, 37.881516], [-89.813636, 37.887696], [-89.842638, 37.905197], [-89.850524, 37.904171999999996], [-89.85707099999999, 37.899204], [-89.86187699999999, 37.897684], [-89.879688, 37.880736], [-89.898753, 37.870779999999996], [-89.905631, 37.869392999999995], [-89.91754399999999, 37.869895], [-89.936945, 37.874835], [-89.938608, 37.874303999999995], [-89.93768999999999, 37.875098], [-89.947758, 37.879847], [-89.953008, 37.884037], [-89.96054199999999, 37.897369], [-89.965285, 37.902302999999996], [-89.966329, 37.906731], [-89.973762, 37.918016], [-89.97479899999999, 37.926525], [-89.965813, 37.933011], [-89.962057, 37.933918], [-89.962612, 37.935251], [-89.959772, 37.940083], [-89.947322, 37.940283], [-89.93732, 37.946663], [-89.93126699999999, 37.948277], [-89.924853, 37.954906], [-89.92459699999999, 37.959849], [-89.935885, 37.959581], [-89.940687, 37.970873999999995], [-89.965046, 37.964393], [-89.98222799999999, 37.962111], [-89.991958, 37.962165], [-90.00010999999999, 37.964563], [-90.007936, 37.97011], [-90.031795, 37.995126], [-90.051941, 38.005432], [-90.05726899999999, 38.014362], [-90.065045, 38.016875], [-90.08825999999999, 38.015772], [-90.099098, 38.020196], [-90.11424, 38.029061], [-90.126196, 38.040706], [-90.126396, 38.054897], [-90.128159, 38.059644999999996], [-90.130788, 38.062340999999996], [-90.158273, 38.07495], [-90.16341299999999, 38.074346], [-90.17222, 38.069635999999996], [-90.17604, 38.07066], [-90.206685, 38.087969], [-90.203626, 38.088814]]]]}, "type": "Feature", "properties": {"geoid": "05000US17157", "name": "Randolph County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-90.916071, 39.757168], [-90.916609, 39.845075], [-90.89365099999999, 39.84092], [-90.571754, 39.839326], [-90.56863799999999, 39.835879999999996], [-90.565737, 39.83007], [-90.566976, 39.826882999999995], [-90.576724, 39.818857], [-90.586027, 39.805645], [-90.59720399999999, 39.794851], [-90.606931, 39.776376], [-90.606247, 39.768431], [-90.60763399999999, 39.763873], [-90.628422, 39.729485], [-90.64098399999999, 39.717425999999996], [-90.64599, 39.703368], [-90.644488, 39.693110999999995], [-90.63349099999999, 39.673007999999996], [-90.62870699999999, 39.669332], [-90.608385, 39.63924], [-90.604884, 39.619749999999996], [-90.598096, 39.604760999999996], [-90.592092, 39.596683], [-90.57661999999999, 39.559536], [-90.572227, 39.541207], [-90.574356, 39.535191999999995], [-90.581767, 39.525881999999996], [-90.580992, 39.514556999999996], [-90.590605, 39.493674999999996], [-90.592092, 39.486979], [-90.610502, 39.457446999999995], [-90.611998, 39.441407999999996], [-90.61601999999999, 39.430574], [-90.616807, 39.423877999999995], [-90.613694, 39.395775], [-90.84142299999999, 39.399887], [-90.936728, 39.399511], [-90.939025, 39.402744], [-90.944942, 39.406247], [-90.964868, 39.411046999999996], [-90.972465, 39.414144], [-90.97761799999999, 39.41829], [-90.99378899999999, 39.422959], [-91.029709, 39.442515], [-91.03827, 39.448434999999996], [-91.057114, 39.466086], [-91.06241399999999, 39.474122], [-91.06430499999999, 39.494642999999996], [-91.079769, 39.507728], [-91.092869, 39.529275], [-91.100307, 39.538695], [-91.146596, 39.545486], [-91.153628, 39.548248], [-91.168419, 39.564927999999995], [-91.174651, 39.593312999999995], [-91.181936, 39.602677], [-91.229317, 39.620853], [-91.241225, 39.630067], [-91.248779, 39.640879999999996], [-91.260475, 39.649024], [-91.27614, 39.665759], [-91.301603, 39.679068], [-91.305348, 39.683957], [-91.317814, 39.692591], [-91.347253, 39.71048], [-91.367753, 39.729029], [-91.370102, 39.733321], [-91.369839, 39.745702], [-91.36512499999999, 39.758722999999996], [-91.250146, 39.756979], [-90.916071, 39.757168]]]]}, "type": "Feature", "properties": {"geoid": "05000US17149", "name": "Pike County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.52498899999999, 40.84842], [-89.49957099999999, 40.875036], [-89.488469, 40.899299], [-89.483496, 40.903183999999996], [-89.47963, 40.909347], [-89.475225, 40.912741], [-89.47233, 40.921206], [-89.369647, 40.922256999999995], [-89.20363499999999, 40.926286], [-89.143408, 40.926848], [-89.04771799999999, 40.925748999999996], [-88.93139, 40.92774], [-88.92933099999999, 40.753336999999995], [-88.986896, 40.752297], [-88.9847, 40.664954], [-89.04531999999999, 40.663939], [-89.04436799999999, 40.627427999999995], [-89.08222099999999, 40.626813], [-89.101569, 40.625036], [-89.101134, 40.612325999999996], [-89.13421699999999, 40.611489999999996], [-89.133752, 40.596734], [-89.26939, 40.594328999999995], [-89.269831, 40.616096999999996], [-89.327343, 40.615566], [-89.328695, 40.660785], [-89.32961399999999, 40.660773999999996], [-89.330167, 40.748256999999995], [-89.554994, 40.747637], [-89.556094, 40.749437], [-89.555694, 40.764737], [-89.56389399999999, 40.784037], [-89.562394, 40.793637], [-89.55427, 40.808869], [-89.544958, 40.814980999999996], [-89.528285, 40.835620999999996], [-89.525213, 40.842403999999995], [-89.52498899999999, 40.84842]]]]}, "type": "Feature", "properties": {"geoid": "05000US17203", "name": "Woodford County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.44237, 38.215387], [-89.33111199999999, 38.213533], [-89.23818299999999, 38.214282], [-89.14741599999999, 38.212896], [-89.149739, 38.124945], [-89.129637, 38.124747], [-89.129228, 38.122772999999995], [-89.132138, 38.118666999999995], [-89.130648, 38.115963], [-89.12925299999999, 38.116811999999996], [-89.130434, 38.113465], [-89.13183599999999, 38.112897], [-89.129837, 38.112044999999995], [-89.129194, 38.109423], [-89.132072, 38.106539999999995], [-89.131109, 38.105643], [-89.131289, 38.103581999999996], [-89.13241, 38.103408], [-89.134035, 38.105843], [-89.137044, 38.105506999999996], [-89.137501, 38.104442], [-89.13502299999999, 38.101789], [-89.12866199999999, 38.100888999999995], [-89.12666999999999, 38.098146], [-89.123547, 38.09829], [-89.12129399999999, 38.096450999999995], [-89.117499, 38.096047], [-89.11532199999999, 38.093444999999996], [-89.11921799999999, 38.090092999999996], [-89.117077, 38.089171], [-89.117582, 38.087029], [-89.115414, 38.085954], [-89.117226, 38.084613], [-89.120819, 38.084945999999995], [-89.119439, 38.081831], [-89.12205499999999, 38.083261], [-89.12272, 38.082294], [-89.12234, 38.080121], [-89.119404, 38.07731], [-89.120086, 38.075677999999996], [-89.119025, 38.074318], [-89.120809, 38.073356], [-89.118725, 38.072497], [-89.12032599999999, 38.071321999999995], [-89.118404, 38.070011], [-89.119552, 38.069472], [-89.122903, 38.070783], [-89.122507, 38.068912], [-89.118875, 38.067040999999996], [-89.121714, 38.064938], [-89.12352, 38.064879999999995], [-89.12355699999999, 38.063677], [-89.118488, 38.062835], [-89.119373, 38.064721], [-89.11773199999999, 38.064662999999996], [-89.11762399999999, 38.062515999999995], [-89.122214, 38.060933999999996], [-89.119654, 38.0593], [-89.11848499999999, 38.060255999999995], [-89.11839599999999, 38.059422], [-89.12118099999999, 38.057626], [-89.121932, 38.059225], [-89.12331499999999, 38.058889], [-89.122675, 38.056458], [-89.12508, 38.054871], [-89.127388, 38.055369999999996], [-89.126924, 38.053011], [-89.13154999999999, 38.052175999999996], [-89.131106, 38.054943], [-89.132635, 38.054604], [-89.132999, 38.050478], [-89.13412699999999, 38.048806], [-89.13042899999999, 38.047768], [-89.133262, 38.04728], [-89.13494299999999, 38.044815], [-89.137755, 38.047295999999996], [-89.138851, 38.047041], [-89.138134, 38.044323], [-89.139832, 38.043484], [-89.13638, 38.039944], [-89.14047599999999, 38.035998], [-89.139054, 38.033834], [-89.14683, 38.031487], [-89.144397, 38.028667], [-89.142422, 38.029129999999995], [-89.143018, 38.025983], [-89.14053799999999, 38.026627999999995], [-89.138252, 38.025349], [-89.138746, 38.024316999999996], [-89.137597, 38.023444999999995], [-89.13846799999999, 38.022172], [-89.13683999999999, 38.021557], [-89.136072, 38.018029999999996], [-89.14049899999999, 38.015969999999996], [-89.140146, 38.012867], [-89.142237, 38.011016999999995], [-89.144582, 38.011123999999995], [-89.14524399999999, 38.009229], [-89.14238, 38.004114], [-89.143012, 38.001538], [-89.140199, 37.999371], [-89.141599, 37.997129], [-89.14016199999999, 37.995453999999995], [-89.14299199999999, 37.994049], [-89.142637, 37.992675999999996], [-89.144036, 37.991548], [-89.143513, 37.990096], [-89.146626, 37.988839], [-89.14577799999999, 37.985724999999995], [-89.149827, 37.98225], [-89.149474, 37.979776], [-89.153739, 37.977983], [-89.15347299999999, 37.974537], [-89.155385, 37.969353], [-89.155147, 37.967469], [-89.160714, 37.961914], [-89.16189, 37.957356], [-89.16521, 37.954887], [-89.171058, 37.9546], [-89.174483, 37.953897999999995], [-89.175613, 37.952532], [-89.177961, 37.952785999999996], [-89.17759699999999, 37.950311], [-89.192196, 37.950193999999996], [-89.300513, 37.950784], [-89.595084, 37.95531], [-89.592411, 38.129830999999996], [-89.59279699999999, 38.219271], [-89.44237, 38.215387]]]]}, "type": "Feature", "properties": {"geoid": "05000US17145", "name": "Perry County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.043032, 37.507714], [-89.041401, 37.596576], [-88.94914, 37.596261], [-88.928426, 37.597159999999995], [-88.85036799999999, 37.597249], [-88.836759, 37.597508], [-88.818894, 37.600677], [-88.708546, 37.599277], [-88.71074399999999, 37.427585], [-88.710155, 37.396695], [-88.71065, 37.337089999999996], [-88.72840699999999, 37.335192], [-88.90840899999999, 37.335768], [-88.904859, 37.335397], [-88.901675, 37.332589], [-88.896242, 37.32989], [-88.89787299999999, 37.328846999999996], [-88.8983, 37.327282], [-88.895466, 37.326100000000004], [-88.899265, 37.321553], [-88.89759699999999, 37.317516], [-88.902441, 37.316503], [-88.908647, 37.313871999999996], [-88.909875, 37.312415], [-88.92665199999999, 37.303109], [-88.92912899999999, 37.302647], [-88.932571, 37.303509], [-88.934465, 37.302627], [-88.93697399999999, 37.303919], [-88.940366, 37.303187], [-88.942478, 37.303953], [-88.951081, 37.300885], [-88.954814, 37.297702], [-88.959054, 37.297740999999995], [-88.959571, 37.298834], [-88.961248, 37.297624], [-88.96234299999999, 37.299093], [-88.962548, 37.297684], [-88.963578, 37.29738], [-88.96436299999999, 37.300517], [-88.968813, 37.303278], [-88.973702, 37.303618], [-88.992108, 37.309899], [-88.996226, 37.309419], [-88.998144, 37.307869], [-88.999555, 37.309636999999995], [-89.00273899999999, 37.311147999999996], [-89.004601, 37.311163], [-89.018385, 37.309103], [-89.031646, 37.298564999999996], [-89.040365, 37.295018999999996], [-89.04458799999999, 37.294163], [-89.04441, 37.454034], [-89.043032, 37.507714]]]]}, "type": "Feature", "properties": {"geoid": "05000US17087", "name": "Johnson County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.397437, 42.288661999999995], [-89.398011, 42.375173], [-89.401423, 42.500554], [-89.250759, 42.497994], [-88.940388, 42.495045], [-88.940997, 42.247341], [-88.93973199999999, 42.152319999999996], [-89.172799, 42.150296999999995], [-89.173, 42.204240999999996], [-89.396192, 42.201916], [-89.397437, 42.288661999999995]]]]}, "type": "Feature", "properties": {"geoid": "05000US17201", "name": "Winnebago County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.51391, 41.902288], [-89.62933, 41.901616999999995], [-89.628907, 41.930043999999995], [-89.685366, 41.93034], [-89.686549, 41.937492999999996], [-89.684694, 42.025932999999995], [-89.688486, 42.199112], [-89.173, 42.204240999999996], [-89.172799, 42.150296999999995], [-88.93973199999999, 42.152319999999996], [-88.938935, 42.065097], [-88.942146, 42.06505], [-88.941279, 41.891752], [-89.360682, 41.88807], [-89.36052, 41.902640999999996], [-89.398826, 41.902834999999996], [-89.40310799999999, 41.902273], [-89.40564599999999, 41.897982], [-89.41214699999999, 41.894884999999995], [-89.412022, 41.887518], [-89.413501, 41.886067], [-89.428648, 41.89404], [-89.428893, 41.896308999999995], [-89.421714, 41.898154999999996], [-89.419187, 41.900935], [-89.420135, 41.904762], [-89.426727, 41.908418], [-89.437174, 41.908193], [-89.44798999999999, 41.911487], [-89.46860699999999, 41.912444], [-89.477452, 41.909399], [-89.481335, 41.902241], [-89.51391, 41.902288]]]]}, "type": "Feature", "properties": {"geoid": "05000US17141", "name": "Ogle County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-87.52801, 40.388508], [-87.531759, 40.144273], [-87.533228, 39.883], [-87.581553, 39.88229], [-87.557513, 39.868719], [-87.617424, 39.868489], [-87.61518199999999, 39.88163], [-87.93764499999999, 39.879802999999995], [-87.942103, 40.225482], [-87.92876, 40.225618999999995], [-87.932858, 40.399401], [-87.93168, 40.3994], [-87.93530899999999, 40.485923], [-87.76351799999999, 40.488197], [-87.652132, 40.488212], [-87.526366, 40.491237], [-87.52801, 40.388508]]]]}, "type": "Feature", "properties": {"geoid": "05000US17183", "name": "Vermilion County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.94090399999999, 42.237226], [-88.940218, 42.32666], [-88.940776, 42.398368], [-88.940388, 42.495045], [-88.776493, 42.491912], [-88.70737799999999, 42.493597], [-88.705748, 42.39631], [-88.705186, 42.221197], [-88.70563299999999, 42.153560999999996], [-88.93973199999999, 42.152319999999996], [-88.94090399999999, 42.237226]]]]}, "type": "Feature", "properties": {"geoid": "05000US17007", "name": "Boone County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-90.372935, 39.666368999999996], [-90.371253, 39.753388], [-90.483385, 39.753434], [-90.483063, 39.78924], [-90.599105, 39.79006], [-90.59720399999999, 39.794851], [-90.586027, 39.805645], [-90.576724, 39.818857], [-90.566976, 39.826882999999995], [-90.565737, 39.83007], [-90.566598, 39.833162], [-90.579426, 39.848489], [-90.58243499999999, 39.854574], [-90.586091, 39.871413], [-90.583534, 39.87675], [-90.183219, 39.872848], [-89.994405, 39.872859999999996], [-89.993755, 39.785329], [-89.985562, 39.785356], [-89.98474499999999, 39.718078999999996], [-89.92395499999999, 39.558678], [-89.926037, 39.522104], [-90.301801, 39.520192], [-90.30066599999999, 39.636541], [-90.338123, 39.63672], [-90.337812, 39.665583], [-90.372935, 39.666368999999996]]]]}, "type": "Feature", "properties": {"geoid": "05000US17137", "name": "Morgan County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.04724, 41.0133], [-89.04771799999999, 40.925748999999996], [-89.16027799999999, 40.926798999999995], [-89.369647, 40.922256999999995], [-89.472959, 40.921203], [-89.46437499999999, 40.926041999999995], [-89.458861, 40.932978], [-89.455306, 40.935507], [-89.453994, 40.939538], [-89.455063, 40.946470999999995], [-89.448126, 40.959179], [-89.449269, 40.968278], [-89.447693, 40.973245999999996], [-89.638727, 40.973707], [-89.638429, 41.148590999999996], [-89.32927, 41.147931], [-89.33303599999999, 41.139416], [-89.333484, 41.123673], [-89.335892, 41.117269], [-89.342248, 41.11138], [-89.352441, 41.108207], [-89.35859699999999, 41.103665], [-89.047856, 41.104780999999996], [-89.04724, 41.0133]]]]}, "type": "Feature", "properties": {"geoid": "05000US17123", "name": "Marshall County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-90.715977, 39.191468], [-90.717585, 39.200182], [-90.717113, 39.213912], [-90.721835, 39.224108], [-90.721593, 39.23273], [-90.726981, 39.251173], [-90.72995999999999, 39.255894], [-90.739087, 39.261893], [-90.751599, 39.265432], [-90.767648, 39.280024999999995], [-90.775673, 39.292811], [-90.783789, 39.297163999999995], [-90.790675, 39.302907999999995], [-90.793461, 39.309498], [-90.799346, 39.313086999999996], [-90.816851, 39.320496], [-90.84010599999999, 39.340438], [-90.84750000000001, 39.345272], [-90.893777, 39.367343], [-90.900095, 39.372354], [-90.904862, 39.379402999999996], [-90.920976, 39.383686999999995], [-90.92874499999999, 39.387544], [-90.934007, 39.392126999999995], [-90.936728, 39.399511], [-90.84142299999999, 39.399887], [-90.613694, 39.395775], [-90.617301, 39.385692], [-90.620802, 39.381156], [-90.620162, 39.375692], [-90.62228999999999, 39.365089], [-90.619638, 39.349095999999996], [-90.612892, 39.324538], [-90.61125799999999, 39.311212999999995], [-90.60243, 39.292693], [-90.60239299999999, 39.287479999999995], [-90.606329, 39.279771], [-90.609796, 39.259812], [-90.605904, 39.251362], [-90.597989, 39.24333], [-90.597229, 39.235127], [-90.592289, 39.21823], [-90.593009, 39.209956], [-90.59123, 39.198623999999995], [-90.597482, 39.187531], [-90.59945599999999, 39.180496], [-90.608234, 39.173445], [-90.612102, 39.167164], [-90.614646, 39.153788999999996], [-90.61499599999999, 39.145268], [-90.611206, 39.133212], [-90.605177, 39.12294], [-90.603539, 39.117477], [-90.60326099999999, 39.110695], [-90.593615, 39.090641], [-90.58927, 39.076035999999995], [-90.581406, 39.06568], [-90.582062, 39.061626], [-90.58903099999999, 39.054643], [-90.59000999999999, 39.050678999999995], [-90.588094, 39.045747], [-90.578977, 39.038917999999995], [-90.574321, 39.029787999999996], [-90.573724, 39.02344], [-90.57591599999999, 39.017616], [-90.57631599999999, 39.012811], [-90.573734, 39.001265], [-90.56758699999999, 38.989726999999995], [-90.543172, 38.964698], [-90.534657, 38.958498999999996], [-90.52367799999999, 38.95454], [-90.515163, 38.954615], [-90.50011699999999, 38.963063999999996], [-90.487225, 38.967729], [-90.467766, 38.969207999999995], [-90.450813, 38.967769], [-90.46241099999999, 38.964321999999996], [-90.472122, 38.958838], [-90.483071, 38.94307], [-90.482725, 38.934712], [-90.48705799999999, 38.925861999999995], [-90.49967199999999, 38.910605], [-90.50745099999999, 38.902767], [-90.51696299999999, 38.898818], [-90.53858699999999, 38.879742], [-90.546831, 38.874009], [-90.561021, 38.869476], [-90.577576, 38.868384], [-90.585402, 38.869769999999995], [-90.58652099999999, 38.87135], [-90.623356, 38.887149], [-90.628485, 38.891617], [-90.636994, 38.905122999999996], [-90.64729, 38.912095], [-90.663018, 38.926283], [-90.66342399999999, 38.935551], [-90.668089, 38.943003], [-90.669229, 38.948176], [-90.675949, 38.96214], [-90.675715, 38.981066], [-90.678193, 38.991851], [-90.682068, 38.998778], [-90.687719, 39.005373999999996], [-90.692403, 39.016656], [-90.71158, 39.046797999999995], [-90.713629, 39.053976999999996], [-90.712541, 39.057064], [-90.702136, 39.065568], [-90.701201, 39.070319999999995], [-90.69828199999999, 39.074649], [-90.682744, 39.088347999999996], [-90.681038, 39.099491], [-90.68605099999999, 39.117785], [-90.695926, 39.131122], [-90.700464, 39.135439], [-90.705168, 39.143152], [-90.70914599999999, 39.155111], [-90.71047999999999, 39.176366], [-90.715977, 39.191468]]]]}, "type": "Feature", "properties": {"geoid": "05000US17013", "name": "Calhoun County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.142072, 38.56149], [-89.13866, 38.701153], [-89.138138, 38.824244], [-89.02816399999999, 38.822873], [-88.91474199999999, 38.824459999999995], [-88.793407, 38.824591999999996], [-88.695165, 38.826299], [-88.697598, 38.708588999999996], [-88.698961, 38.474914], [-88.922428, 38.476969], [-89.033155, 38.473963], [-89.14438799999999, 38.473878], [-89.142072, 38.56149]]]]}, "type": "Feature", "properties": {"geoid": "05000US17121", "name": "Marion County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-90.673198, 40.631544], [-90.78965199999999, 40.63575], [-90.786363, 41.018972999999995], [-90.78519399999999, 41.068749], [-90.66447099999999, 41.067557], [-90.550218, 41.064065], [-90.43942299999999, 41.063995], [-90.445506, 40.627843], [-90.559983, 40.630448], [-90.673198, 40.631544]]]]}, "type": "Feature", "properties": {"geoid": "05000US17187", "name": "Warren County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.255348, 41.550089], [-88.261468, 41.724529], [-88.03056099999999, 41.72893], [-88.027688, 41.641506], [-87.91193, 41.643933], [-87.909453, 41.556732], [-87.79279299999999, 41.55854], [-87.79229199999999, 41.538661999999995], [-87.790365, 41.539961], [-87.790303, 41.469846], [-87.525705, 41.470282999999995], [-87.526731, 41.298052], [-88.013919, 41.292446999999996], [-88.01181199999999, 41.205604], [-88.24415499999999, 41.201546], [-88.255348, 41.550089]]]]}, "type": "Feature", "properties": {"geoid": "05000US17197", "name": "Will County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-90.194594, 38.466116], [-90.145336, 38.426266], [-90.145608, 38.412152999999996], [-90.128665, 38.397324], [-90.03607799999999, 38.323347], [-90.036018, 38.30885], [-89.913226, 38.307829], [-89.90968099999999, 38.302465], [-89.904082, 38.29763], [-89.906793, 38.293313999999995], [-89.90115399999999, 38.287437], [-89.902521, 38.284729999999996], [-89.902428, 38.28205], [-89.904113, 38.278866], [-89.90728399999999, 38.276756], [-89.910096, 38.276264999999995], [-89.91511799999999, 38.277214], [-89.917853, 38.278110999999996], [-89.918138, 38.279706999999995], [-89.91162899999999, 38.282468], [-89.91111099999999, 38.284445], [-89.912706, 38.285652999999996], [-89.916945, 38.285163], [-89.919478, 38.28617], [-89.920345, 38.284179], [-89.919629, 38.281684999999996], [-89.92206, 38.276018], [-89.925029, 38.272715999999996], [-89.920412, 38.272158999999995], [-89.923755, 38.269186999999995], [-89.91469699999999, 38.259378999999996], [-89.91349699999999, 38.254523], [-89.917074, 38.252344], [-89.917174, 38.251396], [-89.911323, 38.24841], [-89.910687, 38.246021999999996], [-89.90913499999999, 38.245408], [-89.906819, 38.240556999999995], [-89.90865, 38.238862999999995], [-89.908684, 38.237531], [-89.905969, 38.236073999999995], [-89.90191, 38.235580999999996], [-89.896948, 38.23111], [-89.89770399999999, 38.228708], [-89.904471, 38.227461], [-89.90351299999999, 38.225043], [-89.89906099999999, 38.220755], [-90.036385, 38.223124999999996], [-90.03599899999999, 38.13563], [-90.206685, 38.087969], [-90.217019, 38.093466], [-90.240713, 38.110375], [-90.245651, 38.115891], [-90.250118, 38.125054], [-90.27484299999999, 38.157559], [-90.290629, 38.170363], [-90.30032899999999, 38.175139], [-90.310627, 38.178573], [-90.316876, 38.179477], [-90.327218, 38.184311], [-90.33565899999999, 38.191531], [-90.35579299999999, 38.216887], [-90.360142, 38.225659], [-90.365139, 38.240724], [-90.372422, 38.283725], [-90.372554, 38.300418], [-90.371516, 38.306191], [-90.372626, 38.316162], [-90.371405, 38.322969], [-90.371476, 38.330897], [-90.364361, 38.347514], [-90.355942, 38.360459999999996], [-90.35061999999999, 38.374762], [-90.34144599999999, 38.388298], [-90.325839, 38.400963], [-90.31116999999999, 38.415679], [-90.29687, 38.424808], [-90.291084, 38.43089], [-90.284043, 38.451674], [-90.278531, 38.477682], [-90.273871, 38.489059], [-90.264056, 38.521025], [-90.194594, 38.466116]]]]}, "type": "Feature", "properties": {"geoid": "05000US17133", "name": "Monroe County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.18768299999999, 37.08033], [-89.184478, 37.078845], [-89.179637, 37.069089999999996], [-89.17664099999999, 37.068853], [-89.17433799999999, 37.070254], [-89.17208099999999, 37.06831], [-89.179811, 37.052364], [-89.18256799999999, 37.039001], [-89.180741, 37.02518], [-89.175383, 37.014137], [-89.17017299999999, 37.007067], [-89.160866, 36.999435999999996], [-89.143969, 36.987966], [-89.132915, 36.982057], [-89.141562, 36.978896999999996], [-89.14988199999999, 36.977636], [-89.170009, 36.970298], [-89.177235, 36.970884999999996], [-89.185491, 36.973518], [-89.19209699999999, 36.979994999999995], [-89.195039, 36.989768], [-89.19502899999999, 37.000051], [-89.20079299999999, 37.016163999999996], [-89.20505299999999, 37.020057], [-89.225482, 37.031076999999996], [-89.234053, 37.037276999999996], [-89.25493, 37.072013999999996], [-89.259935, 37.06407], [-89.280362, 37.065222], [-89.283473, 37.065809], [-89.28366799999999, 37.066733], [-89.307726, 37.069654], [-89.30829, 37.068371], [-89.310819, 37.057897], [-89.309401, 37.053768999999996], [-89.304752, 37.047565], [-89.291185, 37.040408], [-89.277715, 37.036139999999996], [-89.260003, 37.023288], [-89.25760799999999, 37.015496], [-89.263527, 37.00005], [-89.269564, 36.993401], [-89.278628, 36.98867], [-89.29213, 36.992188999999996], [-89.317168, 37.012767], [-89.322982, 37.01609], [-89.345996, 37.025521], [-89.362397, 37.030156], [-89.378277, 37.039605], [-89.38393699999999, 37.046441], [-89.38543399999999, 37.05513], [-89.375712, 37.080504999999995], [-89.375615, 37.085936], [-89.37871, 37.094586], [-89.38804999999999, 37.107481], [-89.41172999999999, 37.122507], [-89.42558, 37.138235], [-89.43520199999999, 37.15209], [-89.43827499999999, 37.161287], [-89.456105, 37.18812], [-89.461862, 37.199517], [-89.467631, 37.2182], [-89.466658, 37.223982], [-89.45830199999999, 37.240368], [-89.458827, 37.248661], [-89.46266, 37.25152], [-89.470525, 37.253357], [-89.489915, 37.251315], [-89.515362, 37.278909], [-89.51801999999999, 37.284189999999995], [-89.51839299999999, 37.289353999999996], [-89.51527999999999, 37.296929999999996], [-89.512833, 37.308478], [-89.509699, 37.31426], [-89.49727899999999, 37.322828], [-89.491194, 37.331361], [-89.48606, 37.334829], [-89.25008199999999, 37.335252], [-89.243803, 37.331669], [-89.222867, 37.332184], [-89.22171399999999, 37.33104], [-89.222218, 37.329460999999995], [-89.217129, 37.327137], [-89.21561799999999, 37.324463], [-89.20727099999999, 37.322201], [-89.20660699999999, 37.321197999999995], [-89.208873, 37.318909], [-89.205882, 37.317242], [-89.203356, 37.306757], [-89.20272299999999, 37.289376], [-89.210601, 37.280268], [-89.212987, 37.281012], [-89.220702, 37.27933], [-89.22190599999999, 37.277435], [-89.227238, 37.275537], [-89.22791199999999, 37.273329], [-89.237889, 37.270874], [-89.242283, 37.266521999999995], [-89.241619, 37.264931], [-89.24588399999999, 37.264004], [-89.24850099999999, 37.260086], [-89.247464, 37.258548999999995], [-89.250683, 37.25655], [-89.24828, 37.254494], [-89.249783, 37.252545], [-89.251706, 37.25232], [-89.248364, 37.251163999999996], [-89.249675, 37.248793], [-89.251543, 37.249658], [-89.250005, 37.247717], [-89.250367, 37.243317999999995], [-89.252009, 37.241693999999995], [-89.255039, 37.232136], [-89.256405, 37.231755], [-89.257809, 37.229023], [-89.25639, 37.2277], [-89.25966299999999, 37.228229999999996], [-89.261502, 37.227168999999996], [-89.261433, 37.228749], [-89.259548, 37.229852], [-89.261321, 37.231147], [-89.26378199999999, 37.226577], [-89.267811, 37.225999], [-89.265202, 37.223759], [-89.26615799999999, 37.222034], [-89.264591, 37.222608], [-89.261279, 37.220051], [-89.262323, 37.21844], [-89.262209, 37.213924], [-89.26457099999999, 37.212361], [-89.261071, 37.209748], [-89.26026399999999, 37.211222], [-89.259092, 37.210314], [-89.26129499999999, 37.208132], [-89.25957199999999, 37.207405], [-89.259947, 37.206241999999996], [-89.261986, 37.20416], [-89.263896, 37.203947], [-89.259272, 37.202335], [-89.262765, 37.201536], [-89.260235, 37.200069], [-89.260386, 37.197415], [-89.258952, 37.197506], [-89.258135, 37.195730999999995], [-89.257724, 37.198921999999996], [-89.255754, 37.196964], [-89.25232899999999, 37.196127], [-89.25333499999999, 37.193567], [-89.255905, 37.193041], [-89.251919, 37.190892], [-89.253118, 37.189671], [-89.252273, 37.188597], [-89.255923, 37.188113], [-89.258392, 37.185482], [-89.257911, 37.184203], [-89.261049, 37.183009999999996], [-89.26529, 37.18429], [-89.26731, 37.180524999999996], [-89.26464999999999, 37.178717999999996], [-89.265874, 37.175968999999995], [-89.263452, 37.175208999999995], [-89.26675, 37.171074], [-89.26473299999999, 37.170004999999996], [-89.262478, 37.170750999999996], [-89.261211, 37.167304], [-89.262897, 37.163708], [-89.266673, 37.16352], [-89.267296, 37.161398], [-89.269454, 37.160889999999995], [-89.268372, 37.158916999999995], [-89.261523, 37.158943], [-89.25878399999999, 37.159383999999996], [-89.256793, 37.161144], [-89.26003299999999, 37.152015], [-89.25788, 37.14527], [-89.258963, 37.143634999999996], [-89.26723, 37.139329], [-89.268562, 37.133275], [-89.273626, 37.12658], [-89.272739, 37.124216], [-89.2692, 37.122496999999996], [-89.26794799999999, 37.120401], [-89.269463, 37.118627], [-89.265318, 37.117368], [-89.265284, 37.116351], [-89.266992, 37.115716], [-89.26260599999999, 37.114562], [-89.26284299999999, 37.112587], [-89.265582, 37.113237999999996], [-89.265675, 37.110759], [-89.261153, 37.10807], [-89.26177899999999, 37.105742], [-89.258477, 37.102697], [-89.25658, 37.103885999999996], [-89.25371799999999, 37.103114], [-89.252994, 37.101725], [-89.253973, 37.099393], [-89.24882, 37.098765], [-89.24797199999999, 37.100142999999996], [-89.244137, 37.100738], [-89.242161, 37.094919999999995], [-89.24107, 37.094878], [-89.240673, 37.096983], [-89.237708, 37.094767999999995], [-89.239688, 37.092481], [-89.235626, 37.093036], [-89.234821, 37.090818], [-89.232083, 37.089901], [-89.225332, 37.091823999999995], [-89.213561, 37.089617], [-89.20279699999999, 37.085723], [-89.201416, 37.08848], [-89.196686, 37.089098], [-89.195145, 37.087723], [-89.19721, 37.085808], [-89.193091, 37.084756], [-89.18768299999999, 37.08033]]]]}, "type": "Feature", "properties": {"geoid": "05000US17003", "name": "Alexander County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.263072, 41.809309], [-88.26241, 41.899234], [-88.26287599999999, 41.986227], [-88.167981, 41.987457], [-88.031449, 41.992526999999995], [-87.92067, 41.994031], [-87.919995, 41.956185999999995], [-87.92056, 41.952355999999995], [-87.920459, 41.873114], [-87.914265, 41.716746], [-87.92132099999999, 41.716293], [-87.924827, 41.712993999999995], [-87.927262, 41.71253], [-87.930286, 41.710063999999996], [-87.933887, 41.708639999999995], [-87.937158, 41.705131], [-87.942257, 41.703032], [-87.94246199999999, 41.69918], [-87.94527699999999, 41.697144], [-87.955558, 41.693630999999996], [-87.966758, 41.68683], [-87.972563, 41.687429], [-87.974659, 41.686530999999995], [-87.978956, 41.687432], [-87.987129, 41.685932], [-88.02915999999999, 41.68553], [-88.03056099999999, 41.72893], [-88.137053, 41.726130999999995], [-88.261952, 41.724652], [-88.263072, 41.809309]]]]}, "type": "Feature", "properties": {"geoid": "05000US17043", "name": "DuPage County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.707213, 37.753854], [-88.706622, 37.906797], [-88.596177, 37.907278], [-88.534297, 37.906428], [-88.37453, 37.907678], [-88.37378199999999, 37.729762], [-88.37399099999999, 37.661665], [-88.375332, 37.599562999999996], [-88.455291, 37.600214], [-88.581019, 37.599118], [-88.708546, 37.599277], [-88.706741, 37.740601999999996], [-88.707213, 37.753854]]]]}, "type": "Feature", "properties": {"geoid": "05000US17165", "name": "Saline County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-90.146299, 39.174289], [-90.15375, 39.520315], [-89.701645, 39.523368999999995], [-89.699094, 39.348048999999996], [-89.70369199999999, 39.34803], [-89.700051, 39.168554], [-89.698555, 38.998979], [-90.073838, 38.998459], [-90.145991, 39.000046], [-90.146299, 39.174289]]]]}, "type": "Feature", "properties": {"geoid": "05000US17117", "name": "Macoupin County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.86129799999999, 41.930884999999996], [-89.628907, 41.930043999999995], [-89.632379, 41.671561], [-89.63149399999999, 41.584948999999995], [-89.97998899999999, 41.583625999999995], [-90.185609, 41.584652999999996], [-90.186149, 41.587725999999996], [-90.183675, 41.59019], [-90.17042699999999, 41.591761], [-90.166704, 41.593502], [-90.165129, 41.595743999999996], [-90.166116, 41.609801999999995], [-90.160687, 41.617866], [-90.162061, 41.621562], [-90.15987799999999, 41.630494999999996], [-90.162465, 41.635526], [-90.173243, 41.637401], [-90.173913, 41.640069], [-90.163814, 41.639216999999995], [-90.161233, 41.643927], [-90.16477599999999, 41.647689], [-90.170288, 41.648696], [-90.171705, 41.652991], [-90.17370000000001, 41.654959999999996], [-90.18165599999999, 41.657882], [-90.189532, 41.663374], [-90.228172, 41.674642999999996], [-90.236182, 41.679496], [-90.234928, 41.681377], [-90.22686, 41.683484], [-90.22679, 41.692521], [-90.23205, 41.691862], [-90.23115899999999, 41.69576], [-90.23663499999999, 41.696312999999996], [-90.237155, 41.699566], [-90.244028, 41.701732], [-90.245713, 41.703537], [-90.23983899999999, 41.706688], [-90.240607, 41.709900000000005], [-90.238164, 41.711175999999995], [-90.23935, 41.714005], [-90.234697, 41.720464], [-90.234083, 41.725010999999995], [-90.23866699999999, 41.727264999999996], [-90.23470499999999, 41.736111], [-90.236509, 41.740747], [-90.23942699999999, 41.742484999999995], [-90.24426799999999, 41.740383], [-90.24316999999999, 41.744321], [-90.247917, 41.746877], [-90.246714, 41.75476], [-90.242752, 41.759958999999995], [-90.238084, 41.761064999999995], [-90.236773, 41.762598], [-90.240122, 41.764963], [-90.242122, 41.764814], [-90.24306299999999, 41.762547], [-90.24717, 41.762609], [-90.24725, 41.764948], [-90.244642, 41.767398], [-90.244992, 41.771721], [-90.242015, 41.77688], [-90.24238, 41.782964], [-90.216889, 41.795335], [-90.187969, 41.803163], [-90.181973, 41.807069999999996], [-90.18064299999999, 41.811979], [-90.183765, 41.83624], [-90.181401, 41.844646999999995], [-90.173009, 41.857392999999995], [-90.173237, 41.86461], [-90.170041, 41.876439], [-90.15701899999999, 41.898019], [-90.153584, 41.906614], [-90.15198, 41.928917], [-89.976404, 41.931218], [-89.86129799999999, 41.930884999999996]]]]}, "type": "Feature", "properties": {"geoid": "05000US17195", "name": "Whiteside County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.60298499999999, 40.320001], [-89.26374, 40.325344], [-89.26265, 40.280919], [-89.148772, 40.28252], [-89.145586, 40.114875999999995], [-89.143457, 39.917919999999995], [-89.2549, 39.916917], [-89.404984, 39.918186999999996], [-89.404969, 39.932733], [-89.483419, 39.93314], [-89.483826, 39.976732999999996], [-89.578289, 39.976127], [-89.579127, 40.092324], [-89.60112, 40.092265], [-89.603855, 40.218371999999995], [-89.60119499999999, 40.218413], [-89.60298499999999, 40.320001]]]]}, "type": "Feature", "properties": {"geoid": "05000US17107", "name": "Logan County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.810574, 38.475773], [-88.698961, 38.474914], [-88.700048, 38.342307], [-88.703294, 38.222877], [-88.704606, 38.125195], [-88.851704, 38.126616999999996], [-89.105801, 38.124286], [-89.149739, 38.124945], [-89.145609, 38.326138], [-89.14438799999999, 38.473878], [-89.033155, 38.473963], [-88.922428, 38.476969], [-88.810574, 38.475773]]]]}, "type": "Feature", "properties": {"geoid": "05000US17081", "name": "Jefferson County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-87.912357, 38.570395], [-87.910258, 38.575074], [-87.909847, 38.589994999999995], [-87.908113, 38.850107], [-87.786568, 38.850046], [-87.78701099999999, 38.848856999999995], [-87.684141, 38.852179], [-87.575808, 38.851698999999996], [-87.575801, 38.85239], [-87.531145, 38.852506999999996], [-87.526729, 38.850362], [-87.525893, 38.848794999999996], [-87.52669499999999, 38.838578], [-87.522212, 38.830483], [-87.521681, 38.826575999999996], [-87.523636, 38.822596999999995], [-87.52646299999999, 38.820538], [-87.52734199999999, 38.818121], [-87.51921999999999, 38.810477999999996], [-87.51491899999999, 38.803712999999995], [-87.508211, 38.795716], [-87.50112299999999, 38.79138], [-87.495509, 38.784625999999996], [-87.495739, 38.780302999999996], [-87.498587, 38.77648], [-87.504301, 38.773846], [-87.513137, 38.773196], [-87.514861, 38.770503], [-87.513652, 38.768474999999995], [-87.51033, 38.767181], [-87.504953, 38.76886], [-87.50049399999999, 38.769176], [-87.496906, 38.766818], [-87.498948, 38.757774], [-87.501814, 38.754197], [-87.504046, 38.748507], [-87.50159, 38.745725], [-87.496494, 38.742728], [-87.49579899999999, 38.740699], [-87.497526, 38.738532], [-87.504059, 38.735822999999996], [-87.50617199999999, 38.733725], [-87.508515, 38.725767999999995], [-87.516707, 38.716332], [-87.519519, 38.710454999999996], [-87.518946, 38.705149], [-87.51961, 38.697198], [-87.52203899999999, 38.693349999999995], [-87.53123099999999, 38.684036], [-87.54005099999999, 38.679142999999996], [-87.545538, 38.677613], [-87.579397, 38.672475], [-87.593678, 38.667401999999996], [-87.60018, 38.662462], [-87.602863, 38.656363], [-87.60294999999999, 38.651236], [-87.605817, 38.646518], [-87.607896, 38.644984], [-87.61731499999999, 38.642157], [-87.619197, 38.64075], [-87.62098, 38.637654999999995], [-87.6209, 38.636128], [-87.61981899999999, 38.632737], [-87.615943, 38.627952], [-87.615585, 38.625046999999995], [-87.617043, 38.622195], [-87.62237499999999, 38.618873], [-87.622759, 38.617084], [-87.620532, 38.612165], [-87.62550999999999, 38.609441], [-87.627218, 38.607549999999996], [-87.627423, 38.605972], [-87.625406, 38.599188], [-87.623441, 38.596241], [-87.61944299999999, 38.594823999999996], [-87.613461, 38.595042], [-87.61135, 38.593610999999996], [-87.610907, 38.591405], [-87.61313799999999, 38.588277], [-87.622897, 38.586197999999996], [-87.627383, 38.587644], [-87.634057, 38.592372], [-87.637627, 38.592653999999996], [-87.639433, 38.591255], [-87.640258, 38.589199], [-87.639775, 38.581998], [-87.638097, 38.578344], [-87.638911, 38.574875999999996], [-87.642308, 38.572505], [-87.649682, 38.570523], [-87.651529, 38.568166], [-87.912357, 38.570395]]]]}, "type": "Feature", "properties": {"geoid": "05000US17101", "name": "Lawrence County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.985457, 40.832127], [-89.985479, 40.974495], [-89.83346399999999, 40.974985], [-89.447693, 40.973245999999996], [-89.449269, 40.968278], [-89.448126, 40.959179], [-89.455063, 40.946470999999995], [-89.453994, 40.939538], [-89.455306, 40.935507], [-89.458861, 40.932978], [-89.46437499999999, 40.926041999999995], [-89.472959, 40.921203], [-89.475225, 40.912741], [-89.47963, 40.909347], [-89.483496, 40.903183999999996], [-89.488469, 40.899299], [-89.49957099999999, 40.875036], [-89.524973, 40.849236], [-89.525213, 40.842403999999995], [-89.528285, 40.835620999999996], [-89.544958, 40.814980999999996], [-89.55427, 40.808869], [-89.562394, 40.793637], [-89.56389399999999, 40.784037], [-89.555694, 40.764737], [-89.556094, 40.749437], [-89.55059399999999, 40.738737], [-89.546488, 40.720205], [-89.555295, 40.702737], [-89.59230000000001, 40.684936], [-89.615399, 40.664437], [-89.616035, 40.657571], [-89.610339, 40.65199], [-89.611459, 40.647909999999996], [-89.622148, 40.634896999999995], [-89.63640099999999, 40.623238], [-89.658502, 40.601558], [-89.66006999999999, 40.596454], [-89.65879, 40.589174], [-89.65400199999999, 40.578238], [-89.655602, 40.570437999999996], [-89.658003, 40.567437999999996], [-89.675404, 40.553937999999995], [-89.679464, 40.552582], [-89.683656, 40.553045999999995], [-89.691848, 40.560517999999995], [-89.699, 40.561606], [-89.70781699999999, 40.557238], [-89.718329, 40.55599], [-89.724041, 40.553861999999995], [-89.741322, 40.550806], [-89.774495, 40.552911], [-89.81245899999999, 40.541104], [-89.872463, 40.513127], [-89.872018, 40.580559], [-89.87422, 40.580648], [-89.874444, 40.581587], [-89.87350599999999, 40.624587999999996], [-89.989018, 40.625834999999995], [-89.98585399999999, 40.719671], [-89.985457, 40.832127]]]]}, "type": "Feature", "properties": {"geoid": "05000US17143", "name": "Peoria County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.460708, 40.224804], [-88.459957, 40.398849999999996], [-88.329228, 40.398585], [-88.116616, 40.400611999999995], [-87.932858, 40.399401], [-87.92876, 40.225618999999995], [-87.942103, 40.225482], [-87.93764499999999, 39.879802999999995], [-88.46220699999999, 39.879092], [-88.46365999999999, 40.223352], [-88.46072, 40.223321999999996], [-88.460708, 40.224804]]]]}, "type": "Feature", "properties": {"geoid": "05000US17019", "name": "Champaign County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-87.766115, 39.881040999999996], [-87.61518199999999, 39.88163], [-87.617424, 39.868489], [-87.557513, 39.868719], [-87.581553, 39.88229], [-87.533228, 39.883], [-87.53164, 39.477105], [-87.689166, 39.476758], [-87.687437, 39.487339999999996], [-87.68897199999999, 39.487392], [-87.778601, 39.485969], [-87.903859, 39.481854], [-87.960179, 39.481308999999996], [-87.965046, 39.612700000000004], [-87.968777, 39.79235], [-87.937029, 39.792370999999996], [-87.93764499999999, 39.879802999999995], [-87.766115, 39.881040999999996]]]]}, "type": "Feature", "properties": {"geoid": "05000US17045", "name": "Edgar County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.251376, 39.348707], [-89.530836, 39.348864], [-89.535028, 39.641138], [-89.478473, 39.640842], [-89.478923, 39.683963999999996], [-89.425051, 39.683696], [-89.42517099999999, 39.762021999999995], [-89.420217, 39.76137], [-89.41784299999999, 39.759205], [-89.417191, 39.757576], [-89.41976199999999, 39.755324], [-89.418527, 39.754191999999996], [-89.419493, 39.751939], [-89.410203, 39.744031], [-89.397334, 39.742090999999995], [-89.393551, 39.743324], [-89.385874, 39.749975], [-89.386347, 39.751796999999996], [-89.384868, 39.753567], [-89.382975, 39.754377], [-89.380242, 39.753538999999996], [-89.37391799999999, 39.758646], [-89.370986, 39.754971], [-89.36712299999999, 39.757325], [-89.362605, 39.755798999999996], [-89.358775, 39.762184999999995], [-89.360034, 39.767517], [-89.358113, 39.770641999999995], [-89.354136, 39.772093], [-89.352667, 39.769616], [-89.350023, 39.769639], [-89.344528, 39.766906], [-89.3285, 39.763602999999996], [-89.327096, 39.764514], [-89.32777899999999, 39.765974], [-89.325023, 39.767025], [-89.328604, 39.767571], [-89.328762, 39.769337], [-89.32234199999999, 39.771859], [-89.312581, 39.771300000000004], [-89.303122, 39.775813], [-89.300444, 39.778414], [-89.301435, 39.779767], [-89.29980499999999, 39.78254], [-89.298289, 39.783299], [-89.29971499999999, 39.78454], [-89.29736, 39.789066999999996], [-89.291906, 39.789778999999996], [-89.29245399999999, 39.79255], [-89.288217, 39.792046], [-89.28339299999999, 39.793853], [-89.28267699999999, 39.79461], [-89.283678, 39.79576], [-89.281774, 39.796607], [-89.28134899999999, 39.798899], [-89.27432499999999, 39.800053999999996], [-89.27209099999999, 39.801125], [-89.270808, 39.803602], [-89.265373, 39.806422], [-89.26458799999999, 39.804278], [-89.260966, 39.805093], [-89.259973, 39.808001999999995], [-89.25717499999999, 39.809808], [-89.256717, 39.813117999999996], [-89.25316699999999, 39.818194], [-89.25191199999999, 39.822556], [-89.24924, 39.825317], [-89.246532, 39.826085], [-89.24283799999999, 39.823153], [-89.24031, 39.823327], [-89.23979, 39.821321999999995], [-89.23633699999999, 39.822157], [-89.237157, 39.81968], [-89.23540899999999, 39.818695999999996], [-89.236356, 39.8177], [-89.231535, 39.816306], [-89.234242, 39.815148], [-89.23394599999999, 39.812852], [-89.228248, 39.813204999999996], [-89.22525999999999, 39.814952999999996], [-89.210517, 39.810916], [-89.20824499999999, 39.812526], [-89.20818, 39.815019], [-89.196821, 39.815165], [-89.18820000000001, 39.817848999999995], [-89.157625, 39.803532], [-89.14181699999999, 39.800909999999995], [-89.13912499999999, 39.655131], [-89.025691, 39.654637], [-89.02398699999999, 39.52319], [-89.02640799999999, 39.435172], [-89.02490399999999, 39.434771], [-89.025381, 39.345895999999996], [-89.139934, 39.348895], [-89.251376, 39.348707]]]]}, "type": "Feature", "properties": {"geoid": "05000US17021", "name": "Christian County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-90.442774, 40.801566], [-90.437657, 41.151252], [-90.208888, 41.152156], [-90.115702, 41.150138], [-89.98455899999999, 41.149366], [-89.98606799999999, 40.712257], [-90.44434299999999, 40.714667], [-90.442774, 40.801566]]]]}, "type": "Feature", "properties": {"geoid": "05000US17095", "name": "Knox County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.70737799999999, 42.493597], [-88.628997, 42.495045], [-88.199535, 42.495132], [-88.198263, 42.258255], [-88.199584, 42.15426], [-88.70563299999999, 42.153560999999996], [-88.705748, 42.39631], [-88.70737799999999, 42.493597]]]]}, "type": "Feature", "properties": {"geoid": "05000US17111", "name": "McHenry County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.149841, 38.293994999999995], [-88.14760199999999, 38.467647], [-88.148169, 38.467647], [-88.147814, 38.569086], [-88.02396999999999, 38.570552], [-87.953898, 38.570094], [-87.953103, 38.56861], [-87.957284, 38.567051], [-87.956553, 38.564091], [-87.957835, 38.56382], [-87.95822, 38.562055], [-87.955531, 38.558985], [-87.953884, 38.558741], [-87.954379, 38.556956], [-87.952426, 38.556909999999995], [-87.95388299999999, 38.555856999999996], [-87.952514, 38.554781], [-87.954408, 38.553294], [-87.952805, 38.552837], [-87.952834, 38.551212], [-87.951638, 38.549403999999996], [-87.95210399999999, 38.548442], [-87.95053, 38.547183], [-87.95262799999999, 38.543704], [-87.951405, 38.542445], [-87.946799, 38.541095], [-87.946041, 38.541759], [-87.943564, 38.541416], [-87.943826, 38.539882], [-87.944876, 38.539607], [-87.94129199999999, 38.538622], [-87.942313, 38.53734], [-87.941526, 38.536195], [-87.939312, 38.536355], [-87.939399, 38.535095999999996], [-87.94155599999999, 38.534019], [-87.93843799999999, 38.533536999999995], [-87.93875799999999, 38.531957999999996], [-87.93709799999999, 38.52818], [-87.938993, 38.527241], [-87.94184899999999, 38.528248], [-87.947034, 38.521747], [-87.94948099999999, 38.522137], [-87.94918899999999, 38.520283], [-87.951725, 38.520627], [-87.95300499999999, 38.519619], [-87.953063, 38.517949], [-87.95452, 38.516507], [-87.953558, 38.515569], [-87.955044, 38.514723], [-87.953966, 38.514288], [-87.95206999999999, 38.515409999999996], [-87.95172, 38.514495], [-87.94941899999999, 38.515068], [-87.948165, 38.514244], [-87.953175, 38.511247], [-87.952213, 38.508752], [-87.950814, 38.508638], [-87.95235799999999, 38.507630999999996], [-87.949562, 38.507402], [-87.950144, 38.506578], [-87.949561, 38.506418], [-87.94865899999999, 38.508592], [-87.947581, 38.505891], [-87.95171599999999, 38.5039], [-87.953814, 38.503945], [-87.954133, 38.501908], [-87.952997, 38.500764], [-87.955387, 38.500496], [-87.954717, 38.497878], [-87.95681499999999, 38.4971], [-87.954949, 38.493528999999995], [-87.953318, 38.49314], [-87.955822, 38.491561], [-87.955676, 38.489661], [-87.953346, 38.488127999999996], [-87.9509, 38.488586], [-87.950783, 38.487418], [-87.952326, 38.486090999999995], [-87.95191799999999, 38.485358], [-87.949006, 38.486274], [-87.949618, 38.485061], [-87.95346099999999, 38.483824], [-87.95360699999999, 38.482679999999995], [-87.951568, 38.480803], [-87.953198, 38.480253999999995], [-87.952558, 38.479498], [-87.94810199999999, 38.479087], [-87.94888999999999, 38.477914], [-87.947475, 38.476306], [-87.94847899999999, 38.475916], [-87.950203, 38.476853999999996], [-87.95052299999999, 38.476319], [-87.948516, 38.474914999999996], [-87.94878299999999, 38.473512], [-87.9479, 38.472592], [-87.948567, 38.471396], [-87.945015, 38.472564], [-87.945073, 38.470481], [-87.947169, 38.469634], [-87.947547, 38.468351999999996], [-87.94408299999999, 38.46739], [-87.948275, 38.464574], [-87.948216, 38.463521], [-87.945392, 38.463933], [-87.94382, 38.461324], [-87.941812, 38.46224], [-87.94283, 38.460018999999996], [-87.947313, 38.458531], [-87.944722, 38.456174], [-87.94329599999999, 38.456883], [-87.943383, 38.456196999999996], [-87.948477, 38.45393], [-87.948506, 38.453312], [-87.94609, 38.453175], [-87.94568199999999, 38.452283], [-87.944606, 38.452534], [-87.944023, 38.450406], [-87.942888, 38.449629], [-87.94457799999999, 38.448736], [-87.946758, 38.449124], [-87.945566, 38.447133], [-87.94382, 38.447041], [-87.944604, 38.445805], [-87.94757299999999, 38.446171], [-87.948979, 38.445555], [-87.947276, 38.444174], [-87.94479799999999, 38.444609], [-87.94452799999999, 38.442955], [-87.946938, 38.441100999999996], [-87.949023, 38.442098], [-87.948561, 38.439235], [-87.947559, 38.438261], [-87.95091599999999, 38.436752], [-87.951325, 38.433856], [-87.95263399999999, 38.432047], [-87.95193499999999, 38.430033], [-87.94751199999999, 38.429438], [-87.951003, 38.425913], [-87.952748, 38.425523], [-87.95429, 38.426369], [-87.95559899999999, 38.425247999999996], [-87.954259, 38.42369], [-87.95190199999999, 38.423964], [-87.950796, 38.423277999999996], [-87.952016, 38.418423], [-87.95382, 38.417667], [-87.955246, 38.419865], [-87.958128, 38.42076], [-87.959786, 38.420072999999995], [-87.96100799999999, 38.417164], [-87.963887, 38.4149], [-87.965924, 38.411237], [-87.97022799999999, 38.410641], [-87.97095399999999, 38.407574], [-87.969848, 38.404416], [-87.970428, 38.402218], [-87.975053, 38.401483999999996], [-87.976012, 38.400614], [-87.975517, 38.398806], [-87.972112, 38.395008], [-87.96958099999999, 38.394573], [-87.965859, 38.39533], [-87.964956, 38.391072], [-87.968474, 38.389354999999995], [-87.973069, 38.389353], [-87.976759, 38.384271], [-87.977221, 38.377839], [-87.97594199999999, 38.373354], [-87.973672, 38.370539], [-87.973379, 38.365458], [-87.969656, 38.361933], [-87.968347, 38.359186], [-87.967298, 38.353556], [-87.958169, 38.348133], [-87.95810999999999, 38.344448], [-87.95444499999999, 38.339732999999995], [-87.95412499999999, 38.336208], [-87.957089, 38.332522], [-87.955547, 38.325472], [-87.958218, 38.319452], [-87.95638699999999, 38.317277], [-87.954934, 38.316866], [-87.949995, 38.31872], [-87.95080899999999, 38.320001999999995], [-87.950228, 38.320231], [-87.94903599999999, 38.318400000000004], [-87.947409, 38.319362], [-87.946828, 38.317782], [-87.94708899999999, 38.316958], [-87.949094, 38.316888999999996], [-87.946101, 38.315287], [-87.94676899999999, 38.313296], [-87.948512, 38.312861], [-87.946246, 38.310663999999996], [-87.94659399999999, 38.308672], [-87.949528, 38.307001], [-87.954787, 38.308212999999995], [-87.95725499999999, 38.305648999999995], [-87.952955, 38.303039999999996], [-87.95495799999999, 38.300568], [-87.957259, 38.299672], [-87.95397, 38.296745], [-87.953824, 38.294365], [-87.951994, 38.292946], [-87.951325, 38.290290999999996], [-87.95338799999999, 38.29116], [-87.95483999999999, 38.290701999999996], [-87.95591399999999, 38.291869999999996], [-87.958325, 38.290358], [-87.96099799999999, 38.290999], [-87.961607, 38.288641], [-87.966223, 38.286235999999995], [-87.968516, 38.282848], [-87.97072399999999, 38.284839], [-87.97452799999999, 38.283944999999996], [-87.97531, 38.281427], [-87.977837, 38.282455999999996], [-87.976413, 38.280442], [-87.97679, 38.278817], [-87.975657, 38.277879], [-87.97766, 38.277488999999996], [-87.97794999999999, 38.276733], [-87.9731, 38.2744], [-87.975974, 38.273185999999995], [-87.978442, 38.273894999999996], [-87.97951499999999, 38.270965], [-87.981228, 38.271055], [-87.98096799999999, 38.272726999999996], [-87.984482, 38.274328], [-87.98845899999999, 38.273731], [-87.990287, 38.271166], [-87.988979, 38.269014999999996], [-87.990343, 38.268625], [-87.99167899999999, 38.269815], [-87.991153, 38.265352], [-87.99219599999999, 38.262077999999995], [-87.9906, 38.259715], [-88.02767999999999, 38.259771], [-88.027749, 38.255660999999996], [-88.15090000000001, 38.256097], [-88.149841, 38.293994999999995]]]]}, "type": "Feature", "properties": {"geoid": "05000US17047", "name": "Edwards County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-91.096946, 40.811403], [-91.09299299999999, 40.821079], [-91.09007199999999, 40.824638], [-91.06715899999999, 40.841997], [-91.05642999999999, 40.848386999999995], [-91.044653, 40.868356], [-91.039097, 40.873565], [-91.027489, 40.879173], [-91.021562, 40.884021], [-91.01324, 40.896622], [-91.009536, 40.900565], [-90.9985, 40.90812], [-90.985462, 40.912141], [-90.97919, 40.915521999999996], [-90.96899499999999, 40.919126999999996], [-90.965344, 40.921633], [-90.96291599999999, 40.924957], [-90.96046199999999, 40.936355999999996], [-90.95223299999999, 40.954046999999996], [-90.952715, 40.962087], [-90.958089, 40.976642999999996], [-90.958142, 40.979766999999995], [-90.955201, 40.986805], [-90.94963399999999, 40.995248], [-90.945949, 41.006495], [-90.945054, 41.011917], [-90.945324, 41.019279], [-90.942253, 41.034701999999996], [-90.94395, 41.045154], [-90.943652, 41.048637], [-90.945999, 41.056335999999995], [-90.945549, 41.06173], [-90.948989, 41.07025], [-90.78519399999999, 41.068749], [-90.786363, 41.018972999999995], [-90.78965199999999, 40.63575], [-90.904388, 40.639202], [-90.915013, 40.637687], [-90.961517, 40.637256], [-91.02262999999999, 40.634946], [-91.185295, 40.637803], [-91.138055, 40.660893], [-91.12392799999999, 40.669152], [-91.12082, 40.672776999999996], [-91.11540699999999, 40.691825], [-91.11193999999999, 40.697018], [-91.11092699999999, 40.703261999999995], [-91.11109499999999, 40.708282], [-91.115735, 40.725168], [-91.110424, 40.745528], [-91.10820000000001, 40.750935], [-91.09810499999999, 40.763233], [-91.091703, 40.779708], [-91.091664, 40.790265], [-91.097031, 40.802471], [-91.09764899999999, 40.805575], [-91.096946, 40.811403]]]]}, "type": "Feature", "properties": {"geoid": "05000US17071", "name": "Henderson County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.60097499999999, 37.735594999999996], [-89.608757, 37.739684], [-89.6135, 37.740746], [-89.61591399999999, 37.743124], [-89.615933, 37.748183999999995], [-89.617278, 37.749719999999996], [-89.62633199999999, 37.749046], [-89.63337, 37.745782], [-89.64953, 37.745495999999996], [-89.660061, 37.748239999999996], [-89.664873, 37.751199], [-89.667993, 37.759484], [-89.66118999999999, 37.775732], [-89.66037999999999, 37.786296], [-89.66964399999999, 37.799921999999995], [-89.674292, 37.80314], [-89.680919, 37.822303], [-89.67201299999999, 37.825434], [-89.66827599999999, 37.829519999999995], [-89.66542299999999, 37.828241999999996], [-89.664475, 37.829029], [-89.66449, 37.831029], [-89.66317599999999, 37.831446], [-89.664298, 37.831682], [-89.664295, 37.833178], [-89.66169599999999, 37.835164999999996], [-89.66225, 37.837613], [-89.660406, 37.838159], [-89.661002, 37.839867], [-89.65947299999999, 37.840658], [-89.65938799999999, 37.843021], [-89.658374, 37.843593999999996], [-89.65934899999999, 37.844473], [-89.657157, 37.847045], [-89.658119, 37.847573], [-89.657163, 37.851307], [-89.658417, 37.853018], [-89.656492, 37.858594], [-89.595084, 37.95531], [-89.300513, 37.950784], [-89.15083399999999, 37.950196], [-89.153668, 37.600469], [-89.250084, 37.59844], [-89.453355, 37.600195], [-89.44789899999999, 37.597984], [-89.44941999999999, 37.591466], [-89.454758, 37.587368999999995], [-89.45324099999999, 37.579194], [-89.457978, 37.574681], [-89.462493, 37.566631], [-89.467731, 37.563165999999995], [-89.474243, 37.562090999999995], [-89.48268999999999, 37.567369], [-89.48758199999999, 37.567102999999996], [-89.493355, 37.569727], [-89.50213, 37.570554], [-89.50322299999999, 37.572446], [-89.500647, 37.576681], [-89.50325, 37.578156], [-89.510694, 37.578559999999996], [-89.51807, 37.572935], [-89.521564, 37.572156], [-89.520804, 37.581154], [-89.518007, 37.583960999999995], [-89.51193599999999, 37.584564], [-89.494051, 37.580116], [-89.48906, 37.580318], [-89.48433999999999, 37.581415], [-89.47911099999999, 37.584388], [-89.47603, 37.590226], [-89.476514, 37.595554], [-89.478399, 37.598869], [-89.487793, 37.609167], [-89.506563, 37.62505], [-89.510526, 37.631754], [-89.515649, 37.636444999999995], [-89.517718, 37.641217], [-89.51585999999999, 37.645555], [-89.51682699999999, 37.656089], [-89.51614599999999, 37.667975], [-89.51204, 37.680985], [-89.51200899999999, 37.685525], [-89.516685, 37.692761999999995], [-89.52573, 37.698440999999995], [-89.566704, 37.707189], [-89.583316, 37.713260999999996], [-89.591065, 37.72312], [-89.595238, 37.731169], [-89.60097499999999, 37.735594999999996]]]]}, "type": "Feature", "properties": {"geoid": "05000US17077", "name": "Jackson County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-90.447745, 40.457111999999995], [-90.44434299999999, 40.714667], [-89.98606799999999, 40.712257], [-89.989018, 40.625834999999995], [-89.87350599999999, 40.624587999999996], [-89.874444, 40.581587], [-89.872018, 40.580559], [-89.872463, 40.513127], [-89.882194, 40.505402], [-89.88435799999999, 40.500039], [-89.88793, 40.474655999999996], [-89.89686999999999, 40.467161], [-89.898815, 40.462574], [-89.903269, 40.459205], [-89.906449, 40.447759], [-89.916814, 40.438716], [-89.939375, 40.430152], [-89.955176, 40.420184], [-89.975352, 40.404472999999996], [-89.983758, 40.392635999999996], [-89.994911, 40.390668999999995], [-90.00644199999999, 40.385213], [-90.021776, 40.379993999999996], [-90.03302599999999, 40.377806], [-90.03795, 40.375040999999996], [-90.04479099999999, 40.36743], [-90.051649, 40.352177], [-90.052796, 40.347476], [-90.049853, 40.337406], [-90.053106, 40.327925], [-90.065122, 40.319193999999996], [-90.06871, 40.313888], [-90.06873999999999, 40.2961], [-90.094072, 40.268895], [-90.107293, 40.2609], [-90.120734, 40.233000000000004], [-90.127482, 40.22697], [-90.13600000000001, 40.223197], [-90.157961, 40.219654999999996], [-90.168589, 40.21345], [-90.171078, 40.211003999999996], [-90.176293, 40.199920999999996], [-90.183633, 40.194496], [-90.193528, 40.192074999999996], [-90.199556, 40.183945], [-90.335663, 40.187723], [-90.45150199999999, 40.188891999999996], [-90.447745, 40.457111999999995]]]]}, "type": "Feature", "properties": {"geoid": "05000US17057", "name": "Fulton County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.699258, 39.069851], [-89.70369199999999, 39.34803], [-89.699094, 39.348048999999996], [-89.701645, 39.523368999999995], [-89.533655, 39.524592], [-89.530836, 39.348864], [-89.13980699999999, 39.348887999999995], [-89.140076, 39.217907], [-89.250513, 39.217512], [-89.250447, 39.028144999999995], [-89.58608799999999, 39.028245999999996], [-89.586148, 38.999449], [-89.698555, 38.998979], [-89.699258, 39.069851]]]]}, "type": "Feature", "properties": {"geoid": "05000US17135", "name": "Montgomery County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.921087, 39.652682], [-89.025691, 39.654637], [-89.13912499999999, 39.655131], [-89.14181699999999, 39.800909999999995], [-89.157625, 39.803532], [-89.18796999999999, 39.817814999999996], [-89.196821, 39.815165], [-89.20818, 39.815019], [-89.20824499999999, 39.812526], [-89.210517, 39.810916], [-89.217523, 39.813224], [-89.217846, 39.91699], [-89.143457, 39.917919999999995], [-89.144764, 40.048853], [-89.028993, 40.049839999999996], [-88.803035, 40.055341], [-88.745164, 40.055191], [-88.745671, 39.792145999999995], [-88.75865999999999, 39.792066999999996], [-88.75784, 39.739906999999995], [-88.812709, 39.740486], [-88.810575, 39.653222], [-88.921087, 39.652682]]]]}, "type": "Feature", "properties": {"geoid": "05000US17115", "name": "Macon County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.139797, 38.043746], [-89.138134, 38.044323], [-89.139134, 38.046355], [-89.138474, 38.047263], [-89.13494299999999, 38.044815], [-89.133262, 38.04728], [-89.130701, 38.047334], [-89.13085, 38.048367999999996], [-89.13412699999999, 38.048806], [-89.132999, 38.050478], [-89.132635, 38.054604], [-89.131106, 38.054943], [-89.13154999999999, 38.052175999999996], [-89.126924, 38.053011], [-89.127388, 38.055369999999996], [-89.12508, 38.054871], [-89.122675, 38.056458], [-89.12331499999999, 38.058889], [-89.121932, 38.059225], [-89.12118099999999, 38.057626], [-89.11839599999999, 38.059422], [-89.11848499999999, 38.060255999999995], [-89.119654, 38.0593], [-89.121729, 38.0601], [-89.121928, 38.061316999999995], [-89.120824, 38.062064], [-89.11896999999999, 38.061437999999995], [-89.117138, 38.063264], [-89.118617, 38.065011], [-89.119373, 38.064721], [-89.118488, 38.062835], [-89.12355699999999, 38.063677], [-89.12352, 38.064879999999995], [-89.121714, 38.064938], [-89.118875, 38.067040999999996], [-89.122507, 38.068912], [-89.122903, 38.070783], [-89.119552, 38.069472], [-89.118404, 38.070011], [-89.12032599999999, 38.071321999999995], [-89.118725, 38.072497], [-89.120809, 38.073356], [-89.119025, 38.074318], [-89.120086, 38.075677999999996], [-89.119404, 38.07731], [-89.12234, 38.080121], [-89.12272, 38.082294], [-89.12205499999999, 38.083261], [-89.119439, 38.081831], [-89.120819, 38.084945999999995], [-89.117226, 38.084613], [-89.11546899999999, 38.085679], [-89.11768, 38.087232], [-89.116931, 38.089006999999995], [-89.119232, 38.090291], [-89.115371, 38.094097999999995], [-89.11793, 38.096309999999995], [-89.12129399999999, 38.096450999999995], [-89.124416, 38.098487], [-89.12666999999999, 38.098146], [-89.12866199999999, 38.100888999999995], [-89.13502299999999, 38.101789], [-89.137616, 38.104847], [-89.13389699999999, 38.105821999999996], [-89.13241, 38.103408], [-89.131289, 38.103581999999996], [-89.131109, 38.105643], [-89.132072, 38.106539999999995], [-89.129194, 38.109423], [-89.129837, 38.112044999999995], [-89.13183599999999, 38.112897], [-89.130434, 38.113465], [-89.12925299999999, 38.116811999999996], [-89.130648, 38.115963], [-89.132138, 38.118666999999995], [-89.129228, 38.122772999999995], [-89.129637, 38.124747], [-88.851704, 38.126616999999996], [-88.704606, 38.125195], [-88.706385, 38.00308], [-88.70676, 37.863338], [-89.15117599999999, 37.861999], [-89.15083399999999, 37.950196], [-89.17759699999999, 37.950311], [-89.178343, 37.95225], [-89.175613, 37.952532], [-89.17379, 37.954068], [-89.16521, 37.954887], [-89.16189, 37.957356], [-89.160714, 37.961914], [-89.155147, 37.967469], [-89.155385, 37.969353], [-89.15347299999999, 37.974537], [-89.153739, 37.977983], [-89.149474, 37.979776], [-89.149827, 37.98225], [-89.14577799999999, 37.985724999999995], [-89.146626, 37.988839], [-89.143513, 37.990096], [-89.144036, 37.991548], [-89.142637, 37.992675999999996], [-89.14299199999999, 37.994049], [-89.14016199999999, 37.995453999999995], [-89.141599, 37.997129], [-89.140199, 37.999371], [-89.143012, 38.001538], [-89.14238, 38.004114], [-89.14524399999999, 38.009229], [-89.144582, 38.011123999999995], [-89.142237, 38.011016999999995], [-89.140146, 38.012867], [-89.14049899999999, 38.015969999999996], [-89.136072, 38.018029999999996], [-89.13683999999999, 38.021557], [-89.13846799999999, 38.022172], [-89.137597, 38.023444999999995], [-89.138746, 38.024316999999996], [-89.138252, 38.025349], [-89.14053799999999, 38.026627999999995], [-89.143018, 38.025983], [-89.142422, 38.029129999999995], [-89.144397, 38.028667], [-89.146861, 38.031137], [-89.139054, 38.033834], [-89.14047599999999, 38.035998], [-89.13638, 38.039944], [-89.139797, 38.043746]]]]}, "type": "Feature", "properties": {"geoid": "05000US17055", "name": "Franklin County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-90.537235, 41.525633], [-90.513134, 41.519532999999996], [-90.500633, 41.518032999999996], [-90.47433199999999, 41.519732999999995], [-90.461432, 41.523533], [-90.44523099999999, 41.536133], [-90.43273099999999, 41.549533], [-90.42223, 41.554232999999996], [-90.412825, 41.565329], [-90.39793, 41.572233], [-90.364128, 41.579633], [-90.343228, 41.587832999999996], [-90.339528, 41.598633], [-90.343452, 41.646958999999995], [-90.33672899999999, 41.664532], [-90.334525, 41.679559], [-90.33022199999999, 41.683954], [-90.317315, 41.691669999999995], [-90.313435, 41.698082], [-90.312893, 41.707527999999996], [-90.31760899999999, 41.720223], [-90.31500199999999, 41.735625999999996], [-90.304525, 41.74861], [-90.283552, 41.764385999999995], [-90.278633, 41.767358], [-90.264696, 41.771474999999995], [-90.24238, 41.782964], [-90.242015, 41.77688], [-90.244992, 41.771721], [-90.244642, 41.767398], [-90.24725, 41.764948], [-90.24717, 41.762609], [-90.24306299999999, 41.762547], [-90.242122, 41.764814], [-90.240122, 41.764963], [-90.236773, 41.762598], [-90.242752, 41.759958999999995], [-90.246714, 41.75476], [-90.247917, 41.746877], [-90.24316999999999, 41.744321], [-90.24426799999999, 41.740383], [-90.23942699999999, 41.742484999999995], [-90.236509, 41.740747], [-90.23470499999999, 41.736111], [-90.23866699999999, 41.727264999999996], [-90.234083, 41.725010999999995], [-90.234697, 41.720464], [-90.23935, 41.714005], [-90.238164, 41.711175999999995], [-90.240607, 41.709900000000005], [-90.23983899999999, 41.706688], [-90.245713, 41.703537], [-90.237155, 41.699566], [-90.23663499999999, 41.696312999999996], [-90.23115899999999, 41.69576], [-90.23205, 41.691862], [-90.22679, 41.692521], [-90.22740499999999, 41.688289999999995], [-90.226154, 41.686944], [-90.22686, 41.683484], [-90.234928, 41.681377], [-90.236182, 41.679496], [-90.228172, 41.674642999999996], [-90.189532, 41.663374], [-90.18165599999999, 41.657882], [-90.17370000000001, 41.654959999999996], [-90.170288, 41.648696], [-90.16477599999999, 41.647689], [-90.161233, 41.643927], [-90.163814, 41.639216999999995], [-90.173913, 41.640069], [-90.173243, 41.637401], [-90.162465, 41.635526], [-90.15987799999999, 41.630494999999996], [-90.162061, 41.621562], [-90.160687, 41.617866], [-90.166116, 41.609801999999995], [-90.16502, 41.596041], [-90.169248, 41.592175], [-90.181412, 41.590993], [-90.185814, 41.588466], [-90.185609, 41.584652999999996], [-90.18005199999999, 41.578716], [-90.179098, 41.573487], [-90.184991, 41.555457], [-90.195324, 41.540686], [-90.21901799999999, 41.5372], [-90.222459, 41.53557], [-90.225842, 41.529917], [-90.250123, 41.522755], [-90.28922399999999, 41.520334], [-90.304716, 41.517790999999995], [-90.31505899999999, 41.509204], [-90.318733, 41.508897999999995], [-90.333889, 41.514085], [-90.35223099999999, 41.508832], [-90.364227, 41.502834], [-90.369427, 41.496734], [-90.37302799999999, 41.484634], [-90.376528, 41.478733999999996], [-90.380382, 41.476675], [-90.387328, 41.476434], [-90.404229, 41.464833999999996], [-90.421129, 41.457634], [-90.43193, 41.456834], [-90.433771, 41.326983], [-90.75014, 41.328834], [-90.89441699999999, 41.332238], [-91.07207, 41.333361], [-91.066232, 41.366367], [-91.05158, 41.385283], [-91.047642, 41.41131], [-91.039872, 41.418523], [-91.02778699999999, 41.423603], [-91.00584599999999, 41.426134999999995], [-90.985886, 41.433689], [-90.979815, 41.434321], [-90.97418499999999, 41.433712], [-90.94979099999999, 41.424163], [-90.930016, 41.421403999999995], [-90.900471, 41.431154], [-90.860626, 41.451392999999996], [-90.846558, 41.455141], [-90.798931, 41.454025], [-90.773417, 41.450882], [-90.74594599999999, 41.449729999999995], [-90.70115899999999, 41.454743], [-90.676439, 41.460831999999996], [-90.655839, 41.462132], [-90.632538, 41.478732], [-90.61853699999999, 41.485032], [-90.605936, 41.494232], [-90.602137, 41.506032], [-90.595237, 41.511032], [-90.586236, 41.514232], [-90.567236, 41.517531999999996], [-90.556235, 41.524232], [-90.537235, 41.525633]]]]}, "type": "Feature", "properties": {"geoid": "05000US17161", "name": "Rock Island County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.60361999999999, 41.719546], [-88.512934, 41.72078], [-88.489175, 41.722128999999995], [-88.48483, 41.72119], [-88.261468, 41.724529], [-88.260167, 41.665245999999996], [-88.25209799999999, 41.463096], [-88.48247599999999, 41.457834], [-88.59595999999999, 41.457034], [-88.600634, 41.5703], [-88.600214, 41.575261], [-88.601885, 41.61584], [-88.60361999999999, 41.719546]]]]}, "type": "Feature", "properties": {"geoid": "05000US17093", "name": "Kendall County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-87.79279299999999, 41.55854], [-87.909453, 41.556732], [-87.91193, 41.643933], [-88.027688, 41.641506], [-88.02915999999999, 41.68553], [-87.966758, 41.68683], [-87.94527699999999, 41.697144], [-87.94246199999999, 41.69918], [-87.942257, 41.703032], [-87.921489, 41.716221999999995], [-87.914265, 41.716746], [-87.920459, 41.873114], [-87.92067, 41.994031], [-88.26287599999999, 41.986227], [-88.263378, 42.066626], [-88.237978, 42.066925999999995], [-88.23836899999999, 42.154253], [-87.111162, 42.149409], [-87.150009, 42.000032999999995], [-87.148431, 42.000014], [-87.207774, 41.760956], [-87.52366099999999, 41.759907], [-87.525705, 41.470282999999995], [-87.790303, 41.469846], [-87.790365, 41.539961], [-87.79229199999999, 41.538661999999995], [-87.79279299999999, 41.55854]]]]}, "type": "Feature", "properties": {"geoid": "05000US17031", "name": "Cook County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.374181, 37.688699], [-88.37451999999999, 37.908432], [-88.356935, 37.909082999999995], [-88.308443, 37.908319], [-88.227468, 37.908673], [-88.138702, 37.907647], [-88.13598499999999, 37.907793999999996], [-88.13605299999999, 37.916022999999996], [-88.12503699999999, 37.909737], [-88.11337999999999, 37.905758], [-88.103751, 37.898995], [-88.10118399999999, 37.894197999999996], [-88.097472, 37.893357], [-88.097211, 37.892415], [-88.09861, 37.890958], [-88.097984, 37.890129], [-88.092159, 37.890947], [-88.084385, 37.885582], [-88.07852899999999, 37.879118], [-88.067364, 37.856051], [-88.05942499999999, 37.848732], [-88.049453, 37.845186999999996], [-88.033309, 37.841916999999995], [-88.029687, 37.839821], [-88.02736, 37.837053999999995], [-88.025921, 37.832694], [-88.02869299999999, 37.827109], [-88.033011, 37.824383], [-88.043831, 37.821525], [-88.06101199999999, 37.823015], [-88.079464, 37.830991], [-88.08572699999999, 37.829388], [-88.090092, 37.825641999999995], [-88.091848, 37.822108], [-88.09003899999999, 37.816770999999996], [-88.085161, 37.813184], [-88.077029, 37.804992999999996], [-88.07066999999999, 37.801704], [-88.06418099999999, 37.800430999999996], [-88.059662, 37.801196], [-88.04575299999999, 37.808129], [-88.037623, 37.809864], [-88.0329, 37.80862], [-88.02981799999999, 37.806273999999995], [-88.028477, 37.804417], [-88.028016, 37.799188], [-88.031582, 37.797121], [-88.036262, 37.791426], [-88.038843, 37.783893], [-88.04246499999999, 37.767317999999996], [-88.049183, 37.755072999999996], [-88.051615, 37.751815], [-88.056263, 37.747982], [-88.059333, 37.742967], [-88.06357799999999, 37.739045], [-88.072311, 37.73352], [-88.086463, 37.728408], [-88.095715, 37.723334], [-88.102246, 37.717915], [-88.11626799999999, 37.713274], [-88.122151, 37.709958], [-88.13193, 37.697838999999995], [-88.13436899999999, 37.691417], [-88.144324, 37.683803999999995], [-88.151071, 37.676114], [-88.15959, 37.661704], [-88.16034599999999, 37.655128], [-88.158756, 37.648619], [-88.158591, 37.641079999999995], [-88.157146, 37.633341], [-88.152563, 37.622611], [-88.14225499999999, 37.604002], [-88.140244, 37.595624], [-88.14097699999999, 37.590348], [-88.140194, 37.587233], [-88.133242, 37.57414], [-88.13951, 37.575316], [-88.14278999999999, 37.574951999999996], [-88.146912, 37.573101], [-88.15281999999999, 37.573799], [-88.15824099999999, 37.577622999999996], [-88.164749, 37.589825], [-88.171222, 37.595005], [-88.179813, 37.599164], [-88.375332, 37.599562999999996], [-88.374181, 37.688699]]]]}, "type": "Feature", "properties": {"geoid": "05000US17059", "name": "Gallatin County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.053541, 41.890583], [-88.941279, 41.891752], [-88.94166, 41.717503], [-88.940317, 41.716772], [-88.93861799999999, 41.628319], [-89.046489, 41.626692], [-89.16720000000001, 41.628707], [-89.166561, 41.585288999999996], [-89.63149399999999, 41.584948999999995], [-89.632379, 41.671561], [-89.62933, 41.901616999999995], [-89.48163799999999, 41.902204999999995], [-89.4794, 41.907328], [-89.47641, 41.910168], [-89.472552, 41.911939], [-89.466061, 41.912524], [-89.457167, 41.91115], [-89.44798999999999, 41.911487], [-89.437174, 41.908193], [-89.428066, 41.908612999999995], [-89.423379, 41.907050999999996], [-89.420135, 41.904762], [-89.419187, 41.900935], [-89.421714, 41.898154999999996], [-89.428215, 41.896679], [-89.429144, 41.894925], [-89.414118, 41.886088], [-89.412022, 41.887518], [-89.41214699999999, 41.894884999999995], [-89.40564599999999, 41.897982], [-89.40310799999999, 41.902273], [-89.398826, 41.902834999999996], [-89.36052, 41.902640999999996], [-89.360682, 41.88807], [-89.053541, 41.890583]]]]}, "type": "Feature", "properties": {"geoid": "05000US17103", "name": "Lee County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.754616, 40.973939], [-89.83346399999999, 40.974985], [-89.985479, 40.974495], [-89.98455899999999, 41.149366], [-89.89218799999999, 41.149578], [-89.86838399999999, 41.148955], [-89.867738, 41.234429999999996], [-89.638864, 41.233861999999995], [-89.638727, 40.973707], [-89.754616, 40.973939]]]]}, "type": "Feature", "properties": {"geoid": "05000US17175", "name": "Stark County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.639265, 38.999128999999996], [-89.586148, 38.999449], [-89.58608799999999, 39.028245999999996], [-89.41760599999999, 39.027632], [-89.250447, 39.028144999999995], [-89.25036399999999, 38.999030999999995], [-89.2574, 38.999151], [-89.25423699999999, 38.742019], [-89.48185699999999, 38.740531], [-89.597321, 38.743235999999996], [-89.599593, 38.87453], [-89.63687399999999, 38.874278], [-89.63783099999999, 38.918352999999996], [-89.63704899999999, 38.918364], [-89.638262, 38.941008], [-89.639265, 38.999128999999996]]]]}, "type": "Feature", "properties": {"geoid": "05000US17005", "name": "Bond County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-90.683193, 39.840050999999995], [-90.89365099999999, 39.84092], [-90.916609, 39.845075], [-90.91681, 39.909606], [-90.914289, 39.934335], [-90.914757, 39.997932999999996], [-90.91361599999999, 40.104451999999995], [-90.796246, 40.105768], [-90.69588399999999, 40.103794], [-90.697486, 40.102547], [-90.696176, 40.1009], [-90.699541, 40.097493], [-90.699928, 40.094449999999995], [-90.704961, 40.092872], [-90.70859399999999, 40.093077], [-90.70916, 40.090423], [-90.70451299999999, 40.087816], [-90.705525, 40.084590999999996], [-90.69563699999999, 40.079583], [-90.68605, 40.078804999999996], [-90.67327499999999, 40.080884999999995], [-90.671995, 40.08013], [-90.67152, 40.077362], [-90.676762, 40.065993999999996], [-90.674798, 40.062151], [-90.677567, 40.059886999999996], [-90.67727, 40.058537], [-90.675484, 40.057072999999995], [-90.678045, 40.051904], [-90.67506999999999, 40.045978999999996], [-90.669446, 40.043783], [-90.667243, 40.046549999999996], [-90.661022, 40.046388], [-90.65953499999999, 40.044833], [-90.659745, 40.041402], [-90.652127, 40.04005], [-90.65427299999999, 40.035019], [-90.653887, 40.033440999999996], [-90.645646, 40.030327], [-90.633952, 40.029222], [-90.630387, 40.023664], [-90.62512699999999, 40.025997], [-90.616688, 40.027007999999995], [-90.61166399999999, 40.032911999999996], [-90.610027, 40.032340999999995], [-90.606782, 40.028864999999996], [-90.605679, 40.025113999999995], [-90.607282, 40.020835999999996], [-90.611296, 40.017564], [-90.614035, 40.020353], [-90.61692099999999, 40.020512], [-90.619029, 40.015159], [-90.618015, 40.012392], [-90.615814, 40.012758999999996], [-90.609684, 40.008781], [-90.608195, 40.006859999999996], [-90.603346, 40.004917999999996], [-90.601947, 40.003316999999996], [-90.603128, 39.996573], [-90.606009, 39.991197], [-90.605918, 39.986531], [-90.60758, 39.98191], [-90.597976, 39.981134999999995], [-90.594021, 39.979625999999996], [-90.585534, 39.978829999999995], [-90.578948, 39.981321], [-90.568214, 39.983815], [-90.56155299999999, 39.982625], [-90.550344, 39.983447999999996], [-90.543596, 39.980359], [-90.541455, 39.980723999999995], [-90.53931299999999, 39.98372], [-90.536726, 39.983993999999996], [-90.53414, 39.982459999999996], [-90.52994699999999, 39.985112], [-90.52795599999999, 39.982458], [-90.524864, 39.982709], [-90.523614, 39.984218], [-90.527478, 39.986644], [-90.526585, 39.987649999999995], [-90.520727, 39.988310999999996], [-90.519866, 39.987716], [-90.519926, 39.985679999999995], [-90.515705, 39.984352], [-90.515198, 39.986982], [-90.513747, 39.987891], [-90.512193, 39.983914], [-90.51177299999999, 39.977126], [-90.510442, 39.971987], [-90.51111499999999, 39.967605], [-90.513905, 39.964151], [-90.52063, 39.959527], [-90.525596, 39.9517], [-90.532113, 39.946011999999996], [-90.533142, 39.940605], [-90.536591, 39.932898], [-90.53685999999999, 39.921881], [-90.538637, 39.917479], [-90.55427999999999, 39.901364], [-90.565096, 39.896034], [-90.57179, 39.89427], [-90.575581, 39.891261], [-90.577918, 39.888186], [-90.581757, 39.87916], [-90.5849, 39.875046999999995], [-90.586091, 39.871413], [-90.58500099999999, 39.863685], [-90.58243499999999, 39.854574], [-90.579426, 39.848489], [-90.571754, 39.839326], [-90.683193, 39.840050999999995]]]]}, "type": "Feature", "properties": {"geoid": "05000US17009", "name": "Brown County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-91.11418599999999, 41.250029], [-91.101142, 41.267168999999996], [-91.08921199999999, 41.291208999999995], [-91.086379, 41.294854], [-91.077505, 41.301828], [-91.07484099999999, 41.305578], [-91.07323199999999, 41.31344], [-91.07207, 41.333361], [-90.89441699999999, 41.332238], [-90.75014, 41.328834], [-90.433771, 41.326983], [-90.436382, 41.238687999999996], [-90.43942299999999, 41.063995], [-90.550218, 41.064065], [-90.66632899999999, 41.067586999999996], [-90.948989, 41.07025], [-90.946625, 41.096627999999995], [-90.95726499999999, 41.111067], [-90.965908, 41.119558999999995], [-90.970856, 41.130109], [-90.981327, 41.142675], [-90.989662, 41.155707], [-90.997905, 41.162562], [-91.007594, 41.166187], [-91.027231, 41.163382999999996], [-91.041557, 41.166162], [-91.05506799999999, 41.185789], [-91.07298399999999, 41.207150999999996], [-91.112348, 41.239002], [-91.11365699999999, 41.241400999999996], [-91.11418599999999, 41.250029]]]]}, "type": "Feature", "properties": {"geoid": "05000US17131", "name": "Mercer County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.472073, 39.651588], [-88.063437, 39.652555], [-88.063467, 39.681312999999996], [-88.026208, 39.681664999999995], [-88.026224, 39.684867], [-87.9666, 39.685928], [-87.962317, 39.525163], [-87.960179, 39.481308999999996], [-88.01420499999999, 39.480762], [-88.01206599999999, 39.378971], [-88.02652599999999, 39.378707], [-88.026521, 39.377627], [-88.203341, 39.374765], [-88.434164, 39.374390999999996], [-88.453169, 39.373638], [-88.47082999999999, 39.374514999999995], [-88.470428, 39.439887999999996], [-88.472073, 39.651588]]]]}, "type": "Feature", "properties": {"geoid": "05000US17029", "name": "Coles County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.471139, 39.272968], [-88.47082999999999, 39.374514999999995], [-88.453169, 39.373638], [-88.434164, 39.374390999999996], [-88.203341, 39.374765], [-88.026521, 39.377627], [-88.02652599999999, 39.378707], [-88.012121, 39.378968], [-88.00776599999999, 39.173925], [-88.169251, 39.171443], [-88.247883, 39.171696], [-88.26051199999999, 39.170921], [-88.47086499999999, 39.171462999999996], [-88.471139, 39.272968]]]]}, "type": "Feature", "properties": {"geoid": "05000US17035", "name": "Cumberland County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-87.94541799999999, 38.953375], [-87.94677, 39.083853999999995], [-87.948222, 39.083828], [-87.950385, 39.174882], [-87.746174, 39.17922], [-87.747113, 39.172295999999996], [-87.65679399999999, 39.172177], [-87.657032, 39.157593999999996], [-87.628186, 39.15692], [-87.62750899999999, 39.15538], [-87.62832499999999, 39.154211], [-87.632398, 39.152954], [-87.634379, 39.153419], [-87.63744299999999, 39.156773], [-87.642175, 39.157097], [-87.652782, 39.149435], [-87.653201, 39.143992999999995], [-87.65820099999999, 39.138404], [-87.65811099999999, 39.134934], [-87.655239, 39.132283], [-87.64314499999999, 39.128561999999995], [-87.64217, 39.123211999999995], [-87.636927, 39.123104], [-87.63510000000001, 39.122298], [-87.634971, 39.120089], [-87.63651399999999, 39.117661], [-87.64089899999999, 39.115283], [-87.640761, 39.114371999999996], [-87.651022, 39.116439], [-87.654859, 39.112393999999995], [-87.654636, 39.109111], [-87.652796, 39.106839], [-87.64707, 39.104268], [-87.63858499999999, 39.105894], [-87.615684, 39.103316], [-87.613996, 39.100995], [-87.61430899999999, 39.097778], [-87.620387, 39.091522], [-87.62114199999999, 39.088966], [-87.62025799999999, 39.086572], [-87.614171, 39.081784], [-87.601101, 39.081405], [-87.596373, 39.079639], [-87.591515, 39.073181], [-87.583546, 39.067947], [-87.57870199999999, 39.061698], [-87.572588, 39.057286], [-87.57229, 39.050587], [-87.580373, 39.040707], [-87.579512, 39.038401], [-87.57502699999999, 39.034062], [-87.569875, 39.023105], [-87.569696, 39.019413], [-87.57376099999999, 39.008683999999995], [-87.579117, 39.001607], [-87.576565, 38.997026999999996], [-87.56820499999999, 38.993705], [-87.561976, 38.994198], [-87.56042699999999, 38.992425], [-87.562043, 38.989469], [-87.563966, 38.988802], [-87.574535, 38.991518], [-87.578019, 38.990646999999996], [-87.578319, 38.988786], [-87.575605, 38.986166], [-87.548034, 38.978504], [-87.542493, 38.975598999999995], [-87.529496, 38.971925], [-87.524335, 38.962964], [-87.513346, 38.956], [-87.51213, 38.953811], [-87.51431099999999, 38.947837], [-87.521765, 38.941117], [-87.52123999999999, 38.93889], [-87.51665799999999, 38.933479999999996], [-87.51869599999999, 38.928326999999996], [-87.51882599999999, 38.923204999999996], [-87.520634, 38.921665], [-87.52605799999999, 38.921355], [-87.527715, 38.919232], [-87.526033, 38.913606], [-87.52764499999999, 38.907688], [-87.52431399999999, 38.905194], [-87.517732, 38.905671999999996], [-87.516831, 38.903697], [-87.518008, 38.902705], [-87.533695, 38.900957], [-87.536591, 38.895565999999995], [-87.534342, 38.891296], [-87.535955, 38.886993], [-87.537596, 38.889551], [-87.53912199999999, 38.896119], [-87.541628, 38.896381], [-87.544089, 38.895092999999996], [-87.54513, 38.891467], [-87.544292, 38.888953], [-87.53828, 38.885799], [-87.534919, 38.878873999999996], [-87.536816, 38.877407999999996], [-87.545203, 38.876729999999995], [-87.54737, 38.875614], [-87.54695699999999, 38.871184], [-87.54260599999999, 38.866641], [-87.543188, 38.864214], [-87.54571899999999, 38.863029999999995], [-87.552066, 38.864511], [-87.553384, 38.863344], [-87.553106, 38.861411], [-87.55051499999999, 38.859559999999995], [-87.53724799999999, 38.853592], [-87.531145, 38.852506999999996], [-87.575801, 38.85239], [-87.575808, 38.851698999999996], [-87.684141, 38.852179], [-87.78701099999999, 38.848856999999995], [-87.786568, 38.850046], [-87.945923, 38.850108], [-87.94541799999999, 38.953375]]]]}, "type": "Feature", "properties": {"geoid": "05000US17033", "name": "Crawford County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-91.512974, 40.181062], [-91.511073, 40.188794], [-91.50476499999999, 40.196737], [-91.505346, 40.200486], [-90.911969, 40.193087999999996], [-90.914757, 39.997932999999996], [-90.914289, 39.934335], [-90.91681, 39.909606], [-90.916071, 39.757168], [-91.250146, 39.756979], [-91.36512499999999, 39.758722999999996], [-91.36569399999999, 39.77491], [-91.361571, 39.787548], [-91.367966, 39.800402999999996], [-91.376488, 39.810033], [-91.383707, 39.8146], [-91.432158, 39.840308], [-91.436529, 39.847077999999996], [-91.44134299999999, 39.861982999999995], [-91.446685, 39.871642], [-91.44784399999999, 39.877950999999996], [-91.443513, 39.893583], [-91.420878, 39.914865], [-91.418807, 39.922126], [-91.41936, 39.927717], [-91.425782, 39.937765], [-91.44156, 39.951299], [-91.458852, 39.979015], [-91.46531499999999, 39.983995], [-91.469247, 39.995326999999996], [-91.494878, 40.036453], [-91.489606, 40.057435], [-91.497663, 40.078257], [-91.50143399999999, 40.095852], [-91.51083899999999, 40.126137], [-91.51159, 40.149269], [-91.508224, 40.157665], [-91.511956, 40.170441], [-91.512974, 40.181062]]]]}, "type": "Feature", "properties": {"geoid": "05000US17001", "name": "Adams County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-87.90387199999999, 39.482225], [-87.778601, 39.485969], [-87.68897199999999, 39.487392], [-87.687437, 39.487339999999996], [-87.689166, 39.476758], [-87.53164, 39.477105], [-87.531646, 39.347888], [-87.53727099999999, 39.352089], [-87.54401299999999, 39.352906999999995], [-87.54815699999999, 39.34988], [-87.550832, 39.342378], [-87.5544, 39.340488], [-87.560692, 39.338851], [-87.572132, 39.341443999999996], [-87.57833099999999, 39.340343], [-87.584852, 39.337329], [-87.589084, 39.333830999999996], [-87.596729, 39.322029], [-87.600656, 39.318529], [-87.60592, 39.311076], [-87.620589, 39.307046], [-87.62093899999999, 39.303407], [-87.617786, 39.301257], [-87.614015, 39.300937999999995], [-87.60534799999999, 39.303217], [-87.597946, 39.299479], [-87.597545, 39.296388], [-87.608753, 39.286688999999996], [-87.60976699999999, 39.284714], [-87.608543, 39.277187], [-87.601393, 39.27439], [-87.60557399999999, 39.262398], [-87.604947, 39.260211999999996], [-87.592394, 39.247146], [-87.58833899999999, 39.248703], [-87.584177, 39.254003999999995], [-87.580652, 39.255237], [-87.573439, 39.254582], [-87.571321, 39.25082], [-87.57307399999999, 39.246693], [-87.579319, 39.243552], [-87.574615, 39.223931], [-87.574558, 39.218404], [-87.577029, 39.211123], [-87.584977, 39.205276], [-87.585725, 39.200396], [-87.58861399999999, 39.197824], [-87.594151, 39.194932], [-87.600099, 39.193441], [-87.603045, 39.191303999999995], [-87.606293, 39.18513], [-87.613064, 39.18418], [-87.61630699999999, 39.185849], [-87.619603, 39.186032], [-87.621436, 39.181943], [-87.620796, 39.17479], [-87.619404, 39.172066], [-87.620521, 39.17033], [-87.63649, 39.168833], [-87.640434, 39.166727], [-87.642065, 39.162476999999996], [-87.640856, 39.159867], [-87.628727, 39.157427], [-87.657032, 39.157593999999996], [-87.65679399999999, 39.172177], [-87.747113, 39.172295999999996], [-87.746174, 39.17922], [-88.00776599999999, 39.173925], [-88.01420499999999, 39.480762], [-87.90387199999999, 39.482225]]]]}, "type": "Feature", "properties": {"geoid": "05000US17023", "name": "Clark County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.60361999999999, 41.719546], [-88.60224, 41.631389], [-88.706158, 41.630189], [-88.818462, 41.631352], [-88.93861799999999, 41.628319], [-88.940317, 41.716772], [-88.94166, 41.717503], [-88.941279, 41.891752], [-88.942292, 42.000028], [-88.942146, 42.06505], [-88.938935, 42.065097], [-88.93973199999999, 42.152319999999996], [-88.588657, 42.15359], [-88.58833, 42.066462], [-88.601958, 42.066469], [-88.601933, 41.719563], [-88.60361999999999, 41.719546]]]]}, "type": "Feature", "properties": {"geoid": "05000US17037", "name": "DeKalb County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-87.813338, 41.004932], [-87.526207, 41.010355], [-87.526366, 40.491237], [-87.652132, 40.488212], [-87.972454, 40.485659999999996], [-87.99304599999999, 40.485597999999996], [-88.004076, 40.488672], [-88.117905, 40.488085999999996], [-88.11831699999999, 40.575168], [-88.12123299999999, 40.676697], [-88.12223499999999, 40.676673], [-88.12298299999999, 40.691153], [-88.12561099999999, 40.763403], [-88.13193799999999, 40.997839], [-87.813338, 41.004932]]]]}, "type": "Feature", "properties": {"geoid": "05000US17075", "name": "Iroquois County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.596177, 37.907278], [-88.706622, 37.906797], [-88.706385, 38.00308], [-88.70239099999999, 38.256661], [-88.370491, 38.255413], [-88.372146, 38.118047], [-88.37469399999999, 38.000049], [-88.37453, 37.907678], [-88.534297, 37.906428], [-88.596177, 37.907278]]]]}, "type": "Feature", "properties": {"geoid": "05000US17065", "name": "Hamilton County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.152642, 37.686803], [-89.15117599999999, 37.861999], [-88.94798, 37.861993999999996], [-88.70676, 37.863338], [-88.706741, 37.740601999999996], [-88.708546, 37.599277], [-88.818894, 37.600677], [-88.836759, 37.597508], [-89.002693, 37.596316], [-89.078603, 37.597393], [-89.153668, 37.600469], [-89.152642, 37.686803]]]]}, "type": "Feature", "properties": {"geoid": "05000US17199", "name": "Williamson County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.714927, 40.319218], [-89.60297899999999, 40.320129], [-89.60119499999999, 40.218413], [-89.603855, 40.218371999999995], [-89.601604, 40.122431999999996], [-89.602706, 40.121654], [-89.605924, 40.122749999999996], [-89.605802, 40.126511], [-89.610889, 40.12733], [-89.609141, 40.129208999999996], [-89.61376299999999, 40.134581], [-89.620678, 40.13659], [-89.622256, 40.141857], [-89.62724, 40.143716], [-89.628002, 40.148817], [-89.631795, 40.148193], [-89.63420099999999, 40.153411], [-89.63751099999999, 40.152155], [-89.638762, 40.155147], [-89.64639299999999, 40.153600999999995], [-89.649592, 40.157655999999996], [-89.651609, 40.154826], [-89.656069, 40.157044], [-89.659955, 40.155629999999995], [-89.66161199999999, 40.158108999999996], [-89.667766, 40.160726], [-89.669247, 40.160471], [-89.671341, 40.15394], [-89.68045599999999, 40.155426], [-89.681084, 40.151205999999995], [-89.683472, 40.154851], [-89.685936, 40.153645999999995], [-89.68438599999999, 40.151862], [-89.686949, 40.149324], [-89.686681, 40.146785], [-89.691654, 40.144922], [-89.692047, 40.142555], [-89.694797, 40.140712], [-89.69873899999999, 40.14236], [-89.704326, 40.140626999999995], [-89.704635, 40.142846], [-89.70797499999999, 40.143045], [-89.707638, 40.145987], [-89.709428, 40.147023], [-89.71177899999999, 40.145911], [-89.71193, 40.142880999999996], [-89.71559099999999, 40.143543], [-89.719152, 40.140327], [-89.722032, 40.140509], [-89.722397, 40.142494], [-89.728195, 40.142325], [-89.72792199999999, 40.138776], [-89.73003299999999, 40.135622], [-89.733581, 40.137952], [-89.735742, 40.134941], [-89.734049, 40.132746999999995], [-89.742183, 40.131665999999996], [-89.74148199999999, 40.129791], [-89.744222, 40.128423], [-89.747063, 40.12928], [-89.749365, 40.126796999999996], [-89.75806999999999, 40.127493], [-89.761212, 40.129726999999995], [-89.76288799999999, 40.128142], [-89.76987199999999, 40.128448999999996], [-89.773421, 40.132225999999996], [-89.77476, 40.129414], [-89.78087, 40.126905], [-89.783149, 40.129487], [-89.7876, 40.130206], [-89.79030999999999, 40.128195], [-89.791906, 40.129400000000004], [-89.791288, 40.126404], [-89.794367, 40.123805], [-89.797721, 40.125461], [-89.802595, 40.123653999999995], [-89.803668, 40.124905], [-89.80989799999999, 40.124505], [-89.810636, 40.123404], [-89.808718, 40.121808], [-89.81007699999999, 40.121213999999995], [-89.81794, 40.125383], [-89.820348, 40.122672], [-89.823939, 40.122932], [-89.823331, 40.121303999999995], [-89.827191, 40.125672], [-89.83210299999999, 40.123642], [-89.83939699999999, 40.130793], [-89.843257, 40.126368], [-89.853397, 40.130302], [-89.86602099999999, 40.128206], [-89.86824899999999, 40.12972], [-89.86816999999999, 40.133948], [-89.872554, 40.137415], [-89.87803799999999, 40.133722], [-89.880966, 40.13381], [-89.88153799999999, 40.136306999999995], [-89.88548399999999, 40.134839], [-89.88391999999999, 40.129891], [-89.88569299999999, 40.12797], [-89.89177099999999, 40.130542999999996], [-89.898913, 40.127922], [-89.908401, 40.137786], [-89.909106, 40.1353], [-89.90634899999999, 40.133368], [-89.907546, 40.131611], [-89.916276, 40.133528], [-89.92117499999999, 40.138822999999995], [-89.924691, 40.135835], [-89.92681999999999, 40.140085], [-89.93166099999999, 40.137332], [-89.94130299999999, 40.136936999999996], [-89.940969, 40.135290999999995], [-89.936987, 40.134164], [-89.93677, 40.132445], [-89.942308, 40.131568], [-89.943713, 40.134384], [-89.946139, 40.130264], [-89.948601, 40.131603999999996], [-89.949287, 40.135681999999996], [-89.95148499999999, 40.132051], [-89.95463, 40.136953999999996], [-89.956903, 40.136889], [-89.958872, 40.134361], [-89.96023699999999, 40.1388], [-89.963034, 40.140239], [-89.96307999999999, 40.143046999999996], [-89.966191, 40.143071], [-89.97049, 40.142081999999995], [-89.969713, 40.138175], [-89.974756, 40.135478], [-89.971357, 40.133821], [-89.976612, 40.130651], [-89.97357799999999, 40.127371], [-89.978456, 40.124959], [-89.98172799999999, 40.128257999999995], [-89.986649, 40.129006], [-89.984512, 40.12394], [-89.98563, 40.12262], [-89.988607, 40.123605], [-89.988705, 40.117795], [-89.98308399999999, 40.115868999999996], [-89.982811, 40.113866], [-89.985823, 40.111953], [-89.992736, 40.111716], [-89.99347, 40.107979], [-89.998397, 40.113738], [-89.997412, 40.109991], [-90.0004, 40.107347999999995], [-89.999084, 40.103787], [-90.000458, 40.102139], [-90.003249, 40.104313999999995], [-90.002732, 40.109738], [-90.005934, 40.107962], [-90.00648, 40.103145999999995], [-90.01156399999999, 40.10319], [-90.011817, 40.100009], [-90.01416499999999, 40.100417], [-90.014909, 40.104123], [-90.01804, 40.101935], [-90.02007599999999, 40.105709999999995], [-90.023714, 40.104358999999995], [-90.031651, 40.104797999999995], [-90.030361, 40.108588999999995], [-90.031461, 40.110966999999995], [-90.038134, 40.101952], [-90.039265, 40.102343], [-90.038671, 40.10657], [-90.04167, 40.109626999999996], [-90.05126, 40.103254], [-90.051124, 40.097819], [-90.05239, 40.097297], [-90.054542, 40.099542], [-90.060509, 40.098766999999995], [-90.06395499999999, 40.101088], [-90.06613899999999, 40.096571], [-90.065276, 40.092665], [-90.07184199999999, 40.093525], [-90.070189, 40.089537], [-90.07421099999999, 40.090219], [-90.07887199999999, 40.087134], [-90.077468, 40.085142], [-90.081289, 40.085719999999995], [-90.07927699999999, 40.083103], [-90.080231, 40.080748], [-90.08857499999999, 40.084745], [-90.089568, 40.083717], [-90.087316, 40.079736], [-90.08903199999999, 40.079242], [-90.09038, 40.081759999999996], [-90.094736, 40.077197999999996], [-90.096959, 40.077718], [-90.093757, 40.080709], [-90.095333, 40.082173], [-90.100982, 40.077793], [-90.104145, 40.081572], [-90.105143, 40.077987], [-90.114632, 40.081268], [-90.117547, 40.080236], [-90.117269, 40.077756], [-90.12210999999999, 40.076316999999996], [-90.12653499999999, 40.077118999999996], [-90.128121, 40.073944999999995], [-90.130147, 40.073997], [-90.12921899999999, 40.072595], [-90.131237, 40.070235], [-90.129784, 40.069044], [-90.133995, 40.069205], [-90.131445, 40.066548], [-90.13417, 40.065129999999996], [-90.134517, 40.062022999999996], [-90.139383, 40.063829], [-90.137891, 40.066688], [-90.142397, 40.064307], [-90.145094, 40.067125], [-90.150176, 40.067461], [-90.15041, 40.065436], [-90.153942, 40.066655], [-90.15636599999999, 40.060775], [-90.15844799999999, 40.06424], [-90.161197, 40.060991], [-90.169399, 40.059318], [-90.171144, 40.062816], [-90.172878, 40.060528], [-90.176698, 40.060415], [-90.178961, 40.064524], [-90.183695, 40.061979], [-90.18182399999999, 40.066356999999996], [-90.18345099999999, 40.066506], [-90.185622, 40.063403], [-90.18928199999999, 40.065152999999995], [-90.187157, 40.061471], [-90.190432, 40.05884], [-90.192284, 40.059715], [-90.19198899999999, 40.056884], [-90.19521399999999, 40.055125], [-90.195246, 40.052614999999996], [-90.201685, 40.053874], [-90.204754, 40.052429], [-90.204512, 40.054801999999995], [-90.207454, 40.0554], [-90.20537999999999, 40.05881], [-90.207349, 40.060314], [-90.210977, 40.054697], [-90.212496, 40.056208999999996], [-90.210882, 40.059214999999995], [-90.212701, 40.05984], [-90.215164, 40.056638], [-90.225759, 40.055051999999996], [-90.22668399999999, 40.050886], [-90.228832, 40.052453], [-90.228454, 40.056754999999995], [-90.22973999999999, 40.057953], [-90.233053, 40.057258], [-90.237335, 40.059142], [-90.243247, 40.057584], [-90.24589, 40.059295], [-90.252805, 40.056557999999995], [-90.260684, 40.058823], [-90.260418, 40.062059999999995], [-90.269539, 40.061558], [-90.269857, 40.058177], [-90.27367, 40.054300999999995], [-90.27732999999999, 40.057325], [-90.286493, 40.055023], [-90.285074, 40.058127999999996], [-90.289114, 40.059207], [-90.286802, 40.063224], [-90.29407599999999, 40.063291], [-90.290768, 40.065585999999996], [-90.289737, 40.069499], [-90.296987, 40.073836], [-90.29777299999999, 40.07642], [-90.30506899999999, 40.077253], [-90.304783, 40.081523], [-90.30010999999999, 40.083462], [-90.302126, 40.084393], [-90.30263599999999, 40.09265], [-90.306468, 40.092817], [-90.30720099999999, 40.097854999999996], [-90.312428, 40.104043], [-90.31227, 40.107062], [-90.313918, 40.107248999999996], [-90.315303, 40.112441], [-90.313633, 40.113431999999996], [-90.314314, 40.115862], [-90.323212, 40.11752], [-90.329177, 40.121038], [-90.33403, 40.121172], [-90.333663, 40.118702], [-90.335932, 40.122465999999996], [-90.342497, 40.116443], [-90.344374, 40.118524], [-90.348936, 40.117717], [-90.350701, 40.120971999999995], [-90.354038, 40.119533], [-90.355279, 40.122958], [-90.355198, 40.124244999999995], [-90.347286, 40.126518999999995], [-90.335173, 40.13724], [-90.322971, 40.139739999999996], [-90.30755099999999, 40.139950999999996], [-90.26814399999999, 40.154562999999996], [-90.257277, 40.154787], [-90.225796, 40.150054], [-90.216138, 40.150459], [-90.20957399999999, 40.153149], [-90.202671, 40.160689999999995], [-90.20150699999999, 40.180642], [-90.19517499999999, 40.190929], [-90.180809, 40.196014], [-90.174844, 40.201729], [-90.170217, 40.212118], [-90.157961, 40.219654999999996], [-90.137942, 40.222592999999996], [-90.125118, 40.228874], [-90.118966, 40.235262999999996], [-90.107293, 40.2609], [-90.094072, 40.268895], [-90.070622, 40.293192], [-90.06820499999999, 40.298587999999995], [-90.06871, 40.313888], [-90.065122, 40.319193999999996], [-90.053106, 40.327925], [-90.049853, 40.337406], [-90.052796, 40.347476], [-90.051649, 40.352177], [-90.04479099999999, 40.36743], [-90.041049, 40.372097], [-90.03302599999999, 40.377806], [-90.021776, 40.379993999999996], [-89.994911, 40.390668999999995], [-89.983758, 40.392635999999996], [-89.975352, 40.404472999999996], [-89.955176, 40.420184], [-89.939375, 40.430152], [-89.926827, 40.435272999999995], [-89.80940299999999, 40.434408], [-89.71710399999999, 40.435655], [-89.714927, 40.319218]]]]}, "type": "Feature", "properties": {"geoid": "05000US17125", "name": "Mason County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.601438, 41.894000000000005], [-88.601958, 42.066469], [-88.58833, 42.066462], [-88.588657, 42.15359], [-88.23836899999999, 42.154253], [-88.237978, 42.066925999999995], [-88.263378, 42.066626], [-88.26241, 41.899234], [-88.263071, 41.799327999999996], [-88.261952, 41.724652], [-88.48483, 41.72119], [-88.489175, 41.722128999999995], [-88.512934, 41.72078], [-88.601933, 41.719563], [-88.60242199999999, 41.812295], [-88.601438, 41.894000000000005]]]]}, "type": "Feature", "properties": {"geoid": "05000US17089", "name": "Kane County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.39646499999999, 37.421236], [-88.406306, 37.424907], [-88.411576, 37.425323999999996], [-88.415081, 37.424105], [-88.415149, 37.424862999999995], [-88.41373399999999, 37.49373], [-88.414281, 37.525002], [-88.413327, 37.577099], [-88.412112, 37.599911999999996], [-88.33555299999999, 37.59909], [-88.179813, 37.599164], [-88.171222, 37.595005], [-88.164749, 37.589825], [-88.16312599999999, 37.587821999999996], [-88.15824099999999, 37.577622999999996], [-88.15281999999999, 37.573799], [-88.146912, 37.573101], [-88.14278999999999, 37.574951999999996], [-88.136246, 37.575108], [-88.13353699999999, 37.574360999999996], [-88.130523, 37.572345999999996], [-88.121675, 37.568173], [-88.11392699999999, 37.561636], [-88.10590499999999, 37.556371], [-88.101686, 37.551691999999996], [-88.09325799999999, 37.539778], [-88.08969499999999, 37.536149], [-88.087966, 37.534873999999995], [-88.081892, 37.532708], [-88.077703, 37.532002], [-88.0721, 37.528811], [-88.069018, 37.525324], [-88.06267799999999, 37.514064999999995], [-88.062895, 37.508645], [-88.061332, 37.505331999999996], [-88.061228, 37.502834], [-88.06307, 37.494924], [-88.065034, 37.490987], [-88.06542999999999, 37.48876], [-88.068438, 37.485448999999996], [-88.073066, 37.485718], [-88.074006, 37.481874999999995], [-88.07718299999999, 37.479175999999995], [-88.08133699999999, 37.473396], [-88.08458499999999, 37.471717], [-88.089072, 37.471630999999995], [-88.091804, 37.473448999999995], [-88.093462, 37.47367], [-88.099802, 37.473573], [-88.114761, 37.471815], [-88.12280299999999, 37.471708], [-88.12871, 37.470321999999996], [-88.13438599999999, 37.471661999999995], [-88.15808299999999, 37.466667], [-88.172234, 37.465365], [-88.175743, 37.463397], [-88.17969699999999, 37.463893999999996], [-88.18977199999999, 37.461338999999995], [-88.19771399999999, 37.460155], [-88.208654, 37.459807], [-88.21176899999999, 37.458736], [-88.22861999999999, 37.456818999999996], [-88.24655, 37.456187], [-88.25299199999999, 37.456976999999995], [-88.28163099999999, 37.452729], [-88.299144, 37.446498999999996], [-88.31197399999999, 37.441001], [-88.31854, 37.435618999999996], [-88.323633, 37.433991999999996], [-88.330793, 37.429454], [-88.333733, 37.426809999999996], [-88.34358999999999, 37.416737999999995], [-88.348398, 37.410959999999996], [-88.35112199999999, 37.409048999999996], [-88.352745, 37.408878], [-88.360638, 37.403388], [-88.36439, 37.401754], [-88.369196, 37.402069999999995], [-88.37169, 37.402865999999996], [-88.373502, 37.404295999999995], [-88.377166, 37.409585], [-88.38244, 37.413534], [-88.39646499999999, 37.421236]]]]}, "type": "Feature", "properties": {"geoid": "05000US17069", "name": "Hardin County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.36528899999999, 41.460494], [-88.25209799999999, 41.463096], [-88.246246, 41.259373], [-88.240889, 41.114383], [-88.48492, 41.10865], [-88.58623999999999, 41.10828], [-88.58714499999999, 41.212354], [-88.588764, 41.27936], [-88.593704, 41.373035], [-88.59595999999999, 41.457034], [-88.48247599999999, 41.457834], [-88.36528899999999, 41.460494]]]]}, "type": "Feature", "properties": {"geoid": "05000US17063", "name": "Grundy County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.713687, 37.141633999999996], [-88.721745, 37.141095], [-88.72739899999999, 37.142323999999995], [-88.735061, 37.145247], [-88.762245, 37.160025999999995], [-88.776556, 37.169592], [-88.78034099999999, 37.173300999999995], [-88.784264, 37.175035], [-88.78692, 37.178357], [-88.802554, 37.187861], [-88.814161, 37.190259], [-88.835251, 37.196522], [-88.874887, 37.211656], [-88.891731, 37.216172], [-88.91618, 37.223991], [-88.928004, 37.226375999999995], [-88.92912899999999, 37.302647], [-88.92665199999999, 37.303109], [-88.919169, 37.307195], [-88.914217, 37.310597], [-88.909875, 37.312415], [-88.908647, 37.313871999999996], [-88.902441, 37.316503], [-88.89759699999999, 37.317516], [-88.899265, 37.321553], [-88.895466, 37.326100000000004], [-88.895748, 37.326754], [-88.8983, 37.327282], [-88.89787299999999, 37.328846999999996], [-88.896242, 37.32989], [-88.901675, 37.332589], [-88.904859, 37.335397], [-88.90840899999999, 37.335768], [-88.72840699999999, 37.335192], [-88.71065, 37.337089999999996], [-88.67434999999999, 37.308489], [-88.62504799999999, 37.266611999999995], [-88.563451, 37.216412], [-88.527025, 37.187340999999996], [-88.490336, 37.159358], [-88.490411, 37.068579], [-88.502972, 37.065639999999995], [-88.52315999999999, 37.06579], [-88.545271, 37.070504], [-88.55357099999999, 37.073136], [-88.560082, 37.076236], [-88.56595999999999, 37.077709], [-88.565165, 37.075457], [-88.566648, 37.075393], [-88.57324899999999, 37.080000999999996], [-88.575452, 37.088057], [-88.584435, 37.096275], [-88.594504, 37.102101999999995], [-88.6038, 37.109052], [-88.616928, 37.116040999999996], [-88.629701, 37.120911], [-88.644055, 37.122443], [-88.647848, 37.124652999999995], [-88.663338, 37.129712], [-88.67424, 37.134564999999995], [-88.67936, 37.135978], [-88.68162799999999, 37.137554], [-88.691825, 37.140947], [-88.703941, 37.143026], [-88.704618, 37.142663], [-88.70390599999999, 37.142072], [-88.706203, 37.141493], [-88.70810999999999, 37.142745], [-88.713687, 37.141633999999996]]]]}, "type": "Feature", "properties": {"geoid": "05000US17127", "name": "Massac County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-90.513905, 39.964151], [-90.51111499999999, 39.967605], [-90.510477, 39.970866], [-90.512193, 39.983914], [-90.513747, 39.987891], [-90.51338899999999, 39.990876], [-90.510887, 39.993822], [-90.504348, 39.997032999999995], [-90.48425399999999, 40.003374], [-90.47477099999999, 40.004621], [-90.455272, 40.010245999999995], [-90.434624, 40.021887], [-90.42895, 40.042046], [-90.42968499999999, 40.056132], [-90.42863799999999, 40.060345], [-90.42482299999999, 40.06331], [-90.394431, 40.077704], [-90.391302, 40.084128], [-90.393613, 40.089574999999996], [-90.39343099999999, 40.091865999999996], [-90.38502199999999, 40.101780999999995], [-90.380748, 40.112049999999996], [-90.374327, 40.121153], [-90.36756199999999, 40.124272], [-90.36128699999999, 40.125292], [-90.355198, 40.124244999999995], [-90.354038, 40.119533], [-90.350701, 40.120971999999995], [-90.348936, 40.117717], [-90.344374, 40.118524], [-90.342497, 40.116443], [-90.335932, 40.122465999999996], [-90.333663, 40.118702], [-90.33403, 40.121172], [-90.329177, 40.121038], [-90.323212, 40.11752], [-90.314314, 40.115862], [-90.313633, 40.113431999999996], [-90.315303, 40.112441], [-90.313918, 40.107248999999996], [-90.31227, 40.107062], [-90.312428, 40.104043], [-90.30720099999999, 40.097854999999996], [-90.306468, 40.092817], [-90.304378, 40.09371], [-90.30263599999999, 40.09265], [-90.302126, 40.084393], [-90.30010999999999, 40.083462], [-90.304783, 40.081523], [-90.30506899999999, 40.077253], [-90.30203499999999, 40.075925], [-90.29777299999999, 40.07642], [-90.296987, 40.073836], [-90.294112, 40.072556999999996], [-90.29213, 40.069776999999995], [-90.289737, 40.069499], [-90.290768, 40.065585999999996], [-90.29407599999999, 40.063291], [-90.289772, 40.064220999999996], [-90.286802, 40.063224], [-90.289114, 40.059207], [-90.285074, 40.058127999999996], [-90.286493, 40.055023], [-90.27732999999999, 40.057325], [-90.27367, 40.054300999999995], [-90.269857, 40.058177], [-90.269539, 40.061558], [-90.260418, 40.062059999999995], [-90.260684, 40.058823], [-90.257514, 40.058737], [-90.252805, 40.056557999999995], [-90.250121, 40.058158999999996], [-90.247311, 40.05787], [-90.24589, 40.059295], [-90.243247, 40.057584], [-90.237335, 40.059142], [-90.233053, 40.057258], [-90.22973999999999, 40.057953], [-90.228454, 40.056754999999995], [-90.228832, 40.052453], [-90.22668399999999, 40.050886], [-90.225759, 40.055051999999996], [-90.221233, 40.054838], [-90.218886, 40.0557], [-90.21893299999999, 40.056934], [-90.215164, 40.056638], [-90.212701, 40.05984], [-90.210882, 40.059214999999995], [-90.212496, 40.056208999999996], [-90.210977, 40.054697], [-90.209452, 40.058622], [-90.207349, 40.060314], [-90.20537999999999, 40.05881], [-90.207454, 40.0554], [-90.204512, 40.054801999999995], [-90.204754, 40.052429], [-90.201685, 40.053874], [-90.195246, 40.052614999999996], [-90.19521399999999, 40.055125], [-90.19198899999999, 40.056884], [-90.192284, 40.059715], [-90.190432, 40.05884], [-90.187157, 40.061471], [-90.18928199999999, 40.065152999999995], [-90.18861299999999, 40.065743], [-90.185622, 40.063403], [-90.18345099999999, 40.066506], [-90.18182399999999, 40.066356999999996], [-90.18425599999999, 40.063075], [-90.183695, 40.061979], [-90.18151499999999, 40.062759], [-90.180976, 40.064366], [-90.178961, 40.064524], [-90.176698, 40.060415], [-90.172878, 40.060528], [-90.171144, 40.062816], [-90.169399, 40.059318], [-90.16601299999999, 40.061028], [-90.161197, 40.060991], [-90.15989499999999, 40.063753], [-90.15844799999999, 40.06424], [-90.15773399999999, 40.06124], [-90.15636599999999, 40.060775], [-90.153942, 40.066655], [-90.152789, 40.067181999999995], [-90.15041, 40.065436], [-90.150176, 40.067461], [-90.145094, 40.067125], [-90.142397, 40.064307], [-90.137891, 40.066688], [-90.139383, 40.063829], [-90.134517, 40.062022999999996], [-90.13417, 40.065129999999996], [-90.131445, 40.066548], [-90.133995, 40.069205], [-90.129784, 40.069044], [-90.131237, 40.070235], [-90.12921899999999, 40.072595], [-90.130147, 40.073997], [-90.128121, 40.073944999999995], [-90.12653499999999, 40.077118999999996], [-90.12424999999999, 40.077534], [-90.12210999999999, 40.076316999999996], [-90.119637, 40.078129], [-90.117269, 40.077756], [-90.117547, 40.080236], [-90.114632, 40.081268], [-90.105143, 40.077987], [-90.10546099999999, 40.080346], [-90.104145, 40.081572], [-90.102374, 40.078208], [-90.100982, 40.077793], [-90.095333, 40.082173], [-90.093954, 40.082001], [-90.093757, 40.080709], [-90.096959, 40.077718], [-90.094736, 40.077197999999996], [-90.09038, 40.081759999999996], [-90.08903199999999, 40.079242], [-90.087316, 40.079736], [-90.089568, 40.083717], [-90.08857499999999, 40.084745], [-90.080231, 40.080748], [-90.07927699999999, 40.083103], [-90.081289, 40.085719999999995], [-90.077468, 40.085142], [-90.07887199999999, 40.087134], [-90.07421099999999, 40.090219], [-90.070189, 40.089537], [-90.07184199999999, 40.093525], [-90.065276, 40.092665], [-90.06613899999999, 40.096571], [-90.06395499999999, 40.101088], [-90.060509, 40.098766999999995], [-90.054542, 40.099542], [-90.05239, 40.097297], [-90.051124, 40.097819], [-90.05126, 40.103254], [-90.04167, 40.109626999999996], [-90.038671, 40.10657], [-90.039265, 40.102343], [-90.038134, 40.101952], [-90.03653899999999, 40.102731], [-90.035305, 40.107104], [-90.031461, 40.110966999999995], [-90.030361, 40.108588999999995], [-90.032191, 40.105941], [-90.031651, 40.104797999999995], [-90.023714, 40.104358999999995], [-90.02007599999999, 40.105709999999995], [-90.017533, 40.101665], [-90.014909, 40.104123], [-90.013172, 40.100029], [-90.011191, 40.100378], [-90.012107, 40.102132999999995], [-90.01069, 40.103795999999996], [-90.00648, 40.103145999999995], [-90.005934, 40.107962], [-90.00382599999999, 40.109801999999995], [-90.00250899999999, 40.108776999999996], [-90.003249, 40.104313999999995], [-90.000458, 40.102139], [-89.999333, 40.103014], [-90.000613, 40.106730999999996], [-89.997412, 40.109991], [-89.999071, 40.112549], [-89.998397, 40.113738], [-89.996404, 40.112832], [-89.99472399999999, 40.108373], [-89.994405, 39.872859999999996], [-90.183219, 39.872848], [-90.583534, 39.87675], [-90.575581, 39.891261], [-90.57179, 39.89427], [-90.565096, 39.896034], [-90.55427999999999, 39.901364], [-90.54010699999999, 39.915481], [-90.53685999999999, 39.921881], [-90.536591, 39.932898], [-90.533142, 39.940605], [-90.532113, 39.946011999999996], [-90.525596, 39.9517], [-90.519944, 39.960224], [-90.513905, 39.964151]]]]}, "type": "Feature", "properties": {"geoid": "05000US17017", "name": "Cass County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.02636299999999, 39.435705999999996], [-89.02398699999999, 39.52319], [-89.02568, 39.654182999999996], [-88.920704, 39.652678], [-88.810575, 39.653222], [-88.809051, 39.580241], [-88.717539, 39.579299], [-88.716875, 39.521209], [-88.64146799999999, 39.520958], [-88.641626, 39.506689], [-88.62239, 39.506496], [-88.622316, 39.491786], [-88.603409, 39.491561999999995], [-88.60312599999999, 39.477014], [-88.584518, 39.476791], [-88.584273, 39.447582], [-88.470505, 39.447041], [-88.470906, 39.215029], [-88.836967, 39.216547999999996], [-89.02743699999999, 39.215454], [-89.13937399999999, 39.217211999999996], [-89.13980699999999, 39.348887999999995], [-89.025381, 39.345895999999996], [-89.02490399999999, 39.434771], [-89.02636299999999, 39.435705999999996]]]]}, "type": "Feature", "properties": {"geoid": "05000US17173", "name": "Shelby County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.250658, 39.086442], [-89.250513, 39.217512], [-89.139922, 39.217909], [-89.02743699999999, 39.215454], [-88.805325, 39.216263], [-88.806794, 38.911656], [-88.693531, 38.914617], [-88.695165, 38.826299], [-89.02816399999999, 38.822873], [-89.138138, 38.824244], [-89.138393, 38.736331], [-89.25423699999999, 38.742019], [-89.2574, 38.999151], [-89.25036399999999, 38.999030999999995], [-89.250658, 39.086442]]]]}, "type": "Feature", "properties": {"geoid": "05000US17051", "name": "Fayette County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.678856, 40.552838], [-89.675404, 40.553937999999995], [-89.655602, 40.570437999999996], [-89.65400199999999, 40.578238], [-89.65879, 40.589174], [-89.66006999999999, 40.596454], [-89.658502, 40.601558], [-89.63640099999999, 40.623238], [-89.622148, 40.634896999999995], [-89.611459, 40.647909999999996], [-89.610339, 40.65199], [-89.616035, 40.657571], [-89.615399, 40.664437], [-89.59230000000001, 40.684936], [-89.555295, 40.702737], [-89.546488, 40.720205], [-89.55059399999999, 40.738737], [-89.554994, 40.747637], [-89.330167, 40.748256999999995], [-89.32961399999999, 40.660773999999996], [-89.328695, 40.660785], [-89.327343, 40.615566], [-89.269831, 40.616096999999996], [-89.26374, 40.325344], [-89.714927, 40.319218], [-89.71710399999999, 40.435655], [-89.82848399999999, 40.43438], [-89.92468, 40.435921], [-89.914278, 40.440345], [-89.906449, 40.447759], [-89.903269, 40.459205], [-89.898815, 40.462574], [-89.89686999999999, 40.467161], [-89.88793, 40.474655999999996], [-89.88435799999999, 40.500039], [-89.882194, 40.505402], [-89.87511099999999, 40.511742999999996], [-89.867037, 40.51598], [-89.832853, 40.530794], [-89.81245899999999, 40.541104], [-89.774495, 40.552911], [-89.741322, 40.550806], [-89.70781699999999, 40.557238], [-89.699, 40.561606], [-89.691848, 40.560517999999995], [-89.683656, 40.553045999999995], [-89.678856, 40.552838]]]]}, "type": "Feature", "properties": {"geoid": "05000US17179", "name": "Tazewell County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.701326, 39.792238999999995], [-88.473182, 39.791837], [-88.470505, 39.447041], [-88.584273, 39.447582], [-88.584518, 39.476791], [-88.60312599999999, 39.477014], [-88.603409, 39.491561999999995], [-88.622316, 39.491786], [-88.62239, 39.506496], [-88.641626, 39.506689], [-88.64146799999999, 39.520958], [-88.716875, 39.521209], [-88.717539, 39.579299], [-88.809051, 39.580241], [-88.812709, 39.740486], [-88.75784, 39.739906999999995], [-88.75865999999999, 39.792066999999996], [-88.701326, 39.792238999999995]]]]}, "type": "Feature", "properties": {"geoid": "05000US17139", "name": "Moultrie County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.94309, 39.609139], [-89.98474499999999, 39.718078999999996], [-89.985562, 39.785356], [-89.993755, 39.785329], [-89.994506, 39.901925], [-89.76923599999999, 39.902415999999995], [-89.769325, 39.916343999999995], [-89.701864, 39.916787], [-89.70231299999999, 39.938503], [-89.697616, 39.938511], [-89.698259, 39.975308999999996], [-89.483826, 39.976732999999996], [-89.483419, 39.93314], [-89.404969, 39.932733], [-89.404984, 39.918186999999996], [-89.217846, 39.91699], [-89.217523, 39.813224], [-89.22525999999999, 39.814952999999996], [-89.228248, 39.813204999999996], [-89.23394599999999, 39.812852], [-89.234242, 39.815148], [-89.231535, 39.816306], [-89.236356, 39.8177], [-89.23633699999999, 39.822157], [-89.23979, 39.821321999999995], [-89.24031, 39.823327], [-89.248609, 39.825722999999996], [-89.25191199999999, 39.822556], [-89.260376, 39.805602], [-89.26458799999999, 39.804278], [-89.265373, 39.806422], [-89.27432499999999, 39.800053999999996], [-89.28134899999999, 39.798899], [-89.28339299999999, 39.793853], [-89.288217, 39.792046], [-89.292104, 39.792753999999995], [-89.291906, 39.789778999999996], [-89.29661899999999, 39.789752], [-89.29971499999999, 39.78454], [-89.298289, 39.783299], [-89.301435, 39.779767], [-89.300444, 39.778414], [-89.303122, 39.775813], [-89.312581, 39.771300000000004], [-89.32234199999999, 39.771859], [-89.328762, 39.769337], [-89.328604, 39.767571], [-89.325023, 39.767025], [-89.32777899999999, 39.765974], [-89.327186, 39.764266], [-89.328701, 39.763542], [-89.352667, 39.769616], [-89.35395799999999, 39.772107], [-89.357795, 39.770821999999995], [-89.360034, 39.767517], [-89.358891, 39.761759999999995], [-89.362605, 39.755798999999996], [-89.36712299999999, 39.757325], [-89.370986, 39.754971], [-89.37391799999999, 39.758646], [-89.380242, 39.753538999999996], [-89.384868, 39.753567], [-89.385874, 39.749975], [-89.395684, 39.742443], [-89.409475, 39.74353], [-89.419353, 39.751675], [-89.418527, 39.754191999999996], [-89.41976199999999, 39.755324], [-89.417191, 39.757576], [-89.41784299999999, 39.759205], [-89.420217, 39.76137], [-89.42517099999999, 39.762021999999995], [-89.425051, 39.683696], [-89.478923, 39.683963999999996], [-89.478473, 39.640842], [-89.535028, 39.641138], [-89.533655, 39.524592], [-89.926037, 39.522104], [-89.92395499999999, 39.558678], [-89.94309, 39.609139]]]]}, "type": "Feature", "properties": {"geoid": "05000US17167", "name": "Sangamon County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.04724, 41.0133], [-89.047856, 41.104780999999996], [-89.162238, 41.104079999999996], [-89.16720000000001, 41.628707], [-89.045109, 41.626689999999996], [-88.818462, 41.631352], [-88.706158, 41.630189], [-88.60224, 41.631389], [-88.593704, 41.373035], [-88.588764, 41.27936], [-88.58623999999999, 41.108292999999996], [-88.930881, 41.105900000000005], [-88.93139, 40.92774], [-89.04771799999999, 40.925748999999996], [-89.04724, 41.0133]]]]}, "type": "Feature", "properties": {"geoid": "05000US17099", "name": "LaSalle County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.209178, 39.171436], [-88.135069, 39.171821], [-87.950385, 39.174882], [-87.948222, 39.083828], [-87.94677, 39.083853999999995], [-87.945065, 38.923099], [-87.945923, 38.850108], [-88.038309, 38.849855999999996], [-88.15026499999999, 38.846953], [-88.185144, 38.846885], [-88.258608, 38.847521], [-88.36175999999999, 38.851949], [-88.36277899999999, 39.001228999999995], [-88.36050399999999, 39.089872], [-88.360654, 39.171118], [-88.209178, 39.171436]]]]}, "type": "Feature", "properties": {"geoid": "05000US17079", "name": "Jasper County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.021611, 37.306661], [-89.018265, 37.309146], [-89.012642, 37.309439999999995], [-89.00933599999999, 37.310718], [-89.00273899999999, 37.311147999999996], [-88.999355, 37.3095], [-88.99803399999999, 37.307859], [-88.996226, 37.309419], [-88.992108, 37.309899], [-88.973702, 37.303618], [-88.968813, 37.303278], [-88.96436299999999, 37.300517], [-88.963578, 37.29738], [-88.962548, 37.297684], [-88.96234299999999, 37.299093], [-88.961248, 37.297624], [-88.959571, 37.298834], [-88.959054, 37.297740999999995], [-88.954814, 37.297702], [-88.951081, 37.300885], [-88.942478, 37.303953], [-88.940366, 37.303187], [-88.93697399999999, 37.303919], [-88.934465, 37.302627], [-88.932571, 37.303509], [-88.929789, 37.303323], [-88.929125, 37.302572999999995], [-88.928004, 37.226375999999995], [-88.94201799999999, 37.228874], [-88.932754, 37.225299], [-88.938698, 37.224351999999996], [-88.95279099999999, 37.224782999999995], [-88.966076, 37.22632], [-88.96946, 37.228279], [-88.973, 37.228531], [-88.966124, 37.229565], [-88.966634, 37.230153], [-88.97626199999999, 37.229552999999996], [-88.97979199999999, 37.226113], [-88.98815499999999, 37.223732], [-88.979728, 37.226616], [-88.976969, 37.229503], [-88.980367, 37.22905], [-89.000185, 37.224764], [-89.008478, 37.22058], [-89.00578, 37.221326], [-89.013154, 37.216477999999995], [-89.026713, 37.211321999999996], [-89.029866, 37.211065], [-89.036838, 37.204539], [-89.040808, 37.203114], [-89.056529, 37.18973], [-89.075734, 37.175495], [-89.08671199999999, 37.165451], [-89.09367999999999, 37.155074], [-89.09901099999999, 37.140406], [-89.111409, 37.118988], [-89.115678, 37.115674], [-89.113569, 37.119628], [-89.11023, 37.121564], [-89.109613, 37.12292], [-89.113033, 37.120685], [-89.12562799999999, 37.10863], [-89.135404, 37.103092], [-89.137582, 37.09815], [-89.14206, 37.093806], [-89.146495, 37.090818999999996], [-89.148229, 37.091229], [-89.15137299999999, 37.088994], [-89.151343, 37.090573], [-89.15434599999999, 37.08896], [-89.167079, 37.075409], [-89.17208099999999, 37.06831], [-89.17433799999999, 37.070254], [-89.17664099999999, 37.068853], [-89.179637, 37.069089999999996], [-89.18088, 37.070264], [-89.18064, 37.072081], [-89.182199, 37.074912999999995], [-89.18451, 37.077293999999995], [-89.184635, 37.079056], [-89.187709, 37.080346], [-89.193534, 37.085004999999995], [-89.19721, 37.085808], [-89.19728599999999, 37.086571], [-89.195219, 37.08741], [-89.196038, 37.088847], [-89.201416, 37.08848], [-89.201701, 37.086332], [-89.20279699999999, 37.085723], [-89.213561, 37.089617], [-89.225332, 37.091823999999995], [-89.232873, 37.090061], [-89.234821, 37.090818], [-89.235626, 37.093036], [-89.239688, 37.092481], [-89.239773, 37.09344], [-89.23786899999999, 37.093816], [-89.237708, 37.094767999999995], [-89.240673, 37.096983], [-89.241362, 37.096762999999996], [-89.24107, 37.094878], [-89.242161, 37.094919999999995], [-89.244137, 37.100738], [-89.24797199999999, 37.100142999999996], [-89.24882, 37.098765], [-89.250641, 37.099672999999996], [-89.253973, 37.099393], [-89.252994, 37.101725], [-89.25408399999999, 37.103463999999995], [-89.25658, 37.103885999999996], [-89.258477, 37.102697], [-89.26177899999999, 37.105742], [-89.261153, 37.10807], [-89.264139, 37.109094999999996], [-89.26585299999999, 37.111274], [-89.265396, 37.113394], [-89.26284299999999, 37.112587], [-89.26260599999999, 37.114562], [-89.266992, 37.115716], [-89.26687299999999, 37.116529], [-89.265284, 37.116351], [-89.265318, 37.117368], [-89.269463, 37.118627], [-89.26794799999999, 37.120401], [-89.2692, 37.122496999999996], [-89.272739, 37.124216], [-89.273631, 37.126968], [-89.268562, 37.133275], [-89.26723, 37.139329], [-89.265873, 37.140699], [-89.258963, 37.143634999999996], [-89.25788, 37.14527], [-89.26003299999999, 37.152015], [-89.25902699999999, 37.15649], [-89.256577, 37.159939], [-89.256793, 37.161144], [-89.25878399999999, 37.159383999999996], [-89.261523, 37.158943], [-89.268372, 37.158916999999995], [-89.269454, 37.160889999999995], [-89.267296, 37.161398], [-89.266673, 37.16352], [-89.262897, 37.163708], [-89.261211, 37.167304], [-89.262478, 37.170750999999996], [-89.26473299999999, 37.170004999999996], [-89.26675, 37.171074], [-89.263452, 37.175208999999995], [-89.265874, 37.175968999999995], [-89.26464999999999, 37.178717999999996], [-89.26731, 37.180524999999996], [-89.26529, 37.18429], [-89.261049, 37.183009999999996], [-89.25923499999999, 37.184433], [-89.257911, 37.184203], [-89.258392, 37.185482], [-89.255923, 37.188113], [-89.252273, 37.188597], [-89.253118, 37.189671], [-89.251919, 37.190892], [-89.255905, 37.193041], [-89.25333499999999, 37.193567], [-89.25232899999999, 37.196127], [-89.255754, 37.196964], [-89.257724, 37.198921999999996], [-89.258135, 37.195730999999995], [-89.258952, 37.197506], [-89.260386, 37.197415], [-89.260235, 37.200069], [-89.262765, 37.201536], [-89.259272, 37.202335], [-89.263896, 37.203947], [-89.261986, 37.20416], [-89.259947, 37.206241999999996], [-89.25957199999999, 37.207405], [-89.26129499999999, 37.208132], [-89.259092, 37.210314], [-89.26026399999999, 37.211222], [-89.261071, 37.209748], [-89.26457099999999, 37.212361], [-89.262209, 37.213924], [-89.262509, 37.216167999999996], [-89.261592, 37.217811], [-89.262323, 37.21844], [-89.261279, 37.220051], [-89.26326499999999, 37.220762], [-89.264591, 37.222608], [-89.26615799999999, 37.222034], [-89.265202, 37.223759], [-89.267811, 37.225999], [-89.266744, 37.226754], [-89.26506499999999, 37.225705999999995], [-89.265231, 37.226444], [-89.26378199999999, 37.226577], [-89.261321, 37.231147], [-89.259548, 37.229852], [-89.261433, 37.228749], [-89.261502, 37.227168999999996], [-89.25966299999999, 37.228229999999996], [-89.25639, 37.2277], [-89.257809, 37.229023], [-89.256405, 37.231755], [-89.255039, 37.232136], [-89.255062, 37.234242], [-89.252009, 37.241693999999995], [-89.250367, 37.243317999999995], [-89.250005, 37.247717], [-89.251543, 37.249658], [-89.249675, 37.248793], [-89.248364, 37.251163999999996], [-89.251706, 37.25232], [-89.249783, 37.252545], [-89.24828, 37.254494], [-89.250683, 37.25655], [-89.247464, 37.258548999999995], [-89.24850099999999, 37.260086], [-89.24634999999999, 37.262195999999996], [-89.24588399999999, 37.264004], [-89.24375599999999, 37.264767], [-89.243039, 37.263928], [-89.241619, 37.264931], [-89.242283, 37.266521999999995], [-89.237889, 37.270874], [-89.234738, 37.272332], [-89.22791199999999, 37.273329], [-89.227238, 37.275537], [-89.225512, 37.276869], [-89.22190599999999, 37.277435], [-89.220702, 37.27933], [-89.212987, 37.281012], [-89.210601, 37.280268], [-89.202578, 37.290065999999996], [-89.203356, 37.306757], [-89.205882, 37.317242], [-89.208873, 37.318909], [-89.206623, 37.321168], [-89.20701199999999, 37.321988], [-89.209575, 37.323403], [-89.21149, 37.322739], [-89.21561799999999, 37.324463], [-89.217129, 37.327137], [-89.21959299999999, 37.327515], [-89.222218, 37.329460999999995], [-89.22171399999999, 37.33104], [-89.222867, 37.332184], [-89.243803, 37.331669], [-89.24843899999999, 37.335108999999996], [-89.099277, 37.333556], [-89.044787, 37.329845999999996], [-89.04458799999999, 37.294163], [-89.031646, 37.298564999999996], [-89.021611, 37.306661]]]]}, "type": "Feature", "properties": {"geoid": "05000US17153", "name": "Pulaski County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-90.037105, 38.658449], [-90.181615, 38.660368999999996], [-90.187806, 38.677589999999995], [-90.1941, 38.685936999999996], [-90.20602099999999, 38.697404], [-90.21024, 38.704401], [-90.21298, 38.711988], [-90.20991, 38.72605], [-90.20340499999999, 38.734881], [-90.19775899999999, 38.739481999999995], [-90.179113, 38.750268999999996], [-90.17590299999999, 38.755029], [-90.174977, 38.760129], [-90.166364, 38.772675], [-90.14670799999999, 38.783049], [-90.12310699999999, 38.798048], [-90.117707, 38.805748], [-90.114707, 38.815048], [-90.109107, 38.837447999999995], [-90.10940699999999, 38.843548], [-90.113327, 38.849306], [-90.15150799999999, 38.867148], [-90.166409, 38.876348], [-90.186909, 38.885048], [-90.19761, 38.887648], [-90.22585, 38.908923], [-90.25403299999999, 38.920488999999996], [-90.26279199999999, 38.920344], [-90.275812, 38.923548], [-90.273686, 38.999347], [-89.639265, 38.999128999999996], [-89.63687399999999, 38.874278], [-89.599593, 38.87453], [-89.595103, 38.655947999999995], [-89.74357499999999, 38.655172], [-90.037105, 38.658449]]]]}, "type": "Feature", "properties": {"geoid": "05000US17119", "name": "Madison County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-88.199086, 42.314062], [-88.199535, 42.495132], [-87.981324, 42.494928], [-87.793371, 42.49172], [-87.01993499999999, 42.493497999999995], [-87.111162, 42.149409], [-87.721762, 42.153425999999996], [-87.76292199999999, 42.152293], [-88.199584, 42.15426], [-88.199086, 42.314062]]]]}, "type": "Feature", "properties": {"geoid": "05000US17097", "name": "Lake County, IL"}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-89.978096, 42.196828], [-89.875051, 42.196373], [-89.688486, 42.199112], [-89.684694, 42.025932999999995], [-89.686549, 41.937492999999996], [-89.685366, 41.93034], [-89.976404, 41.931218], [-90.15198, 41.928917], [-90.1516, 41.931002], [-90.152659, 41.933057999999996], [-90.16384699999999, 41.944933999999996], [-90.16493899999999, 41.948861], [-90.164135, 41.956178], [-90.16214099999999, 41.961293], [-90.15382799999999, 41.974121], [-90.146225, 41.981328999999995], [-90.146033, 41.988139], [-90.140613, 41.995999], [-90.140061, 42.003251999999996], [-90.14230599999999, 42.011838999999995], [-90.148096, 42.020013999999996], [-90.151579, 42.030632999999995], [-90.164485, 42.042105], [-90.165294, 42.050973], [-90.16685299999999, 42.05491], [-90.165555, 42.062638], [-90.168358, 42.075779], [-90.163405, 42.087613], [-90.161779, 42.096835999999996], [-90.161326, 42.109721], [-90.16289499999999, 42.116718], [-90.17040999999999, 42.125021], [-90.190452, 42.125779], [-90.19734199999999, 42.128163], [-90.201404, 42.130936999999996], [-90.20536, 42.139078999999995], [-90.20826, 42.15099], [-90.216107, 42.156729999999996], [-90.250129, 42.171468999999995], [-90.26908, 42.1745], [-90.282173, 42.178846], [-90.298442, 42.187576], [-90.317949, 42.193909], [-90.160191, 42.196827], [-89.978096, 42.196828]]]]}, "type": "Feature", "properties": {"geoid": "05000US17015", "name": "Carroll County, IL"}}]}

When loaded into QGIS, this GeoJSON forms a county map of Illinois:

QGIS IL.png s

California

Likewise, California has a FIPS code of 06 (via http://www.census.gov/geo/reference/ansi_statetables.html), so we can get county boundaries in California with the command:

$ curl "https://api.censusreporter.org/1.0/geo/show/tiger2016?geo_ids=050|04000US06"

This results in the following map:

QGIS CA.png

Using Python

My ultimate goal was to create a map from census data, which is a multi-step process requiring several REST URL calls and complicated parsing of the hierarchically-organized data. Fortunately, Python is perfectly equipped to handle all of this, particularly since everything is happening in JSON format, and JSON can be handled using Python's built-in dictionary type.

The Census Reporter API can help me turn a place (state, county, etc.) into a geographic ID. This geographic ID can then be used to request and parse different census data tables. The calls to the API can be made using Python's urllib2 library, will return JSON. The JSON can be turned into dictionaries using the Python JSON library.

Extracting Location Data

Here is an example Python code that populates geographic IDs and corresponding names for counties in California:

import json
import urllib2

class CaliforniaCounties(object):
    """
    Populates information for California counties
    """

    def __init__(self):
        pass

    def populate(self):

        ca_counties_url = "https://api.censusreporter.org/1.0/geo/show/tiger2016?geo_ids=050|04000US06"

        ca_counties = json.load(urllib2.urlopen(ca_counties_url))
        self.county_data = ca_counties['features']
        # 58 elements, one for each county

        self.county_geoids = [county['properties']['geoid'] for county in self.county_data]
        self.county_names  = [county['properties']['name']  for county in self.county_data]

Now, the geographic IDs and county names can be used to populate name information in a new GeoJSON file.

Parsing Table Data

The second step of creating maps visualizing census data is the real meat of the problem: getting the actual census data!

The census data layout and organization can be intimidating at first, but becomes straightforward with a few examples.

The Census Reporter's show data URL is how you extract census data from the Census Reporter API. You'll need two things: a list of geoids, and a table id. Let's worry about the problem of finding a table ID later, and for now we'll use the example of table ID B08122 (Means of Transportation to Work by Poverty Status in the Past 12 Months).

The Census Reporter URL for getting data about this table looks like this:

url = "https://api.censusreporter.org/1.0/data/show/latest?table_ids="+table_id+"&geo_ids=050|04000US06"

where, as before, the geo_ids that is passed is shorthand for "all counties in California".

Here's how we request that information, continuing the CaliforniaCounties object defined above:

    def lookup_table(self,table_id):

        url = "https://api.censusreporter.org/1.0/data/show/latest?table_ids="+table_id+"&geo_ids=050|04000US06"
        
        results = json.load(urllib2.urlopen(url))

        # print out table titles:
        z = json.dumps( results['tables'], sort_keys=True, indent=4,separators=(',',': ') )
        print z

        # print out table data (for one county)
        y = json.dumps( results['data'][self.county_geoids[3]], sort_keys=True, indent=4, separators=(',',': ') )
        print y

Table Headers and Data

Here is what the headers and data contained in a census data table looks like. You can see that the information is stored hierarchically in nested dictionaries. It may not necessarily contain the final quantity that we're interested in - we may want a percentage, for example, in addition to absolute quantities.

Each table (B08122) has its set of columns, numbered sequentially (B08122001, B08122002, etc.). Because the JSON consists of nested Python dictionaries, it is very easy to parse this information. First, the titles:

        # table titles:
        z = json.dumps( results['tables'], sort_keys=True, indent=4,separators=(',',': ') )
        print z
{
    "B08122": {
        "columns": {
            "B08122001": {
                "indent": 0,
                "name": "Total:"
            },
            "B08122002": {
                "indent": 2,
                "name": "Below 100 percent of the poverty level"
            },
            "B08122003": {
                "indent": 2,
                "name": "100 to 149 percent of the poverty level"
            },
            "B08122004": {
                "indent": 2,
                "name": "At or above 150 percent of the poverty level"
            },
            "B08122005": {
                "indent": 1,
                "name": "Car, truck, or van - drove alone:"
            },
            "B08122006": {
                "indent": 2,
                "name": "Below 100 percent of the poverty level"
            },
            "B08122007": {
                "indent": 2,
                "name": "100 to 149 percent of the poverty level"
            },
            "B08122008": {
                "indent": 2,
                "name": "At or above 150 percent of the poverty level"
            },
            "B08122009": {
                "indent": 1,
                "name": "Car, truck, or van - carpooled:"
            },
            "B08122010": {
                "indent": 2,
                "name": "Below 100 percent of the poverty level"
            },
            "B08122011": {
                "indent": 2,
                "name": "100 to 149 percent of the poverty level"
            },
            "B08122012": {
                "indent": 2,
                "name": "At or above 150 percent of the poverty level"
            },
            "B08122013": {
                "indent": 1,
                "name": "Public transportation (excluding taxicab):"
            },
            "B08122014": {
                "indent": 2,
                "name": "Below 100 percent of the poverty level"
            },
            "B08122015": {
                "indent": 2,
                "name": "100 to 149 percent of the poverty level"
            },
            "B08122016": {
                "indent": 2,
                "name": "At or above 150 percent of the poverty level"
            },
            "B08122017": {
                "indent": 1,
                "name": "Walked:"
            },
            "B08122018": {
                "indent": 2,
                "name": "Below 100 percent of the poverty level"
            },
            "B08122019": {
                "indent": 2,
                "name": "100 to 149 percent of the poverty level"
            },
            "B08122020": {
                "indent": 2,
                "name": "At or above 150 percent of the poverty level"
            },
            "B08122021": {
                "indent": 1,
                "name": "Taxicab, motorcycle, bicycle, or other means:"
            },
            "B08122022": {
                "indent": 2,
                "name": "Below 100 percent of the poverty level"
            },
            "B08122023": {
                "indent": 2,
                "name": "100 to 149 percent of the poverty level"
            },
            "B08122024": {
                "indent": 2,
                "name": "At or above 150 percent of the poverty level"
            },
            "B08122025": {
                "indent": 1,
                "name": "Worked at home:"
            },
            "B08122026": {
                "indent": 2,
                "name": "Below 100 percent of the poverty level"
            },
            "B08122027": {
                "indent": 2,
                "name": "100 to 149 percent of the poverty level"
            },
            "B08122028": {
                "indent": 2,
                "name": "At or above 150 percent of the poverty level"
            }
        },
        "denominator_column_id": "B08122001",
        "title": "Means of Transportation to Work by Poverty Status in the Past 12 Months",
        "universe": "Workers 16 Years and Over for Whom Poverty Status Is Determined"
    }
}

Next, the data itself consists of 58 different data containers (dictionaries), corresponding to 58 California counties.

        y = json.dumps( results['data'][self.county_geoids[3]], sort_keys=True, indent=4, separators=(',',': ') )
        print y
{
    "B08122": {
        "error": {
            "B08122001": 862.0,
            "B08122002": 428.0,
            "B08122003": 661.0,
            "B08122004": 1031.0,
            "B08122005": 933.0,
            "B08122006": 341.0,
            "B08122007": 501.0,
            "B08122008": 884.0,
            "B08122009": 508.0,
            "B08122010": 188.0,
            "B08122011": 224.0,
            "B08122012": 433.0,
            "B08122013": 124.0,
            "B08122014": 78.0,
            "B08122015": 86.0,
            "B08122016": 51.0,
            "B08122017": 391.0,
            "B08122018": 131.0,
            "B08122019": 64.0,
            "B08122020": 375.0,
            "B08122021": 222.0,
            "B08122022": 32.0,
            "B08122023": 49.0,
            "B08122024": 212.0,
            "B08122025": 405.0,
            "B08122026": 112.0,
            "B08122027": 155.0,
            "B08122028": 379.0
        },
        "estimate": {
            "B08122001": 35910.0,
            "B08122002": 3537.0,
            "B08122003": 3564.0,
            "B08122004": 28809.0,
            "B08122005": 25960.0,
            "B08122006": 2228.0,
            "B08122007": 2426.0,
            "B08122008": 21306.0,
            "B08122009": 4213.0,
            "B08122010": 671.0,
            "B08122011": 604.0,
            "B08122012": 2938.0,
            "B08122013": 212.0,
            "B08122014": 59.0,
            "B08122015": 79.0,
            "B08122016": 74.0,
            "B08122017": 2064.0,
            "B08122018": 268.0,
            "B08122019": 157.0,
            "B08122020": 1639.0,
            "B08122021": 690.0,
            "B08122022": 38.0,
            "B08122023": 33.0,
            "B08122024": 619.0,
            "B08122025": 2771.0,
            "B08122026": 273.0,
            "B08122027": 265.0,
            "B08122028": 2233.0
        }
    }
}

Creating GeoJSON in Python

The next piece of the puzzle is, how to create a GeoJSON file with Python.

Fortunately, this is very straightforward: we'll let the Census Reporter API do all the hard work of creating all the GeoJSON for each of California's 58 counties, and then we'll do some calculations for each county and insert the new information in the GeoJSON that Census Reporter returned.

Once we output all of this GeoJSON to a file, it will add new properties to each county that we can use to visualize data, control map styles, etc.

California County Information

Start by grabbing information about CA counties:

class CaliforniaCounties(object):
    """
    Populates information for California counties
    """

    def __init__(self):
        pass

    def populate(self):

        ca_counties_url = "http://api.censusreporter.org/1.0/geo/show/tiger2013?geo_ids=050|04000US06"

        ca_counties = json.load(urllib2.urlopen(ca_counties_url))
        self.county_data = ca_counties['features']
        # 58 elements, one for each county

        self.county_geoids = [county['properties']['geoid'] for county in self.county_data]
        self.county_names  = [county['properties']['name']  for county in self.county_data]

    def lookup_table(self,table_id):

        url = "http://api.censusreporter.org/1.0/data/show/latest?table_ids="+table_id+"&geo_ids=050|04000US06"

        results = json.load(urllib2.urlopen(url))

        return results

Getting County GeoJSON

Next, define a way to get GeoJSON information for all of the counties:

    def get_counties_geojson(self):

        url = "https://api.censusreporter.org/1.0/geo/show/tiger2016?geo_ids=050|04000US06"

        results = json.load(urllib2.urlopen(url))

        self.county_geojson = results

        return self.county_geojson

Modify GeoJSON

Now we can grab the GeoJSON and modify it to make our own new GeoJSON file.

if __name__=="__main__":

    ca = CaliforniaCounties()
    ca.populate()

    results = ca.lookup_table("B08122")
    counties = ca.get_counties_geojson()
    n_counties = len(counties['features'])
    county_names = [f['properties']['name'] for f in counties['features']]

    for ii,conty_names in enumerate(county_names):

        derived_quantity = np.random.rand()*10

        counties['features'][ii]['properties']['derived_quantity'] = derived_quantity



    with open('ca_derived_quantity.geojson','w') as f:
        f.write( json.dumps(counties) )

    print "bing! all done!"

Now we can use the resulting GeoJSON file in our maps!

Links

Link to this script on Github: https://github.com/charlesreid1/a-shrubbery/blob/master/census/old_california/CACounties.py

Link to GeoJSON file on Github: https://github.com/charlesreid1/a-shrubbery/blob/master/census/old_california/ca_derived_quantity.geojson


Flags