Skip to content

Instantly share code, notes, and snippets.

@nerik
Forked from andy-esch/README.md
Last active May 4, 2016 18:04
Show Gist options
  • Save nerik/c955db546b8853545a23eb5d99eb5366 to your computer and use it in GitHub Desktop.
Save nerik/c955db546b8853545a23eb5d99eb5366 to your computer and use it in GitHub Desktop.
CartoCamp Elections

A version of this workshop for Spanish elections (in Spanish): https://gist.github.com/jsanz/b621435f418ad6a856c2

Here are the links to the examples provided in the intro:

Election Mapping Bonanza

Original workshop from Mamata Akella (@mamataakella) and Andy Eschbacher (@MrEPhysics) Adapted to 45 mn webinar format/more generalist audience by Erik Escoffier (@nerik)

Original presentations here

Importing the Elections Datasets

We are going to be using a dataset of 2012 Presidential Election Results from Data.gov. To make it easier, we made a simplified version.

To import it into your account, go to the following page and click "CREATE MAP":

https://elections-cartocamp.cartodb.com/tables/election_results_2012/public/map

This will import the dataset as cartodb_query or something like that. We need to change the name of the table to something more reasonable. Change this by:

  1. Opening the tray on the right
  2. Clicking on SQL
  3. Clicking on the hyper-linked table name
  4. and finally double-clicking the table name in the upper right

Go back to the original map by going to your dashboard, clicking the Datasets/Map dropdown on the top, and then choosing the map that was created when you imported your dataset.

A first choropleth

A choropleth map is a thematic map in which areas (here, US counties) are shaded or patterned in proportion to the measurement of the statistical variable being displayed on the map (here, election results).

We will use the winner column of our imported table to make our first simple map.

Use the category wizard to customize colors and other visual attributes.

We have two colors that we'll use for our maps a blue (#2F4886) for Obama/Democrat and a red (#AD373E) for Romney/Republican.

A better projection

Our final maps use the Albers Equal Area Conic projection centered on the contiguous United States (SRID 5070). This is a common projection for thematic maps of the US. This is an equal area projection meaning areas are preserved and distortion is minimized.

This projection is part of the default spatial_ref_sys table in your CartoDB account. For a more detailed discussion on projections with CartoDB see this blog.

The following SQL queries do a couple of things:

  • project the data using ST_Transform
  • and also define any attributes that we'll need for styling and/or querying later in the process
  • cartodb_id needs to be selected to enable interactivity on any layer

election_results_2012

SELECT
  ST_Transform(the_geom, 5070)
AS
  the_geom_webmercator,
  cartodb_id,
  obama,
  pct_obm,
  pct_rom,
  pct_wnr,
  romney,
  winner
FROM
  election_results_2012

Turn off Elections Data and Positron

Let's turn off the default basemap Positron and make the background white

  • click the option Change Basemap in the bottom left hand corner of the map editor view
  • next, choose the option for Custom
  • and then click the white color chip (#FFFFFF)

Exploring Our Dataset with SQL

We're going to give different color intensities to counties depending on the margin by which each candidate won.

To do so, we need to find the breaks for the vote percentages to change the colors that correspond to voting within ranges.

We can explore the bounds of our data using the avg(value), min(value) and max(value) aggregate functions built into SQL. We will also need to filter by the winning candidate.

To find the minimum percentage Obama got to win a county, we would do the following:

SELECT
  min(pct_obm)
FROM
  election_results_2012
WHERE
  winner = 'Obama'

This will produce:

  min
--------
48.72348

We are using a basic SELECT over an aggregate of one column and filtering by which candidate won.

Similarly, we can do the same to find the maximum for Obama, and the min and max for Romney. Once we have these values we can use them to assign values to classes to visualize our data.

Since the minimum value is around 48% for each, we can choose breaks such as these:

  • 45 - 55 for a smaller win
  • 55 - 65 for a larger win
  • 65+ for a huge win

A better choropleth

In CartoCSS, we will need to write rules similar to this to make it symbolize:

#layer  {
  blue;

  [pct_obm < 65] {
    light blue
  }
  [pct_obm < 55] {
    lighter blue
  }
 }
  • We have two colors that we'll use for our maps a blue (#2F4886) for Obama/Democrat and a red (#AD373E) for Romney/Republican. We'll assign these two colors as CartoCSS variables that we can use throughout the different styles election maps
  • Open the CartoCSS Editor for the elections_2012 layer by clicking on CSS
  • Add these two variables above the CartoCSS:
@obama: #2F4886;
@romney:#AD373E;
  • As a first step, let's color each county based on the winner using the color variables for each candidate based on the winner field:

  • We'll write out the CartoCSS to symbolize each county based on the percentage votes for each candidate in the counties they won using the classifications we came up with. The fields that we'll use are winner,pct_rom,pct_obm

  • The three breaks that we determined are:

>=45
>=55
>=65
  • We'll use these numbers to write out our class breaks in CartoCSS and use a CartoCSS color variable (lighten) to make counties with less votes lighter
    • Let's start with Obama:
@obama: #2f4886;

#election_results_2012[winner="Obama"] {
   polygon-fill: @obama;

   [pct_obm < 65] {
      polygon-fill: lighten(@obama, 20)
   }
   [pct_obm < 55] {
      polygon-fill: lighten(@obama, 40)
   }

}
  • And then, the same for Romney:
@romney: #B40903;

#election_results_2012[winner="Obama"] {
   polygon-fill: @obama;

   [pct_obm < 65] {
      polygon-fill: lighten(@obama, 20)
   }
   [pct_obm < 55] {
      polygon-fill: lighten(@obama, 40)
   }

}

Popup configuration

With a bit of basic HTML and the use of Mustache templates for displaying values from the database, we can create hovers for each of the symbols to give the underlying vote percentage.

To change the template, go to the Infowindow tray, click on "Hover" at the top of the tray. First select all of the fields by toggling the last switch on the bottom of the list.

Next click on the </> tag in the upper right to customize the HTML. Replace the HTML there with the following:

<div class="cartodb-tooltip-content-wrapper">
  <div class="cartodb-tooltip-content">
      <p><b>{{county}}, {{state}}</b></p>
    <p>Romney (R): {{pct_rom}}%</p>
    <p>Obama (D): {{pct_obm}}%</p>
  </div>
</div>

Adding context with a reference layer

We'll add a layer of context by showing counties and state boundaries. This will allow us to explore more some more advanced CartoCSS styling: filtering by column value and zoom level.

The next dataset we will import by connecting with an external source. Start by:

  1. Clicking "+ Add Layer" on the top of the tray on the right,
  2. Click "Connect Dataset"
  3. And paste in the following URL:
https://elections-cartocamp.cartodb.com:443/api/v2/sql?q=select%20*%20from%20public.state_county_boundaries&format=geojson&filename=state_county_boundaries
  • Looking at the imported table:
  • Let's look at DATA VIEW to see what attributes we have in the feature column
  • We'll symbolize state lines and county lines (depending on zoom level) so we'll need the feature attribute and its two values county and state to do that

We'll have to reproject this dataset with the same projection we used for the choropleth layer.

** state_county_boundaries **

SELECT
  ST_Transform(the_geom, 5070)
AS
  the_geom_webmercator,
  feature
FROM
  state_county_boundaries
  • Back to MAP VIEW
  • expand the reference layer and modify the default CartoCSS
  • First, let's differentiate between which lines are state lines and which lines are county lines using the feature attribute and assigning each type a bold color:
#state_county_boundaries {
   line-color: #3B007F;
   line-width: 0.5;
   line-opacity: 1;

   [feature='state']{
     line-color: blue;
   }

   [feature='county']{
     line-color: green;
   }
 }
  • Next, we'll define which zoom level each layer will draw:
#state_county_boundaries {
  [feature='state'][zoom>=4],
  [feature='county'][zoom>=5]{

    line-color: #3B007F;
    line-width: 0.5;
    line-opacity: 1;

    [feature='state']{
      line-color: blue;
    }

    [feature='county']{
      line-color: green;
    }
  }
}
  • And then we'll assign some global variables to all lines and more specific styling to state lines and county lines specifically
  • Since we want all lines to be white, we can set that as a global property:
#state_county_boundaries {
   [feature='state'][zoom>=4],
   [feature='county'][zoom>=5]{

     line-color: #3B007F;
     line-width: 0.5;
     line-opacity: 1;
 ...
  • Next, we can assign feature specific styling for state lines (with a larger line-width) and county lines (with a smaller line-width) to push them to the background:
#state_county_boundaries {

  [feature='states'][zoom>=4],
  [feature='county'][zoom>=5]{

    line-color: #fff;

    [feature='states']{
      line-width: 1;
    }

    [feature='county']{
      line-width: 0.25;
    }
  }
}

A different way of showing results

In a way, this map is lying. The issue with choropleths is that they tend to over-emphasize large geographical units (county area), notwithstanding how much they actually matter (size of the voting population). Let's try a different cartographic representation.

Slide on proportional symbols

  • Start by adding a layer using the same dataset (election_results_2012).
  • Use the 'Bubble map' wizard on the pct_obm column. Look at how the two legends nicely stack up! Change the size of the bubbles so that they don't overlap too much.
  • Hide the choropleth layer
  • Apply the projection to the dataset again by using the same SQL query:

election_results_2012

SELECT
  ST_Transform(the_geom, 5070)
AS
  the_geom_webmercator,
  cartodb_id,
  obama,
  pct_obm,
  pct_rom,
  pct_wnr,
  romney,
  winner
FROM
  election_results_2012
  • Change the color of the reference layer lines to give a bit of context

Proportional symbols with the two candidates

Currently the circles sizes solely maps to Obama's score. How do we use proportional symbols to show both candidates scores?

As with the choropleth, we're gonna show the margin of victory for each candidate. But this time not using breaks but a continuous value, which will be calculated inside the SQL query:

abs(pct_rom - pct_obm) As vote_diff

We first calculate the difference between Romney's score and Obama's, which will return a positive value for counties where Romney won, and a negative value for counties where Obama did.

Let's add this generated column to our SQL query in the SQL pane:


SELECT
  ST_Transform(the_geom, 5070)
AS
  the_geom_webmercator,
  cartodb_id,
  obama,
  pct_obm,
  pct_rom,
  pct_wnr,
  romney,
  winner,
  abs(pct_rom - pct_obm) As vote_diff
FROM
  election_results_2012

We now need to use colors to visually differenciate between Obama and Romney, using the winner column. Replace the CartoCSS generated by the Bubble Wizard to this:

@obama: #2F4886;
@romney:#AD373E;

#election_results_2012 {

  marker-width: [vote_diff];
  marker-allow-overlap: true;

  [winner='Obama']{
    marker-fill: @obama;
  }

  [winner='Romney']{
    marker-fill: @romney;
  }

}

Notice how we directly use the value in the generated column to scale the size of the circle. You might want to downsize the circles a bit - this has to be done directly in the computed column:

  abs(pct_rom - pct_obm)/4 As vote_diff,

A better proportional symbol map

This proportional symbols map is nice, but it has a flaw: our eyes interprets the area of circles, while we mapped the value to its diameter (with marker-width). Here's the fix involving some simple math and SQL:

proportional symbols

With ms As (SELECT max(abs(romney-obama)) As max_diff FROM election_results_2012)

SELECT
  abs(romney - obama) As vote_diff,
  50 * sqrt(abs(romney - obama) / max_diff) As symbol_size,
  winner,
  romney,
  obama,
  ttl_vt,
  ST_Transform(ST_Centroid(the_geom),5070) As the_geom_webmercator,
  state_fips,
  fips,
  state,
  county,
  round(pct_obm::numeric,2) AS pct_obm,
  round(pct_rom::numeric,2) AS pct_rom,
  cartodb_id
FROM
  election_results_2012, ms
ORDER BY
  symbol_size desc

You'll also notice how we used absolute values (romney instead of pct_rom). This requires a little bit math to lerp the value into a value ranging from 0 to 1, but it's a very good rule of thumb: always use raw absolute values in calculations, this will avoid erroneous values (ie a percentage of a percentage gives returns wrong value).

Going further...

You'll notice that while the proportional symbols fixes the visual distortion of the choropleth map, it also introduces a new problem: occlusion (look at how circles hide each other in the northwest coast). One way to fix this is the use of cartograms, but that will be the topic of another workshop :)

One issue with the Albers projection used is that it tends to isolate Alaska, Puerto Rico and Hawaii from mainland, also making it hard to integrate in a page layout.

We could use a completely custom projection, based on Albers, to artificially create a more practical rectangle layout. Copy-paste this into your SQL tray and execute it (Apply query):


CREATE OR REPLACE FUNCTION CDB_AlbersUSA (g geometry, state text) RETURNS geometry as $$
DECLARE
	reply geometry;
	srid INT;
	alaska text[] = '{"Alaska","AK","02"}'::text[];
	hawaii text[] = '{"Hawaii","HI","15"}'::text[];
	puertorico text[] = '{"Puerto Rico","PR","72"}'::text[];
BEGIN

	-- convert to wgs84
	IF ST_SRID(g) != 4326 THEN g = ST_Transform(g,4326); END IF;

	EXECUTE 'SELECT
	    ST_SetSRID(
	    	CASE
  				WHEN $2 = any($3)
  					THEN
					ST_Scale(
						ST_Translate(
							ST_Transform(
								$1
								, 3338
							)
							, -3800000
							, -900000
						)
						, 0.7
						, 0.7
					)
				WHEN $2 = any($4)
					THEN
  					ST_Scale(
  						ST_Transform(
  							ST_Translate(
  								$1
			                    , -8
			                    , -5
			                )
			                , 102007
			            )
			            , 1.2
			            , 1.2
			        )
				WHEN $2 = any($5)
					THEN
  					ST_Scale(
  						ST_Transform(
  							ST_Translate(
  								$1
			                    , 10
			                    , -1.5
			                )
			                , 32161
						)
						, 1.5
						, 1.5
					)
				ELSE
					ST_Transform($1,42303)
  				END
  				, 3857
  			)'
	INTO reply
	USING g, state, alaska, hawaii, puertorico;

	reply = ST_Transform(reply,4326);

	RETURN reply;

END;
$$ language plpgsql IMMUTABLE;

This SQL function takes a geometry in WGS 84 (the_geom, typically) and returns a displaced geometry in the same projection, which means it still needs to be projected to web mercator. So we have to replace our ST_Transform call to this:

ST_Transform(CDB_AlbersUSA(the_geom, state), 3857)

Note: you'll need to add a few projections to your spatial_ref_sys beforehand (102007, 42303).

Bonus Section

Put all of your maps into a nifty template:

Resources

Display the source blob
Display the rendered blob
Raw
{"type": "FeatureCollection", "features": [{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-85.416437,31.619466],[-85.416038,31.706664],[-85.216076,31.702409],[-85.125441,31.762969],[-85.11893,31.732664],[-85.12553,31.694965],[-85.058169,31.620227],[-85.05796,31.57084],[-85.041881,31.544684],[-85.051681,31.51954],[-85.071621,31.468384],[-85.066005,31.431363],[-85.092487,31.362881],[-85.087929,31.321648],[-85.08883,31.308648],[-85.179131,31.307675],[-85.417434,31.314973],[-85.416437,31.619466]]]]},"properties":{"cartodb_id":3092,"feature":"county","statefp":"01","countyfp_or_state":"067","name":"Henry"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-88.113584,32.00624],[-88.007077,32.185313],[-88.019145,32.28524],[-87.930661,32.310574],[-88.046335,32.377087],[-88.031623,32.43361],[-87.85342,32.532086],[-87.824977,32.544789],[-87.812559,32.52456],[-87.728521,32.524532],[-87.728744,32.480918],[-87.524485,32.482028],[-87.52429,32.307293],[-87.47308,32.307614],[-87.472206,32.264919],[-87.514066,32.265993],[-87.521946,32.132816],[-87.624005,32.132345],[-87.622756,32.005482],[-87.667769,31.991355],[-88.07349,31.990182],[-88.113584,32.00624]]]]},"properties":{"cartodb_id":3090,"feature":"county","statefp":"01","countyfp_or_state":"091","name":"Marengo"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-87.026846,33.246459],[-86.97836,33.256222],[-86.882518,33.332687],[-86.830597,33.332015],[-86.674418,33.466521],[-86.517199,33.524136],[-86.516783,33.545896],[-86.481939,33.502544],[-86.378222,33.502411],[-86.378665,33.390983],[-86.341113,33.354599],[-86.35734,33.296917],[-86.458026,33.241434],[-86.503127,33.179144],[-86.491029,33.102944],[-86.511142,33.088431],[-86.517344,33.020566],[-86.610003,33.070003],[-86.881638,33.071861],[-86.881182,33.049901],[-87.025596,33.165795],[-87.026846,33.246459]]]]},"properties":{"cartodb_id":3217,"feature":"county","statefp":"01","countyfp_or_state":"117","name":"Shelby"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-87.421936,33.003379],[-87.318539,33.006179],[-87.281945,33.13306],[-87.199317,33.130657],[-87.199153,33.196554],[-87.065738,33.246907],[-87.026846,33.246459],[-87.025596,33.165795],[-86.881182,33.049901],[-86.876118,32.836264],[-87.019157,32.837034],[-87.319184,32.831522],[-87.319473,32.875124],[-87.4212,32.874508],[-87.421936,33.003379]]]]},"properties":{"cartodb_id":758,"feature":"county","statefp":"01","countyfp_or_state":"007","name":"Bibb"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-86.023012,32.419978],[-85.852625,32.475747],[-85.886148,32.493053],[-85.797156,32.494236],[-85.798585,32.581089],[-85.695854,32.595933],[-85.489348,32.496937],[-85.438575,32.49709],[-85.434045,32.40984],[-85.433543,32.234648],[-85.856218,32.231975],[-85.898539,32.305289],[-85.898689,32.274987],[-85.919293,32.274382],[-85.991283,32.336098],[-86.023012,32.419978]]]]},"properties":{"cartodb_id":2012,"feature":"county","statefp":"01","countyfp_or_state":"087","name":"Macon"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-87.951785,33.91993],[-87.739347,33.914731],[-87.635932,33.915251],[-87.63604,33.871999],[-87.531602,33.867618],[-87.528338,33.692049],[-87.423843,33.689112],[-87.423701,33.602096],[-87.631718,33.609833],[-87.666661,33.521667],[-87.840683,33.524839],[-87.946519,33.524065],[-87.951785,33.91993]]]]},"properties":{"cartodb_id":2602,"feature":"county","statefp":"01","countyfp_or_state":"057","name":"Fayette"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-86.332394,34.040499],[-86.303516,34.099073],[-86.206107,34.17265],[-86.1089,34.186311],[-86.106086,34.200756],[-85.843617,34.200006],[-85.841468,34.111096],[-85.797651,34.105657],[-85.738975,33.96846],[-85.740968,33.935301],[-85.846174,33.95726],[-85.96917,33.914598],[-85.995169,33.864897],[-86.026764,33.851751],[-86.065272,33.842198],[-86.142717,33.899391],[-86.199164,33.988918],[-86.290127,33.983719],[-86.325622,33.940147],[-86.370152,33.93977],[-86.332394,34.040499]]]]},"properties":{"cartodb_id":1795,"feature":"county","statefp":"01","countyfp_or_state":"055","name":"Etowah"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-85.999157,32.250543],[-85.986557,32.272342],[-85.919293,32.274382],[-85.898689,32.274987],[-85.898539,32.305289],[-85.856218,32.231975],[-85.433543,32.234648],[-85.427441,32.146551],[-85.410241,32.146651],[-85.428476,32.014951],[-85.587344,31.997355],[-85.657668,31.880275],[-85.791047,31.880357],[-85.790048,31.967254],[-85.88435,31.967253],[-85.893652,32.047351],[-85.946298,32.06189],[-85.996853,32.051049],[-85.997859,32.141605],[-85.999157,32.250543]]]]},"properties":{"cartodb_id":2376,"feature":"county","statefp":"01","countyfp_or_state":"011","name":"Bullock"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-87.634725,34.306997],[-87.529722,34.304598],[-87.109911,34.299299],[-87.111992,33.992385],[-87.151036,33.993225],[-87.170054,34.005204],[-87.216735,33.993907],[-87.636118,34.002203],[-87.634725,34.306997]]]]},"properties":{"cartodb_id":1825,"feature":"county","statefp":"01","countyfp_or_state":"133","name":"Winston"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-87.166581,31.519561],[-87.135051,31.642417],[-87.0511,31.71834],[-86.905899,31.753035],[-86.906769,31.632671],[-86.839386,31.525204],[-86.701554,31.523946],[-86.662082,31.402798],[-86.701139,31.324358],[-86.700282,31.192217],[-86.772519,31.202243],[-86.763961,31.261293],[-87.427455,31.260386],[-87.166581,31.519561]]]]},"properties":{"cartodb_id":2213,"feature":"county","statefp":"01","countyfp_or_state":"035","name":"Conecuh"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-86.783628,34.991925],[-86.467798,34.990692],[-86.318761,34.991079],[-86.311274,34.991098],[-86.256968,34.937775],[-86.325569,34.937323],[-86.359034,34.63261],[-86.326853,34.599403],[-86.330198,34.512684],[-86.423914,34.479581],[-86.533445,34.502795],[-86.550166,34.545963],[-86.578855,34.581355],[-86.646393,34.548921],[-86.689353,34.586425],[-86.790056,34.55079],[-86.783628,34.991925]]]]},"properties":{"cartodb_id":1719,"feature":"county","statefp":"01","countyfp_or_state":"089","name":"Madison"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-87.636118,34.002203],[-87.216735,33.993907],[-87.170054,34.005204],[-87.151036,33.993225],[-87.091836,33.890093],[-86.963358,33.858221],[-86.953664,33.815297],[-87.005965,33.787237],[-87.057757,33.656363],[-87.17943,33.613794],[-87.185794,33.555882],[-87.271056,33.529862],[-87.266923,33.512929],[-87.318237,33.514166],[-87.318532,33.587393],[-87.37104,33.587065],[-87.423701,33.602096],[-87.423843,33.689112],[-87.528338,33.692049],[-87.531602,33.867618],[-87.63604,33.871999],[-87.635932,33.915251],[-87.636118,34.002203]]]]},"properties":{"cartodb_id":734,"feature":"county","statefp":"01","countyfp_or_state":"127","name":"Walker"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-88.432007,31.114298],[-88.329782,31.143821],[-88.022649,31.144267],[-87.972869,31.162694],[-87.940121,31.147237],[-87.976222,31.089535],[-87.941152,31.048161],[-87.965187,30.967784],[-87.92429,30.935405],[-87.981261,30.886895],[-87.944546,30.827046],[-88.026319,30.753358],[-88.008396,30.684956],[-88.061998,30.644891],[-88.064898,30.588292],[-88.081617,30.546317],[-88.103768,30.500903],[-88.105699,30.401865],[-88.136173,30.320729],[-88.195664,30.321242],[-88.257764,30.318933],[-88.311608,30.368908],[-88.364022,30.388006],[-88.395023,30.369425],[-88.403931,30.543359],[-88.41227,30.731771],[-88.412467,30.735597],[-88.426021,30.998281],[-88.432007,31.114298]]]]},"properties":{"cartodb_id":3027,"feature":"county","statefp":"01","countyfp_or_state":"097","name":"Mobile"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-85.641129,33.320501],[-85.643482,33.495885],[-85.347744,33.501378],[-85.304944,33.482756],[-85.294347,33.427993],[-85.236595,33.129544],[-85.232441,33.108077],[-85.593177,33.10734],[-85.653654,33.106634],[-85.641129,33.320501]]]]},"properties":{"cartodb_id":420,"feature":"county","statefp":"01","countyfp_or_state":"111","name":"Randolph"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-86.701554,31.523946],[-86.499213,31.525331],[-86.39994,31.527128],[-86.398536,31.451325],[-86.280155,31.52851],[-86.277031,31.455602],[-86.193951,31.440072],[-86.196091,31.410348],[-86.193476,31.192213],[-86.190559,31.01363],[-86.187248,30.994067],[-86.364974,30.994437],[-86.388645,30.994528],[-86.563494,30.995202],[-86.688241,30.996202],[-86.700251,31.008901],[-86.700282,31.192217],[-86.701139,31.324358],[-86.662082,31.402798],[-86.701554,31.523946]]]]},"properties":{"cartodb_id":2535,"feature":"county","statefp":"01","countyfp_or_state":"039","name":"Covington"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-86.359034,34.63261],[-86.325569,34.937323],[-86.256968,34.937775],[-86.311274,34.991098],[-85.863946,34.987031],[-85.605165,34.984678],[-85.595165,34.924171],[-85.582812,34.860435],[-85.785471,34.624584],[-86.015594,34.481639],[-86.057712,34.475994],[-86.083415,34.464571],[-86.097741,34.512547],[-86.148464,34.599069],[-86.16753,34.599264],[-86.172856,34.599318],[-86.174103,34.599336],[-86.175324,34.599354],[-86.178649,34.599392],[-86.179053,34.599396],[-86.182976,34.599438],[-86.18299,34.599438],[-86.199778,34.59962],[-86.218086,34.599817],[-86.218962,34.599827],[-86.218975,34.599827],[-86.221192,34.599851],[-86.224237,34.599884],[-86.233777,34.599987],[-86.235077,34.600001],[-86.237028,34.600023],[-86.245611,34.600116],[-86.24568,34.600116],[-86.249983,34.6001],[-86.252434,34.600125],[-86.254082,34.600143],[-86.257783,34.600122],[-86.266148,34.600075],[-86.269123,34.600059],[-86.275775,34.600023],[-86.27814,34.600009],[-86.279503,34.600004],[-86.284617,34.599974],[-86.300533,34.599888],[-86.305591,34.59986],[-86.311677,34.599827],[-86.316026,34.599802],[-86.316036,34.599802],[-86.317146,34.599796],[-86.318251,34.59979],[-86.318265,34.59979],[-86.326958,34.599744],[-86.326906,34.599573],[-86.326853,34.599403],[-86.359034,34.63261]]]]},"properties":{"cartodb_id":2100,"feature":"county","statefp":"01","countyfp_or_state":"071","name":"Jackson"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-86.517344,33.020566],[-86.511142,33.088431],[-86.491029,33.102944],[-86.17437,33.104394],[-86.010919,33.104636],[-86.00917,33.09026],[-86.013491,32.819203],[-86.007187,32.754984],[-86.336694,32.76813],[-86.374974,32.75358],[-86.457015,32.813899],[-86.451524,32.863692],[-86.515959,32.929361],[-86.517344,33.020566]]]]},"properties":{"cartodb_id":665,"feature":"county","statefp":"01","countyfp_or_state":"037","name":"Coosa"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-85.789142,31.617964],[-85.748251,31.618048],[-85.416437,31.619466],[-85.417434,31.314973],[-85.485854,31.246096],[-85.666121,31.267316],[-85.710866,31.195179],[-85.791402,31.196349],[-85.789142,31.617964]]]]},"properties":{"cartodb_id":1495,"feature":"county","statefp":"01","countyfp_or_state":"045","name":"Dale"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-88.389249,32.578122],[-88.373338,32.711825],[-88.34749,32.929035],[-88.340085,32.991264],[-88.171852,32.99586],[-88.175329,32.932093],[-88.207316,32.924782],[-88.079338,32.772948],[-88.109633,32.770989],[-88.053729,32.593052],[-87.928689,32.632284],[-87.840858,32.605036],[-87.898355,32.592321],[-87.85342,32.532086],[-88.031623,32.43361],[-88.046335,32.377087],[-87.930661,32.310574],[-88.421312,32.308679],[-88.389249,32.578122]]]]},"properties":{"cartodb_id":3144,"feature":"county","statefp":"01","countyfp_or_state":"119","name":"Sumter"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-86.503127,33.179144],[-86.458026,33.241434],[-86.35734,33.296917],[-86.341113,33.354599],[-86.378665,33.390983],[-86.281999,33.509895],[-86.235328,33.494532],[-86.16948,33.619236],[-86.191868,33.698273],[-86.145562,33.679098],[-86.050669,33.67459],[-85.994935,33.586475],[-85.794559,33.585565],[-85.796054,33.55622],[-85.79763,33.541231],[-85.85189,33.498742],[-85.904909,33.498655],[-85.923762,33.396206],[-85.976525,33.38187],[-85.980293,33.29419],[-86.118198,33.29632],[-86.120567,33.194511],[-86.17283,33.195681],[-86.17437,33.104394],[-86.491029,33.102944],[-86.503127,33.179144]]]]},"properties":{"cartodb_id":1009,"feature":"county","statefp":"01","countyfp_or_state":"121","name":"Talladega"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-88.203583,34.086528],[-88.173262,34.32104],[-87.634725,34.306997],[-87.636118,34.002203],[-87.635932,33.915251],[-87.739347,33.914731],[-87.951785,33.91993],[-87.951929,34.022202],[-87.98693,34.052102],[-88.207229,34.058333],[-88.203583,34.086528]]]]},"properties":{"cartodb_id":2473,"feature":"county","statefp":"01","countyfp_or_state":"093","name":"Marion"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-88.468662,31.893856],[-88.46866,31.933173],[-88.453388,32.053049],[-88.431145,32.227636],[-88.428278,32.250143],[-88.421312,32.308679],[-87.930661,32.310574],[-88.019145,32.28524],[-88.007077,32.185313],[-88.113584,32.00624],[-88.07349,31.990182],[-88.121414,31.950256],[-88.180384,31.814546],[-88.088288,31.699303],[-88.463625,31.697942],[-88.468669,31.790722],[-88.468662,31.893856]]]]},"properties":{"cartodb_id":1639,"feature":"county","statefp":"01","countyfp_or_state":"023","name":"Choctaw"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-86.17283,33.195681],[-86.120567,33.194511],[-86.118198,33.29632],[-85.980293,33.29419],[-85.976525,33.38187],[-85.923762,33.396206],[-85.904909,33.498655],[-85.85189,33.498742],[-85.887782,33.469427],[-85.782735,33.469349],[-85.765427,33.498593],[-85.643482,33.495885],[-85.641129,33.320501],[-85.653654,33.106634],[-85.974715,33.105286],[-86.00917,33.09026],[-86.010919,33.104636],[-86.17437,33.104394],[-86.17283,33.195681]]]]},"properties":{"cartodb_id":719,"feature":"county","statefp":"01","countyfp_or_state":"027","name":"Clay"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-87.784796,31.324672],[-87.665572,31.423166],[-87.573733,31.435088],[-87.619844,31.519049],[-87.565413,31.553573],[-87.566841,31.697115],[-87.516131,31.697824],[-87.50093,31.829251],[-86.906899,31.830628],[-86.905899,31.753035],[-87.0511,31.71834],[-87.135051,31.642417],[-87.166581,31.519561],[-87.427455,31.260386],[-87.558967,31.227383],[-87.61589,31.244458],[-87.71765,31.303124],[-87.765152,31.297346],[-87.784796,31.324672]]]]},"properties":{"cartodb_id":1834,"feature":"county","statefp":"01","countyfp_or_state":"099","name":"Monroe"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-87.840683,33.524839],[-87.666661,33.521667],[-87.631718,33.609833],[-87.423701,33.602096],[-87.37104,33.587065],[-87.318532,33.587393],[-87.318237,33.514166],[-87.266923,33.512929],[-87.341698,33.470501],[-87.194841,33.343069],[-87.179754,33.32801],[-87.065754,33.275937],[-87.065738,33.246907],[-87.199153,33.196554],[-87.199317,33.130657],[-87.281945,33.13306],[-87.318539,33.006179],[-87.421936,33.003379],[-87.715709,33.006824],[-87.832233,33.017258],[-87.831459,33.093857],[-87.838047,33.136864],[-87.837521,33.153637],[-87.840683,33.524839]]]]},"properties":{"cartodb_id":2684,"feature":"county","statefp":"01","countyfp_or_state":"125","name":"Tuscaloosa"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-88.134263,34.62266],[-88.097888,34.892202],[-87.973222,34.88255],[-87.92029,34.804468],[-87.806963,34.732061],[-87.524363,34.832384],[-87.42651,34.800022],[-87.44577,34.650968],[-87.529667,34.567081],[-88.139559,34.581697],[-88.134263,34.62266]]]]},"properties":{"cartodb_id":666,"feature":"county","statefp":"01","countyfp_or_state":"033","name":"Colbert"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-86.577528,33.801977],[-86.405981,33.835896],[-86.348077,33.881],[-86.325622,33.940147],[-86.290127,33.983719],[-86.199164,33.988918],[-86.142717,33.899391],[-86.065272,33.842198],[-86.043993,33.763595],[-86.145562,33.679098],[-86.191868,33.698273],[-86.16948,33.619236],[-86.235328,33.494532],[-86.281999,33.509895],[-86.378665,33.390983],[-86.378222,33.502411],[-86.481939,33.502544],[-86.516783,33.545896],[-86.525073,33.721236],[-86.542758,33.765173],[-86.577799,33.765316],[-86.577528,33.801977]]]]},"properties":{"cartodb_id":1091,"feature":"county","statefp":"01","countyfp_or_state":"115","name":"St. Clair"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-87.266923,33.512929],[-87.271056,33.529862],[-87.185794,33.555882],[-87.17943,33.613794],[-87.057757,33.656363],[-87.005965,33.787237],[-86.953664,33.815297],[-86.883947,33.843237],[-86.759212,33.840592],[-86.64529,33.773012],[-86.577799,33.765316],[-86.542758,33.765173],[-86.525073,33.721236],[-86.516783,33.545896],[-86.517199,33.524136],[-86.674418,33.466521],[-86.830597,33.332015],[-86.882518,33.332687],[-86.97836,33.256222],[-87.026846,33.246459],[-87.065738,33.246907],[-87.065754,33.275937],[-87.179754,33.32801],[-87.194841,33.343069],[-87.341698,33.470501],[-87.266923,33.512929]]]]},"properties":{"cartodb_id":1026,"feature":"county","statefp":"01","countyfp_or_state":"073","name":"Jefferson"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-87.667769,31.991355],[-87.622756,32.005482],[-87.624005,32.132345],[-87.521946,32.132816],[-87.514066,32.265993],[-87.472206,32.264919],[-87.324783,32.199069],[-87.178071,32.047514],[-86.906956,32.04797],[-86.856576,32.048352],[-86.857583,31.962167],[-86.908939,31.961673],[-86.906899,31.830628],[-87.50093,31.829251],[-87.620112,31.827123],[-87.666836,31.875747],[-87.667769,31.991355]]]]},"properties":{"cartodb_id":549,"feature":"county","statefp":"01","countyfp_or_state":"131","name":"Wilcox"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-86.145562,33.679098],[-86.043993,33.763595],[-86.065272,33.842198],[-86.026764,33.851751],[-85.995169,33.864897],[-85.96917,33.914598],[-85.846174,33.95726],[-85.740968,33.935301],[-85.738975,33.96846],[-85.542214,33.956732],[-85.530094,33.941423],[-85.532482,33.889152],[-85.638049,33.773339],[-85.638579,33.648413],[-85.796054,33.55622],[-85.794559,33.585565],[-85.994935,33.586475],[-86.050669,33.67459],[-86.145562,33.679098]]]]},"properties":{"cartodb_id":1673,"feature":"county","statefp":"01","countyfp_or_state":"015","name":"Calhoun"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-85.696755,32.697429],[-85.679854,32.71253],[-85.593151,32.72853],[-85.574954,32.736347],[-85.285043,32.730731],[-85.124533,32.75163],[-85.11425,32.730447],[-85.088533,32.657958],[-85.076072,32.608067],[-85.069848,32.583146],[-85.0071,32.523868],[-85.001131,32.510155],[-85.059294,32.472909],[-85.333843,32.468639],[-85.330143,32.410842],[-85.434045,32.40984],[-85.438575,32.49709],[-85.489348,32.496937],[-85.695854,32.595933],[-85.696755,32.697429]]]]},"properties":{"cartodb_id":2096,"feature":"county","statefp":"01","countyfp_or_state":"081","name":"Lee"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-88.026319,30.753358],[-87.944546,30.827046],[-87.981261,30.886895],[-87.92429,30.935405],[-87.965187,30.967784],[-87.941152,31.048161],[-87.976222,31.089535],[-87.940121,31.147237],[-87.972869,31.162694],[-87.946588,31.19293],[-87.83592,31.231053],[-87.804023,31.319017],[-87.765152,31.297346],[-87.71765,31.303124],[-87.61589,31.244458],[-87.61537,31.000181],[-87.598829,30.997422],[-87.598937,30.997422],[-87.592064,30.95146],[-87.634943,30.865857],[-87.542268,30.767481],[-87.523621,30.738285],[-87.442291,30.692661],[-87.400189,30.657201],[-87.401189,30.604383],[-87.43145,30.550252],[-87.444722,30.507484],[-87.414685,30.457289],[-87.366601,30.436643],[-87.431784,30.403193],[-87.452282,30.344097],[-87.518324,30.280435],[-87.656888,30.249709],[-87.818867,30.228314],[-87.893201,30.239237],[-87.806466,30.279798],[-87.796717,30.324198],[-87.865017,30.38345],[-87.914136,30.446144],[-87.933355,30.487357],[-87.901711,30.550879],[-87.914956,30.585893],[-87.93107,30.652694],[-88.008396,30.684956],[-88.026319,30.753358]]]]},"properties":{"cartodb_id":3058,"feature":"county","statefp":"01","countyfp_or_state":"003","name":"Baldwin"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-86.496774,32.344437],[-86.459552,32.405441],[-86.411172,32.409937],[-86.262006,32.50169],[-86.192284,32.43613],[-86.046402,32.406146],[-86.023012,32.419978],[-85.991283,32.336098],[-85.919293,32.274382],[-85.986557,32.272342],[-85.999157,32.250543],[-85.997859,32.141605],[-85.996853,32.051049],[-85.995563,31.967554],[-86.191379,31.966453],[-86.302217,31.965065],[-86.303616,32.051664],[-86.406276,32.050731],[-86.408272,32.208976],[-86.408771,32.244309],[-86.422236,32.253717],[-86.448746,32.263595],[-86.458512,32.274092],[-86.48063,32.271458],[-86.484678,32.284473],[-86.474479,32.331547],[-86.496774,32.344437]]]]},"properties":{"cartodb_id":1792,"feature":"county","statefp":"01","countyfp_or_state":"101","name":"Montgomery"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-85.593177,33.10734],[-85.232441,33.108077],[-85.232441,33.108075],[-85.186117,32.870138],[-85.1844,32.861317],[-85.160963,32.826672],[-85.124533,32.75163],[-85.285043,32.730731],[-85.574954,32.736347],[-85.593151,32.72853],[-85.593177,33.10734]]]]},"properties":{"cartodb_id":2619,"feature":"county","statefp":"01","countyfp_or_state":"017","name":"Chambers"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-87.529667,34.567081],[-87.44577,34.650968],[-87.42651,34.800022],[-87.344224,34.796493],[-87.297905,34.750812],[-87.260676,34.758626],[-87.222773,34.763226],[-87.105073,34.686037],[-87.110111,34.313799],[-87.109911,34.299299],[-87.529722,34.304598],[-87.529667,34.567081]]]]},"properties":{"cartodb_id":1851,"feature":"county","statefp":"01","countyfp_or_state":"079","name":"Lawrence"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-86.193476,31.192213],[-86.125405,31.182057],[-85.791402,31.196349],[-85.710866,31.195179],[-85.48576,31.199886],[-85.488298,30.997965],[-85.498002,30.997865],[-85.579498,30.997029],[-85.749715,30.995282],[-85.893632,30.993455],[-86.035038,30.99375],[-86.187248,30.994067],[-86.190559,31.01363],[-86.193476,31.192213]]]]},"properties":{"cartodb_id":2607,"feature":"county","statefp":"01","countyfp_or_state":"061","name":"Geneva"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-85.666121,31.267316],[-85.485854,31.246096],[-85.417434,31.314973],[-85.179131,31.307675],[-85.08883,31.308648],[-85.089774,31.295026],[-85.108192,31.258591],[-85.107516,31.186451],[-85.035615,31.108192],[-85.021108,31.075464],[-85.011392,31.053546],[-85.002499,31.000682],[-85.031285,31.000647],[-85.145959,31.000693],[-85.333319,30.999555],[-85.488298,30.997965],[-85.48576,31.199886],[-85.710866,31.195179],[-85.666121,31.267316]]]]},"properties":{"cartodb_id":1131,"feature":"county","statefp":"01","countyfp_or_state":"069","name":"Houston"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-88.317135,33.184123],[-88.304443,33.28832],[-88.274516,33.534001],[-87.946519,33.524065],[-87.840683,33.524839],[-87.837521,33.153637],[-87.968348,33.078235],[-88.149395,33.037298],[-88.171852,32.99586],[-88.340085,32.991264],[-88.317135,33.184123]]]]},"properties":{"cartodb_id":877,"feature":"county","statefp":"01","countyfp_or_state":"107","name":"Pickens"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-87.278302,34.773563],[-87.214914,34.816011],[-87.210759,34.999049],[-86.836286,34.992803],[-86.783648,34.991925],[-86.783628,34.991925],[-86.790056,34.55079],[-86.907205,34.579792],[-87.105073,34.686037],[-87.222773,34.763226],[-87.260676,34.758626],[-87.278302,34.773563]]]]},"properties":{"cartodb_id":2798,"feature":"county","statefp":"01","countyfp_or_state":"083","name":"Limestone"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-88.202959,35.008028],[-88.000032,35.005939],[-87.984916,35.00591],[-87.851886,35.005656],[-87.625025,35.003732],[-87.606098,35.00352],[-87.224054,34.999231],[-87.216683,34.999148],[-87.210759,34.999049],[-87.214914,34.816011],[-87.278302,34.773563],[-87.260676,34.758626],[-87.297905,34.750812],[-87.344224,34.796493],[-87.42651,34.800022],[-87.524363,34.832384],[-87.806963,34.732061],[-87.92029,34.804468],[-87.973222,34.88255],[-88.097888,34.892202],[-88.154617,34.922392],[-88.200064,34.995634],[-88.202959,35.008028]]]]},"properties":{"cartodb_id":2956,"feature":"county","statefp":"01","countyfp_or_state":"077","name":"Lauderdale"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-87.525198,32.655713],[-87.473915,32.655867],[-87.472174,32.83062],[-87.4212,32.874508],[-87.319473,32.875124],[-87.319184,32.831522],[-87.019157,32.837034],[-87.017762,32.729532],[-87.110817,32.489948],[-87.423153,32.482965],[-87.421744,32.308101],[-87.47308,32.307614],[-87.52429,32.307293],[-87.524485,32.482028],[-87.525198,32.655713]]]]},"properties":{"cartodb_id":2453,"feature":"county","statefp":"01","countyfp_or_state":"105","name":"Perry"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-86.413335,32.750591],[-86.374974,32.75358],[-86.336694,32.76813],[-86.007187,32.754984],[-85.87986,32.754528],[-85.886148,32.493053],[-85.852625,32.475747],[-86.023012,32.419978],[-86.046402,32.406146],[-86.192284,32.43613],[-86.262006,32.50169],[-86.411172,32.409937],[-86.413116,32.707386],[-86.413335,32.750591]]]]},"properties":{"cartodb_id":2126,"feature":"county","statefp":"01","countyfp_or_state":"051","name":"Elmore"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61589,31.244458],[-87.558967,31.227383],[-87.427455,31.260386],[-86.763961,31.261293],[-86.772519,31.202243],[-86.700282,31.192217],[-86.700251,31.008901],[-86.688241,30.996202],[-86.785692,30.996983],[-86.831979,30.997354],[-86.927851,30.997678],[-87.162644,30.999026],[-87.163081,30.999024],[-87.312206,30.998404],[-87.425791,30.998058],[-87.519533,30.997552],[-87.598829,30.997422],[-87.61537,31.000181],[-87.61589,31.244458]]]]},"properties":{"cartodb_id":874,"feature":"county","statefp":"01","countyfp_or_state":"053","name":"Escambia"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-86.917595,32.664169],[-86.71339,32.661732],[-86.714219,32.705694],[-86.413116,32.707386],[-86.411172,32.409937],[-86.459552,32.405441],[-86.496774,32.344437],[-86.653419,32.397247],[-86.781354,32.392494],[-86.816107,32.30997],[-86.814912,32.340803],[-86.906403,32.536712],[-86.917595,32.664169]]]]},"properties":{"cartodb_id":575,"feature":"county","statefp":"01","countyfp_or_state":"001","name":"Autauga"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-88.121414,31.950256],[-88.07349,31.990182],[-87.667769,31.991355],[-87.666836,31.875747],[-87.620112,31.827123],[-87.50093,31.829251],[-87.516131,31.697824],[-87.566841,31.697115],[-87.565413,31.553573],[-87.619844,31.519049],[-87.573733,31.435088],[-87.665572,31.423166],[-87.784796,31.324672],[-87.765152,31.297346],[-87.804023,31.319017],[-87.83592,31.231053],[-87.946588,31.19293],[-87.959619,31.316206],[-87.908068,31.323041],[-87.88729,31.392197],[-87.935106,31.442398],[-87.906143,31.491752],[-87.92444,31.503021],[-87.942514,31.526719],[-87.970377,31.530546],[-88.031277,31.560494],[-88.027693,31.584251],[-88.051449,31.583504],[-88.072234,31.5945],[-88.089388,31.658747],[-88.078711,31.669618],[-88.088288,31.699303],[-88.180384,31.814546],[-88.121414,31.950256]]]]},"properties":{"cartodb_id":2958,"feature":"county","statefp":"01","countyfp_or_state":"025","name":"Clarke"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-86.58132,34.371094],[-86.552782,34.539951],[-86.550166,34.545963],[-86.533445,34.502795],[-86.423914,34.479581],[-86.330198,34.512684],[-86.326853,34.599403],[-86.326906,34.599573],[-86.326958,34.599744],[-86.318265,34.59979],[-86.318251,34.59979],[-86.317146,34.599796],[-86.316036,34.599802],[-86.316026,34.599802],[-86.311677,34.599827],[-86.305591,34.59986],[-86.300533,34.599888],[-86.284617,34.599974],[-86.279503,34.600004],[-86.27814,34.600009],[-86.275775,34.600023],[-86.269123,34.600059],[-86.266148,34.600075],[-86.257783,34.600122],[-86.254082,34.600143],[-86.252434,34.600125],[-86.249983,34.6001],[-86.24568,34.600116],[-86.245611,34.600116],[-86.237028,34.600023],[-86.235077,34.600001],[-86.233777,34.599987],[-86.224237,34.599884],[-86.221192,34.599851],[-86.218975,34.599827],[-86.218962,34.599827],[-86.218086,34.599817],[-86.199778,34.59962],[-86.18299,34.599438],[-86.182976,34.599438],[-86.179053,34.599396],[-86.178649,34.599392],[-86.175324,34.599354],[-86.174103,34.599336],[-86.172856,34.599318],[-86.16753,34.599264],[-86.148464,34.599069],[-86.097741,34.512547],[-86.083415,34.464571],[-86.057712,34.475994],[-86.118894,34.403845],[-86.106086,34.200756],[-86.1089,34.186311],[-86.206107,34.17265],[-86.303516,34.099073],[-86.45302,34.259317],[-86.477525,34.302758],[-86.581936,34.304694],[-86.58132,34.371094]]]]},"properties":{"cartodb_id":2891,"feature":"county","statefp":"01","countyfp_or_state":"095","name":"Marshall"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-86.908302,32.225028],[-86.810313,32.224747],[-86.864367,32.274918],[-86.850412,32.328947],[-86.814912,32.340803],[-86.816107,32.30997],[-86.781354,32.392494],[-86.653419,32.397247],[-86.496774,32.344437],[-86.474479,32.331547],[-86.484678,32.284473],[-86.48063,32.271458],[-86.458512,32.274092],[-86.448746,32.263595],[-86.422236,32.253717],[-86.408771,32.244309],[-86.408272,32.208976],[-86.406276,32.050731],[-86.405005,31.963775],[-86.448198,31.964629],[-86.857583,31.962167],[-86.856576,32.048352],[-86.906956,32.04797],[-86.908302,32.225028]]]]},"properties":{"cartodb_id":2824,"feature":"county","statefp":"01","countyfp_or_state":"085","name":"Lowndes"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-86.118894,34.403845],[-86.057712,34.475994],[-86.015594,34.481639],[-85.785471,34.624584],[-85.582812,34.860435],[-85.561424,34.750079],[-85.534405,34.62379],[-85.526895,34.588686],[-85.513044,34.523946],[-85.559282,34.502255],[-85.627512,34.39592],[-85.774165,34.259094],[-85.843801,34.244595],[-85.843617,34.200006],[-86.106086,34.200756],[-86.118894,34.403845]]]]},"properties":{"cartodb_id":1605,"feature":"county","statefp":"01","countyfp_or_state":"049","name":"DeKalb"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-85.843801,34.244595],[-85.774165,34.259094],[-85.627512,34.39592],[-85.559282,34.502255],[-85.513044,34.523946],[-85.502471,34.474526],[-85.475147,34.343685],[-85.463141,34.286191],[-85.429499,34.125095],[-85.421073,34.080813],[-85.398871,33.964129],[-85.495289,33.95691],[-85.530094,33.941423],[-85.542214,33.956732],[-85.738975,33.96846],[-85.797651,34.105657],[-85.841468,34.111096],[-85.843617,34.200006],[-85.843801,34.244595]]]]},"properties":{"cartodb_id":1513,"feature":"county","statefp":"01","countyfp_or_state":"019","name":"Cherokee"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-86.499533,31.655247],[-86.448635,31.655617],[-86.448198,31.964629],[-86.405005,31.963775],[-86.406276,32.050731],[-86.303616,32.051664],[-86.302217,31.965065],[-86.191379,31.966453],[-86.199378,31.79045],[-86.148339,31.790951],[-86.147147,31.66315],[-86.179672,31.616414],[-86.145895,31.617741],[-86.14395,31.537675],[-86.194784,31.529949],[-86.193951,31.440072],[-86.277031,31.455602],[-86.280155,31.52851],[-86.398536,31.451325],[-86.39994,31.527128],[-86.499213,31.525331],[-86.499533,31.655247]]]]},"properties":{"cartodb_id":54,"feature":"county","statefp":"01","countyfp_or_state":"041","name":"Crenshaw"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-88.254445,33.698779],[-88.248387,33.744908],[-88.207229,34.058333],[-87.98693,34.052102],[-87.951929,34.022202],[-87.951785,33.91993],[-87.946519,33.524065],[-88.274516,33.534001],[-88.254445,33.698779]]]]},"properties":{"cartodb_id":84,"feature":"county","statefp":"01","countyfp_or_state":"075","name":"Lamar"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-87.105073,34.686037],[-86.907205,34.579792],[-86.790056,34.55079],[-86.689353,34.586425],[-86.646393,34.548921],[-86.578855,34.581355],[-86.550166,34.545963],[-86.552782,34.539951],[-86.58132,34.371094],[-86.581936,34.304694],[-87.110111,34.313799],[-87.105073,34.686037]]]]},"properties":{"cartodb_id":2756,"feature":"county","statefp":"01","countyfp_or_state":"103","name":"Morgan"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-85.735732,31.624493],[-85.66623,31.772877],[-85.657668,31.880275],[-85.587344,31.997355],[-85.428476,32.014951],[-85.410241,32.146651],[-85.257834,32.147931],[-85.185067,32.061708],[-85.051411,32.062256],[-85.063591,31.991857],[-85.067829,31.967358],[-85.114031,31.89336],[-85.141831,31.839261],[-85.129159,31.780278],[-85.125441,31.762969],[-85.216076,31.702409],[-85.416038,31.706664],[-85.416437,31.619466],[-85.748251,31.618048],[-85.735732,31.624493]]]]},"properties":{"cartodb_id":1332,"feature":"county","statefp":"01","countyfp_or_state":"005","name":"Barbour"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-87.813178,32.810176],[-87.831749,32.840505],[-87.804218,32.897523],[-87.729941,32.949258],[-87.715709,33.006824],[-87.421936,33.003379],[-87.4212,32.874508],[-87.472174,32.83062],[-87.473915,32.655867],[-87.525198,32.655713],[-87.524485,32.482028],[-87.728744,32.480918],[-87.728521,32.524532],[-87.812559,32.52456],[-87.787701,32.582289],[-87.736928,32.589689],[-87.813401,32.633875],[-87.808284,32.752372],[-87.870464,32.762442],[-87.813178,32.810176]]]]},"properties":{"cartodb_id":2960,"feature":"county","statefp":"01","countyfp_or_state":"065","name":"Hale"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-87.47308,32.307614],[-87.421744,32.308101],[-87.423153,32.482965],[-87.110817,32.489948],[-87.017762,32.729532],[-87.01766,32.663269],[-86.917595,32.664169],[-86.906403,32.536712],[-86.814912,32.340803],[-86.850412,32.328947],[-86.864367,32.274918],[-86.810313,32.224747],[-86.908302,32.225028],[-86.906956,32.04797],[-87.178071,32.047514],[-87.324783,32.199069],[-87.472206,32.264919],[-87.47308,32.307614]]]]},"properties":{"cartodb_id":951,"feature":"county","statefp":"01","countyfp_or_state":"047","name":"Dallas"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-87.111992,33.992385],[-87.109911,34.299299],[-87.110111,34.313799],[-86.581936,34.304694],[-86.477525,34.302758],[-86.45302,34.259317],[-86.518927,34.252321],[-86.56385,34.170493],[-86.573969,34.165436],[-86.587614,34.138331],[-86.604311,34.125112],[-86.601147,34.11904],[-86.692474,34.092405],[-86.685365,34.05914],[-86.793914,33.952059],[-86.924387,33.909222],[-86.963358,33.858221],[-87.091836,33.890093],[-87.151036,33.993225],[-87.111992,33.992385]]]]},"properties":{"cartodb_id":1979,"feature":"county","statefp":"01","countyfp_or_state":"043","name":"Cullman"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-85.85189,33.498742],[-85.79763,33.541231],[-85.796054,33.55622],[-85.638579,33.648413],[-85.638049,33.773339],[-85.532482,33.889152],[-85.530094,33.941423],[-85.495289,33.95691],[-85.398871,33.964129],[-85.398871,33.964128],[-85.386671,33.901701],[-85.360532,33.767957],[-85.338116,33.653114],[-85.314048,33.529805],[-85.304944,33.482756],[-85.347744,33.501378],[-85.643482,33.495885],[-85.765427,33.498593],[-85.782735,33.469349],[-85.887782,33.469427],[-85.85189,33.498742]]]]},"properties":{"cartodb_id":2920,"feature":"county","statefp":"01","countyfp_or_state":"029","name":"Cleburne"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-86.191379,31.966453],[-85.995563,31.967554],[-85.996853,32.051049],[-85.946298,32.06189],[-85.893652,32.047351],[-85.88435,31.967253],[-85.790048,31.967254],[-85.791047,31.880357],[-85.657668,31.880275],[-85.66623,31.772877],[-85.735732,31.624493],[-85.748251,31.618048],[-85.789142,31.617964],[-86.145895,31.617741],[-86.179672,31.616414],[-86.147147,31.66315],[-86.148339,31.790951],[-86.199378,31.79045],[-86.191379,31.966453]]]]},"properties":{"cartodb_id":2121,"feature":"county","statefp":"01","countyfp_or_state":"109","name":"Pike"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-86.908939,31.961673],[-86.857583,31.962167],[-86.448198,31.964629],[-86.448635,31.655617],[-86.499533,31.655247],[-86.499213,31.525331],[-86.701554,31.523946],[-86.839386,31.525204],[-86.906769,31.632671],[-86.905899,31.753035],[-86.906899,31.830628],[-86.908939,31.961673]]]]},"properties":{"cartodb_id":982,"feature":"county","statefp":"01","countyfp_or_state":"013","name":"Butler"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-85.434045,32.40984],[-85.330143,32.410842],[-85.333843,32.468639],[-85.059294,32.472909],[-85.001131,32.510155],[-84.999787,32.507067],[-84.971831,32.442843],[-84.98115,32.37904],[-84.983466,32.363186],[-85.008096,32.336677],[-84.955704,32.30591],[-84.891841,32.263398],[-84.919942,32.230848],[-84.930127,32.219051],[-84.997765,32.185445],[-85.058749,32.136018],[-85.047063,32.087389],[-85.051411,32.062256],[-85.185067,32.061708],[-85.257834,32.147931],[-85.410241,32.146651],[-85.427441,32.146551],[-85.433543,32.234648],[-85.434045,32.40984]]]]},"properties":{"cartodb_id":1377,"feature":"county","statefp":"01","countyfp_or_state":"113","name":"Russell"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-86.963358,33.858221],[-86.924387,33.909222],[-86.793914,33.952059],[-86.685365,34.05914],[-86.692474,34.092405],[-86.601147,34.11904],[-86.604311,34.125112],[-86.587614,34.138331],[-86.573969,34.165436],[-86.56385,34.170493],[-86.518927,34.252321],[-86.45302,34.259317],[-86.303516,34.099073],[-86.332394,34.040499],[-86.370152,33.93977],[-86.325622,33.940147],[-86.348077,33.881],[-86.405981,33.835896],[-86.577528,33.801977],[-86.577799,33.765316],[-86.64529,33.773012],[-86.759212,33.840592],[-86.883947,33.843237],[-86.953664,33.815297],[-86.963358,33.858221]]]]},"properties":{"cartodb_id":1449,"feature":"county","statefp":"01","countyfp_or_state":"009","name":"Blount"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-86.00917,33.09026],[-85.974715,33.105286],[-85.653654,33.106634],[-85.593177,33.10734],[-85.593151,32.72853],[-85.679854,32.71253],[-85.696755,32.697429],[-85.695854,32.595933],[-85.798585,32.581089],[-85.797156,32.494236],[-85.886148,32.493053],[-85.87986,32.754528],[-86.007187,32.754984],[-86.013491,32.819203],[-86.00917,33.09026]]]]},"properties":{"cartodb_id":380,"feature":"county","statefp":"01","countyfp_or_state":"123","name":"Tallapoosa"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-88.463625,31.697942],[-88.088288,31.699303],[-88.078711,31.669618],[-88.089388,31.658747],[-88.072234,31.5945],[-88.051449,31.583504],[-88.027693,31.584251],[-88.031277,31.560494],[-87.970377,31.530546],[-87.942514,31.526719],[-87.92444,31.503021],[-87.906143,31.491752],[-87.935106,31.442398],[-87.88729,31.392197],[-87.908068,31.323041],[-87.959619,31.316206],[-87.946588,31.19293],[-87.972869,31.162694],[-88.022649,31.144267],[-88.329782,31.143821],[-88.432007,31.114298],[-88.44866,31.421277],[-88.449446,31.435837],[-88.459478,31.621652],[-88.463625,31.697942]]]]},"properties":{"cartodb_id":2113,"feature":"county","statefp":"01","countyfp_or_state":"129","name":"Washington"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-86.193951,31.440072],[-86.194784,31.529949],[-86.14395,31.537675],[-86.145895,31.617741],[-85.789142,31.617964],[-85.791402,31.196349],[-86.125405,31.182057],[-86.193476,31.192213],[-86.196091,31.410348],[-86.193951,31.440072]]]]},"properties":{"cartodb_id":939,"feature":"county","statefp":"01","countyfp_or_state":"031","name":"Coffee"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-87.019157,32.837034],[-86.876118,32.836264],[-86.881182,33.049901],[-86.881638,33.071861],[-86.610003,33.070003],[-86.517344,33.020566],[-86.515959,32.929361],[-86.451524,32.863692],[-86.457015,32.813899],[-86.374974,32.75358],[-86.413335,32.750591],[-86.413116,32.707386],[-86.714219,32.705694],[-86.71339,32.661732],[-86.917595,32.664169],[-87.01766,32.663269],[-87.017762,32.729532],[-87.019157,32.837034]]]]},"properties":{"cartodb_id":1716,"feature":"county","statefp":"01","countyfp_or_state":"021","name":"Chilton"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-88.175329,32.932093],[-88.171852,32.99586],[-88.149395,33.037298],[-87.968348,33.078235],[-87.837521,33.153637],[-87.838047,33.136864],[-87.831459,33.093857],[-87.832233,33.017258],[-87.715709,33.006824],[-87.729941,32.949258],[-87.804218,32.897523],[-87.831749,32.840505],[-87.813178,32.810176],[-87.870464,32.762442],[-87.808284,32.752372],[-87.813401,32.633875],[-87.736928,32.589689],[-87.787701,32.582289],[-87.812559,32.52456],[-87.824977,32.544789],[-87.85342,32.532086],[-87.898355,32.592321],[-87.840858,32.605036],[-87.928689,32.632284],[-88.053729,32.593052],[-88.109633,32.770989],[-88.079338,32.772948],[-88.207316,32.924782],[-88.175329,32.932093]]]]},"properties":{"cartodb_id":2721,"feature":"county","statefp":"01","countyfp_or_state":"063","name":"Greene"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-88.154902,34.463034],[-88.139559,34.581697],[-87.529667,34.567081],[-87.529722,34.304598],[-87.634725,34.306997],[-88.173262,34.32104],[-88.154902,34.463034]]]]},"properties":{"cartodb_id":1301,"feature":"county","statefp":"01","countyfp_or_state":"059","name":"Franklin"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-154.779663,57.366335],[-154.69331,57.446085],[-154.618704,57.514972],[-154.52206,57.577786],[-154.411385,57.598452],[-154.292471,57.644223],[-154.196959,57.664639],[-153.994572,57.656905],[-153.930279,57.696791],[-153.93522,57.813047],[-153.781408,57.876417],[-153.721176,57.890615],[-153.648798,57.880103],[-153.512024,57.909156],[-153.533204,57.941117],[-153.484603,57.9765],[-153.386422,57.936526],[-153.299009,57.985626],[-153.365574,58.039052],[-153.419783,58.059638],[-153.362281,58.106786],[-153.316127,58.14039],[-153.223709,58.16212],[-153.202801,58.20808],[-153.101841,58.257938],[-153.044316,58.306336],[-152.925586,58.339686],[-152.883107,58.400443],[-152.787776,58.411313],[-152.733845,58.460662],[-152.640313,58.469868],[-152.66622,58.544087],[-152.61613,58.601852],[-152.560171,58.61968],[-152.453817,58.618515],[-152.354709,58.63828],[-152.337212,58.589095],[-152.38761,58.52287],[-152.467197,58.476609],[-152.512483,58.427349],[-152.49848,58.372351],[-152.432235,58.355221],[-152.387343,58.359499],[-152.34486,58.39163],[-152.35609,58.42347],[-152.301713,58.428697],[-152.227835,58.376424],[-152.129257,58.396414],[-152.08925,58.367644],[-151.981781,58.347971],[-151.817111,58.263444],[-151.795696,58.211096],[-151.862321,58.168265],[-152.03412,58.183737],[-152.112205,58.148559],[-152.265111,58.135732],[-152.374399,58.120014],[-152.482674,58.129813],[-152.529036,58.093779],[-152.656801,58.061049],[-152.766673,58.029887],[-152.722524,57.987364],[-152.751978,57.933466],[-152.804807,57.899175],[-152.790211,57.858058],[-152.753437,57.834452],[-152.681204,57.875675],[-152.635378,57.91861],[-152.526283,57.913266],[-152.432608,57.976029],[-152.422573,57.948662],[-152.324103,57.916604],[-152.351152,57.834768],[-152.212247,57.791433],[-152.298762,57.745925],[-152.440182,57.72664],[-152.386805,57.667923],[-152.313974,57.63642],[-152.161617,57.623287],[-152.159677,57.593614],[-152.259641,57.527156],[-152.323683,57.467861],[-152.253603,57.384019],[-152.323687,57.34266],[-152.474883,57.434204],[-152.570527,57.448909],[-152.601148,57.382165],[-152.630441,57.322668],[-152.695698,57.281318],[-152.818187,57.265368],[-152.943463,57.256956],[-152.949333,57.187346],[-152.880321,57.164798],[-152.90054,57.132076],[-153.06433,57.10379],[-153.200217,57.042039],[-153.266822,56.999643],[-153.342018,56.982825],[-153.404263,57.080511],[-153.48652,57.085915],[-153.580831,57.049048],[-153.543429,56.995245],[-153.541492,56.887875],[-153.603624,56.887336],[-153.699409,56.855382],[-153.776468,56.830315],[-153.83964,56.822099],[-153.90215,56.771208],[-153.97178,56.744861],[-154.017042,56.689311],[-154.153147,56.681697],[-154.129017,56.742168],[-154.305713,56.846871],[-154.312888,56.918673],[-154.40749,56.968334],[-154.528538,57.001892],[-154.523432,57.129106],[-154.594977,57.257161],[-154.691855,57.28411],[-154.79384,57.288862],[-154.779663,57.366335]]],[[[-154.840415,56.42032],[-154.70614,56.521273],[-154.514078,56.604059],[-154.210336,56.609684],[-154.095833,56.617786],[-154.025041,56.572517],[-153.878764,56.565925],[-153.887678,56.533637],[-154.02093,56.482025],[-154.266332,56.496366],[-154.529507,56.502655],[-154.624282,56.475181],[-154.742887,56.401678],[-154.840415,56.42032]]],[[[-155.750002,55.821849],[-155.688098,55.864886],[-155.605373,55.928826],[-155.530591,55.912213],[-155.554245,55.84646],[-155.566307,55.789488],[-155.591002,55.761725],[-155.718593,55.772356],[-155.750002,55.821849]]],[[[-156.733628,56.077593],[-156.683003,56.09881],[-156.614757,56.065178],[-156.618202,56.017802],[-156.681814,55.994337],[-156.735292,56.02264],[-156.733628,56.077593]]],[[[-156.75078,57.235795],[-156.672751,57.234909],[-156.672142,57.29298],[-156.617395,57.334942],[-156.502226,57.362606],[-156.508759,57.434831],[-156.370235,57.522368],[-156.132032,57.509692],[-156.071148,57.584424],[-155.952772,57.598213],[-155.921548,57.554334],[-155.84623,57.629144],[-155.898455,57.6681],[-155.768022,57.668261],[-155.747821,57.73983],[-155.692481,57.739054],[-155.693773,57.797987],[-155.53883,57.799806],[-155.446251,57.827094],[-155.44602,57.871459],[-155.330245,57.876343],[-155.331678,58.048211],[-155.280743,58.047874],[-155.280169,58.108591],[-155.331945,58.193283],[-155.221313,58.193193],[-155.221463,58.236408],[-155.057741,58.236209],[-155.008132,58.290905],[-154.730369,58.304669],[-154.729769,58.332837],[-154.570107,58.333055],[-154.569723,58.360808],[-154.465741,58.361356],[-154.432332,58.418998],[-154.351306,58.418083],[-154.303447,58.460385],[-154.305926,58.646822],[-153.815055,58.647216],[-153.816565,58.734254],[-153.452198,58.734773],[-153.455102,58.855665],[-153.297395,58.853702],[-153.369389,58.821255],[-153.402472,58.742607],[-153.445002,58.70931],[-153.55265,58.687176],[-153.591635,58.640084],[-153.731019,58.608224],[-153.851432,58.611872],[-153.909994,58.561213],[-153.930473,58.497482],[-154.001918,58.492346],[-154.07066,58.440018],[-153.985416,58.390877],[-154.074145,58.352661],[-154.103412,58.280161],[-154.145277,58.210931],[-154.222465,58.132566],[-154.340449,58.090921],[-154.477979,58.052379],[-154.581547,58.019285],[-154.765287,58.00371],[-154.876559,58.027722],[-155.026275,57.999302],[-155.118648,57.953925],[-155.061806,57.90433],[-155.097095,57.865356],[-155.272917,57.823981],[-155.285339,57.758726],[-155.354011,57.715261],[-155.506533,57.76097],[-155.609353,57.777699],[-155.615203,57.688074],[-155.629912,57.656376],[-155.724167,57.633445],[-155.732779,57.549732],[-155.915261,57.535331],[-156.046804,57.525724],[-156.012841,57.451394],[-156.091668,57.439829],[-156.220105,57.445295],[-156.362039,57.400474],[-156.336427,57.336081],[-156.342943,57.248056],[-156.334404,57.1823],[-156.374287,57.15925],[-156.750815,57.162878],[-156.75078,57.235795]]]]},"properties":{"cartodb_id":1412,"feature":"county","statefp":"02","countyfp_or_state":"150","name":"Kodiak Island"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-135.477436,59.799626],[-135.231148,59.697176],[-135.214344,59.664343],[-135.114588,59.623415],[-135.027456,59.563692],[-135.026328,59.474658],[-135.067356,59.421855],[-135.010033,59.381288],[-135.029245,59.345364],[-135.37582,59.340621],[-135.721793,59.728779],[-135.477436,59.799626]]]]},"properties":{"cartodb_id":465,"feature":"county","statefp":"02","countyfp_or_state":"230","name":"Skagway"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-165.361924,68.028127],[-164.494202,68.02433],[-164.499871,68.227513],[-163.04523,68.228721],[-162.719806,68.232729],[-162.720616,68.301027],[-161.995486,68.292164],[-161.993148,68.223274],[-161.516254,68.220812],[-161.519964,68.289554],[-161.095913,68.289368],[-161.089535,68.221231],[-160.11834,68.220066],[-160.127816,68.287308],[-159.722546,68.284089],[-159.716147,68.216796],[-158.274727,68.211915],[-158.100103,68.217807],[-157.155836,68.210442],[-157.150299,68.120781],[-156.238107,68.130761],[-156.235534,68.028751],[-155.299012,68.029941],[-155.29802,68.001771],[-155.306992,67.864033],[-155.352249,67.775553],[-155.129726,67.77497],[-155.132355,67.686612],[-154.904736,67.688032],[-154.911027,67.601857],[-154.686696,67.602173],[-154.688359,67.512481],[-154.748759,67.254419],[-154.306093,67.251225],[-154.302303,67.160767],[-154.14522,67.161925],[-154.132279,66.986599],[-154.141599,66.804853],[-154.202144,66.716586],[-154.862595,66.71691],[-154.865962,66.567723],[-155.513931,66.569279],[-155.554608,66.481912],[-155.56243,66.309487],[-155.981123,66.310448],[-155.981539,66.39803],[-156.197173,66.394758],[-156.196191,66.479446],[-156.624296,66.478785],[-156.626712,66.304931],[-157.05153,66.302054],[-157.051694,66.47875],[-157.892416,66.476795],[-157.894181,66.125284],[-158.965461,66.123439],[-158.966298,65.957306],[-159.595187,65.95809],[-159.593576,65.522689],[-159.801012,65.522686],[-159.804395,65.435857],[-161.027839,65.439288],[-162.039095,65.43812],[-162.882514,65.436799],[-163.758001,65.436206],[-163.758871,65.608055],[-163.971115,65.608348],[-163.970931,65.782923],[-164.246706,65.78244],[-164.244449,66.129158],[-164.31779,66.130579],[-164.319703,66.475975],[-164.396644,66.476291],[-164.400727,66.58111],[-164.400724,66.58111],[-163.824166,66.59168],[-163.603956,66.558089],[-163.728308,66.498552],[-163.798687,66.436875],[-163.873106,66.389015],[-163.849163,66.307639],[-163.843108,66.259869],[-163.925152,66.225078],[-163.916551,66.190494],[-163.80358,66.100059],[-163.695394,66.059552],[-163.495845,66.085388],[-163.372072,66.085029],[-163.146726,66.059487],[-162.997473,66.076845],[-162.750705,66.09016],[-162.622284,66.039526],[-162.423726,66.048984],[-162.331284,66.031403],[-162.137424,66.078547],[-161.838018,66.022582],[-161.775537,66.073732],[-161.613943,66.176693],[-161.548429,66.239912],[-161.484539,66.262426],[-161.341189,66.2551],[-161.320778,66.223591],[-161.198971,66.210949],[-160.993965,66.234444],[-161.089161,66.31514],[-161.322126,66.368554],[-161.575413,66.396806],[-161.694404,66.396174],[-161.916309,66.349481],[-161.86369,66.459487],[-161.87488,66.511446],[-162.105641,66.622584],[-162.175398,66.687789],[-162.349774,66.726713],[-162.501415,66.742503],[-162.626696,66.859572],[-162.582856,66.904292],[-162.466702,66.950998],[-162.468441,66.980604],[-162.63547,66.998434],[-162.842979,66.991177],[-163.011676,67.029538],[-163.299266,67.060748],[-163.591216,67.092373],[-163.702045,67.109375],[-163.74082,67.20996],[-163.878781,67.416125],[-164.051288,67.566351],[-164.256634,67.651651],[-164.533937,67.725606],[-165.094228,67.931963],[-165.35005,68.02586],[-165.361924,68.028127]]]]},"properties":{"cartodb_id":2482,"feature":"county","statefp":"02","countyfp_or_state":"188","name":"Northwest Arctic"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-166.838969,68.337186],[-166.591802,68.405551],[-166.328459,68.442261],[-166.28312,68.521247],[-166.229761,68.613771],[-166.193421,68.726649],[-166.224187,68.873175],[-165.923734,68.868432],[-165.522358,68.855839],[-164.967542,68.88303],[-164.526887,68.917909],[-164.253157,68.930938],[-163.926999,69.000802],[-163.574034,69.124077],[-163.244656,69.306081],[-163.151351,69.430262],[-163.151261,69.61263],[-163.071903,69.737605],[-162.989084,69.82525],[-162.78808,69.929097],[-162.503572,70.100393],[-162.302314,70.204227],[-161.879266,70.329269],[-161.581911,70.302877],[-161.288197,70.296772],[-160.81279,70.376696],[-160.214828,70.559087],[-159.869172,70.706397],[-159.648383,70.794368],[-159.17181,70.875103],[-159.114972,70.817402],[-158.85342,70.792352],[-158.573913,70.79495],[-158.366302,70.819712],[-158.032397,70.832263],[-157.768452,70.875842],[-157.421001,70.976805],[-157.176077,71.095549],[-156.906165,71.239616],[-156.809653,71.286886],[-156.56865,71.352561],[-156.531124,71.296338],[-156.309908,71.259881],[-156.074411,71.242489],[-156.044615,71.184701],[-155.895105,71.193899],[-155.587702,71.17256],[-155.520737,71.102476],[-155.533347,71.067683],[-155.705487,71.020153],[-155.762068,70.985644],[-155.95205,70.964831],[-155.979264,70.918524],[-155.924955,70.85272],[-155.731842,70.83116],[-155.543031,70.847175],[-155.485915,70.885905],[-155.513293,70.940579],[-155.36416,70.994195],[-155.262602,71.079149],[-155.060764,71.145422],[-154.942864,71.126264],[-154.581129,71.007321],[-154.608314,70.942405],[-154.572458,70.82594],[-154.430229,70.831258],[-154.290317,70.821495],[-154.127487,70.778133],[-153.89048,70.885719],[-153.666363,70.883448],[-153.426265,70.890131],[-153.23848,70.922467],[-153.049207,70.913102],[-152.904243,70.883877],[-152.696868,70.882086],[-152.423534,70.858708],[-152.223053,70.824594],[-152.19246,70.795294],[-152.348417,70.744382],[-152.352196,70.697802],[-152.473348,70.683669],[-152.433781,70.616926],[-152.29669,70.602287],[-152.078663,70.584504],[-151.975785,70.563215],[-151.697258,70.547741],[-151.734287,70.503492],[-151.739862,70.436207],[-151.504417,70.431103],[-151.297598,70.400748],[-151.175187,70.375558],[-151.020441,70.433841],[-150.903765,70.46091],[-150.786327,70.463271],[-150.557415,70.481643],[-150.414358,70.459694],[-150.301516,70.418392],[-150.074461,70.439333],[-149.866698,70.510769],[-149.740188,70.498151],[-149.461755,70.518271],[-149.179148,70.4857],[-148.928979,70.426835],[-148.667017,70.430084],[-148.477044,70.359068],[-148.46615,70.313609],[-148.351437,70.304453],[-148.203477,70.348188],[-147.9615,70.314201],[-147.863719,70.293317],[-147.765104,70.219806],[-147.431532,70.188826],[-147.233327,70.207553],[-147.161601,70.155612],[-146.991109,70.14761],[-146.885771,70.185917],[-146.508133,70.186044],[-146.129579,70.158948],[-146.006411,70.140402],[-145.858297,70.165996],[-145.623306,70.084375],[-145.43483,70.036994],[-145.175073,69.991707],[-144.902304,69.96451],[-144.792614,69.979796],[-144.672305,69.966876],[-144.455421,70.035244],[-144.274904,70.048711],[-143.914244,70.115696],[-143.5173,70.138418],[-143.425199,70.124928],[-143.281878,70.151052],[-142.99979,70.088305],[-142.746807,70.042531],[-142.452927,69.958125],[-142.404366,69.916511],[-142.239873,69.896598],[-142.015641,69.837976],[-141.713369,69.789497],[-141.43084,69.695144],[-141.210456,69.68419],[-141.002672,69.645609],[-141.00261,68.498391],[-142.360513,68.489642],[-143.314496,68.497111],[-144.324744,68.50652],[-145.408894,68.499435],[-145.998216,68.489871],[-145.994865,68.001285],[-147.389781,68.001041],[-150.009811,68.000013],[-152.12071,68.003082],[-152.994318,68.001602],[-155.29802,68.001771],[-155.299012,68.029941],[-156.235534,68.028751],[-156.238107,68.130761],[-157.150299,68.120781],[-157.155836,68.210442],[-158.100103,68.217807],[-158.274727,68.211915],[-159.716147,68.216796],[-159.722546,68.284089],[-160.127816,68.287308],[-160.11834,68.220066],[-161.089535,68.221231],[-161.095913,68.289368],[-161.519964,68.289554],[-161.516254,68.220812],[-161.993148,68.223274],[-161.995486,68.292164],[-162.720616,68.301027],[-162.719806,68.232729],[-163.04523,68.228721],[-164.499871,68.227513],[-164.494202,68.02433],[-165.361924,68.028127],[-165.688137,68.090396],[-165.872088,68.110047],[-165.97497,68.14091],[-166.089453,68.221299],[-166.313138,68.289164],[-166.60089,68.333637],[-166.838969,68.337186]]]]},"properties":{"cartodb_id":1632,"feature":"county","statefp":"02","countyfp_or_state":"185","name":"North Slope"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-150.228774,61.162581],[-150.220154,61.197584],[-150.002222,61.223913],[-149.897888,61.267043],[-149.792423,61.388896],[-149.359442,61.483938],[-149.237556,61.483144],[-149.187447,61.425285],[-148.460007,61.426972],[-148.479587,61.165059],[-148.473461,60.85063],[-148.746023,60.84614],[-148.745578,60.733881],[-149.042881,60.734797],[-149.038568,60.849342],[-149.188571,60.905486],[-149.373299,60.907624],[-149.753184,60.99972],[-149.717167,61.011303],[-149.831922,61.076197],[-150.005041,61.138556],[-150.065646,61.151079],[-150.265894,61.127365],[-150.228774,61.162581]]]]},"properties":{"cartodb_id":1717,"feature":"county","statefp":"02","countyfp_or_state":"020","name":"Anchorage"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-161.034851,59.003419],[-160.874299,59.003658],[-160.875869,59.084046],[-160.819137,59.084859],[-160.820877,59.261519],[-160.650275,59.26223],[-160.650795,59.349182],[-160.480547,59.352217],[-160.481711,59.436228],[-160.424977,59.43591],[-160.42445,59.611507],[-160.250662,59.611298],[-160.248182,59.784524],[-160.019425,59.786831],[-160.015226,59.958912],[-159.855289,59.963691],[-159.850294,60.128439],[-159.78689,60.128139],[-159.78454,60.213265],[-159.613392,60.214585],[-159.613611,60.3878],[-159.437007,60.387176],[-159.432729,60.471029],[-159.369629,60.47113],[-159.367249,60.644339],[-159.185163,60.644578],[-159.182993,60.731079],[-159.01592,60.731938],[-159.014091,60.823452],[-158.948931,60.823175],[-158.944656,60.903462],[-158.445851,60.901333],[-157.883552,60.903711],[-157.880745,60.824769],[-157.697905,60.823585],[-157.700869,60.911315],[-157.521885,60.911337],[-157.522531,61.000515],[-157.169511,61.00017],[-157.168288,60.912221],[-156.899802,60.9069],[-155.9611,60.907602],[-155.953624,60.106238],[-155.95585,59.677305],[-156.12205,59.675185],[-156.123307,59.588205],[-156.464798,59.589388],[-156.464896,59.502988],[-156.634489,59.503988],[-156.635005,59.415108],[-156.731184,59.41617],[-156.729373,59.328803],[-157.073256,59.331538],[-157.074194,59.244404],[-157.244151,59.246208],[-157.241643,59.068955],[-157.160907,59.06776],[-157.153248,58.859208],[-157.388651,58.805346],[-157.572524,58.750839],[-157.777937,58.703288],[-158.140307,58.61502],[-158.232276,58.619902],[-158.332093,58.665313],[-158.376873,58.748043],[-158.423828,58.769847],[-158.564833,58.802715],[-158.520327,58.857105],[-158.619684,58.911048],[-158.767748,58.864264],[-158.790378,58.804712],[-158.780136,58.75379],[-158.861207,58.69558],[-158.827852,58.626432],[-158.704052,58.482759],[-158.795316,58.408032],[-158.880927,58.39067],[-159.063346,58.423139],[-159.228398,58.603047],[-159.409779,58.773611],[-159.532347,58.833609],[-159.643549,58.845063],[-159.601899,58.884671],[-159.61612,58.931601],[-159.712114,58.929468],[-159.748183,58.875827],[-159.792923,58.823971],[-159.908386,58.779903],[-159.979344,58.835535],[-160.150528,58.866062],[-160.232788,58.901127],[-160.322922,58.953953],[-160.256592,58.99448],[-160.31778,59.070477],[-160.516426,59.01124],[-160.730971,58.921186],[-160.823489,58.829136],[-160.872003,58.878472],[-161.001101,58.849693],[-161.03451,58.838808],[-161.034851,59.003419]]],[[[-161.078486,58.635577],[-161.056595,58.702202],[-160.918586,58.746935],[-160.700627,58.817368],[-160.679309,58.780226],[-160.880515,58.581325],[-160.961416,58.553723],[-161.07563,58.549916],[-161.078486,58.635577]]],[[[-161.367508,58.823227],[-161.086156,58.821981],[-161.221942,58.777741],[-161.337982,58.742912],[-161.341329,58.735431],[-161.368728,58.735567],[-161.367508,58.823227]]]]},"properties":{"cartodb_id":2506,"feature":"county","statefp":"02","countyfp_or_state":"070","name":"Dillingham"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-148.746023,60.84614],[-148.473461,60.85063],[-148.479587,61.165059],[-148.460007,61.426972],[-147.206028,61.425265],[-147.205707,61.475073],[-146.945124,61.474349],[-146.957357,61.811756],[-146.961638,62.160211],[-146.981731,62.248681],[-146.426334,62.247221],[-146.43812,62.511076],[-146.428648,62.863288],[-146.480969,62.959656],[-146.484119,63.173325],[-146.32926,63.190562],[-146.140827,63.184013],[-146.111233,63.22125],[-145.148881,63.222211],[-145.148422,63.133568],[-144.575427,63.133381],[-143.876857,63.113153],[-143.126854,63.115888],[-143.088616,63.008567],[-143.001212,62.993787],[-143.027483,62.935424],[-143.196314,62.826152],[-143.007728,62.766011],[-143.138459,62.691159],[-143.159193,62.636952],[-143.104753,62.613456],[-142.842155,62.597198],[-142.736106,62.702023],[-142.629088,62.683657],[-142.314531,62.683952],[-142.320598,62.598671],[-142.127486,62.595164],[-142.131128,62.511871],[-141.963703,62.510628],[-141.978417,62.165011],[-142.017011,62.127586],[-141.830194,62.12758],[-141.828648,61.90103],[-141.00202,61.901922],[-141.00185,60.391688],[-141.213615,60.392456],[-141.213691,60.435809],[-141.760294,60.434234],[-141.765581,60.527746],[-141.963079,60.521376],[-142.824081,60.516351],[-143.167061,60.518816],[-143.889952,60.0423],[-143.885432,59.988392],[-143.897029,59.985938],[-144.005879,60.012981],[-144.052539,60.041759],[-144.1103,60.098939],[-144.186745,60.116967],[-144.348913,60.091184],[-144.429249,60.14802],[-144.555093,60.178485],[-144.654899,60.204882],[-144.929327,60.228253],[-144.957848,60.288152],[-145.089139,60.320014],[-145.136728,60.296219],[-145.254749,60.311448],[-145.380064,60.352829],[-145.51081,60.318296],[-145.639204,60.301971],[-145.831202,60.350293],[-145.988546,60.387427],[-146.088134,60.364987],[-146.197229,60.348294],[-146.232681,60.338851],[-146.393256,60.327476],[-146.490804,60.294939],[-146.607692,60.241182],[-146.650852,60.242982],[-146.694034,60.279608],[-146.916487,60.290973],[-146.993353,60.24008],[-147.145205,60.171321],[-147.257795,60.107883],[-147.376397,60.016192],[-147.339794,59.962102],[-147.452217,59.954011],[-147.470281,59.906732],[-147.391846,59.87776],[-147.508309,59.841957],[-147.646045,59.817828],[-147.765122,59.795954],[-147.876475,59.763893],[-147.92924,59.783875],[-147.913316,59.837181],[-147.855084,59.871915],[-147.956775,59.9594],[-148.101239,59.952794],[-148.25406,59.932357],[-148.220554,59.97635],[-148.313962,60.033859],[-148.401666,59.977836],[-148.478881,59.935806],[-148.634777,59.915747],[-148.685919,59.942808],[-148.583602,59.961421],[-148.564399,60.12807],[-148.562368,60.422593],[-148.666606,60.423056],[-148.655444,60.734542],[-148.745578,60.733881],[-148.746023,60.84614]]]]},"properties":{"cartodb_id":2899,"feature":"county","statefp":"02","countyfp_or_state":"261","name":"Valdez-Cordova"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-133.039964,56.239058],[-132.966922,56.224276],[-132.887585,56.172938],[-132.833864,56.103904],[-132.896433,56.099744],[-132.859633,56.052577],[-132.888003,56.064498],[-133.010861,56.138793],[-133.039964,56.239058]]],[[[-133.0696,56.346323],[-133.060361,56.358378],[-132.977163,56.439673],[-132.896342,56.457978],[-132.791872,56.449169],[-132.627544,56.46287],[-132.528637,56.529269],[-132.45079,56.564098],[-132.529037,56.63797],[-132.542885,56.701905],[-132.545822,56.713621],[-132.402225,56.701086],[-132.322505,56.738582],[-132.234041,56.881504],[-132.118923,56.891217],[-132.125934,56.874698],[-131.871725,56.804965],[-131.90176,56.753158],[-131.835133,56.601849],[-131.581221,56.613275],[-131.461806,56.547904],[-131.167925,56.448361],[-131.087433,56.40742],[-131.09623,56.335166],[-131.013177,56.314211],[-130.998654,56.274041],[-131.106699,56.195124],[-131.238566,56.170968],[-131.253358,56.20685],[-131.439957,56.131083],[-131.369226,56.06991],[-131.364317,56.017943],[-131.498849,56.019097],[-131.527013,56.053161],[-131.653403,56.103851],[-131.692693,56.050604],[-131.829608,56.056307],[-131.871938,55.948883],[-132.011037,55.854788],[-131.935635,55.798431],[-131.978551,55.753366],[-131.962744,55.700757],[-132.058825,55.71093],[-132.091178,55.660703],[-132.201488,55.638846],[-132.224167,55.701766],[-132.265071,55.762174],[-132.130413,55.811419],[-132.067412,55.875078],[-132.170198,55.919231],[-132.279962,55.924839],[-132.323242,55.851878],[-132.397304,55.878867],[-132.449834,55.956186],[-132.492795,56.066436],[-132.594235,56.021858],[-132.708697,56.112124],[-132.718342,56.217704],[-132.843716,56.238933],[-132.877582,56.240322],[-132.926759,56.266188],[-132.961082,56.296167],[-133.029712,56.3157],[-133.070056,56.330951],[-133.0696,56.346323]]]]},"properties":{"cartodb_id":2382,"feature":"county","statefp":"02","countyfp_or_state":"275","name":"Wrangell"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-136.371359,57.831661],[-136.026713,57.835869],[-135.906742,58.001266],[-135.719231,57.931104],[-135.534661,57.882791],[-135.245415,57.765158],[-135.068561,57.764255],[-134.951337,57.784801],[-134.939924,57.763612],[-134.824891,57.500067],[-134.825579,57.372143],[-134.854948,57.264766],[-134.738223,56.975741],[-134.695735,56.900791],[-134.663434,56.804687],[-134.62967,56.709596],[-134.615955,56.637289],[-134.626943,56.553868],[-134.669778,56.524129],[-134.64177,56.445479],[-134.634828,56.345297],[-134.634668,56.265832],[-134.653827,56.198385],[-134.674028,56.166925],[-134.763535,56.210363],[-134.810171,56.244987],[-134.839411,56.309403],[-134.915911,56.360555],[-134.977082,56.437294],[-135.058238,56.529453],[-135.123389,56.602823],[-135.175826,56.677876],[-135.21583,56.66534],[-135.305077,56.726382],[-135.362241,56.758742],[-135.467177,56.77141],[-135.550718,56.841228],[-135.506869,56.865978],[-135.476817,56.891232],[-135.442339,56.942355],[-135.353447,57.020905],[-135.457907,57.070165],[-135.571504,57.105697],[-135.604555,57.045834],[-135.63688,57.009874],[-135.825598,56.989032],[-135.856021,56.995636],[-135.844612,57.083568],[-135.755007,57.123972],[-135.753581,57.167168],[-135.832253,57.170647],[-135.870519,57.221639],[-135.837719,57.282068],[-135.85816,57.321358],[-135.892131,57.408048],[-135.943766,57.45878],[-136.047547,57.513762],[-136.088071,57.555291],[-136.163059,57.558861],[-136.238166,57.625991],[-136.250818,57.684831],[-136.304684,57.771051],[-136.371359,57.831661]]]]},"properties":{"cartodb_id":1547,"feature":"county","statefp":"02","countyfp_or_state":"220","name":"Sitka"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-147.003185,64.258928],[-146.614956,64.259939],[-146.35735,64.278453],[-146.234407,64.310473],[-146.237528,64.357652],[-146.156761,64.386063],[-146.001019,64.383695],[-145.916547,64.423535],[-145.738627,64.46042],[-145.531302,64.417678],[-145.369892,64.456177],[-145.360463,64.48694],[-145.072237,64.513067],[-144.977886,64.571989],[-144.791432,64.569683],[-144.739391,64.593421],[-144.548837,64.599548],[-144.462438,64.582887],[-144.312984,64.616237],[-144.307616,64.641937],[-144.070545,64.652458],[-144.061159,64.683442],[-143.752529,64.647633],[-143.647213,64.669506],[-143.506329,64.754068],[-143.529991,64.800611],[-143.434679,64.817791],[-143.503643,64.858251],[-143.525172,64.96008],[-143.364478,64.996996],[-143.373311,65.037107],[-143.242092,65.052518],[-143.081816,65.120937],[-142.864344,65.140387],[-142.7319,65.233639],[-142.742849,65.30141],[-142.601998,65.390931],[-142.441972,65.385042],[-142.307081,65.440633],[-142.065431,65.465341],[-141.855761,65.445786],[-141.78905,65.501546],[-141.387842,65.614395],[-141.336224,65.711614],[-141.093233,65.827388],[-141.002465,65.839421],[-141.00202,61.901922],[-141.828648,61.90103],[-141.830194,62.12758],[-142.017011,62.127586],[-141.978417,62.165011],[-141.963703,62.510628],[-142.131128,62.511871],[-142.127486,62.595164],[-142.320598,62.598671],[-142.314531,62.683952],[-142.629088,62.683657],[-142.736106,62.702023],[-142.842155,62.597198],[-143.104753,62.613456],[-143.159193,62.636952],[-143.138459,62.691159],[-143.007728,62.766011],[-143.196314,62.826152],[-143.027483,62.935424],[-143.001212,62.993787],[-143.088616,63.008567],[-143.126854,63.115888],[-143.876857,63.113153],[-144.575427,63.133381],[-145.148422,63.133568],[-145.148881,63.222211],[-146.111233,63.22125],[-146.140827,63.184013],[-146.32926,63.190562],[-146.484119,63.173325],[-146.489541,63.482913],[-146.975489,63.479746],[-146.972377,63.919245],[-147.003185,64.258928]]]]},"properties":{"cartodb_id":2158,"feature":"county","statefp":"02","countyfp_or_state":"240","name":"Southeast Fairbanks"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-130.285132,55.997546],[-130.220064,55.998912],[-130.291117,56.054246],[-130.24554,56.096876],[-130.102761,56.116696],[-130.00426,55.993379],[-130.013198,55.916382],[-130.08451,55.823997],[-130.12372,55.80704],[-130.138244,55.762961],[-130.234649,55.81431],[-130.388737,55.943318],[-130.285132,55.997546]]],[[[-131.646276,55.035579],[-131.589387,55.08894],[-131.605302,55.107436],[-131.620261,55.109648],[-131.623473,55.27617],[-131.568369,55.300967],[-131.293888,55.181496],[-131.380161,54.992227],[-131.610873,54.985883],[-131.605661,55.004403],[-131.646276,55.035579]]],[[[-133.935016,55.920689],[-133.816363,55.964025],[-133.7314,56.028857],[-133.659241,56.083818],[-133.643817,56.127739],[-133.6721,56.222734],[-133.656889,56.281228],[-133.656415,56.326909],[-133.582116,56.352506],[-133.41837,56.332132],[-133.197009,56.333016],[-133.158233,56.314768],[-133.07823,56.246802],[-133.039964,56.239058],[-133.010861,56.138793],[-132.888003,56.064498],[-132.859633,56.052577],[-132.837592,56.024327],[-132.618464,55.911476],[-132.470697,55.782162],[-132.462531,55.673854],[-132.382505,55.665336],[-132.301119,55.55096],[-132.142945,55.457941],[-132.258056,55.416142],[-132.126398,55.288418],[-132.037122,55.275144],[-131.977397,55.180949],[-132.027513,55.104675],[-131.984592,55.027978],[-131.983324,54.897813],[-131.957914,54.791239],[-131.999591,54.731975],[-132.029747,54.701189],[-132.165182,54.69405],[-132.228223,54.72517],[-132.307943,54.718714],[-132.366389,54.751197],[-132.403533,54.784596],[-132.509371,54.781258],[-132.639032,54.753251],[-132.674324,54.674652],[-132.753019,54.673244],[-132.866355,54.700386],[-132.87721,54.753772],[-132.918751,54.783253],[-132.990589,54.820994],[-133.099047,54.919007],[-133.164788,54.976909],[-133.197719,55.033404],[-133.239695,55.092415],[-133.215086,55.136876],[-133.232491,55.198828],[-133.281979,55.217117],[-133.341259,55.205701],[-133.404497,55.214992],[-133.471938,55.247527],[-133.468217,55.281678],[-133.586605,55.3088],[-133.596762,55.218233],[-133.658359,55.232674],[-133.690174,55.304409],[-133.633006,55.361299],[-133.630945,55.416114],[-133.697898,55.454759],[-133.789055,55.457892],[-133.75287,55.544282],[-133.728549,55.593128],[-133.716665,55.660223],[-133.643324,55.729037],[-133.701152,55.78516],[-133.700468,55.837421],[-133.861039,55.848844],[-133.92025,55.860295],[-133.935016,55.920689]]],[[[-134.392983,56.864284],[-134.270459,56.93558],[-134.193751,56.933598],[-134.147103,56.95697],[-134.047753,56.923],[-134.006635,56.851587],[-133.942936,56.805551],[-133.86904,56.845938],[-133.921451,56.961511],[-134.049218,57.029203],[-134.008856,57.074578],[-133.887957,57.097744],[-133.739433,57.072184],[-133.536258,57.0387],[-133.334272,57.002442],[-133.317871,57.002675],[-133.273803,56.921856],[-133.498624,56.88221],[-133.49736,56.746657],[-133.579378,56.757841],[-133.441307,56.637626],[-133.415083,56.45646],[-133.460634,56.45412],[-133.655468,56.442279],[-133.821628,56.391602],[-133.834555,56.319801],[-133.876624,56.275884],[-133.88114,56.223197],[-133.941986,56.180095],[-133.927725,56.145949],[-133.960525,56.091359],[-134.018043,56.088176],[-134.087446,56.094939],[-134.121868,56.029895],[-134.099805,55.98414],[-134.118062,55.914642],[-134.208251,55.876709],[-134.255096,55.844614],[-134.311763,55.812285],[-134.344652,55.846312],[-134.374965,55.928492],[-134.291804,55.926219],[-134.202178,56.035175],[-134.259749,56.13444],[-134.282212,56.254789],[-134.294679,56.335888],[-134.243126,56.395778],[-134.25192,56.44455],[-134.197967,56.531028],[-134.241938,56.555531],[-134.320134,56.554484],[-134.30112,56.620317],[-134.376274,56.668608],[-134.418534,56.822333],[-134.392983,56.864284]]]]},"properties":{"cartodb_id":2938,"feature":"county","statefp":"02","countyfp_or_state":"198","name":"Prince of Wales-Hyder"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-148.663844,65.211355],[-147.550245,65.211023],[-147.334764,65.273291],[-147.017089,65.290432],[-146.949011,65.273816],[-146.568819,65.344746],[-146.49,65.41],[-146.192406,65.454475],[-146.119758,65.405823],[-145.994261,65.406031],[-146.13753,65.309851],[-146.078123,65.245244],[-145.873843,65.214026],[-145.615545,65.14407],[-145.749681,65.098233],[-145.646437,65.033682],[-145.444154,65.066789],[-145.209906,65.072978],[-144.974856,65.135691],[-144.687248,65.105773],[-144.445443,65.062319],[-144.24719,65.118774],[-143.977969,65.119043],[-143.884795,65.090281],[-144.105524,65.015542],[-143.992045,64.977011],[-144.120089,64.798317],[-144.061159,64.683442],[-144.070545,64.652458],[-144.307616,64.641937],[-144.312984,64.616237],[-144.462438,64.582887],[-144.548837,64.599548],[-144.739391,64.593421],[-144.791432,64.569683],[-144.977886,64.571989],[-145.072237,64.513067],[-145.360463,64.48694],[-145.369892,64.456177],[-145.531302,64.417678],[-145.738627,64.46042],[-145.916547,64.423535],[-146.001019,64.383695],[-146.156761,64.386063],[-146.237528,64.357652],[-146.234407,64.310473],[-146.35735,64.278453],[-146.614956,64.259939],[-147.003185,64.258928],[-147.78165,64.259198],[-147.995157,64.341691],[-148.10898,64.366385],[-148.299419,64.485809],[-148.561987,64.61516],[-148.65237,64.591053],[-148.642697,64.865694],[-148.663844,65.211355]]]]},"properties":{"cartodb_id":2314,"feature":"county","statefp":"02","countyfp_or_state":"090","name":"Fairbanks North Star"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[179.481318,51.975301],[179.582857,52.016841],[179.636846,52.025712],[179.773922,51.970693],[179.743012,51.911749],[179.649484,51.87367],[179.543516,51.890926],[179.484634,51.921268],[179.481318,51.975301]]],[[[178.600493,51.655256],[178.6606,51.683065],[178.92533,51.623904],[179.195247,51.477871],[179.295785,51.419232],[179.41824,51.416195],[179.480418,51.36386],[179.253271,51.337239],[179.031533,51.449884],[178.930219,51.530089],[178.869249,51.556986],[178.7724,51.554119],[178.604866,51.616015],[178.600493,51.655256]]],[[[178.463385,51.987849],[178.552612,51.973968],[178.591597,51.952652],[178.539395,51.903246],[178.502493,51.899644],[178.432461,51.965533],[178.463385,51.987849]]],[[[178.204442,51.83089],[178.329699,51.836792],[178.378009,51.792626],[178.374074,51.747856],[178.270955,51.765186],[178.204442,51.83089]]],[[[178.093673,52.055141],[178.154769,52.061421],[178.201313,52.031502],[178.2009,51.991156],[178.120941,51.977012],[178.079214,52.01896],[178.093673,52.055141]]],[[[177.213086,51.920358],[177.310827,51.933273],[177.367363,51.968375],[177.460539,51.999751],[177.521006,52.063062],[177.581271,52.144927],[177.648654,52.1309],[177.675952,52.092167],[177.609087,52.028518],[177.572068,52.001812],[177.611553,51.950829],[177.601005,51.922254],[177.49928,51.922033],[177.409536,51.930821],[177.371263,51.901945],[177.334229,51.866769],[177.311768,51.825971],[177.262195,51.861891],[177.178789,51.879219],[177.213086,51.920358]]],[[[173.863992,52.792483],[174.067293,52.757637],[174.140115,52.750737],[174.158146,52.706059],[173.975116,52.707459],[173.819039,52.759805],[173.863992,52.792483]]],[[[173.439026,52.470528],[173.555739,52.479472],[173.638061,52.524209],[173.772799,52.509905],[173.702252,52.434804],[173.748301,52.392346],[173.725696,52.356579],[173.651293,52.35637],[173.543778,52.392666],[173.48638,52.368613],[173.319948,52.412058],[173.439026,52.470528]]],[[[172.458911,52.954548],[172.643266,53.004979],[172.792872,53.008568],[173.121988,52.990352],[173.251326,52.944362],[173.425362,52.868345],[173.423819,52.828799],[173.284417,52.827933],[173.204948,52.848911],[173.166899,52.795229],[173.096237,52.786782],[172.9826,52.79108],[172.903628,52.761667],[172.809387,52.78929],[172.763366,52.823656],[172.754236,52.87749],[172.669943,52.913011],[172.585075,52.921327],[172.472857,52.890234],[172.458911,52.954548]]],[[[-167.790928,53.33552],[-167.694484,53.388034],[-167.591219,53.393346],[-167.457366,53.442793],[-167.369791,53.450646],[-167.278827,53.478565],[-167.188033,53.524073],[-167.135695,53.551227],[-167.16164,53.605909],[-167.107836,53.633056],[-167.071823,53.66556],[-167.041245,53.707929],[-167.005778,53.755446],[-167.098135,53.799987],[-167.141966,53.826932],[-167.140992,53.866774],[-167.031252,53.945204],[-166.879488,53.988716],[-166.742587,54.015501],[-166.644627,54.014495],[-166.587393,53.959831],[-166.508388,53.923949],[-166.437083,53.955644],[-166.357117,54.002343],[-166.264519,53.97755],[-166.225644,53.986229],[-166.225641,53.960206],[-166.17916,53.941924],[-166.1612,53.935529],[-166.210685,53.915922],[-166.250935,53.876851],[-166.320004,53.869527],[-166.404896,53.809345],[-166.336768,53.78709],[-166.198751,53.8361],[-166.113037,53.853716],[-166.09753,53.826933],[-166.138657,53.731082],[-166.244056,53.710708],[-166.320262,53.674276],[-166.444909,53.640646],[-166.508982,53.5838],[-166.581011,53.530449],[-166.656234,53.487119],[-166.749158,53.440944],[-166.878087,53.429884],[-166.994329,53.429201],[-167.075386,53.424979],[-167.166348,53.412793],[-167.291831,53.364102],[-167.308126,53.33433],[-167.417713,53.329856],[-167.488215,53.269121],[-167.539247,53.277864],[-167.622173,53.250362],[-167.747754,53.273564],[-167.851511,53.308668],[-167.790928,53.33552]]],[[[-169.28652,52.784747],[-169.044466,52.893927],[-168.95946,52.936739],[-168.861061,53.016384],[-168.785236,53.045038],[-168.804901,53.120015],[-168.763331,53.182812],[-168.581891,53.286521],[-168.445083,53.26533],[-168.420521,53.322743],[-168.395355,53.397776],[-168.342127,53.475992],[-168.238321,53.521902],[-168.027006,53.562755],[-167.914669,53.522716],[-167.789164,53.519329],[-167.808117,53.473861],[-167.856837,53.428609],[-167.842328,53.386489],[-167.959096,53.341788],[-168.092011,53.28827],[-168.296229,53.227235],[-168.343075,53.170553],[-168.412522,53.110683],[-168.457103,53.055839],[-168.613964,53.008776],[-168.688468,52.9664],[-168.755531,52.907507],[-168.851017,52.90804],[-169.005038,52.829992],[-169.170371,52.776663],[-169.261765,52.754897],[-169.28652,52.784747]]],[[[-169.81831,56.633612],[-169.613691,56.622761],[-169.474322,56.625183],[-169.453786,56.583786],[-169.582624,56.536939],[-169.685825,56.539717],[-169.81831,56.633612]]],[[[-170.170683,52.784918],[-170.092221,52.919387],[-170.026342,52.944912],[-169.857567,52.908533],[-169.76274,52.97805],[-169.820198,53.06679],[-169.747457,53.0932],[-169.680033,53.035075],[-169.662385,52.951752],[-169.666512,52.864349],[-169.703873,52.777117],[-169.818548,52.791577],[-169.951498,52.788615],[-170.077734,52.720416],[-170.207887,52.708899],[-170.170683,52.784918]]],[[[-170.420047,57.212917],[-170.303091,57.238029],[-170.143996,57.242804],[-170.133884,57.181329],[-170.286318,57.128169],[-170.421867,57.161202],[-170.420047,57.212917]]],[[[-170.817943,52.636275],[-170.671545,52.698082],[-170.532144,52.679971],[-170.58496,52.587186],[-170.685914,52.581228],[-170.788495,52.54024],[-170.841936,52.558171],[-170.817943,52.636275]]],[[[-171.312658,52.493502],[-171.256768,52.52858],[-171.196013,52.500106],[-171.226729,52.434269],[-171.30417,52.449952],[-171.312658,52.493502]]],[[[-172.612274,52.306828],[-172.545116,52.357863],[-172.448182,52.391439],[-172.326444,52.366472],[-172.301445,52.329951],[-172.414419,52.27674],[-172.528095,52.254336],[-172.639992,52.244765],[-172.612274,52.306828]]],[[[-175.301556,52.055602],[-175.031213,52.092109],[-174.887242,52.128602],[-174.715205,52.127375],[-174.55467,52.160405],[-174.462962,52.213031],[-174.455979,52.31369],[-174.329818,52.373548],[-174.185347,52.417788],[-174.068248,52.390331],[-173.985203,52.3176],[-174.046994,52.236262],[-174.022638,52.133713],[-173.899966,52.139949],[-173.654404,52.146192],[-173.529923,52.159364],[-173.375229,52.108228],[-173.174403,52.126278],[-172.947811,52.107371],[-172.980222,52.064049],[-173.169557,52.04385],[-173.39397,52.028674],[-173.513047,52.02531],[-173.695316,52.055319],[-173.820692,52.043312],[-173.901075,52.049435],[-174.099836,52.072078],[-174.278279,52.089489],[-174.382661,52.081658],[-174.408693,52.012811],[-174.556278,52.036733],[-174.736592,52.007308],[-174.892306,52.019687],[-175.014807,52.007],[-175.155673,52.011512],[-175.323322,52.007488],[-175.301556,52.055602]]],[[[-176.950128,51.686719],[-176.917088,51.797016],[-176.781889,51.832373],[-176.762478,51.867878],[-176.810433,51.927089],[-176.774023,51.965895],[-176.698771,51.964454],[-176.579975,52.003238],[-176.549119,51.955561],[-176.554661,51.909834],[-176.576381,51.842275],[-176.431673,51.861169],[-176.311573,51.872463],[-176.173871,51.882449],[-176.168643,51.948025],[-176.183023,51.998904],[-176.211188,52.064706],[-176.14951,52.11757],[-176.055983,52.109469],[-176.007589,52.066228],[-175.887514,51.995142],[-175.807848,51.989665],[-175.664274,51.993862],[-175.45047,52.012742],[-175.424859,51.972332],[-175.639739,51.933645],[-175.789118,51.919323],[-175.963041,51.846253],[-175.998464,51.801542],[-176.158185,51.768901],[-176.289921,51.741678],[-176.46705,51.726668],[-176.543948,51.698719],[-176.656005,51.658306],[-176.715424,51.620422],[-176.809,51.616235],[-176.938917,51.590982],[-176.987383,51.606872],[-176.950128,51.686719]]],[[[-177.670119,51.743381],[-177.492124,51.770306],[-177.313149,51.778223],[-177.228177,51.803783],[-177.199539,51.910239],[-177.181271,51.943167],[-177.099266,51.936119],[-177.04509,51.898605],[-177.098661,51.829647],[-177.105188,51.719333],[-177.18994,51.697217],[-177.275121,51.68051],[-177.34801,51.696513],[-177.483959,51.682278],[-177.651386,51.653604],[-177.707802,51.703268],[-177.670119,51.743381]]],[[[-178.19709,51.905464],[-178.090632,51.919399],[-177.952094,51.915348],[-177.887423,51.85089],[-177.757429,51.847042],[-177.615311,51.85508],[-177.649278,51.801851],[-177.755022,51.772834],[-177.827524,51.712086],[-177.86796,51.679374],[-177.909185,51.596671],[-178.04566,51.630062],[-178.117864,51.677831],[-178.054798,51.704768],[-177.98163,51.715617],[-177.995272,51.781535],[-178.086074,51.808047],[-178.224129,51.864881],[-178.19709,51.905464]]],[[[-178.889347,51.570352],[-178.678149,51.62601],[-178.551475,51.610175],[-178.584789,51.56386],[-178.734585,51.542326],[-178.825956,51.547085],[-178.889347,51.570352]]],[[[-178.876843,51.837917],[-178.779657,51.851547],[-178.733355,51.783947],[-178.792409,51.746071],[-178.895958,51.779219],[-178.876843,51.837917]]],[[[-179.174265,51.279057],[-178.995591,51.414484],[-178.926874,51.38364],[-178.908883,51.340582],[-179.07232,51.250963],[-179.126856,51.219862],[-179.174265,51.279057]]]]},"properties":{"cartodb_id":1007,"feature":"county","statefp":"02","countyfp_or_state":"016","name":"Aleutians West"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-153.001262,62.295331],[-153.001339,62.72744],[-152.413986,62.723002],[-151.893149,62.722992],[-151.888963,62.795348],[-150.002153,63.221393],[-149.506984,63.332164],[-148.747388,63.335821],[-148.035867,63.330788],[-148.032727,63.469757],[-146.975489,63.479746],[-146.489541,63.482913],[-146.484119,63.173325],[-146.480969,62.959656],[-146.428648,62.863288],[-146.43812,62.511076],[-146.426334,62.247221],[-146.981731,62.248681],[-146.961638,62.160211],[-146.957357,61.811756],[-146.945124,61.474349],[-147.205707,61.475073],[-147.206028,61.425265],[-148.460007,61.426972],[-149.187447,61.425285],[-149.237556,61.483144],[-149.359442,61.483938],[-149.792423,61.388896],[-149.897888,61.267043],[-150.002222,61.223913],[-150.220154,61.197584],[-150.204894,61.259548],[-150.425,61.245552],[-150.535997,61.269724],[-150.679902,61.265888],[-150.827295,61.22839],[-150.939251,61.210299],[-150.971843,61.195455],[-150.972661,61.253489],[-151.332978,61.254634],[-151.334175,61.424601],[-153.002181,61.425686],[-153.001262,62.295331]]]]},"properties":{"cartodb_id":3039,"feature":"county","statefp":"02","countyfp_or_state":"170","name":"Matanuska-Susitna"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-161.04528,62.550449],[-160.993241,62.897962],[-160.941899,62.998883],[-160.851144,63.012689],[-160.847328,63.269229],[-160.671305,63.27083],[-160.692871,63.358486],[-160.692051,63.536618],[-160.494971,63.537148],[-160.493465,63.613655],[-160.097874,63.614393],[-160.103703,63.702263],[-159.929244,63.703494],[-159.930773,63.793808],[-159.699291,63.792346],[-159.731224,64.052366],[-159.956447,64.051022],[-159.960914,64.401237],[-159.978098,64.748491],[-159.773803,64.750296],[-159.777177,64.923088],[-159.576911,64.923743],[-159.578562,65.262692],[-159.384765,65.261674],[-159.386712,65.52314],[-159.593576,65.522689],[-159.595187,65.95809],[-158.966298,65.957306],[-158.965461,66.123439],[-157.894181,66.125284],[-157.892416,66.476795],[-157.051694,66.47875],[-157.05153,66.302054],[-156.626712,66.304931],[-156.624296,66.478785],[-156.196191,66.479446],[-156.197173,66.394758],[-155.981539,66.39803],[-155.981123,66.310448],[-155.56243,66.309487],[-155.554608,66.481912],[-155.513931,66.569279],[-154.865962,66.567723],[-154.862595,66.71691],[-154.202144,66.716586],[-154.141599,66.804853],[-154.132279,66.986599],[-154.14522,67.161925],[-154.302303,67.160767],[-154.306093,67.251225],[-154.748759,67.254419],[-154.688359,67.512481],[-154.686696,67.602173],[-154.911027,67.601857],[-154.904736,67.688032],[-155.132355,67.686612],[-155.129726,67.77497],[-155.352249,67.775553],[-155.306992,67.864033],[-155.29802,68.001771],[-152.994318,68.001602],[-152.12071,68.003082],[-150.009811,68.000013],[-147.389781,68.001041],[-145.994865,68.001285],[-145.998216,68.489871],[-145.408894,68.499435],[-144.324744,68.50652],[-143.314496,68.497111],[-142.360513,68.489642],[-141.00261,68.498391],[-141.002465,65.840075],[-141.002465,65.839421],[-141.093233,65.827388],[-141.336224,65.711614],[-141.387842,65.614395],[-141.78905,65.501546],[-141.855761,65.445786],[-142.065431,65.465341],[-142.307081,65.440633],[-142.441972,65.385042],[-142.601998,65.390931],[-142.742849,65.30141],[-142.7319,65.233639],[-142.864344,65.140387],[-143.081816,65.120937],[-143.242092,65.052518],[-143.373311,65.037107],[-143.364478,64.996996],[-143.525172,64.96008],[-143.503643,64.858251],[-143.434679,64.817791],[-143.529991,64.800611],[-143.506329,64.754068],[-143.647213,64.669506],[-143.752529,64.647633],[-144.061159,64.683442],[-144.120089,64.798317],[-143.992045,64.977011],[-144.105524,65.015542],[-143.884795,65.090281],[-143.977969,65.119043],[-144.24719,65.118774],[-144.445443,65.062319],[-144.687248,65.105773],[-144.974856,65.135691],[-145.209906,65.072978],[-145.444154,65.066789],[-145.646437,65.033682],[-145.749681,65.098233],[-145.615545,65.14407],[-145.873843,65.214026],[-146.078123,65.245244],[-146.13753,65.309851],[-145.994261,65.406031],[-146.119758,65.405823],[-146.192406,65.454475],[-146.49,65.41],[-146.568819,65.344746],[-146.949011,65.273816],[-147.017089,65.290432],[-147.334764,65.273291],[-147.550245,65.211023],[-148.663844,65.211355],[-148.642697,64.865694],[-148.65237,64.591053],[-148.561987,64.61516],[-148.299419,64.485809],[-148.10898,64.366385],[-147.995157,64.341691],[-149.109443,64.343579],[-149.119968,64.358796],[-149.667993,64.357813],[-150.749736,64.365138],[-151.136195,64.133084],[-151.301289,64.009971],[-151.525111,64.032465],[-151.579286,64.08538],[-151.790558,64.08229],[-151.825058,64.005365],[-152.047377,64.000576],[-152.055519,63.823679],[-152.233557,63.823684],[-152.241918,63.656679],[-152.85343,63.65171],[-152.80363,63.481056],[-152.812007,63.351232],[-152.622554,63.346765],[-152.626562,63.301474],[-152.434625,63.305936],[-152.434247,63.169794],[-153.001339,62.72744],[-153.001262,62.295331],[-153.067697,62.295211],[-153.070317,62.208517],[-153.39432,62.209115],[-153.395401,62.124776],[-153.740629,62.121565],[-153.735846,62.02937],[-154.654756,62.028826],[-155.693553,62.029387],[-157.073592,62.029567],[-157.074237,62.129913],[-157.51702,62.123543],[-158.532398,62.118595],[-158.531113,62.031708],[-159.26095,62.032026],[-159.265098,61.945564],[-160.534142,61.947257],[-160.913973,61.949378],[-160.910169,62.204383],[-161.047821,62.206673],[-161.04528,62.550449]]]]},"properties":{"cartodb_id":2186,"feature":"county","statefp":"02","countyfp_or_state":"290","name":"Yukon-Koyukuk"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-132.201488,55.638846],[-132.091178,55.660703],[-132.058825,55.71093],[-131.962744,55.700757],[-131.978551,55.753366],[-131.935635,55.798431],[-132.011037,55.854788],[-131.871938,55.948883],[-131.829608,56.056307],[-131.692693,56.050604],[-131.653403,56.103851],[-131.527013,56.053161],[-131.498849,56.019097],[-131.364317,56.017943],[-131.369226,56.06991],[-131.439957,56.131083],[-131.253358,56.20685],[-131.238566,56.170968],[-131.106699,56.195124],[-130.998654,56.274041],[-131.013177,56.314211],[-131.09623,56.335166],[-131.087433,56.40742],[-131.085704,56.40654],[-130.810707,56.371063],[-130.740619,56.342953],[-130.622482,56.267939],[-130.466874,56.239789],[-130.425575,56.140676],[-130.343716,56.127162],[-130.24554,56.096876],[-130.291117,56.054246],[-130.220064,55.998912],[-130.285132,55.997546],[-130.388737,55.943318],[-130.234649,55.81431],[-130.138244,55.762961],[-130.150061,55.727099],[-130.111677,55.682051],[-130.120132,55.563919],[-130.085413,55.491517],[-130.039928,55.429422],[-130.023558,55.338259],[-129.982348,55.302079],[-130.001735,55.264557],[-130.104749,55.188975],[-130.169294,55.105424],[-130.221512,55.02599],[-130.339504,54.921376],[-130.529228,54.8109],[-130.636745,54.778456],[-130.62807,54.739341],[-130.686192,54.71691],[-130.737423,54.753545],[-130.792122,54.784784],[-130.844145,54.765801],[-130.866866,54.769068],[-130.932454,54.806938],[-130.947338,54.886733],[-130.9604,54.933685],[-130.97503,54.974853],[-131.012061,54.996238],[-130.997057,55.044256],[-131.013215,55.090069],[-131.052298,55.11816],[-131.087497,55.163036],[-131.093806,55.191335],[-131.160492,55.197481],[-131.190628,55.108013],[-131.190033,55.043173],[-131.246018,54.989555],[-131.245988,54.940491],[-131.195197,54.919767],[-131.253671,54.866779],[-131.327624,54.859122],[-131.433473,54.896535],[-131.491504,54.930392],[-131.594567,54.93113],[-131.621948,54.946531],[-131.610873,54.985883],[-131.380161,54.992227],[-131.293888,55.181496],[-131.568369,55.300967],[-131.623473,55.27617],[-131.620261,55.109648],[-131.748334,55.128588],[-131.828395,55.198482],[-131.862162,55.289284],[-131.854297,55.421074],[-131.844157,55.456742],[-131.971792,55.498279],[-132.114654,55.550623],[-132.183207,55.588128],[-132.201488,55.638846]]]]},"properties":{"cartodb_id":2187,"feature":"county","statefp":"02","countyfp_or_state":"130","name":"Ketchikan Gateway"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-151.96313,59.344958],[-151.886513,59.421033],[-151.742915,59.468286],[-151.516339,59.52352],[-151.327803,59.573047],[-151.205459,59.630284],[-151.296895,59.696861],[-151.448669,59.648171],[-151.643061,59.646966],[-151.746815,59.686234],[-151.869468,59.769159],[-151.813619,59.844297],[-151.757693,59.917637],[-151.71801,60.009473],[-151.606881,60.099558],[-151.421702,60.212931],[-151.381959,60.296951],[-151.366874,60.372655],[-151.30609,60.387257],[-151.28181,60.496034],[-151.303125,60.561326],[-151.350154,60.63466],[-151.410273,60.711023],[-151.370515,60.733572],[-151.261319,60.769801],[-151.062558,60.787429],[-150.895508,60.853166],[-150.705812,60.937792],[-150.501923,61.007957],[-150.401859,61.036227],[-150.341709,61.024201],[-150.194128,60.90134],[-150.109276,60.890357],[-149.985374,60.879033],[-149.900135,60.940043],[-149.853693,60.967395],[-149.753184,60.99972],[-149.373299,60.907624],[-149.188571,60.905486],[-149.038568,60.849342],[-149.042881,60.734797],[-148.745578,60.733881],[-148.655444,60.734542],[-148.666606,60.423056],[-148.562368,60.422593],[-148.564399,60.12807],[-148.583602,59.961421],[-148.685919,59.942808],[-148.689496,59.944701],[-148.801325,59.952794],[-148.859556,59.924398],[-148.936406,59.953429],[-149.036467,59.942137],[-149.123262,59.968559],[-149.221067,59.938748],[-149.270623,59.872067],[-149.376593,59.835879],[-149.472227,59.903693],[-149.572714,59.852317],[-149.595531,59.79772],[-149.506758,59.770927],[-149.527793,59.706846],[-149.626311,59.73441],[-149.731966,59.706783],[-149.74622,59.637585],[-149.842672,59.7013],[-149.919444,59.691836],[-150.002337,59.630563],[-150.133747,59.556786],[-150.280838,59.466833],[-150.297108,59.424747],[-150.358992,59.399684],[-150.385341,59.341963],[-150.430144,59.343357],[-150.477717,59.422111],[-150.4989,59.456298],[-150.581182,59.445233],[-150.609488,59.386314],[-150.680872,59.305412],[-150.721799,59.292087],[-150.822768,59.330763],[-150.912817,59.305214],[-150.887821,59.26792],[-150.942212,59.233136],[-151.001196,59.224149],[-151.126247,59.209923],[-151.287771,59.219417],[-151.341601,59.222231],[-151.470623,59.242621],[-151.43339,59.135517],[-151.662368,59.089735],[-151.858124,59.144234],[-151.915684,59.227522],[-151.984101,59.278696],[-151.96313,59.344958]]],[[[-152.064099,60.417137],[-151.952456,60.510609],[-151.839194,60.485862],[-151.891542,60.440177],[-151.956263,60.367841],[-152.079995,60.341191],[-152.064099,60.417137]]],[[[-153.597411,59.386827],[-153.489005,59.41523],[-153.412493,59.415105],[-153.347772,59.377985],[-153.386898,59.33075],[-153.515286,59.320878],[-153.546695,59.331348],[-153.597411,59.386827]]],[[[-154.747693,59.253095],[-154.409316,59.25464],[-154.414557,59.428681],[-154.121269,59.431295],[-154.124374,59.519551],[-153.954485,59.520073],[-153.955889,59.696099],[-153.783649,59.696598],[-153.782943,59.785049],[-153.654893,59.784914],[-153.656579,60.121433],[-153.531136,60.122545],[-153.528484,60.470611],[-153.394293,60.472296],[-153.435938,60.823969],[-153.436195,60.908538],[-153.475316,61.136887],[-153.469729,61.428123],[-153.002181,61.425686],[-151.334175,61.424601],[-151.332978,61.254634],[-150.972661,61.253489],[-150.971843,61.195455],[-151.047736,61.16089],[-151.121692,61.083574],[-151.166606,61.046404],[-151.252384,61.039968],[-151.349004,61.010004],[-151.4803,61.010902],[-151.600126,60.965589],[-151.720815,60.904257],[-151.800264,60.853672],[-151.77731,60.810461],[-151.703802,60.732376],[-151.716379,60.710415],[-151.89792,60.72175],[-152.039381,60.660517],[-152.13616,60.578475],[-152.261497,60.538237],[-152.331365,60.473525],[-152.30195,60.414328],[-152.234199,60.393888],[-152.376743,60.345613],[-152.411281,60.287864],[-152.539843,60.241644],[-152.574938,60.206451],[-152.57873,60.16987],[-152.550177,60.113715],[-152.575153,60.04826],[-152.679402,59.968054],[-152.700822,59.920309],[-152.860867,59.875033],[-152.967267,59.881494],[-153.009084,59.830643],[-153.016353,59.751127],[-153.051559,59.691562],[-153.155019,59.654344],[-153.240018,59.632426],[-153.308837,59.625706],[-153.409422,59.636328],[-153.542466,59.630236],[-153.553163,59.597046],[-153.577828,59.555991],[-153.684925,59.552865],[-153.76148,59.543411],[-153.699025,59.463603],[-153.747201,59.429657],[-153.862199,59.424124],[-153.925307,59.405254],[-153.998506,59.384723],[-154.030807,59.32704],[-154.122681,59.287622],[-154.141192,59.216598],[-154.172944,59.172496],[-154.180691,59.123235],[-154.063489,59.07214],[-153.932824,59.062677],[-153.793972,59.071416],[-153.695664,59.073994],[-153.596489,59.000192],[-153.479939,58.995286],[-153.393101,58.951097],[-153.322843,58.907849],[-153.267407,58.867218],[-153.297395,58.853702],[-153.455102,58.855665],[-153.452198,58.734773],[-153.816565,58.734254],[-153.815055,58.647216],[-154.305926,58.646822],[-154.63727,58.64681],[-154.692714,58.734598],[-154.692093,59.075956],[-154.745361,59.076992],[-154.747693,59.253095]]]]},"properties":{"cartodb_id":1977,"feature":"county","statefp":"02","countyfp_or_state":"122","name":"Kenai Peninsula"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-143.889952,60.0423],[-143.167061,60.518816],[-142.824081,60.516351],[-141.963079,60.521376],[-141.765581,60.527746],[-141.760294,60.434234],[-141.213691,60.435809],[-141.213615,60.392456],[-141.00185,60.391688],[-141.00184,60.306105],[-140.53509,60.224224],[-140.472292,60.31059],[-139.989142,60.18524],[-139.698361,60.340421],[-139.086669,60.357654],[-139.082246,60.323825],[-139.200346,60.090701],[-139.046426,59.998235],[-138.702053,59.910245],[-138.643422,59.792502],[-138.584819,59.752453],[-137.604277,59.243057],[-137.498558,58.986694],[-137.526424,58.906834],[-137.525295,58.906872],[-137.938547,58.803774],[-137.924608,58.843928],[-137.951995,58.886029],[-138.066332,58.957126],[-138.224323,59.032216],[-138.357909,59.069394],[-138.636702,59.130585],[-138.807186,59.208772],[-138.919749,59.248531],[-139.07148,59.28715],[-139.271031,59.337421],[-139.420168,59.37976],[-139.632896,59.459906],[-139.861306,59.546678],[-139.74266,59.623871],[-139.585789,59.642765],[-139.588777,59.708968],[-139.608545,59.821961],[-139.776836,59.833835],[-139.871222,59.802611],[-140.080423,59.756299],[-140.176224,59.735965],[-140.242577,59.687888],[-140.4119,59.699649],[-140.792511,59.728573],[-140.922635,59.751687],[-141.156497,59.813582],[-141.392811,59.870028],[-141.485207,59.925024],[-141.595376,59.961905],[-141.73624,59.961905],[-141.912218,60.009779],[-142.062454,60.023781],[-142.426572,60.071066],[-142.744868,60.09413],[-142.908859,60.090328],[-143.0687,60.068603],[-143.267818,60.058655],[-143.624152,60.037257],[-143.781649,60.010354],[-143.885432,59.988392],[-143.889952,60.0423]]]]},"properties":{"cartodb_id":2141,"feature":"county","statefp":"02","countyfp_or_state":"282","name":"Yakutat"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-133.702599,57.791347],[-133.176444,58.150151],[-133.076421,57.999762],[-132.869318,57.842941],[-132.756813,57.705093],[-132.655279,57.601745],[-132.827503,57.58066],[-132.88785,57.613739],[-132.840996,57.663106],[-132.871898,57.712796],[-132.949844,57.745425],[-132.97733,57.721498],[-133.188197,57.741008],[-133.279877,57.794768],[-133.353451,57.77227],[-133.493063,57.824738],[-133.549413,57.775225],[-133.677033,57.750044],[-133.702599,57.791347]]],[[[-134.768896,58.01433],[-134.553923,58.053616],[-134.531804,58.096726],[-134.255797,58.144692],[-134.174352,58.125284],[-134.183983,58.077295],[-134.138231,58.047103],[-134.087572,57.996475],[-133.999948,57.91481],[-133.904874,57.807406],[-133.896846,57.685524],[-133.808285,57.609604],[-133.8176,57.568353],[-133.871581,57.484158],[-133.866931,57.367869],[-133.786398,57.311528],[-133.840895,57.271074],[-133.875673,57.267613],[-133.983501,57.302838],[-134.100118,57.266285],[-134.193629,57.184879],[-134.302721,57.136562],[-134.378359,57.115016],[-134.386052,57.087392],[-134.443786,57.062292],[-134.497718,57.031194],[-134.565687,57.023737],[-134.634565,57.109863],[-134.640169,57.239852],[-134.55554,57.407428],[-134.607557,57.513042],[-134.695428,57.685335],[-134.709024,57.780498],[-134.752398,57.938956],[-134.768896,58.01433]]],[[[-136.563223,58.035052],[-136.538708,58.093482],[-136.446286,58.11334],[-136.365544,58.148854],[-136.387113,58.252414],[-136.290349,58.251761],[-136.176442,58.265111],[-136.033678,58.276728],[-135.877468,58.259852],[-135.78338,58.286709],[-135.712398,58.231892],[-135.497911,58.168882],[-135.275797,58.097024],[-135.108896,58.08827],[-134.950844,58.036993],[-134.926395,57.921919],[-135.004952,57.884338],[-134.951337,57.784801],[-135.068561,57.764255],[-135.245415,57.765158],[-135.534661,57.882791],[-135.719231,57.931104],[-135.906742,58.001266],[-136.026713,57.835869],[-136.371359,57.831661],[-136.372377,57.832587],[-136.458829,57.853901],[-136.484259,57.89646],[-136.573288,57.926844],[-136.563223,58.035052]]],[[[-137.938547,58.803774],[-137.525295,58.906872],[-137.447383,58.909513],[-137.264752,59.002352],[-136.863896,59.138472],[-136.826633,59.158389],[-136.581521,59.164909],[-136.487883,59.262332],[-136.368849,59.232652],[-136.122285,59.207775],[-136.053534,59.177538],[-135.892056,59.172783],[-135.701868,59.104076],[-135.688248,59.016726],[-135.585301,58.986033],[-135.604265,58.909481],[-135.522232,58.8894],[-135.682038,58.85819],[-135.757086,58.742314],[-135.548348,58.698345],[-135.52815,58.655985],[-135.401945,58.616146],[-135.413387,58.584665],[-135.318523,58.500523],[-135.494071,58.499855],[-135.448117,58.402592],[-135.455834,58.338518],[-135.544213,58.330228],[-135.649861,58.324517],[-135.728054,58.397067],[-135.917917,58.381237],[-136.041818,58.380161],[-136.11193,58.34253],[-136.265906,58.314499],[-136.437152,58.302417],[-136.544776,58.316665],[-136.576799,58.277951],[-136.567956,58.245153],[-136.591924,58.217886],[-136.70125,58.219416],[-136.717093,58.273508],[-136.857605,58.31636],[-136.911713,58.370252],[-136.986384,58.404043],[-137.078109,58.397474],[-137.239366,58.453159],[-137.355328,58.492374],[-137.568216,58.587989],[-137.653709,58.608324],[-137.681633,58.656452],[-137.836448,58.741563],[-137.941828,58.794322],[-137.938547,58.803774]]]]},"properties":{"cartodb_id":1421,"feature":"county","statefp":"02","countyfp_or_state":"105","name":"Hoonah-Angoon"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-157.135927,58.680731],[-157.06223,58.740187],[-156.993548,58.836798],[-157.016088,58.86349],[-157.116866,58.867533],[-157.070597,58.88781],[-156.318135,58.894948],[-156.317671,58.60961],[-157.244859,58.609791],[-157.135927,58.680731]]]]},"properties":{"cartodb_id":831,"feature":"county","statefp":"02","countyfp_or_state":"060","name":"Bristol Bay"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-157.288702,56.566039],[-157.172027,56.598039],[-157.091146,56.581134],[-156.975549,56.540446],[-157.047173,56.519931],[-157.168777,56.53021],[-157.326059,56.525169],[-157.288702,56.566039]]],[[[-159.899424,56.491981],[-159.59341,56.494524],[-159.592657,56.580917],[-159.275491,56.580921],[-159.275496,56.671762],[-159.028589,56.669419],[-159.028594,56.754058],[-158.891034,56.75422],[-158.893208,56.809168],[-158.853294,56.79262],[-158.744534,56.795112],[-158.656355,56.810012],[-158.646812,56.846992],[-158.686184,56.911555],[-158.679293,56.988625],[-158.531328,57.132156],[-158.32018,57.281558],[-158.229883,57.321534],[-158.083785,57.357181],[-157.931624,57.476208],[-157.772496,57.547055],[-157.678891,57.563888],[-157.684282,57.609974],[-157.709179,57.657459],[-157.683349,57.753695],[-157.642226,57.868777],[-157.596601,58.08867],[-157.556556,58.148445],[-157.48013,58.217354],[-157.547209,58.277535],[-157.541041,58.377302],[-157.481487,58.480771],[-157.313572,58.565043],[-157.244859,58.609791],[-156.317671,58.60961],[-156.318135,58.894948],[-157.070597,58.88781],[-157.116866,58.867533],[-157.153248,58.859208],[-157.160907,59.06776],[-157.241643,59.068955],[-157.244151,59.246208],[-157.074194,59.244404],[-157.073256,59.331538],[-156.729373,59.328803],[-156.731184,59.41617],[-156.635005,59.415108],[-156.634489,59.503988],[-156.464896,59.502988],[-156.464798,59.589388],[-156.123307,59.588205],[-156.12205,59.675185],[-155.95585,59.677305],[-155.953624,60.106238],[-155.9611,60.907602],[-154.422064,60.906969],[-153.436195,60.908538],[-153.435938,60.823969],[-153.394293,60.472296],[-153.528484,60.470611],[-153.531136,60.122545],[-153.656579,60.121433],[-153.654893,59.784914],[-153.782943,59.785049],[-153.783649,59.696598],[-153.955889,59.696099],[-153.954485,59.520073],[-154.124374,59.519551],[-154.121269,59.431295],[-154.414557,59.428681],[-154.409316,59.25464],[-154.747693,59.253095],[-154.745361,59.076992],[-154.692093,59.075956],[-154.692714,58.734598],[-154.63727,58.64681],[-154.305926,58.646822],[-154.303447,58.460385],[-154.351306,58.418083],[-154.432332,58.418998],[-154.465741,58.361356],[-154.569723,58.360808],[-154.570107,58.333055],[-154.729769,58.332837],[-154.730369,58.304669],[-155.008132,58.290905],[-155.057741,58.236209],[-155.221463,58.236408],[-155.221313,58.193193],[-155.331945,58.193283],[-155.280169,58.108591],[-155.280743,58.047874],[-155.331678,58.048211],[-155.330245,57.876343],[-155.44602,57.871459],[-155.446251,57.827094],[-155.53883,57.799806],[-155.693773,57.797987],[-155.692481,57.739054],[-155.747821,57.73983],[-155.768022,57.668261],[-155.898455,57.6681],[-155.84623,57.629144],[-155.921548,57.554334],[-155.952772,57.598213],[-156.071148,57.584424],[-156.132032,57.509692],[-156.370235,57.522368],[-156.508759,57.434831],[-156.502226,57.362606],[-156.617395,57.334942],[-156.672142,57.29298],[-156.672751,57.234909],[-156.75078,57.235795],[-156.750815,57.162878],[-156.374287,57.15925],[-156.44301,57.119533],[-156.479111,57.068395],[-156.55052,56.98461],[-156.63784,56.993905],[-156.704216,56.987079],[-156.825982,56.897667],[-156.935629,56.920087],[-157.034624,56.884487],[-157.073453,56.838345],[-157.183636,56.769079],[-157.290511,56.804713],[-157.411488,56.778351],[-157.530765,56.753775],[-157.563802,56.703426],[-157.45216,56.64322],[-157.496523,56.616897],[-157.605231,56.621315],[-157.674587,56.609507],[-157.719048,56.653084],[-157.791844,56.670692],[-157.918541,56.643137],[-157.869897,56.566837],[-157.817826,56.51421],[-157.869124,56.456612],[-157.971711,56.476737],[-158.12744,56.460805],[-158.246144,56.466124],[-158.284699,56.481089],[-158.371953,56.467334],[-158.438414,56.427471],[-158.489546,56.341865],[-158.415095,56.336228],[-158.288369,56.316089],[-158.207387,56.294354],[-158.117797,56.230742],[-158.283191,56.173212],[-158.374324,56.134522],[-158.394922,56.064721],[-158.431471,55.994452],[-158.50984,55.979617],[-158.638211,55.994743],[-158.653214,55.958615],[-158.74856,55.959365],[-158.898116,55.951041],[-159.096187,55.91475],[-159.086217,55.834869],[-159.394595,55.714944],[-159.532754,55.676424],[-159.564402,55.637245],[-159.564669,55.888484],[-159.868099,55.888481],[-159.867858,55.982594],[-159.805267,55.982595],[-159.809651,56.321694],[-159.903652,56.322594],[-159.899424,56.491981]]]]},"properties":{"cartodb_id":2051,"feature":"county","statefp":"02","countyfp_or_state":"164","name":"Lake and Peninsula"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-168.12893,65.655744],[-167.979889,65.727972],[-167.650051,65.795703],[-167.282753,65.897386],[-166.768944,66.068582],[-166.038082,66.269512],[-165.407204,66.420441],[-164.816093,66.525025],[-164.400727,66.58111],[-164.396644,66.476291],[-164.319703,66.475975],[-164.31779,66.130579],[-164.244449,66.129158],[-164.246706,65.78244],[-163.970931,65.782923],[-163.971115,65.608348],[-163.758871,65.608055],[-163.758001,65.436206],[-162.882514,65.436799],[-162.039095,65.43812],[-161.027839,65.439288],[-159.804395,65.435857],[-159.801012,65.522686],[-159.593576,65.522689],[-159.386712,65.52314],[-159.384765,65.261674],[-159.578562,65.262692],[-159.576911,64.923743],[-159.777177,64.923088],[-159.773803,64.750296],[-159.978098,64.748491],[-159.960914,64.401237],[-159.956447,64.051022],[-159.731224,64.052366],[-159.699291,63.792346],[-159.930773,63.793808],[-159.929244,63.703494],[-160.103703,63.702263],[-160.097874,63.614393],[-160.493465,63.613655],[-160.494971,63.537148],[-160.692051,63.536618],[-160.692871,63.358486],[-160.671305,63.27083],[-160.847328,63.269229],[-160.851144,63.012689],[-161.990906,63.012675],[-161.990032,63.096024],[-162.177514,63.096467],[-162.184665,63.186448],[-162.374087,63.186423],[-162.37771,63.272891],[-162.596652,63.280387],[-162.526588,63.316551],[-162.42153,63.409014],[-162.352274,63.454069],[-162.562007,63.537105],[-162.707559,63.577607],[-162.587527,63.625115],[-162.401203,63.634367],[-162.252411,63.541753],[-162.073156,63.513768],[-161.982168,63.446313],[-161.676526,63.465003],[-161.421085,63.46015],[-161.191163,63.490072],[-161.073573,63.5617],[-160.783304,63.752893],[-160.76562,63.828714],[-160.900464,63.99834],[-160.941096,64.066319],[-160.962007,64.220575],[-161.177712,64.343541],[-161.263519,64.398166],[-161.504903,64.423074],[-161.469046,64.506575],[-161.389879,64.547833],[-161.198029,64.496626],[-160.992894,64.541295],[-160.793356,64.619317],[-160.783398,64.71716],[-160.935974,64.82237],[-161.079718,64.869549],[-161.133062,64.898219],[-161.213756,64.883324],[-161.327848,64.829836],[-161.376985,64.773036],[-161.518211,64.75325],[-161.64552,64.776452],[-161.772978,64.749258],[-161.878363,64.709476],[-162.060291,64.692872],[-162.188146,64.672395],[-162.234477,64.619336],[-162.539996,64.530931],[-162.603236,64.479904],[-162.632242,64.385734],[-162.768424,64.333516],[-162.83654,64.436702],[-162.857562,64.49978],[-162.940776,64.542417],[-163.033231,64.519314],[-163.027158,64.477945],[-163.091486,64.437736],[-163.133172,64.381844],[-163.249092,64.456223],[-163.4129,64.524986],[-163.686337,64.568798],[-163.829739,64.574965],[-163.974352,64.55137],[-164.147059,64.564552],[-164.307273,64.561488],[-164.548298,64.516738],[-164.807747,64.449432],[-165.001961,64.433917],[-165.291644,64.480731],[-165.819595,64.540171],[-166.236939,64.583558],[-166.413926,64.651229],[-166.482682,64.755101],[-166.478978,64.797036],[-166.407315,64.852281],[-166.432246,64.88316],[-166.586066,64.955712],[-166.697808,64.991201],[-166.73725,65.027526],[-166.911922,65.125965],[-166.886677,65.138763],[-166.634449,65.125873],[-166.479913,65.167249],[-166.451711,65.236178],[-166.347189,65.276341],[-166.439404,65.319058],[-166.596964,65.336246],[-166.750702,65.333172],[-166.899681,65.360642],[-167.067707,65.385117],[-167.348739,65.397891],[-167.474024,65.412744],[-167.684378,65.489079],[-167.851234,65.538181],[-168.04762,65.569149],[-168.12893,65.655744]]],[[[-171.83683,63.564883],[-171.791881,63.620625],[-171.802824,63.716391],[-171.743398,63.782971],[-171.613182,63.785065],[-171.58305,63.715557],[-171.552856,63.666251],[-171.309333,63.621085],[-170.950817,63.570127],[-170.859032,63.587503],[-170.606282,63.672732],[-170.488192,63.696723],[-170.344855,63.694225],[-170.26748,63.675816],[-170.176413,63.625489],[-170.095833,63.612701],[-170.048963,63.537958],[-170.007943,63.475428],[-169.857078,63.441975],[-169.656474,63.429929],[-169.566562,63.388725],[-169.462733,63.360458],[-169.087914,63.340937],[-168.937385,63.333789],[-168.685145,63.296427],[-168.751537,63.217962],[-168.841654,63.153844],[-168.93915,63.137653],[-169.07503,63.177689],[-169.230523,63.172948],[-169.436748,63.113579],[-169.534984,63.074355],[-169.576965,63.027025],[-169.568016,62.976879],[-169.638309,62.937527],[-169.757249,62.960087],[-169.788466,63.043015],[-169.88123,63.105848],[-170.049622,63.163377],[-170.186485,63.181618],[-170.263032,63.179147],[-170.30363,63.238692],[-170.430656,63.314284],[-170.663536,63.376109],[-170.896167,63.417745],[-171.067663,63.424579],[-171.226326,63.395108],[-171.285411,63.366464],[-171.433319,63.307578],[-171.528084,63.324933],[-171.667115,63.356166],[-171.760112,63.381633],[-171.849984,63.485039],[-171.83683,63.564883]]]]},"properties":{"cartodb_id":1294,"feature":"county","statefp":"02","countyfp_or_state":"180","name":"Nome"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-152.434247,63.169794],[-152.434625,63.305936],[-152.626562,63.301474],[-152.622554,63.346765],[-152.812007,63.351232],[-152.80363,63.481056],[-152.85343,63.65171],[-152.241918,63.656679],[-152.233557,63.823684],[-152.055519,63.823679],[-152.047377,64.000576],[-151.825058,64.005365],[-151.790558,64.08229],[-151.579286,64.08538],[-151.525111,64.032465],[-151.301289,64.009971],[-151.136195,64.133084],[-150.749736,64.365138],[-149.667993,64.357813],[-149.119968,64.358796],[-149.109443,64.343579],[-147.995157,64.341691],[-147.78165,64.259198],[-147.003185,64.258928],[-146.972377,63.919245],[-146.975489,63.479746],[-148.032727,63.469757],[-148.035867,63.330788],[-148.747388,63.335821],[-149.506984,63.332164],[-150.002153,63.221393],[-151.888963,62.795348],[-151.893149,62.722992],[-152.413986,62.723002],[-153.001339,62.72744],[-152.434247,63.169794]]]]},"properties":{"cartodb_id":1351,"feature":"county","statefp":"02","countyfp_or_state":"068","name":"Denali"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-136.466815,59.284252],[-136.474326,59.464194],[-136.358141,59.449799],[-136.234229,59.524731],[-136.23734,59.558734],[-136.350622,59.599326],[-136.190352,59.639854],[-135.945905,59.663802],[-135.721793,59.728779],[-135.37582,59.340621],[-135.029245,59.345364],[-134.961972,59.280376],[-134.702383,59.247836],[-134.66407,59.181172],[-134.566689,59.128278],[-134.481241,59.128071],[-134.379771,59.034961],[-134.401042,58.976221],[-134.327982,58.963431],[-135.219128,58.974972],[-135.064237,58.451232],[-135.104413,58.449263],[-135.068437,58.374157],[-135.049062,58.309295],[-135.10121,58.292607],[-135.087872,58.200073],[-135.227736,58.2369],[-135.306507,58.242916],[-135.408059,58.342999],[-135.455834,58.338518],[-135.448117,58.402592],[-135.494071,58.499855],[-135.318523,58.500523],[-135.413387,58.584665],[-135.401945,58.616146],[-135.52815,58.655985],[-135.548348,58.698345],[-135.757086,58.742314],[-135.682038,58.85819],[-135.522232,58.8894],[-135.604265,58.909481],[-135.585301,58.986033],[-135.688248,59.016726],[-135.701868,59.104076],[-135.892056,59.172783],[-136.053534,59.177538],[-136.122285,59.207775],[-136.368849,59.232652],[-136.487883,59.262332],[-136.466815,59.284252]]]]},"properties":{"cartodb_id":2307,"feature":"county","statefp":"02","countyfp_or_state":"100","name":"Haines"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-134.960502,58.403758],[-134.865084,58.357276],[-134.788441,58.28909],[-134.735829,58.234597],[-134.723591,58.209657],[-134.699956,58.161494],[-134.608911,58.171637],[-134.46176,58.159289],[-134.329872,58.13499],[-134.256223,58.144793],[-134.255797,58.144692],[-134.531804,58.096726],[-134.553923,58.053616],[-134.768896,58.01433],[-134.783772,58.082292],[-134.864299,58.180489],[-134.958171,58.322057],[-134.960502,58.403758]]],[[[-135.219128,58.974972],[-134.327982,58.963431],[-134.328964,58.919593],[-134.250526,58.858046],[-133.840392,58.727991],[-133.699835,58.60729],[-133.379908,58.427909],[-133.461475,58.385526],[-133.343725,58.270915],[-133.176444,58.150151],[-133.702599,57.791347],[-133.703097,57.792152],[-133.708803,57.797764],[-133.848776,57.93544],[-134.049603,58.062027],[-134.078155,58.152046],[-134.146685,58.199084],[-134.234572,58.197234],[-134.375579,58.208705],[-134.464635,58.227388],[-134.631203,58.247446],[-134.750586,58.391533],[-134.936897,58.457474],[-135.064237,58.451232],[-135.219128,58.974972]]]]},"properties":{"cartodb_id":2652,"feature":"county","statefp":"02","countyfp_or_state":"110","name":"Juneau"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-166.211787,61.608373],[-166.143757,61.724352],[-166.050997,61.766689],[-166.094312,61.813859],[-165.940864,61.84908],[-165.803979,61.825685],[-165.639516,61.847006],[-165.650103,61.874153],[-165.743528,61.962533],[-165.754295,62.055955],[-165.672037,62.13989],[-165.458499,62.282847],[-165.26927,62.427352],[-165.096155,62.522452],[-165.052202,62.598217],[-164.962432,62.658246],[-164.837703,62.685267],[-164.864367,62.752042],[-164.87564,62.806254],[-164.813007,62.903919],[-164.685213,63.022191],[-164.607425,63.112899],[-164.442368,63.202672],[-164.209475,63.251472],[-164.066991,63.262276],[-163.885059,63.222308],[-163.73265,63.213257],[-163.616272,63.141213],[-163.529938,63.1354],[-163.316203,63.037763],[-163.053996,63.058334],[-162.919727,63.120153],[-162.844559,63.154191],[-162.821122,63.205596],[-162.72408,63.214615],[-162.596652,63.280387],[-162.37771,63.272891],[-162.374087,63.186423],[-162.184665,63.186448],[-162.177514,63.096467],[-161.990032,63.096024],[-161.990906,63.012675],[-160.851144,63.012689],[-160.941899,62.998883],[-160.993241,62.897962],[-161.04528,62.550449],[-161.047821,62.206673],[-160.910169,62.204383],[-160.913973,61.949378],[-160.534142,61.947257],[-160.469477,61.869348],[-160.18666,61.831693],[-160.20263,61.810322],[-160.35014,61.819071],[-160.597733,61.760156],[-160.775244,61.738527],[-160.953961,61.685669],[-161.126812,61.59954],[-161.449611,61.568838],[-161.697058,61.530087],[-161.885286,61.48281],[-162.013438,61.477057],[-162.328294,61.518376],[-162.476189,61.503959],[-162.505761,61.556426],[-162.75398,61.542666],[-162.847199,61.498736],[-163.061999,61.479931],[-163.171354,61.449071],[-163.431258,61.484107],[-163.531412,61.401454],[-163.524124,61.355098],[-163.65539,61.335827],[-163.785076,61.367097],[-163.99276,61.371763],[-163.981767,61.243286],[-163.920874,61.210692],[-164.017645,61.192886],[-164.121482,61.127],[-164.201874,61.151613],[-164.211781,61.082262],[-164.146306,61.074682],[-164.154702,61.022625],[-164.234986,60.988241],[-164.529911,60.940796],[-164.616585,60.979049],[-164.797619,60.982487],[-165.108495,60.926575],[-165.194945,60.9739],[-165.133937,61.01125],[-165.057842,61.059746],[-165.139403,61.092946],[-165.203757,61.150341],[-165.325552,61.169306],[-165.385437,61.079574],[-165.459236,61.083424],[-165.55514,61.092674],[-165.640289,61.138066],[-165.63288,61.227965],[-165.623317,61.278431],[-165.787442,61.310063],[-165.831365,61.306719],[-165.921194,61.40308],[-165.877104,61.431149],[-165.791085,61.449852],[-165.746352,61.489304],[-165.865668,61.535046],[-165.912496,61.5562],[-165.999535,61.53972],[-166.075398,61.49298],[-166.149577,61.513288],[-166.211787,61.608373]]]]},"properties":{"cartodb_id":56,"feature":"county","statefp":"02","countyfp_or_state":"270","name":"Wade Hampton"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-160.252749,54.913251],[-160.192058,55.038157],[-160.187261,55.118376],[-160.137102,55.171565],[-160.025257,55.203914],[-159.870591,55.284889],[-159.843859,55.249367],[-159.816419,55.178051],[-159.670305,55.182337],[-159.521096,55.253393],[-159.488766,55.188812],[-159.33847,55.046683],[-159.203228,54.914842],[-159.272354,54.864204],[-159.309681,54.865813],[-159.447982,54.941374],[-159.504434,55.027316],[-159.635226,55.037294],[-159.752779,55.066139],[-159.813625,55.027467],[-160.027035,55.02091],[-160.099295,54.962853],[-160.226967,54.864075],[-160.252749,54.913251]]],[[[-160.856621,55.318488],[-160.808929,55.370122],[-160.687442,55.402198],[-160.517513,55.379378],[-160.333421,55.436928],[-160.260565,55.463674],[-160.137032,55.450709],[-160.154038,55.377518],[-160.30655,55.303275],[-160.341217,55.251799],[-160.468262,55.288925],[-160.527617,55.256374],[-160.486511,55.181951],[-160.525226,55.129871],[-160.655577,55.160261],[-160.734942,55.151311],[-160.821381,55.117851],[-160.841917,55.20444],[-160.856621,55.318488]]],[[[-161.426005,55.216563],[-161.356726,55.221262],[-161.329875,55.219418],[-161.344152,55.158504],[-161.451286,55.178027],[-161.426005,55.216563]]],[[[-161.697129,55.249148],[-161.523434,55.271659],[-161.560207,55.207045],[-161.691553,55.198479],[-161.697129,55.249148]]],[[[-162.844362,54.510428],[-162.585315,54.447995],[-162.34484,54.401336],[-162.388754,54.367623],[-162.46695,54.342692],[-162.608608,54.369147],[-162.760247,54.372193],[-162.861736,54.424771],[-162.844362,54.510428]]],[[[-164.948789,54.579877],[-164.864333,54.620188],[-164.741815,54.645441],[-164.674836,54.702596],[-164.576896,54.824564],[-164.57626,54.895342],[-164.43528,54.933126],[-164.343534,54.894139],[-164.204897,54.93124],[-164.119196,54.969416],[-163.994179,54.983315],[-163.894695,55.039115],[-163.774093,55.05578],[-163.527109,55.040871],[-163.429548,54.954759],[-163.343768,54.974439],[-163.280771,55.032959],[-163.314652,55.126312],[-163.132007,55.179629],[-163.032256,55.172147],[-162.86152,55.198339],[-162.900027,55.252466],[-162.813255,55.299458],[-162.64165,55.392576],[-162.565411,55.466849],[-162.365467,55.604586],[-162.219551,55.710867],[-162.120886,55.749089],[-162.05063,55.790897],[-161.898956,55.833464],[-161.807833,55.891954],[-161.712283,55.904232],[-161.450442,55.954485],[-161.15687,56.012216],[-160.964744,56.023754],[-160.807119,56.02398],[-160.811041,55.94723],[-160.793215,55.88596],[-160.564014,55.863719],[-160.508433,55.869379],[-160.457194,55.917233],[-160.533685,55.95995],[-160.589569,55.983048],[-160.488708,56.077214],[-160.405869,56.207938],[-160.385922,56.279706],[-160.222878,56.346868],[-160.146252,56.400176],[-159.985615,56.449743],[-159.828049,56.543935],[-159.534961,56.626529],[-159.219956,56.73953],[-158.972735,56.842138],[-158.893208,56.809168],[-158.891034,56.75422],[-159.028594,56.754058],[-159.028589,56.669419],[-159.275496,56.671762],[-159.275491,56.580921],[-159.592657,56.580917],[-159.59341,56.494524],[-159.899424,56.491981],[-159.903652,56.322594],[-159.809651,56.321694],[-159.805267,55.982595],[-159.867858,55.982594],[-159.868099,55.888481],[-159.564669,55.888484],[-159.564402,55.637245],[-159.572125,55.627684],[-159.696713,55.573306],[-159.733899,55.569985],[-159.760365,55.615203],[-159.679201,55.655895],[-159.673191,55.750961],[-159.627482,55.803248],[-159.679792,55.838765],[-159.770298,55.852357],[-159.847359,55.80253],[-159.937089,55.803306],[-160.026282,55.792295],[-160.058443,55.721734],[-160.130445,55.681419],[-160.279827,55.641384],[-160.392587,55.602771],[-160.464301,55.533243],[-160.462745,55.506654],[-160.521335,55.47442],[-160.654117,55.512596],[-160.666917,55.459776],[-160.781401,55.45178],[-160.836725,55.473135],[-160.976551,55.472736],[-161.080549,55.408498],[-161.253977,55.355896],[-161.486114,55.359322],[-161.514211,55.385254],[-161.478303,55.4406],[-161.469271,55.49683],[-161.376102,55.569794],[-161.392613,55.628221],[-161.482064,55.633979],[-161.587047,55.62006],[-161.658262,55.560447],[-161.700069,55.51439],[-161.686495,55.408041],[-161.777414,55.329377],[-161.863339,55.266989],[-161.817232,55.176529],[-161.718614,55.154166],[-161.576643,55.103831],[-161.550357,55.065734],[-161.690346,55.0785],[-161.792297,55.052278],[-161.906434,55.10032],[-161.956595,55.112174],[-162.053281,55.074212],[-162.11874,55.102911],[-162.190348,55.066981],[-162.219326,55.028975],[-162.235675,54.962601],[-162.236806,54.88163],[-162.282944,54.841216],[-162.349315,54.836049],[-162.428237,54.895434],[-162.435473,54.929249],[-162.41351,55.03656],[-162.47136
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment