{
 "cells": [
  {
   "cell_type": "markdown",
   "id": "27d7d8f2-a943-481c-be10-365391d39458",
   "metadata": {},
   "source": [
    "# W to Graph Migration Guide\n",
    "\n",
    "Author: [Serge Rey](http://github.com/sjsrey)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "57537223-f1c3-4771-b8f0-f7b32962e995",
   "metadata": {},
   "source": [
    "## Introduction\n",
    "\n",
    "Beginning in the fall of 2023, the PySAL project released a new `graph` module that offers a modern implementation of spatial weights. This module's [Graph](../../generated/libpysal.graph.Graph.html) class is set to eventually replace the [W](../../generated/libpysal.weights.W.html) class, which has been the cornerstone for spatial weights in PySAL for the past 15 years. The `W` class has significantly contributed to the library's success, but as the scientific landscape evolves, new opportunities necessitate updated interfaces and designs for spatial weights.\n",
    "\n",
    "While the application programming interfaces (API) of the `W` and `Graph` classes are similar, there are important [differences](../../migration.rst)\n",
    "to consider when transitioning from weights-based resources to graph-based implementations.\n",
    "\n",
    "This guide is designed to provide users with an overview of migrating from the `W` class to the `Graph` class.\n",
    "\n",
    "Beyond the specifics that we outline below, it is important to note two utility methods are available to convert between the two classes:\n",
    "\n",
    "-  `Graph.to_W()` will generate a `W` instance from a `Graph` object\n",
    "- `Graph.from_W()`will generate a `Graph` instance from a `W` object\n",
    "\n"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "2d4e2096-0b7c-4acc-9875-32321256693b",
   "metadata": {},
   "source": [
    "## Imports\n",
    "To access the `W` and `Graph` class, use the following imports:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 1,
   "id": "f46293f2-1362-4e44-840f-eef77a67285d",
   "metadata": {},
   "outputs": [],
   "source": [
    "from libpysal import graph, weights"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "c5d73325-f533-466d-8108-ef034705fa58",
   "metadata": {},
   "source": [
    "## Example Data Set\n",
    "\n",
    "To illustrate the migration from `W` to `Graph` we will utilize a built-in data set from `libpysal`. In addition to the relevant `libpysal` modules we will also import the other packages needed:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "id": "a2254e95-de33-4856-bc71-2817e52af346",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Last updated: 2024-07-18\n",
      "\n",
      "Python implementation: CPython\n",
      "Python version       : 3.12.2\n",
      "IPython version      : 8.21.0\n",
      "\n",
      "libpysal: 4.2.3.dev1352+gcfa4e0ce\n",
      "\n"
     ]
    }
   ],
   "source": [
    "%matplotlib inline\n",
    "\n",
    "import geopandas as gpd\n",
    "import pandas as pd\n",
    "import seaborn as sns\n",
    "\n",
    "from libpysal import examples\n",
    "\n",
    "%load_ext watermark\n",
    "%watermark -v -d -u -p libpysal"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "id": "8c3bbda5-833a-4e73-82cc-eb6cfc906856",
   "metadata": {},
   "outputs": [],
   "source": [
    "dbs = examples.available()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "id": "acd84693-21e0-49fc-b878-840ba66840e9",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "sids2\n",
      "=====\n",
      "\n",
      "North Carolina county SIDS death counts and rates\n",
      "-------------------------------------------------\n",
      "\n",
      "* sids2.dbf: attribute data. (k=18)\n",
      "* sids2.html: metadata.\n",
      "* sids2.shp: Polygon shapefile. (n=100)\n",
      "* sids2.shx: spatial index.\n",
      "* sids2.gal: spatial weights in GAL format.\n",
      "\n",
      "Source: Cressie, Noel (1993). Statistics for Spatial Data. New York, Wiley, pp. 386-389. Rates computed.\n",
      "Updated URL: https://geodacenter.github.io/data-and-lab/sids2/\n",
      "\n"
     ]
    }
   ],
   "source": [
    "examples.explain(\"sids2\")"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "id": "8422e23d-a7f4-48b9-a31c-725a06dde2f6",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "<class 'geopandas.geodataframe.GeoDataFrame'>\n",
      "RangeIndex: 100 entries, 0 to 99\n",
      "Data columns (total 19 columns):\n",
      " #   Column     Non-Null Count  Dtype   \n",
      "---  ------     --------------  -----   \n",
      " 0   AREA       100 non-null    float64 \n",
      " 1   PERIMETER  100 non-null    float64 \n",
      " 2   CNTY_      100 non-null    int64   \n",
      " 3   CNTY_ID    100 non-null    int64   \n",
      " 4   NAME       100 non-null    object  \n",
      " 5   FIPS       100 non-null    object  \n",
      " 6   FIPSNO     100 non-null    int64   \n",
      " 7   CRESS_ID   100 non-null    int64   \n",
      " 8   BIR74      100 non-null    float64 \n",
      " 9   SID74      100 non-null    float64 \n",
      " 10  NWBIR74    100 non-null    float64 \n",
      " 11  BIR79      100 non-null    float64 \n",
      " 12  SID79      100 non-null    float64 \n",
      " 13  NWBIR79    100 non-null    float64 \n",
      " 14  SIDR74     100 non-null    float64 \n",
      " 15  SIDR79     100 non-null    float64 \n",
      " 16  NWR74      100 non-null    float64 \n",
      " 17  NWR79      100 non-null    float64 \n",
      " 18  geometry   100 non-null    geometry\n",
      "dtypes: float64(12), geometry(1), int64(4), object(2)\n",
      "memory usage: 15.0+ KB\n"
     ]
    }
   ],
   "source": [
    "# Read the file in\n",
    "gdf = gpd.read_file(examples.get_path(\"sids2.shp\"))\n",
    "\n",
    "gdf.info()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "id": "c116377a-e1c6-4a0c-90ed-928db6f08220",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "0     POLYGON ((-81.47276 36.23436, -81.54084 36.272...\n",
       "1     POLYGON ((-81.23989 36.36536, -81.24069 36.379...\n",
       "2     POLYGON ((-80.45634 36.24256, -80.47639 36.254...\n",
       "3     MULTIPOLYGON (((-76.00897 36.31960, -76.01735 ...\n",
       "4     POLYGON ((-77.21767 36.24098, -77.23461 36.214...\n",
       "                            ...                        \n",
       "95    POLYGON ((-78.26150 34.39479, -78.32898 34.364...\n",
       "96    POLYGON ((-78.02592 34.32877, -78.13024 34.364...\n",
       "97    POLYGON ((-78.65572 33.94867, -79.07450 34.304...\n",
       "98    POLYGON ((-77.96073 34.18924, -77.96587 34.242...\n",
       "99    POLYGON ((-78.65572 33.94867, -78.63472 33.977...\n",
       "Name: geometry, Length: 100, dtype: geometry"
      ]
     },
     "execution_count": 6,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "gdf.geometry"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "id": "248f154c-d874-496b-88ad-b8ad2f367bbc",
   "metadata": {},
   "outputs": [],
   "source": [
    "gdf = gdf.set_crs(\"epsg:4326\")"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 8,
   "id": "592bad5b-95fc-4f62-9dfe-8139188c6eef",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<div style=\"width:100%;\"><div style=\"position:relative;width:100%;height:0;padding-bottom:60%;\"><span style=\"color:#565656\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\"&lt;!DOCTYPE html&gt;\n",
       "&lt;html&gt;\n",
       "&lt;head&gt;\n",
       "    \n",
       "    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\n",
       "    \n",
       "        &lt;script&gt;\n",
       "            L_NO_TOUCH = false;\n",
       "            L_DISABLE_3D = false;\n",
       "        &lt;/script&gt;\n",
       "    \n",
       "    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\n",
       "    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\n",
       "    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\n",
       "    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\n",
       "    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\n",
       "    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\n",
       "    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\n",
       "    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\n",
       "    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css&quot;/&gt;\n",
       "    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\n",
       "    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\n",
       "    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\n",
       "    \n",
       "            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\n",
       "                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\n",
       "            &lt;style&gt;\n",
       "                #map_2cd5e3118561f53e0de38f6355f66d71 {\n",
       "                    position: relative;\n",
       "                    width: 100.0%;\n",
       "                    height: 100.0%;\n",
       "                    left: 0.0%;\n",
       "                    top: 0.0%;\n",
       "                }\n",
       "                .leaflet-container { font-size: 1rem; }\n",
       "            &lt;/style&gt;\n",
       "        \n",
       "    \n",
       "                    &lt;style&gt;\n",
       "                        .foliumtooltip {\n",
       "                            \n",
       "                        }\n",
       "                       .foliumtooltip table{\n",
       "                            margin: auto;\n",
       "                        }\n",
       "                        .foliumtooltip tr{\n",
       "                            text-align: left;\n",
       "                        }\n",
       "                        .foliumtooltip th{\n",
       "                            padding: 2px; padding-right: 8px;\n",
       "                        }\n",
       "                    &lt;/style&gt;\n",
       "            \n",
       "&lt;/head&gt;\n",
       "&lt;body&gt;\n",
       "    \n",
       "    \n",
       "            &lt;div class=&quot;folium-map&quot; id=&quot;map_2cd5e3118561f53e0de38f6355f66d71&quot; &gt;&lt;/div&gt;\n",
       "        \n",
       "&lt;/body&gt;\n",
       "&lt;script&gt;\n",
       "    \n",
       "    \n",
       "            var map_2cd5e3118561f53e0de38f6355f66d71 = L.map(\n",
       "                &quot;map_2cd5e3118561f53e0de38f6355f66d71&quot;,\n",
       "                {\n",
       "                    center: [35.23582077026367, -79.89041519165039],\n",
       "                    crs: L.CRS.EPSG3857,\n",
       "                    zoom: 10,\n",
       "                    zoomControl: true,\n",
       "                    preferCanvas: false,\n",
       "                }\n",
       "            );\n",
       "            L.control.scale().addTo(map_2cd5e3118561f53e0de38f6355f66d71);\n",
       "\n",
       "            \n",
       "\n",
       "        \n",
       "    \n",
       "            var tile_layer_6e66b17a2e4e63450a0178a2c1ce847c = L.tileLayer(\n",
       "                &quot;https://tile.openstreetmap.org/{z}/{x}/{y}.png&quot;,\n",
       "                {&quot;attribution&quot;: &quot;\\u0026copy; \\u003ca href=\\&quot;https://www.openstreetmap.org/copyright\\&quot;\\u003eOpenStreetMap\\u003c/a\\u003e contributors&quot;, &quot;detectRetina&quot;: false, &quot;maxNativeZoom&quot;: 19, &quot;maxZoom&quot;: 19, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\n",
       "            );\n",
       "        \n",
       "    \n",
       "            tile_layer_6e66b17a2e4e63450a0178a2c1ce847c.addTo(map_2cd5e3118561f53e0de38f6355f66d71);\n",
       "        \n",
       "    \n",
       "            map_2cd5e3118561f53e0de38f6355f66d71.fitBounds(\n",
       "                [[33.88199234008789, -84.3238525390625], [36.58964920043945, -75.45697784423828]],\n",
       "                {}\n",
       "            );\n",
       "        \n",
       "    \n",
       "        function geo_json_e70a3f6a0aa8d0ad995d5b52d3f8c106_styler(feature) {\n",
       "            switch(feature.id) {\n",
       "                default:\n",
       "                    return {&quot;fillOpacity&quot;: 0.5, &quot;weight&quot;: 2};\n",
       "            }\n",
       "        }\n",
       "        function geo_json_e70a3f6a0aa8d0ad995d5b52d3f8c106_highlighter(feature) {\n",
       "            switch(feature.id) {\n",
       "                default:\n",
       "                    return {&quot;fillOpacity&quot;: 0.75};\n",
       "            }\n",
       "        }\n",
       "        function geo_json_e70a3f6a0aa8d0ad995d5b52d3f8c106_pointToLayer(feature, latlng) {\n",
       "            var opts = {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3388ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#3388ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 2, &quot;stroke&quot;: true, &quot;weight&quot;: 3};\n",
       "            \n",
       "            let style = geo_json_e70a3f6a0aa8d0ad995d5b52d3f8c106_styler(feature)\n",
       "            Object.assign(opts, style)\n",
       "            \n",
       "            return new L.CircleMarker(latlng, opts)\n",
       "        }\n",
       "\n",
       "        function geo_json_e70a3f6a0aa8d0ad995d5b52d3f8c106_onEachFeature(feature, layer) {\n",
       "            layer.on({\n",
       "                mouseout: function(e) {\n",
       "                    if(typeof e.target.setStyle === &quot;function&quot;){\n",
       "                        geo_json_e70a3f6a0aa8d0ad995d5b52d3f8c106.resetStyle(e.target);\n",
       "                    }\n",
       "                },\n",
       "                mouseover: function(e) {\n",
       "                    if(typeof e.target.setStyle === &quot;function&quot;){\n",
       "                        const highlightStyle = geo_json_e70a3f6a0aa8d0ad995d5b52d3f8c106_highlighter(e.target.feature)\n",
       "                        e.target.setStyle(highlightStyle);\n",
       "                    }\n",
       "                },\n",
       "            });\n",
       "        };\n",
       "        var geo_json_e70a3f6a0aa8d0ad995d5b52d3f8c106 = L.geoJson(null, {\n",
       "                onEachFeature: geo_json_e70a3f6a0aa8d0ad995d5b52d3f8c106_onEachFeature,\n",
       "            \n",
       "                style: geo_json_e70a3f6a0aa8d0ad995d5b52d3f8c106_styler,\n",
       "                pointToLayer: geo_json_e70a3f6a0aa8d0ad995d5b52d3f8c106_pointToLayer,\n",
       "        });\n",
       "\n",
       "        function geo_json_e70a3f6a0aa8d0ad995d5b52d3f8c106_add (data) {\n",
       "            geo_json_e70a3f6a0aa8d0ad995d5b52d3f8c106\n",
       "                .addData(data);\n",
       "        }\n",
       "            geo_json_e70a3f6a0aa8d0ad995d5b52d3f8c106_add({&quot;bbox&quot;: [-84.3238525390625, 33.88199234008789, -75.45697784423828, 36.58964920043945], &quot;features&quot;: [{&quot;bbox&quot;: [-81.74107360839844, 36.23435592651367, -81.2398910522461, 36.58964920043945], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.4727554321289, 36.23435592651367], [-81.54084014892578, 36.27250671386719], [-81.56198120117188, 36.27359390258789], [-81.63306427001953, 36.3406867980957], [-81.74107360839844, 36.39178466796875], [-81.69828033447266, 36.471778869628906], [-81.70279693603516, 36.51934051513672], [-81.66999816894531, 36.58964920043945], [-81.34529876708984, 36.5728645324707], [-81.34754180908203, 36.53791427612305], [-81.32477569580078, 36.51367950439453], [-81.31332397460938, 36.48069763183594], [-81.2662353515625, 36.43720626831055], [-81.2628402709961, 36.4050407409668], [-81.24069213867188, 36.379417419433594], [-81.2398910522461, 36.36536407470703], [-81.26424407958984, 36.352413177490234], [-81.32899475097656, 36.363502502441406], [-81.36137390136719, 36.3531608581543], [-81.36569213867188, 36.33905029296875], [-81.35413360595703, 36.29971694946289], [-81.3674545288086, 36.2786979675293], [-81.40638732910156, 36.28505325317383], [-81.4123306274414, 36.26729202270508], [-81.43103790283203, 36.260719299316406], [-81.45288848876953, 36.239585876464844], [-81.4727554321289, 36.23435592651367]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.114, &quot;BIR74&quot;: 1091.0, &quot;BIR79&quot;: 1364.0, &quot;CNTY_&quot;: 1825, &quot;CNTY_ID&quot;: 1825, &quot;CRESS_ID&quot;: 5, &quot;FIPS&quot;: &quot;37009&quot;, &quot;FIPSNO&quot;: 37009, &quot;NAME&quot;: &quot;Ashe&quot;, &quot;NWBIR74&quot;: 10.0, &quot;NWBIR79&quot;: 19.0, &quot;NWR74&quot;: 9.165903, &quot;NWR79&quot;: 13.929619, &quot;PERIMETER&quot;: 1.442, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 0.91659, &quot;SIDR79&quot;: 0.0}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.34754180908203, 36.36536407470703, -80.9034423828125, 36.5728645324707], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.2398910522461, 36.36536407470703], [-81.24069213867188, 36.379417419433594], [-81.2628402709961, 36.4050407409668], [-81.2662353515625, 36.43720626831055], [-81.31332397460938, 36.48069763183594], [-81.32477569580078, 36.51367950439453], [-81.34754180908203, 36.53791427612305], [-81.34529876708984, 36.5728645324707], [-80.9034423828125, 36.56521224975586], [-80.93354797363281, 36.498313903808594], [-80.96577453613281, 36.467220306396484], [-80.94966888427734, 36.41473388671875], [-80.95639038085938, 36.4037971496582], [-80.97795104980469, 36.39137649536133], [-80.98284149169922, 36.37183380126953], [-81.00277709960938, 36.36668014526367], [-81.02464294433594, 36.37783432006836], [-81.04280090332031, 36.410335540771484], [-81.0842514038086, 36.4299201965332], [-81.09856414794922, 36.43115234375], [-81.11331176757812, 36.4228515625], [-81.12937927246094, 36.42633056640625], [-81.13839721679688, 36.417625427246094], [-81.15336608886719, 36.424739837646484], [-81.17667388916016, 36.415443420410156], [-81.2398910522461, 36.36536407470703]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;1&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.061, &quot;BIR74&quot;: 487.0, &quot;BIR79&quot;: 542.0, &quot;CNTY_&quot;: 1827, &quot;CNTY_ID&quot;: 1827, &quot;CRESS_ID&quot;: 3, &quot;FIPS&quot;: &quot;37005&quot;, &quot;FIPSNO&quot;: 37005, &quot;NAME&quot;: &quot;Alleghany&quot;, &quot;NWBIR74&quot;: 10.0, &quot;NWBIR79&quot;: 12.0, &quot;NWR74&quot;: 20.533881, &quot;NWR79&quot;: 22.140221, &quot;PERIMETER&quot;: 1.231, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 3.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 5.535055}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.96577453613281, 36.233882904052734, -80.43531036376953, 36.56521224975586], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.45634460449219, 36.242557525634766], [-80.47638702392578, 36.25472640991211], [-80.53688049316406, 36.256736755371094], [-80.54501342773438, 36.27665710449219], [-80.55415344238281, 36.2784309387207], [-80.5905990600586, 36.26827621459961], [-80.62431335449219, 36.27309799194336], [-80.66744232177734, 36.24610137939453], [-80.6966552734375, 36.259090423583984], [-80.72403717041016, 36.25847244262695], [-80.73436737060547, 36.2647590637207], [-80.7525634765625, 36.258296966552734], [-80.76629638671875, 36.261837005615234], [-80.78269958496094, 36.24857711791992], [-80.87438201904297, 36.233882904052734], [-80.87086486816406, 36.324623107910156], [-80.88892364501953, 36.354427337646484], [-80.92456817626953, 36.37275314331055], [-80.95639038085938, 36.4037971496582], [-80.94966888427734, 36.41473388671875], [-80.96577453613281, 36.467220306396484], [-80.93354797363281, 36.498313903808594], [-80.9034423828125, 36.56521224975586], [-80.8381576538086, 36.563438415527344], [-80.61105346679688, 36.55729675292969], [-80.43531036376953, 36.55104446411133], [-80.45301055908203, 36.25708770751953], [-80.45634460449219, 36.242557525634766]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;2&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.143, &quot;BIR74&quot;: 3188.0, &quot;BIR79&quot;: 3616.0, &quot;CNTY_&quot;: 1828, &quot;CNTY_ID&quot;: 1828, &quot;CRESS_ID&quot;: 86, &quot;FIPS&quot;: &quot;37171&quot;, &quot;FIPSNO&quot;: 37171, &quot;NAME&quot;: &quot;Surry&quot;, &quot;NWBIR74&quot;: 208.0, &quot;NWBIR79&quot;: 260.0, &quot;NWR74&quot;: 65.244668, &quot;NWR79&quot;: 71.902655, &quot;PERIMETER&quot;: 1.63, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 6.0, &quot;SIDR74&quot;: 1.568381, &quot;SIDR79&quot;: 1.659292}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.33025360107422, 36.072818756103516, -75.77315521240234, 36.55716323852539], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-76.00897216796875, 36.31959533691406], [-76.01734924316406, 36.337730407714844], [-76.03287506103516, 36.335975646972656], [-76.04395294189453, 36.35359191894531], [-76.09508514404297, 36.348915100097656], [-76.16092681884766, 36.39189910888672], [-76.15814971923828, 36.412689208984375], [-76.16828918457031, 36.427085876464844], [-76.33025360107422, 36.55605697631836], [-76.12739562988281, 36.55716323852539], [-76.04595947265625, 36.55695343017578], [-76.03321075439453, 36.514373779296875], [-76.091064453125, 36.50356674194336], [-75.97607421875, 36.436214447021484], [-75.96976470947266, 36.41511917114258], [-76.0016098022461, 36.418914794921875], [-75.95125579833984, 36.36547088623047], [-75.9281234741211, 36.42324447631836], [-75.92459106445312, 36.350948333740234], [-75.80005645751953, 36.112815856933594], [-75.7988510131836, 36.072818756103516], [-75.85516357421875, 36.10566711425781], [-75.91376495361328, 36.24480056762695], [-75.95751190185547, 36.25945281982422], [-75.94193267822266, 36.29433822631836], [-76.00897216796875, 36.31959533691406]]], [[[-76.02716827392578, 36.55671691894531], [-75.99866485595703, 36.5566520690918], [-75.91191864013672, 36.54253005981445], [-75.9248046875, 36.473976135253906], [-75.97727966308594, 36.4780158996582], [-75.97628784179688, 36.51792526245117], [-76.02716827392578, 36.55671691894531]]], [[[-75.90198516845703, 36.55619812011719], [-75.87816619873047, 36.55587387084961], [-75.77315521240234, 36.22925567626953], [-75.78317260742188, 36.22519302368164], [-75.90198516845703, 36.55619812011719]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;3&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.07, &quot;BIR74&quot;: 508.0, &quot;BIR79&quot;: 830.0, &quot;CNTY_&quot;: 1831, &quot;CNTY_ID&quot;: 1831, &quot;CRESS_ID&quot;: 27, &quot;FIPS&quot;: &quot;37053&quot;, &quot;FIPSNO&quot;: 37053, &quot;NAME&quot;: &quot;Currituck&quot;, &quot;NWBIR74&quot;: 123.0, &quot;NWBIR79&quot;: 145.0, &quot;NWR74&quot;: 242.125984, &quot;NWR79&quot;: 174.698795, &quot;PERIMETER&quot;: 2.968, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 1.968504, &quot;SIDR79&quot;: 2.409639}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.90120697021484, 36.16276550292969, -77.07530975341797, 36.5562858581543], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.21766662597656, 36.24098205566406], [-77.23461151123047, 36.214599609375], [-77.29861450195312, 36.21152877807617], [-77.29351043701172, 36.16286087036133], [-77.30947875976562, 36.16276550292969], [-77.33499145507812, 36.1828498840332], [-77.38903045654297, 36.203102111816406], [-77.37862396240234, 36.24008560180664], [-77.41346740722656, 36.25581741333008], [-77.41885375976562, 36.281795501708984], [-77.45411682128906, 36.31975555419922], [-77.53807830810547, 36.302459716796875], [-77.55743408203125, 36.30421447753906], [-77.57195281982422, 36.31449508666992], [-77.580078125, 36.328269958496094], [-77.55968475341797, 36.375946044921875], [-77.56041717529297, 36.40635681152344], [-77.63597106933594, 36.44053649902344], [-77.65099334716797, 36.47258758544922], [-77.6988754272461, 36.47895812988281], [-77.74940490722656, 36.47357177734375], [-77.90120697021484, 36.5098876953125], [-77.89885711669922, 36.55294418334961], [-77.76393127441406, 36.55344009399414], [-77.32005310058594, 36.553916931152344], [-77.17735290527344, 36.5562858581543], [-77.1544189453125, 36.52625274658203], [-77.09213256835938, 36.50751876831055], [-77.07530975341797, 36.483516693115234], [-77.0832748413086, 36.470096588134766], [-77.12732696533203, 36.47071075439453], [-77.13932037353516, 36.456478118896484], [-77.14196014404297, 36.41706466674805], [-77.21766662597656, 36.24098205566406]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;4&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.153, &quot;BIR74&quot;: 1421.0, &quot;BIR79&quot;: 1606.0, &quot;CNTY_&quot;: 1832, &quot;CNTY_ID&quot;: 1832, &quot;CRESS_ID&quot;: 66, &quot;FIPS&quot;: &quot;37131&quot;, &quot;FIPSNO&quot;: 37131, &quot;NAME&quot;: &quot;Northampton&quot;, &quot;NWBIR74&quot;: 1066.0, &quot;NWBIR79&quot;: 1197.0, &quot;NWR74&quot;: 750.175932, &quot;NWR79&quot;: 745.330012, &quot;PERIMETER&quot;: 2.206, &quot;SID74&quot;: 9.0, &quot;SID79&quot;: 3.0, &quot;SIDR74&quot;: 6.333568, &quot;SIDR79&quot;: 1.867995}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.21766662597656, 36.2302360534668, -76.7074966430664, 36.5562858581543], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.74506378173828, 36.233917236328125], [-76.9806900024414, 36.2302360534668], [-76.9947509765625, 36.23558044433594], [-77.13007354736328, 36.233463287353516], [-77.21766662597656, 36.24098205566406], [-77.14196014404297, 36.41706466674805], [-77.13932037353516, 36.456478118896484], [-77.12732696533203, 36.47071075439453], [-77.0832748413086, 36.470096588134766], [-77.07530975341797, 36.483516693115234], [-77.09213256835938, 36.50751876831055], [-77.1544189453125, 36.52625274658203], [-77.17735290527344, 36.5562858581543], [-76.92413330078125, 36.55414581298828], [-76.9084243774414, 36.5042839050293], [-76.94577026367188, 36.458961486816406], [-76.95367431640625, 36.41923141479492], [-76.94351196289062, 36.401729583740234], [-76.92407989501953, 36.3924446105957], [-76.74134826660156, 36.31516647338867], [-76.7074966430664, 36.26613235473633], [-76.74506378173828, 36.233917236328125]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;5&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.097, &quot;BIR74&quot;: 1452.0, &quot;BIR79&quot;: 1838.0, &quot;CNTY_&quot;: 1833, &quot;CNTY_ID&quot;: 1833, &quot;CRESS_ID&quot;: 46, &quot;FIPS&quot;: &quot;37091&quot;, &quot;FIPSNO&quot;: 37091, &quot;NAME&quot;: &quot;Hertford&quot;, &quot;NWBIR74&quot;: 954.0, &quot;NWBIR79&quot;: 1237.0, &quot;NWR74&quot;: 657.024793, &quot;NWR79&quot;: 673.014146, &quot;PERIMETER&quot;: 1.67, &quot;SID74&quot;: 7.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 4.820937, &quot;SIDR79&quot;: 2.720348}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.56358337402344, 36.16972732543945, -75.95718383789062, 36.55605697631836], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.00897216796875, 36.31959533691406], [-75.95718383789062, 36.19377136230469], [-75.98133850097656, 36.16972732543945], [-76.18316650390625, 36.31523895263672], [-76.1934814453125, 36.324851989746094], [-76.21619415283203, 36.32784652709961], [-76.23853302001953, 36.361228942871094], [-76.26128387451172, 36.3637580871582], [-76.27413177490234, 36.38140869140625], [-76.30335998535156, 36.391845703125], [-76.32136535644531, 36.409645080566406], [-76.40596771240234, 36.44715881347656], [-76.49834442138672, 36.503902435302734], [-76.56358337402344, 36.55525207519531], [-76.49755859375, 36.55581283569336], [-76.33025360107422, 36.55605697631836], [-76.16828918457031, 36.427085876464844], [-76.15814971923828, 36.412689208984375], [-76.16092681884766, 36.39189910888672], [-76.09508514404297, 36.348915100097656], [-76.04395294189453, 36.35359191894531], [-76.03287506103516, 36.335975646972656], [-76.01734924316406, 36.337730407714844], [-76.00897216796875, 36.31959533691406]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;6&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.062, &quot;BIR74&quot;: 286.0, &quot;BIR79&quot;: 350.0, &quot;CNTY_&quot;: 1834, &quot;CNTY_ID&quot;: 1834, &quot;CRESS_ID&quot;: 15, &quot;FIPS&quot;: &quot;37029&quot;, &quot;FIPSNO&quot;: 37029, &quot;NAME&quot;: &quot;Camden&quot;, &quot;NWBIR74&quot;: 115.0, &quot;NWBIR79&quot;: 139.0, &quot;NWR74&quot;: 402.097902, &quot;NWR79&quot;: 397.142857, &quot;PERIMETER&quot;: 1.547, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 5.714286}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.95367431640625, 36.294517517089844, -76.4603500366211, 36.55525207519531], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.56250762939453, 36.34056854248047], [-76.60424041748047, 36.31498336791992], [-76.6482162475586, 36.31531524658203], [-76.68873596191406, 36.294517517089844], [-76.77664184570312, 36.35832977294922], [-76.92407989501953, 36.3924446105957], [-76.94351196289062, 36.401729583740234], [-76.95367431640625, 36.41923141479492], [-76.94577026367188, 36.458961486816406], [-76.9084243774414, 36.5042839050293], [-76.92413330078125, 36.55414581298828], [-76.921630859375, 36.55415725708008], [-76.56358337402344, 36.55525207519531], [-76.49834442138672, 36.503902435302734], [-76.5024642944336, 36.45228576660156], [-76.4603500366211, 36.373897552490234], [-76.56250762939453, 36.34056854248047]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;7&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.091, &quot;BIR74&quot;: 420.0, &quot;BIR79&quot;: 594.0, &quot;CNTY_&quot;: 1835, &quot;CNTY_ID&quot;: 1835, &quot;CRESS_ID&quot;: 37, &quot;FIPS&quot;: &quot;37073&quot;, &quot;FIPSNO&quot;: 37073, &quot;NAME&quot;: &quot;Gates&quot;, &quot;NWBIR74&quot;: 254.0, &quot;NWBIR79&quot;: 371.0, &quot;NWR74&quot;: 604.761905, &quot;NWR79&quot;: 624.579125, &quot;PERIMETER&quot;: 1.284, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 3.367003}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.32125091552734, 36.195945739746094, -77.89885711669922, 36.55294418334961], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.30876159667969, 36.260040283203125], [-78.28292846679688, 36.2918815612793], [-78.32125091552734, 36.5455322265625], [-78.05166625976562, 36.55247497558594], [-77.89885711669922, 36.55294418334961], [-77.90120697021484, 36.5098876953125], [-77.91692352294922, 36.50063705444336], [-77.93013763427734, 36.35298538208008], [-77.95208740234375, 36.28123092651367], [-78.00628662109375, 36.195945739746094], [-78.058349609375, 36.21132278442383], [-78.10962677001953, 36.21350860595703], [-78.13471984863281, 36.2365837097168], [-78.30876159667969, 36.260040283203125]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;8&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.118, &quot;BIR74&quot;: 968.0, &quot;BIR79&quot;: 1190.0, &quot;CNTY_&quot;: 1836, &quot;CNTY_ID&quot;: 1836, &quot;CRESS_ID&quot;: 93, &quot;FIPS&quot;: &quot;37185&quot;, &quot;FIPSNO&quot;: 37185, &quot;NAME&quot;: &quot;Warren&quot;, &quot;NWBIR74&quot;: 748.0, &quot;NWBIR79&quot;: 844.0, &quot;NWR74&quot;: 772.727273, &quot;NWR79&quot;: 709.243697, &quot;PERIMETER&quot;: 1.421, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 4.132231, &quot;SIDR79&quot;: 1.680672}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.45301055908203, 36.2502326965332, -80.02405548095703, 36.55104446411133], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.02567291259766, 36.2502326965332], [-80.45301055908203, 36.25708770751953], [-80.43531036376953, 36.55104446411133], [-80.048095703125, 36.54713439941406], [-80.02405548095703, 36.54502487182617], [-80.02567291259766, 36.2502326965332]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;9&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.124, &quot;BIR74&quot;: 1612.0, &quot;BIR79&quot;: 2038.0, &quot;CNTY_&quot;: 1837, &quot;CNTY_ID&quot;: 1837, &quot;CRESS_ID&quot;: 85, &quot;FIPS&quot;: &quot;37169&quot;, &quot;FIPSNO&quot;: 37169, &quot;NAME&quot;: &quot;Stokes&quot;, &quot;NWBIR74&quot;: 160.0, &quot;NWBIR79&quot;: 176.0, &quot;NWR74&quot;: 99.255583, &quot;NWR79&quot;: 86.359176, &quot;PERIMETER&quot;: 1.428, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 0.620347, &quot;SIDR79&quot;: 2.453386}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.53050994873047, 36.23366928100586, -79.14432525634766, 36.549781799316406], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.53050994873047, 36.24613571166992], [-79.51029968261719, 36.54765701293945], [-79.2170639038086, 36.549781799316406], [-79.14432525634766, 36.546058654785156], [-79.15927124023438, 36.23366928100586], [-79.25849914550781, 36.235687255859375], [-79.53050994873047, 36.24613571166992]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;10&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.114, &quot;BIR74&quot;: 1035.0, &quot;BIR79&quot;: 1253.0, &quot;CNTY_&quot;: 1838, &quot;CNTY_ID&quot;: 1838, &quot;CRESS_ID&quot;: 17, &quot;FIPS&quot;: &quot;37033&quot;, &quot;FIPSNO&quot;: 37033, &quot;NAME&quot;: &quot;Caswell&quot;, &quot;NWBIR74&quot;: 550.0, &quot;NWBIR79&quot;: 597.0, &quot;NWR74&quot;: 531.400966, &quot;NWR79&quot;: 476.456504, &quot;PERIMETER&quot;: 1.352, &quot;SID74&quot;: 2.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 1.932367, &quot;SIDR79&quot;: 1.596169}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.02567291259766, 36.23615646362305, -79.51029968261719, 36.547889709472656], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.53050994873047, 36.24613571166992], [-79.53057861328125, 36.23615646362305], [-80.02567291259766, 36.2502326965332], [-80.02405548095703, 36.54502487182617], [-79.71744537353516, 36.547889709472656], [-79.51029968261719, 36.54765701293945], [-79.53050994873047, 36.24613571166992]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;11&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.153, &quot;BIR74&quot;: 4449.0, &quot;BIR79&quot;: 5386.0, &quot;CNTY_&quot;: 1839, &quot;CNTY_ID&quot;: 1839, &quot;CRESS_ID&quot;: 79, &quot;FIPS&quot;: &quot;37157&quot;, &quot;FIPSNO&quot;: 37157, &quot;NAME&quot;: &quot;Rockingham&quot;, &quot;NWBIR74&quot;: 1243.0, &quot;NWBIR79&quot;: 1369.0, &quot;NWR74&quot;: 279.388627, &quot;NWR79&quot;: 254.177497, &quot;PERIMETER&quot;: 1.616, &quot;SID74&quot;: 16.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 3.596314, &quot;SIDR79&quot;: 0.928333}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.81035614013672, 36.01412582397461, -78.45880889892578, 36.54607391357422], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.7491226196289, 36.06359100341797], [-78.78841400146484, 36.06218338012695], [-78.8040542602539, 36.08094024658203], [-78.81035614013672, 36.11457443237305], [-78.80680084228516, 36.23157501220703], [-78.79669952392578, 36.54353332519531], [-78.73738861083984, 36.54607391357422], [-78.45880889892578, 36.541481018066406], [-78.46375274658203, 36.52385711669922], [-78.50250244140625, 36.504390716552734], [-78.51708984375, 36.461483001708984], [-78.51471710205078, 36.17522430419922], [-78.49252319335938, 36.173587799072266], [-78.54585266113281, 36.06808853149414], [-78.54802703857422, 36.01412582397461], [-78.69557189941406, 36.066646575927734], [-78.7491226196289, 36.06359100341797]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;12&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.143, &quot;BIR74&quot;: 1671.0, &quot;BIR79&quot;: 2074.0, &quot;CNTY_&quot;: 1840, &quot;CNTY_ID&quot;: 1840, &quot;CRESS_ID&quot;: 39, &quot;FIPS&quot;: &quot;37077&quot;, &quot;FIPSNO&quot;: 37077, &quot;NAME&quot;: &quot;Granville&quot;, &quot;NWBIR74&quot;: 930.0, &quot;NWBIR79&quot;: 1058.0, &quot;NWR74&quot;: 556.552962, &quot;NWR79&quot;: 510.125362, &quot;PERIMETER&quot;: 1.663, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 2.393776, &quot;SIDR79&quot;: 1.92864}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.15927124023438, 36.23157501220703, -78.79669952392578, 36.546058654785156], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.80680084228516, 36.23157501220703], [-78.95108032226562, 36.23383712768555], [-79.15927124023438, 36.23366928100586], [-79.14432525634766, 36.546058654785156], [-78.79669952392578, 36.54353332519531], [-78.80680084228516, 36.23157501220703]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;13&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.109, &quot;BIR74&quot;: 1556.0, &quot;BIR79&quot;: 1790.0, &quot;CNTY_&quot;: 1841, &quot;CNTY_ID&quot;: 1841, &quot;CRESS_ID&quot;: 73, &quot;FIPS&quot;: &quot;37145&quot;, &quot;FIPSNO&quot;: 37145, &quot;NAME&quot;: &quot;Person&quot;, &quot;NWBIR74&quot;: 613.0, &quot;NWBIR79&quot;: 650.0, &quot;NWR74&quot;: 393.958869, &quot;NWR79&quot;: 363.128492, &quot;PERIMETER&quot;: 1.325, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 2.570694, &quot;SIDR79&quot;: 2.234637}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.51708984375, 36.162174224853516, -78.28292846679688, 36.5455322265625], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.49252319335938, 36.173587799072266], [-78.51471710205078, 36.17522430419922], [-78.51708984375, 36.461483001708984], [-78.50250244140625, 36.504390716552734], [-78.46375274658203, 36.52385711669922], [-78.45880889892578, 36.541481018066406], [-78.32125091552734, 36.5455322265625], [-78.28292846679688, 36.2918815612793], [-78.30876159667969, 36.260040283203125], [-78.3460464477539, 36.225181579589844], [-78.38085174560547, 36.22475051879883], [-78.41695404052734, 36.162174224853516], [-78.49252319335938, 36.173587799072266]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;14&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.072, &quot;BIR74&quot;: 2180.0, &quot;BIR79&quot;: 2753.0, &quot;CNTY_&quot;: 1842, &quot;CNTY_ID&quot;: 1842, &quot;CRESS_ID&quot;: 91, &quot;FIPS&quot;: &quot;37181&quot;, &quot;FIPSNO&quot;: 37181, &quot;NAME&quot;: &quot;Vance&quot;, &quot;NWBIR74&quot;: 1179.0, &quot;NWBIR79&quot;: 1492.0, &quot;NWR74&quot;: 540.825688, &quot;NWR79&quot;: 541.954232, &quot;PERIMETER&quot;: 1.085, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 6.0, &quot;SIDR74&quot;: 1.834862, &quot;SIDR79&quot;: 2.179441}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.00628662109375, 35.99471664428711, -77.24103546142578, 36.5098876953125], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.33220672607422, 36.0679817199707], [-77.40531158447266, 35.99471664428711], [-77.42574310302734, 35.996063232421875], [-77.43821716308594, 36.014034271240234], [-77.46397399902344, 36.02638244628906], [-77.52513122558594, 36.03538513183594], [-77.53585815429688, 36.055572509765625], [-77.53668975830078, 36.08236312866211], [-77.54788208007812, 36.08849334716797], [-77.60625457763672, 36.09739303588867], [-77.6423568725586, 36.12670135498047], [-77.68562316894531, 36.146602630615234], [-77.70050811767578, 36.144168853759766], [-77.72018432617188, 36.13411331176758], [-77.7471694946289, 36.14642333984375], [-77.8013687133789, 36.144256591796875], [-77.8113021850586, 36.13581848144531], [-77.8868408203125, 36.144439697265625], [-77.91783905029297, 36.15678024291992], [-77.92240142822266, 36.177730560302734], [-77.9392318725586, 36.18754959106445], [-77.95586395263672, 36.18375015258789], [-77.97339630126953, 36.18904113769531], [-77.98511505126953, 36.17744445800781], [-78.00628662109375, 36.195945739746094], [-77.95208740234375, 36.28123092651367], [-77.93013763427734, 36.35298538208008], [-77.91692352294922, 36.50063705444336], [-77.90120697021484, 36.5098876953125], [-77.74940490722656, 36.47357177734375], [-77.6988754272461, 36.47895812988281], [-77.65099334716797, 36.47258758544922], [-77.63597106933594, 36.44053649902344], [-77.56041717529297, 36.40635681152344], [-77.55968475341797, 36.375946044921875], [-77.580078125, 36.328269958496094], [-77.57195281982422, 36.31449508666992], [-77.55743408203125, 36.30421447753906], [-77.53807830810547, 36.302459716796875], [-77.45411682128906, 36.31975555419922], [-77.41885375976562, 36.281795501708984], [-77.41346740722656, 36.25581741333008], [-77.37862396240234, 36.24008560180664], [-77.38903045654297, 36.203102111816406], [-77.33499145507812, 36.1828498840332], [-77.30947875976562, 36.16276550292969], [-77.29351043701172, 36.16286087036133], [-77.2704086303711, 36.15552520751953], [-77.25591278076172, 36.13068771362305], [-77.25749969482422, 36.118473052978516], [-77.24103546142578, 36.10130310058594], [-77.30987548828125, 36.08744430541992], [-77.33220672607422, 36.0679817199707]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;15&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.19, &quot;BIR74&quot;: 3608.0, &quot;BIR79&quot;: 4463.0, &quot;CNTY_&quot;: 1846, &quot;CNTY_ID&quot;: 1846, &quot;CRESS_ID&quot;: 42, &quot;FIPS&quot;: &quot;37083&quot;, &quot;FIPSNO&quot;: 37083, &quot;NAME&quot;: &quot;Halifax&quot;, &quot;NWBIR74&quot;: 2365.0, &quot;NWBIR79&quot;: 2980.0, &quot;NWR74&quot;: 655.487805, &quot;NWR79&quot;: 667.712301, &quot;PERIMETER&quot;: 2.204, &quot;SID74&quot;: 18.0, &quot;SID79&quot;: 17.0, &quot;SIDR74&quot;: 4.988914, &quot;SIDR79&quot;: 3.809097}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.5024642944336, 36.14768981933594, -76.11270904541016, 36.503902435302734], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.2989273071289, 36.214229583740234], [-76.32423400878906, 36.23362350463867], [-76.37242126464844, 36.25234603881836], [-76.4603500366211, 36.373897552490234], [-76.5024642944336, 36.45228576660156], [-76.49834442138672, 36.503902435302734], [-76.40596771240234, 36.44715881347656], [-76.32136535644531, 36.409645080566406], [-76.30335998535156, 36.391845703125], [-76.27413177490234, 36.38140869140625], [-76.26128387451172, 36.3637580871582], [-76.23853302001953, 36.361228942871094], [-76.21619415283203, 36.32784652709961], [-76.1934814453125, 36.324851989746094], [-76.18316650390625, 36.31523895263672], [-76.21890258789062, 36.296607971191406], [-76.11270904541016, 36.17441940307617], [-76.14193725585938, 36.14768981933594], [-76.23497772216797, 36.163360595703125], [-76.2989273071289, 36.214229583740234]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;16&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.053, &quot;BIR74&quot;: 1638.0, &quot;BIR79&quot;: 2275.0, &quot;CNTY_&quot;: 1848, &quot;CNTY_ID&quot;: 1848, &quot;CRESS_ID&quot;: 70, &quot;FIPS&quot;: &quot;37139&quot;, &quot;FIPSNO&quot;: 37139, &quot;NAME&quot;: &quot;Pasquotank&quot;, &quot;NWBIR74&quot;: 622.0, &quot;NWBIR79&quot;: 933.0, &quot;NWR74&quot;: 379.73138, &quot;NWR79&quot;: 410.10989, &quot;PERIMETER&quot;: 1.171, &quot;SID74&quot;: 3.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 1.831502, &quot;SIDR79&quot;: 1.758242}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.54610443115234, 35.98932647705078, -80.87086486816406, 36.43115234375], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.02056884765625, 36.034934997558594], [-81.0840835571289, 36.02076721191406], [-81.12406158447266, 36.03128433227539], [-81.15746307373047, 36.02098083496094], [-81.23600769042969, 36.02382278442383], [-81.32186889648438, 35.98932647705078], [-81.34735107421875, 36.015357971191406], [-81.38871002197266, 36.037567138671875], [-81.39814758300781, 36.05605697631836], [-81.42963409423828, 36.0656623840332], [-81.45443725585938, 36.08305740356445], [-81.5173110961914, 36.09543228149414], [-81.54610443115234, 36.111392974853516], [-81.49932098388672, 36.13603591918945], [-81.4508056640625, 36.19062042236328], [-81.4727554321289, 36.23435592651367], [-81.45288848876953, 36.239585876464844], [-81.43103790283203, 36.260719299316406], [-81.4123306274414, 36.26729202270508], [-81.40638732910156, 36.28505325317383], [-81.3674545288086, 36.2786979675293], [-81.35413360595703, 36.29971694946289], [-81.36569213867188, 36.33905029296875], [-81.36137390136719, 36.3531608581543], [-81.32899475097656, 36.363502502441406], [-81.26424407958984, 36.352413177490234], [-81.2398910522461, 36.36536407470703], [-81.17667388916016, 36.415443420410156], [-81.15336608886719, 36.424739837646484], [-81.13839721679688, 36.417625427246094], [-81.12937927246094, 36.42633056640625], [-81.11331176757812, 36.4228515625], [-81.09856414794922, 36.43115234375], [-81.0842514038086, 36.4299201965332], [-81.04280090332031, 36.410335540771484], [-81.02464294433594, 36.37783432006836], [-81.00277709960938, 36.36668014526367], [-80.98284149169922, 36.37183380126953], [-80.97795104980469, 36.39137649536133], [-80.95639038085938, 36.4037971496582], [-80.92456817626953, 36.37275314331055], [-80.88892364501953, 36.354427337646484], [-80.87086486816406, 36.324623107910156], [-80.87438201904297, 36.233882904052734], [-80.87741088867188, 36.052406311035156], [-80.98895263671875, 36.053348541259766], [-81.02056884765625, 36.034934997558594]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;17&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.199, &quot;BIR74&quot;: 3146.0, &quot;BIR79&quot;: 3725.0, &quot;CNTY_&quot;: 1874, &quot;CNTY_ID&quot;: 1874, &quot;CRESS_ID&quot;: 97, &quot;FIPS&quot;: &quot;37193&quot;, &quot;FIPSNO&quot;: 37193, &quot;NAME&quot;: &quot;Wilkes&quot;, &quot;NWBIR74&quot;: 200.0, &quot;NWBIR79&quot;: 222.0, &quot;NWR74&quot;: 63.572791, &quot;NWR79&quot;: 59.597315, &quot;PERIMETER&quot;: 1.984, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 7.0, &quot;SIDR74&quot;: 1.271456, &quot;SIDR79&quot;: 1.879195}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.9111557006836, 36.10456085205078, -81.4508056640625, 36.39178466796875], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.80622100830078, 36.10456085205078], [-81.81715393066406, 36.1093864440918], [-81.82231140136719, 36.15785598754883], [-81.8502426147461, 36.18147277832031], [-81.88519287109375, 36.188636779785156], [-81.89856719970703, 36.198856353759766], [-81.90656280517578, 36.221866607666016], [-81.89399719238281, 36.26698303222656], [-81.9111557006836, 36.29075241088867], [-81.83057403564453, 36.33465576171875], [-81.7304916381836, 36.329341888427734], [-81.70945739746094, 36.33372497558594], [-81.7403793334961, 36.36185836791992], [-81.74107360839844, 36.39178466796875], [-81.63306427001953, 36.3406867980957], [-81.56198120117188, 36.27359390258789], [-81.54084014892578, 36.27250671386719], [-81.4727554321289, 36.23435592651367], [-81.4508056640625, 36.19062042236328], [-81.49932098388672, 36.13603591918945], [-81.54610443115234, 36.111392974853516], [-81.65900421142578, 36.117591857910156], [-81.80622100830078, 36.10456085205078]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;18&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.081, &quot;BIR74&quot;: 1323.0, &quot;BIR79&quot;: 1775.0, &quot;CNTY_&quot;: 1880, &quot;CNTY_ID&quot;: 1880, &quot;CRESS_ID&quot;: 95, &quot;FIPS&quot;: &quot;37189&quot;, &quot;FIPSNO&quot;: 37189, &quot;NAME&quot;: &quot;Watauga&quot;, &quot;NWBIR74&quot;: 17.0, &quot;NWBIR79&quot;: 33.0, &quot;NWR74&quot;: 12.849584, &quot;NWR79&quot;: 18.591549, &quot;PERIMETER&quot;: 1.288, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 0.755858, &quot;SIDR79&quot;: 0.56338}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.59449005126953, 36.07979202270508, -76.27550506591797, 36.373897552490234], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.48052978515625, 36.07979202270508], [-76.53695678710938, 36.08792495727539], [-76.57559967041016, 36.102657318115234], [-76.59449005126953, 36.23981857299805], [-76.57108306884766, 36.27772903442383], [-76.56250762939453, 36.34056854248047], [-76.4603500366211, 36.373897552490234], [-76.37242126464844, 36.25234603881836], [-76.32423400878906, 36.23362350463867], [-76.2989273071289, 36.214229583740234], [-76.27550506591797, 36.11037063598633], [-76.48052978515625, 36.07979202270508]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;19&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.063, &quot;BIR74&quot;: 484.0, &quot;BIR79&quot;: 676.0, &quot;CNTY_&quot;: 1881, &quot;CNTY_ID&quot;: 1881, &quot;CRESS_ID&quot;: 72, &quot;FIPS&quot;: &quot;37143&quot;, &quot;FIPSNO&quot;: 37143, &quot;NAME&quot;: &quot;Perquimans&quot;, &quot;NWBIR74&quot;: 230.0, &quot;NWBIR79&quot;: 310.0, &quot;NWR74&quot;: 475.206612, &quot;NWR79&quot;: 458.579882, &quot;PERIMETER&quot;: 1.0, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 2.066116, &quot;SIDR79&quot;: 0.0}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.72650909423828, 36.00716781616211, -76.42042541503906, 36.34056854248047], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.68873596191406, 36.294517517089844], [-76.6482162475586, 36.31531524658203], [-76.60424041748047, 36.31498336791992], [-76.56250762939453, 36.34056854248047], [-76.57108306884766, 36.27772903442383], [-76.59449005126953, 36.23981857299805], [-76.57559967041016, 36.102657318115234], [-76.53695678710938, 36.08792495727539], [-76.48052978515625, 36.07979202270508], [-76.42042541503906, 36.0586051940918], [-76.52301025390625, 36.00716781616211], [-76.59400177001953, 36.0101318359375], [-76.64901733398438, 36.06570816040039], [-76.63320922851562, 36.03711700439453], [-76.69015502929688, 36.04961013793945], [-76.72650909423828, 36.156822204589844], [-76.68873596191406, 36.294517517089844]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;20&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.044, &quot;BIR74&quot;: 751.0, &quot;BIR79&quot;: 899.0, &quot;CNTY_&quot;: 1887, &quot;CNTY_ID&quot;: 1887, &quot;CRESS_ID&quot;: 21, &quot;FIPS&quot;: &quot;37041&quot;, &quot;FIPSNO&quot;: 37041, &quot;NAME&quot;: &quot;Chowan&quot;, &quot;NWBIR74&quot;: 368.0, &quot;NWBIR79&quot;: 491.0, &quot;NWR74&quot;: 490.013316, &quot;NWR79&quot;: 546.162403, &quot;PERIMETER&quot;: 1.158, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 1.331558, &quot;SIDR79&quot;: 1.112347}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.0777587890625, 35.905643463134766, -81.73226928710938, 36.29075241088867], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.94134521484375, 35.95497512817383], [-81.96139526367188, 35.9392204284668], [-81.94495391845703, 35.91861343383789], [-81.947021484375, 35.9104118347168], [-81.98836517333984, 35.905643463134766], [-82.00506591796875, 35.9144401550293], [-82.04910278320312, 35.96723556518555], [-82.042724609375, 36.005008697509766], [-82.06232452392578, 36.035526275634766], [-82.0777587890625, 36.10013961791992], [-82.02045440673828, 36.12971115112305], [-81.93311309814453, 36.26332092285156], [-81.9111557006836, 36.29075241088867], [-81.89399719238281, 36.26698303222656], [-81.90656280517578, 36.221866607666016], [-81.89856719970703, 36.198856353759766], [-81.88519287109375, 36.188636779785156], [-81.8502426147461, 36.18147277832031], [-81.82231140136719, 36.15785598754883], [-81.81715393066406, 36.1093864440918], [-81.80622100830078, 36.10456085205078], [-81.73226928710938, 36.058475494384766], [-81.80278778076172, 35.960330963134766], [-81.85987091064453, 35.970340728759766], [-81.88081359863281, 35.989524841308594], [-81.90084838867188, 35.994651794433594], [-81.92214965820312, 35.982513427734375], [-81.94134521484375, 35.95497512817383]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;21&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.064, &quot;BIR74&quot;: 781.0, &quot;BIR79&quot;: 977.0, &quot;CNTY_&quot;: 1892, &quot;CNTY_ID&quot;: 1892, &quot;CRESS_ID&quot;: 6, &quot;FIPS&quot;: &quot;37011&quot;, &quot;FIPSNO&quot;: 37011, &quot;NAME&quot;: &quot;Avery&quot;, &quot;NWBIR74&quot;: 4.0, &quot;NWBIR79&quot;: 5.0, &quot;NWR74&quot;: 5.121639, &quot;NWR79&quot;: 5.117707, &quot;PERIMETER&quot;: 1.213, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 0.0}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.87741088867188, 36.04326629638672, -80.44081115722656, 36.2784309387207], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.49554443359375, 36.04326629638672], [-80.6895751953125, 36.04547882080078], [-80.87741088867188, 36.052406311035156], [-80.87438201904297, 36.233882904052734], [-80.78269958496094, 36.24857711791992], [-80.76629638671875, 36.261837005615234], [-80.7525634765625, 36.258296966552734], [-80.73436737060547, 36.2647590637207], [-80.72403717041016, 36.25847244262695], [-80.6966552734375, 36.259090423583984], [-80.66744232177734, 36.24610137939453], [-80.62431335449219, 36.27309799194336], [-80.5905990600586, 36.26827621459961], [-80.55415344238281, 36.2784309387207], [-80.54501342773438, 36.27665710449219], [-80.53688049316406, 36.256736755371094], [-80.47638702392578, 36.25472640991211], [-80.45634460449219, 36.242557525634766], [-80.44081115722656, 36.219486236572266], [-80.44480895996094, 36.12330627441406], [-80.49198150634766, 36.107696533203125], [-80.50498962402344, 36.094940185546875], [-80.50824737548828, 36.070884704589844], [-80.49554443359375, 36.04326629638672]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;22&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.086, &quot;BIR74&quot;: 1269.0, &quot;BIR79&quot;: 1568.0, &quot;CNTY_&quot;: 1893, &quot;CNTY_ID&quot;: 1893, &quot;CRESS_ID&quot;: 99, &quot;FIPS&quot;: &quot;37197&quot;, &quot;FIPSNO&quot;: 37197, &quot;NAME&quot;: &quot;Yadkin&quot;, &quot;NWBIR74&quot;: 65.0, &quot;NWBIR79&quot;: 76.0, &quot;NWR74&quot;: 51.221434, &quot;NWR79&quot;: 48.469388, &quot;PERIMETER&quot;: 1.267, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 0.788022, &quot;SIDR79&quot;: 0.637755}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.54802703857422, 35.81552505493164, -78.00628662109375, 36.260040283203125], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.25454711914062, 35.81552505493164], [-78.266845703125, 35.8483772277832], [-78.30841064453125, 35.89344787597656], [-78.32954406738281, 35.887847900390625], [-78.36011505126953, 35.91867446899414], [-78.39447784423828, 35.93230056762695], [-78.43114471435547, 35.97271728515625], [-78.54802703857422, 36.01412582397461], [-78.54585266113281, 36.06808853149414], [-78.49252319335938, 36.173587799072266], [-78.41695404052734, 36.162174224853516], [-78.38085174560547, 36.22475051879883], [-78.3460464477539, 36.225181579589844], [-78.30876159667969, 36.260040283203125], [-78.13471984863281, 36.2365837097168], [-78.10962677001953, 36.21350860595703], [-78.058349609375, 36.21132278442383], [-78.00628662109375, 36.195945739746094], [-78.13091278076172, 36.02146911621094], [-78.25454711914062, 35.81552505493164]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;23&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.128, &quot;BIR74&quot;: 1399.0, &quot;BIR79&quot;: 1863.0, &quot;CNTY_&quot;: 1897, &quot;CNTY_ID&quot;: 1897, &quot;CRESS_ID&quot;: 35, &quot;FIPS&quot;: &quot;37069&quot;, &quot;FIPSNO&quot;: 37069, &quot;NAME&quot;: &quot;Franklin&quot;, &quot;NWBIR74&quot;: 736.0, &quot;NWBIR79&quot;: 950.0, &quot;NWR74&quot;: 526.090064, &quot;NWR79&quot;: 509.93022, &quot;PERIMETER&quot;: 1.554, &quot;SID74&quot;: 2.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 1.429593, &quot;SIDR79&quot;: 0.0}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.50824737548828, 35.96792984008789, -80.02567291259766, 36.25708770751953], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.03810119628906, 36.00618362426758], [-80.12114715576172, 36.02155303955078], [-80.20987701416016, 36.021427154541016], [-80.21206665039062, 35.9901237487793], [-80.33430480957031, 35.9925651550293], [-80.33028411865234, 35.98123550415039], [-80.38024139404297, 35.96792984008789], [-80.41159057617188, 35.98461151123047], [-80.41797637939453, 36.00863265991211], [-80.449951171875, 36.02983856201172], [-80.4648666381836, 36.050193786621094], [-80.484130859375, 36.03832244873047], [-80.49554443359375, 36.04326629638672], [-80.50824737548828, 36.070884704589844], [-80.50498962402344, 36.094940185546875], [-80.49198150634766, 36.107696533203125], [-80.44480895996094, 36.12330627441406], [-80.44081115722656, 36.219486236572266], [-80.45634460449219, 36.242557525634766], [-80.45301055908203, 36.25708770751953], [-80.02567291259766, 36.2502326965332], [-80.03810119628906, 36.00618362426758]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;24&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.108, &quot;BIR74&quot;: 11858.0, &quot;BIR79&quot;: 15704.0, &quot;CNTY_&quot;: 1900, &quot;CNTY_ID&quot;: 1900, &quot;CRESS_ID&quot;: 34, &quot;FIPS&quot;: &quot;37067&quot;, &quot;FIPSNO&quot;: 37067, &quot;NAME&quot;: &quot;Forsyth&quot;, &quot;NWBIR74&quot;: 3919.0, &quot;NWBIR79&quot;: 5031.0, &quot;NWR74&quot;: 330.494181, &quot;NWR79&quot;: 320.364238, &quot;PERIMETER&quot;: 1.483, &quot;SID74&quot;: 10.0, &quot;SID79&quot;: 18.0, &quot;SIDR74&quot;: 0.843313, &quot;SIDR79&quot;: 1.146205}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.0426025390625, 35.890968322753906, -79.53057861328125, 36.2502326965332], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.5378189086914, 35.890968322753906], [-80.0426025390625, 35.916812896728516], [-80.03810119628906, 36.00618362426758], [-80.02567291259766, 36.2502326965332], [-79.53057861328125, 36.23615646362305], [-79.5378189086914, 35.890968322753906]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;25&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.17, &quot;BIR74&quot;: 16184.0, &quot;BIR79&quot;: 20543.0, &quot;CNTY_&quot;: 1903, &quot;CNTY_ID&quot;: 1903, &quot;CRESS_ID&quot;: 41, &quot;FIPS&quot;: &quot;37081&quot;, &quot;FIPSNO&quot;: 37081, &quot;NAME&quot;: &quot;Guilford&quot;, &quot;NWBIR74&quot;: 5483.0, &quot;NWBIR79&quot;: 7089.0, &quot;NWR74&quot;: 338.791399, &quot;NWR79&quot;: 345.08105, &quot;PERIMETER&quot;: 1.68, &quot;SID74&quot;: 23.0, &quot;SID79&quot;: 38.0, &quot;SIDR74&quot;: 1.421157, &quot;SIDR79&quot;: 1.849779}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.54098510742188, 35.83699035644531, -79.23799133300781, 36.24613571166992], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.2461929321289, 35.8681526184082], [-79.23799133300781, 35.83724594116211], [-79.54098510742188, 35.83699035644531], [-79.5378189086914, 35.890968322753906], [-79.53057861328125, 36.23615646362305], [-79.53050994873047, 36.24613571166992], [-79.25849914550781, 36.235687255859375], [-79.25977325439453, 36.04789352416992], [-79.27082061767578, 35.90460205078125], [-79.2461929321289, 35.8681526184082]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;26&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.111, &quot;BIR74&quot;: 4672.0, &quot;BIR79&quot;: 5767.0, &quot;CNTY_&quot;: 1904, &quot;CNTY_ID&quot;: 1904, &quot;CRESS_ID&quot;: 1, &quot;FIPS&quot;: &quot;37001&quot;, &quot;FIPSNO&quot;: 37001, &quot;NAME&quot;: &quot;Alamance&quot;, &quot;NWBIR74&quot;: 1243.0, &quot;NWBIR79&quot;: 1397.0, &quot;NWR74&quot;: 266.053082, &quot;NWR79&quot;: 242.240333, &quot;PERIMETER&quot;: 1.392, &quot;SID74&quot;: 13.0, &quot;SID79&quot;: 11.0, &quot;SIDR74&quot;: 2.782534, &quot;SIDR79&quot;: 1.907404}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.33220672607422, 35.81418228149414, -76.69376373291016, 36.24098205566406], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.78306579589844, 35.85923385620117], [-76.81053161621094, 35.881309509277344], [-76.8348388671875, 35.88422775268555], [-76.85672760009766, 35.83578109741211], [-76.87848663330078, 35.817291259765625], [-76.89848327636719, 35.81418228149414], [-76.9048080444336, 35.86791229248047], [-76.93609619140625, 35.89459991455078], [-76.99073028564453, 35.877838134765625], [-77.00442504882812, 35.861839294433594], [-77.0483169555664, 35.85749053955078], [-77.0341796875, 35.91433334350586], [-77.04088592529297, 35.9317512512207], [-77.06629943847656, 35.93600845336914], [-77.09001159667969, 35.92524337768555], [-77.18867492675781, 35.93124771118164], [-77.19589233398438, 35.93595504760742], [-77.19339752197266, 35.988094329833984], [-77.21553802490234, 35.98906707763672], [-77.21380615234375, 36.00536346435547], [-77.27671813964844, 36.0276985168457], [-77.31525421142578, 36.0480842590332], [-77.33220672607422, 36.0679817199707], [-77.30987548828125, 36.08744430541992], [-77.24103546142578, 36.10130310058594], [-77.25749969482422, 36.118473052978516], [-77.25591278076172, 36.13068771362305], [-77.2704086303711, 36.15552520751953], [-77.29351043701172, 36.16286087036133], [-77.29861450195312, 36.21152877807617], [-77.23461151123047, 36.214599609375], [-77.21766662597656, 36.24098205566406], [-77.13007354736328, 36.233463287353516], [-76.9947509765625, 36.23558044433594], [-76.9806900024414, 36.2302360534668], [-76.74506378173828, 36.233917236328125], [-76.76067352294922, 36.14459228515625], [-76.69376373291016, 35.99296951293945], [-76.74112701416016, 35.93662643432617], [-76.69721984863281, 35.94154357910156], [-76.70832061767578, 35.91983413696289], [-76.72859954833984, 35.910858154296875], [-76.7417221069336, 35.88307571411133], [-76.76126098632812, 35.86454391479492], [-76.78306579589844, 35.85923385620117]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;27&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.18, &quot;BIR74&quot;: 1324.0, &quot;BIR79&quot;: 1616.0, &quot;CNTY_&quot;: 1905, &quot;CNTY_ID&quot;: 1905, &quot;CRESS_ID&quot;: 8, &quot;FIPS&quot;: &quot;37015&quot;, &quot;FIPSNO&quot;: 37015, &quot;NAME&quot;: &quot;Bertie&quot;, &quot;NWBIR74&quot;: 921.0, &quot;NWBIR79&quot;: 1161.0, &quot;NWR74&quot;: 695.619335, &quot;NWR79&quot;: 718.440594, &quot;PERIMETER&quot;: 2.151, &quot;SID74&quot;: 6.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 4.531722, &quot;SIDR79&quot;: 3.094059}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.27082061767578, 35.85394287109375, -78.95108032226562, 36.235687255859375], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.01813507080078, 35.85786437988281], [-79.09536743164062, 35.85394287109375], [-79.2461929321289, 35.8681526184082], [-79.27082061767578, 35.90460205078125], [-79.25977325439453, 36.04789352416992], [-79.25849914550781, 36.235687255859375], [-79.15927124023438, 36.23366928100586], [-78.95108032226562, 36.23383712768555], [-79.01813507080078, 35.85786437988281]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;28&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.104, &quot;BIR74&quot;: 3164.0, &quot;BIR79&quot;: 4478.0, &quot;CNTY_&quot;: 1907, &quot;CNTY_ID&quot;: 1907, &quot;CRESS_ID&quot;: 68, &quot;FIPS&quot;: &quot;37135&quot;, &quot;FIPSNO&quot;: 37135, &quot;NAME&quot;: &quot;Orange&quot;, &quot;NWBIR74&quot;: 776.0, &quot;NWBIR79&quot;: 1086.0, &quot;NWR74&quot;: 245.259166, &quot;NWR79&quot;: 242.518982, &quot;PERIMETER&quot;: 1.294, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 6.0, &quot;SIDR74&quot;: 1.264223, &quot;SIDR79&quot;: 1.339884}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.01813507080078, 35.85786437988281, -78.70415496826172, 36.23383712768555], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.01813507080078, 35.85786437988281], [-78.95108032226562, 36.23383712768555], [-78.80680084228516, 36.23157501220703], [-78.81035614013672, 36.11457443237305], [-78.8040542602539, 36.08094024658203], [-78.78841400146484, 36.06218338012695], [-78.7491226196289, 36.06359100341797], [-78.7533950805664, 36.0114631652832], [-78.72810363769531, 36.02707290649414], [-78.71617126464844, 36.026493072509766], [-78.70415496826172, 35.9973258972168], [-78.70734405517578, 35.97694396972656], [-78.73419952392578, 35.93458557128906], [-78.76350402832031, 35.91447448730469], [-78.80829620361328, 35.919925689697266], [-78.82795715332031, 35.8602294921875], [-78.90571594238281, 35.86051559448242], [-79.01813507080078, 35.85786437988281]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;29&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.077, &quot;BIR74&quot;: 7970.0, &quot;BIR79&quot;: 10432.0, &quot;CNTY_&quot;: 1908, &quot;CNTY_ID&quot;: 1908, &quot;CRESS_ID&quot;: 32, &quot;FIPS&quot;: &quot;37063&quot;, &quot;FIPSNO&quot;: 37063, &quot;NAME&quot;: &quot;Durham&quot;, &quot;NWBIR74&quot;: 3732.0, &quot;NWBIR79&quot;: 4948.0, &quot;NWR74&quot;: 468.25596, &quot;NWR79&quot;: 474.309816, &quot;PERIMETER&quot;: 1.271, &quot;SID74&quot;: 16.0, &quot;SID79&quot;: 22.0, &quot;SIDR74&quot;: 2.007528, &quot;SIDR79&quot;: 2.108896}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.25454711914062, 35.72511291503906, -77.70050811767578, 36.195945739746094], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.18692779541016, 35.72511291503906], [-78.20561981201172, 35.72539520263672], [-78.2115478515625, 35.73819351196289], [-78.23404693603516, 35.745792388916016], [-78.25454711914062, 35.81552505493164], [-78.13091278076172, 36.02146911621094], [-78.00628662109375, 36.195945739746094], [-77.98511505126953, 36.17744445800781], [-77.97339630126953, 36.18904113769531], [-77.95586395263672, 36.18375015258789], [-77.9392318725586, 36.18754959106445], [-77.92240142822266, 36.177730560302734], [-77.91783905029297, 36.15678024291992], [-77.8868408203125, 36.144439697265625], [-77.8113021850586, 36.13581848144531], [-77.8013687133789, 36.144256591796875], [-77.7471694946289, 36.14642333984375], [-77.72018432617188, 36.13411331176758], [-77.70050811767578, 36.144168853759766], [-77.83014678955078, 35.854496002197266], [-77.84492492675781, 35.835575103759766], [-77.873046875, 35.84470748901367], [-78.18692779541016, 35.72511291503906]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;30&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.142, &quot;BIR74&quot;: 4021.0, &quot;BIR79&quot;: 5189.0, &quot;CNTY_&quot;: 1913, &quot;CNTY_ID&quot;: 1913, &quot;CRESS_ID&quot;: 64, &quot;FIPS&quot;: &quot;37127&quot;, &quot;FIPSNO&quot;: 37127, &quot;NAME&quot;: &quot;Nash&quot;, &quot;NWBIR74&quot;: 1851.0, &quot;NWBIR79&quot;: 2274.0, &quot;NWR74&quot;: 460.33325, &quot;NWR79&quot;: 438.234727, &quot;PERIMETER&quot;: 1.64, &quot;SID74&quot;: 8.0, &quot;SID79&quot;: 7.0, &quot;SIDR74&quot;: 1.989555, &quot;SIDR79&quot;: 1.349008}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.4084243774414, 35.8184814453125, -81.98334503173828, 36.14701461791992], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-82.11885070800781, 35.81853103637695], [-82.14665222167969, 35.8184814453125], [-82.1410140991211, 35.900272369384766], [-82.14956665039062, 35.92144775390625], [-82.18460845947266, 35.93487548828125], [-82.19577026367188, 35.9473762512207], [-82.19905090332031, 36.00177001953125], [-82.23210144042969, 36.003875732421875], [-82.24061584472656, 35.98420333862305], [-82.25885772705078, 35.98567581176758], [-82.30169677734375, 36.029327392578125], [-82.3096923828125, 36.011474609375], [-82.32968139648438, 36.01426315307617], [-82.34026336669922, 36.02539825439453], [-82.34449768066406, 36.07024002075195], [-82.38517761230469, 36.07850646972656], [-82.4084243774414, 36.0753173828125], [-82.37385559082031, 36.098697662353516], [-82.31192779541016, 36.12215042114258], [-82.2623062133789, 36.12037658691406], [-82.20773315429688, 36.14701461791992], [-82.154052734375, 36.13962173461914], [-82.11808013916016, 36.096256256103516], [-82.0777587890625, 36.10013961791992], [-82.06232452392578, 36.035526275634766], [-82.042724609375, 36.005008697509766], [-82.04910278320312, 35.96723556518555], [-82.00506591796875, 35.9144401550293], [-81.98836517333984, 35.905643463134766], [-81.98334503173828, 35.887577056884766], [-81.99089813232422, 35.872474670410156], [-82.03468322753906, 35.853580474853516], [-82.09799194335938, 35.84385681152344], [-82.11885070800781, 35.81853103637695]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;31&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.059, &quot;BIR74&quot;: 671.0, &quot;BIR79&quot;: 919.0, &quot;CNTY_&quot;: 1927, &quot;CNTY_ID&quot;: 1927, &quot;CRESS_ID&quot;: 61, &quot;FIPS&quot;: &quot;37121&quot;, &quot;FIPSNO&quot;: 37121, &quot;NAME&quot;: &quot;Mitchell&quot;, &quot;NWBIR74&quot;: 1.0, &quot;NWBIR79&quot;: 4.0, &quot;NWR74&quot;: 1.490313, &quot;NWR79&quot;: 4.352557, &quot;PERIMETER&quot;: 1.319, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 2.176279}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.83014678955078, 35.670265197753906, -77.34236907958984, 36.146602630615234], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.67121887207031, 35.670265197753906], [-77.73314666748047, 35.73954772949219], [-77.75749206542969, 35.79810333251953], [-77.7550048828125, 35.82483673095703], [-77.76713562011719, 35.83686447143555], [-77.83014678955078, 35.854496002197266], [-77.70050811767578, 36.144168853759766], [-77.68562316894531, 36.146602630615234], [-77.6423568725586, 36.12670135498047], [-77.60625457763672, 36.09739303588867], [-77.54788208007812, 36.08849334716797], [-77.53668975830078, 36.08236312866211], [-77.53585815429688, 36.055572509765625], [-77.52513122558594, 36.03538513183594], [-77.46397399902344, 36.02638244628906], [-77.43821716308594, 36.014034271240234], [-77.42574310302734, 35.996063232421875], [-77.40531158447266, 35.99471664428711], [-77.34236907958984, 35.90800476074219], [-77.35810089111328, 35.815311431884766], [-77.39680480957031, 35.82841873168945], [-77.40569305419922, 35.817264556884766], [-77.4185791015625, 35.822086334228516], [-77.42699432373047, 35.808197021484375], [-77.4547119140625, 35.79381561279297], [-77.47323608398438, 35.799659729003906], [-77.5055160522461, 35.766754150390625], [-77.67121887207031, 35.670265197753906]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;32&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.131, &quot;BIR74&quot;: 3657.0, &quot;BIR79&quot;: 4359.0, &quot;CNTY_&quot;: 1928, &quot;CNTY_ID&quot;: 1928, &quot;CRESS_ID&quot;: 33, &quot;FIPS&quot;: &quot;37065&quot;, &quot;FIPSNO&quot;: 37065, &quot;NAME&quot;: &quot;Edgecombe&quot;, &quot;NWBIR74&quot;: 2186.0, &quot;NWBIR79&quot;: 2696.0, &quot;NWR74&quot;: 597.757725, &quot;NWR79&quot;: 618.490479, &quot;PERIMETER&quot;: 1.521, &quot;SID74&quot;: 10.0, &quot;SID79&quot;: 9.0, &quot;SIDR74&quot;: 2.734482, &quot;SIDR79&quot;: 2.064694}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.80622100830078, 35.75003433227539, -81.32186889648438, 36.117591857910156], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.32813262939453, 35.79505920410156], [-81.37665557861328, 35.75003433227539], [-81.41757202148438, 35.75590515136719], [-81.45714569091797, 35.77993392944336], [-81.56025695800781, 35.775447845458984], [-81.59336853027344, 35.81312561035156], [-81.70182800292969, 35.868797302246094], [-81.74844360351562, 35.92075729370117], [-81.77347564697266, 35.922203063964844], [-81.77568817138672, 35.943946838378906], [-81.80278778076172, 35.960330963134766], [-81.73226928710938, 36.058475494384766], [-81.80622100830078, 36.10456085205078], [-81.65900421142578, 36.117591857910156], [-81.54610443115234, 36.111392974853516], [-81.5173110961914, 36.09543228149414], [-81.45443725585938, 36.08305740356445], [-81.42963409423828, 36.0656623840332], [-81.39814758300781, 36.05605697631836], [-81.38871002197266, 36.037567138671875], [-81.34735107421875, 36.015357971191406], [-81.32186889648438, 35.98932647705078], [-81.32926177978516, 35.9892463684082], [-81.33956909179688, 35.92924118041992], [-81.33068084716797, 35.87580108642578], [-81.33721160888672, 35.82762908935547], [-81.32813262939453, 35.79505920410156]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;33&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.122, &quot;BIR74&quot;: 3609.0, &quot;BIR79&quot;: 4249.0, &quot;CNTY_&quot;: 1932, &quot;CNTY_ID&quot;: 1932, &quot;CRESS_ID&quot;: 14, &quot;FIPS&quot;: &quot;37027&quot;, &quot;FIPSNO&quot;: 37027, &quot;NAME&quot;: &quot;Caldwell&quot;, &quot;NWBIR74&quot;: 309.0, &quot;NWBIR79&quot;: 360.0, &quot;NWR74&quot;: 85.619285, &quot;NWR79&quot;: 84.725818, &quot;PERIMETER&quot;: 1.516, &quot;SID74&quot;: 6.0, &quot;SID79&quot;: 9.0, &quot;SIDR74&quot;: 1.66251, &quot;SIDR79&quot;: 2.118145}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.5069351196289, 35.69755554199219, -82.11885070800781, 36.07850646972656], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-82.27920532226562, 35.69755554199219], [-82.28157806396484, 35.7202033996582], [-82.32184600830078, 35.73984909057617], [-82.34185028076172, 35.76350784301758], [-82.34539794921875, 35.80519485473633], [-82.37525177001953, 35.816402435302734], [-82.40581512451172, 35.81397247314453], [-82.44148254394531, 35.88222885131836], [-82.48709106445312, 35.904884338378906], [-82.48394775390625, 35.947608947753906], [-82.5069351196289, 35.97254180908203], [-82.4751968383789, 35.9931755065918], [-82.4084243774414, 36.0753173828125], [-82.38517761230469, 36.07850646972656], [-82.34449768066406, 36.07024002075195], [-82.34026336669922, 36.02539825439453], [-82.32968139648438, 36.01426315307617], [-82.3096923828125, 36.011474609375], [-82.30169677734375, 36.029327392578125], [-82.25885772705078, 35.98567581176758], [-82.24061584472656, 35.98420333862305], [-82.23210144042969, 36.003875732421875], [-82.19905090332031, 36.00177001953125], [-82.19577026367188, 35.9473762512207], [-82.18460845947266, 35.93487548828125], [-82.14956665039062, 35.92144775390625], [-82.1410140991211, 35.900272369384766], [-82.14665222167969, 35.8184814453125], [-82.11885070800781, 35.81853103637695], [-82.15459442138672, 35.798370361328125], [-82.16429138183594, 35.76052474975586], [-82.21178436279297, 35.71698760986328], [-82.27920532226562, 35.69755554199219]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;34&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.08, &quot;BIR74&quot;: 770.0, &quot;BIR79&quot;: 869.0, &quot;CNTY_&quot;: 1936, &quot;CNTY_ID&quot;: 1936, &quot;CRESS_ID&quot;: 100, &quot;FIPS&quot;: &quot;37199&quot;, &quot;FIPSNO&quot;: 37199, &quot;NAME&quot;: &quot;Yancey&quot;, &quot;NWBIR74&quot;: 12.0, &quot;NWBIR79&quot;: 10.0, &quot;NWR74&quot;: 15.584416, &quot;NWR79&quot;: 11.50748, &quot;PERIMETER&quot;: 1.307, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 1.150748}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.40531158447266, 35.65012741088867, -76.78306579589844, 36.0679817199707], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.17845916748047, 35.73219299316406], [-77.2076644897461, 35.755126953125], [-77.26081848144531, 35.759090423583984], [-77.2645034790039, 35.782779693603516], [-77.35810089111328, 35.815311431884766], [-77.34236907958984, 35.90800476074219], [-77.40531158447266, 35.99471664428711], [-77.33220672607422, 36.0679817199707], [-77.31525421142578, 36.0480842590332], [-77.27671813964844, 36.0276985168457], [-77.21380615234375, 36.00536346435547], [-77.21553802490234, 35.98906707763672], [-77.19339752197266, 35.988094329833984], [-77.19589233398438, 35.93595504760742], [-77.18867492675781, 35.93124771118164], [-77.09001159667969, 35.92524337768555], [-77.06629943847656, 35.93600845336914], [-77.04088592529297, 35.9317512512207], [-77.0341796875, 35.91433334350586], [-77.0483169555664, 35.85749053955078], [-77.00442504882812, 35.861839294433594], [-76.99073028564453, 35.877838134765625], [-76.93609619140625, 35.89459991455078], [-76.9048080444336, 35.86791229248047], [-76.89848327636719, 35.81418228149414], [-76.87848663330078, 35.817291259765625], [-76.85672760009766, 35.83578109741211], [-76.8348388671875, 35.88422775268555], [-76.81053161621094, 35.881309509277344], [-76.78306579589844, 35.85923385620117], [-76.80667877197266, 35.81084060668945], [-76.8052749633789, 35.790374755859375], [-76.82595825195312, 35.75688171386719], [-76.83831024169922, 35.7054557800293], [-76.97991180419922, 35.65012741088867], [-77.16128540039062, 35.736778259277344], [-77.17845916748047, 35.73219299316406]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;35&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.118, &quot;BIR74&quot;: 1549.0, &quot;BIR79&quot;: 1849.0, &quot;CNTY_&quot;: 1937, &quot;CNTY_ID&quot;: 1937, &quot;CRESS_ID&quot;: 59, &quot;FIPS&quot;: &quot;37117&quot;, &quot;FIPSNO&quot;: 37117, &quot;NAME&quot;: &quot;Martin&quot;, &quot;NWBIR74&quot;: 883.0, &quot;NWBIR79&quot;: 1033.0, &quot;NWR74&quot;: 570.04519, &quot;NWR79&quot;: 558.680368, &quot;PERIMETER&quot;: 1.899, &quot;SID74&quot;: 2.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 1.291156, &quot;SIDR79&quot;: 0.540833}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.99880981445312, 35.51993942260742, -78.25454711914062, 36.066646575927734], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.92107391357422, 35.578857421875], [-78.99880981445312, 35.601322174072266], [-78.93888854980469, 35.761444091796875], [-78.9444351196289, 35.77011489868164], [-78.90571594238281, 35.86051559448242], [-78.82795715332031, 35.8602294921875], [-78.80829620361328, 35.919925689697266], [-78.76350402832031, 35.91447448730469], [-78.73419952392578, 35.93458557128906], [-78.70734405517578, 35.97694396972656], [-78.70415496826172, 35.9973258972168], [-78.71617126464844, 36.026493072509766], [-78.72810363769531, 36.02707290649414], [-78.7533950805664, 36.0114631652832], [-78.7491226196289, 36.06359100341797], [-78.69557189941406, 36.066646575927734], [-78.54802703857422, 36.01412582397461], [-78.43114471435547, 35.97271728515625], [-78.39447784423828, 35.93230056762695], [-78.36011505126953, 35.91867446899414], [-78.32954406738281, 35.887847900390625], [-78.30841064453125, 35.89344787597656], [-78.266845703125, 35.8483772277832], [-78.25454711914062, 35.81552505493164], [-78.4776382446289, 35.695613861083984], [-78.70321655273438, 35.51993942260742], [-78.92107391357422, 35.578857421875]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;36&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.219, &quot;BIR74&quot;: 14484.0, &quot;BIR79&quot;: 20857.0, &quot;CNTY_&quot;: 1938, &quot;CNTY_ID&quot;: 1938, &quot;CRESS_ID&quot;: 92, &quot;FIPS&quot;: &quot;37183&quot;, &quot;FIPSNO&quot;: 37183, &quot;NAME&quot;: &quot;Wake&quot;, &quot;NWBIR74&quot;: 4397.0, &quot;NWBIR79&quot;: 6221.0, &quot;NWR74&quot;: 303.57636, &quot;NWR79&quot;: 298.269166, &quot;PERIMETER&quot;: 2.13, &quot;SID74&quot;: 16.0, &quot;SID79&quot;: 31.0, &quot;SIDR74&quot;: 1.104667, &quot;SIDR79&quot;: 1.486312}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.96275329589844, 35.673561096191406, -82.40581512451172, 36.05434036254883], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-82.8959732055664, 35.948360443115234], [-82.85626983642578, 35.947425842285156], [-82.80867004394531, 35.92087173461914], [-82.77644348144531, 35.956573486328125], [-82.77359771728516, 35.98750305175781], [-82.76322937011719, 35.99954605102539], [-82.64389038085938, 36.05172348022461], [-82.62804412841797, 36.05434036254883], [-82.60440063476562, 36.04298782348633], [-82.59223175048828, 36.0224494934082], [-82.60580444335938, 36.00354766845703], [-82.59930419921875, 35.96329879760742], [-82.55414581298828, 35.95610809326172], [-82.5069351196289, 35.97254180908203], [-82.48394775390625, 35.947608947753906], [-82.48709106445312, 35.904884338378906], [-82.44148254394531, 35.88222885131836], [-82.40581512451172, 35.81397247314453], [-82.50054931640625, 35.79612731933594], [-82.76630401611328, 35.694000244140625], [-82.80562591552734, 35.684906005859375], [-82.84326934814453, 35.69172668457031], [-82.88111114501953, 35.673561096191406], [-82.90753936767578, 35.727848052978516], [-82.95218658447266, 35.73899841308594], [-82.94304656982422, 35.76646423339844], [-82.96275329589844, 35.79185104370117], [-82.90682220458984, 35.872215270996094], [-82.91407012939453, 35.9278678894043], [-82.8959732055664, 35.948360443115234]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;37&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.118, &quot;BIR74&quot;: 765.0, &quot;BIR79&quot;: 926.0, &quot;CNTY_&quot;: 1946, &quot;CNTY_ID&quot;: 1946, &quot;CRESS_ID&quot;: 58, &quot;FIPS&quot;: &quot;37115&quot;, &quot;FIPSNO&quot;: 37115, &quot;NAME&quot;: &quot;Madison&quot;, &quot;NWBIR74&quot;: 5.0, &quot;NWBIR79&quot;: 3.0, &quot;NWR74&quot;: 6.535948, &quot;NWR79&quot;: 3.239741, &quot;PERIMETER&quot;: 1.601, &quot;SID74&quot;: 2.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 2.614379, &quot;SIDR79&quot;: 2.159827}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.10888671875, 35.50680923461914, -80.6895751953125, 36.053348541259766], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.72651672363281, 35.507568359375], [-80.77622985839844, 35.50680923461914], [-80.9553451538086, 35.50912094116211], [-80.9510726928711, 35.52866744995117], [-80.96143341064453, 35.54356384277344], [-80.9312744140625, 35.619590759277344], [-81.00357818603516, 35.69705581665039], [-81.05477905273438, 35.713401794433594], [-81.07220458984375, 35.743648529052734], [-81.10888671875, 35.77190017700195], [-81.04910278320312, 35.835968017578125], [-80.99534606933594, 35.97707748413086], [-81.02056884765625, 36.034934997558594], [-80.98895263671875, 36.053348541259766], [-80.87741088867188, 36.052406311035156], [-80.6895751953125, 36.04547882080078], [-80.70597076416016, 35.85165786743164], [-80.76612091064453, 35.682037353515625], [-80.72651672363281, 35.507568359375]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;38&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.155, &quot;BIR74&quot;: 4139.0, &quot;BIR79&quot;: 5400.0, &quot;CNTY_&quot;: 1947, &quot;CNTY_ID&quot;: 1947, &quot;CRESS_ID&quot;: 49, &quot;FIPS&quot;: &quot;37097&quot;, &quot;FIPSNO&quot;: 37097, &quot;NAME&quot;: &quot;Iredell&quot;, &quot;NWBIR74&quot;: 1144.0, &quot;NWBIR79&quot;: 1305.0, &quot;NWR74&quot;: 276.395265, &quot;NWR79&quot;: 241.666667, &quot;PERIMETER&quot;: 1.781, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 0.966417, &quot;SIDR79&quot;: 0.925926}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.70597076416016, 35.74579620361328, -80.36170959472656, 36.050193786621094], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.45677185058594, 35.74579620361328], [-80.48869323730469, 35.77561569213867], [-80.52672576904297, 35.78180694580078], [-80.57232666015625, 35.813812255859375], [-80.60755920410156, 35.82225799560547], [-80.63494110107422, 35.84025955200195], [-80.70597076416016, 35.85165786743164], [-80.6895751953125, 36.04547882080078], [-80.49554443359375, 36.04326629638672], [-80.484130859375, 36.03832244873047], [-80.4648666381836, 36.050193786621094], [-80.449951171875, 36.02983856201172], [-80.41797637939453, 36.00863265991211], [-80.41159057617188, 35.98461151123047], [-80.38024139404297, 35.96792984008789], [-80.36306762695312, 35.94212341308594], [-80.36170959472656, 35.895851135253906], [-80.40593719482422, 35.884368896484375], [-80.38650512695312, 35.85857009887695], [-80.38643646240234, 35.84541320800781], [-80.3954849243164, 35.83948516845703], [-80.41480255126953, 35.84486389160156], [-80.42607116699219, 35.83030700683594], [-80.44650268554688, 35.830684661865234], [-80.45779418945312, 35.82247543334961], [-80.47942352294922, 35.83327865600586], [-80.47288513183594, 35.78611755371094], [-80.45064544677734, 35.76487731933594], [-80.45677185058594, 35.74579620361328]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;39&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.069, &quot;BIR74&quot;: 1207.0, &quot;BIR79&quot;: 1438.0, &quot;CNTY_&quot;: 1948, &quot;CNTY_ID&quot;: 1948, &quot;CRESS_ID&quot;: 30, &quot;FIPS&quot;: &quot;37059&quot;, &quot;FIPSNO&quot;: 37059, &quot;NAME&quot;: &quot;Davie&quot;, &quot;NWBIR74&quot;: 148.0, &quot;NWBIR79&quot;: 177.0, &quot;NWR74&quot;: 122.618061, &quot;NWR79&quot;: 123.087622, &quot;PERIMETER&quot;: 1.201, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 3.0, &quot;SIDR74&quot;: 0.8285, &quot;SIDR79&quot;: 2.086231}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.33956909179688, 35.77190017700195, -80.99534606933594, 36.034934997558594], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.10888671875, 35.77190017700195], [-81.12728118896484, 35.78896713256836], [-81.14140319824219, 35.82331848144531], [-81.32813262939453, 35.79505920410156], [-81.33721160888672, 35.82762908935547], [-81.33068084716797, 35.87580108642578], [-81.33956909179688, 35.92924118041992], [-81.32926177978516, 35.9892463684082], [-81.32186889648438, 35.98932647705078], [-81.23600769042969, 36.02382278442383], [-81.15746307373047, 36.02098083496094], [-81.12406158447266, 36.03128433227539], [-81.0840835571289, 36.02076721191406], [-81.02056884765625, 36.034934997558594], [-80.99534606933594, 35.97707748413086], [-81.04910278320312, 35.835968017578125], [-81.10888671875, 35.77190017700195]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;40&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.066, &quot;BIR74&quot;: 1333.0, &quot;BIR79&quot;: 1683.0, &quot;CNTY_&quot;: 1950, &quot;CNTY_ID&quot;: 1950, &quot;CRESS_ID&quot;: 2, &quot;FIPS&quot;: &quot;37003&quot;, &quot;FIPSNO&quot;: 37003, &quot;NAME&quot;: &quot;Alexander&quot;, &quot;NWBIR74&quot;: 128.0, &quot;NWBIR79&quot;: 150.0, &quot;NWR74&quot;: 96.024006, &quot;NWR79&quot;: 89.12656, &quot;PERIMETER&quot;: 1.07, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 1.188354}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.47942352294922, 35.50511932373047, -80.03810119628906, 36.02155303955078], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.06440734863281, 35.505699157714844], [-80.1819076538086, 35.50511932373047], [-80.20921325683594, 35.57451248168945], [-80.251220703125, 35.62480163574219], [-80.28578186035156, 35.6369743347168], [-80.32559204101562, 35.68315505981445], [-80.32628631591797, 35.714012145996094], [-80.37725830078125, 35.71068572998047], [-80.45677185058594, 35.74579620361328], [-80.45064544677734, 35.76487731933594], [-80.47288513183594, 35.78611755371094], [-80.47942352294922, 35.83327865600586], [-80.45779418945312, 35.82247543334961], [-80.44650268554688, 35.830684661865234], [-80.42607116699219, 35.83030700683594], [-80.41480255126953, 35.84486389160156], [-80.3954849243164, 35.83948516845703], [-80.38643646240234, 35.84541320800781], [-80.38650512695312, 35.85857009887695], [-80.40593719482422, 35.884368896484375], [-80.36170959472656, 35.895851135253906], [-80.36306762695312, 35.94212341308594], [-80.38024139404297, 35.96792984008789], [-80.33028411865234, 35.98123550415039], [-80.33430480957031, 35.9925651550293], [-80.21206665039062, 35.9901237487793], [-80.20987701416016, 36.021427154541016], [-80.12114715576172, 36.02155303955078], [-80.03810119628906, 36.00618362426758], [-80.0426025390625, 35.916812896728516], [-80.06440734863281, 35.505699157714844]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;41&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.145, &quot;BIR74&quot;: 5509.0, &quot;BIR79&quot;: 7143.0, &quot;CNTY_&quot;: 1951, &quot;CNTY_ID&quot;: 1951, &quot;CRESS_ID&quot;: 29, &quot;FIPS&quot;: &quot;37057&quot;, &quot;FIPSNO&quot;: 37057, &quot;NAME&quot;: &quot;Davidson&quot;, &quot;NWBIR74&quot;: 736.0, &quot;NWBIR79&quot;: 941.0, &quot;NWR74&quot;: 133.599564, &quot;NWR79&quot;: 131.737365, &quot;PERIMETER&quot;: 1.791, &quot;SID74&quot;: 8.0, &quot;SID79&quot;: 8.0, &quot;SIDR74&quot;: 1.452169, &quot;SIDR79&quot;: 1.119978}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.985595703125, 35.55329895019531, -81.37665557861328, 35.994651794433594], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.8162841796875, 35.574378967285156], [-81.8656234741211, 35.71885299682617], [-81.985595703125, 35.79995346069336], [-81.97529602050781, 35.81827926635742], [-81.9329833984375, 35.827598571777344], [-81.90625762939453, 35.84799575805664], [-81.9062271118164, 35.89201354980469], [-81.94134521484375, 35.95497512817383], [-81.92214965820312, 35.982513427734375], [-81.90084838867188, 35.994651794433594], [-81.88081359863281, 35.989524841308594], [-81.85987091064453, 35.970340728759766], [-81.80278778076172, 35.960330963134766], [-81.77568817138672, 35.943946838378906], [-81.77347564697266, 35.922203063964844], [-81.74844360351562, 35.92075729370117], [-81.70182800292969, 35.868797302246094], [-81.59336853027344, 35.81312561035156], [-81.56025695800781, 35.775447845458984], [-81.45714569091797, 35.77993392944336], [-81.41757202148438, 35.75590515136719], [-81.37665557861328, 35.75003433227539], [-81.40572357177734, 35.697509765625], [-81.49569702148438, 35.60654830932617], [-81.52364349365234, 35.56126022338867], [-81.56253814697266, 35.5553092956543], [-81.5881118774414, 35.56177520751953], [-81.64390563964844, 35.55329895019531], [-81.68431854248047, 35.56543731689453], [-81.69519805908203, 35.57163619995117], [-81.70082092285156, 35.595611572265625], [-81.7496109008789, 35.60171127319336], [-81.76560974121094, 35.584224700927734], [-81.8162841796875, 35.574378967285156]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;42&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.134, &quot;BIR74&quot;: 3573.0, &quot;BIR79&quot;: 4314.0, &quot;CNTY_&quot;: 1958, &quot;CNTY_ID&quot;: 1958, &quot;CRESS_ID&quot;: 12, &quot;FIPS&quot;: &quot;37023&quot;, &quot;FIPSNO&quot;: 37023, &quot;NAME&quot;: &quot;Burke&quot;, &quot;NWBIR74&quot;: 326.0, &quot;NWBIR79&quot;: 407.0, &quot;NWR74&quot;: 91.239854, &quot;NWR79&quot;: 94.343996, &quot;PERIMETER&quot;: 1.755, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 15.0, &quot;SIDR74&quot;: 1.399384, &quot;SIDR79&quot;: 3.477051}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.83831024169922, 35.69911575317383, -76.35819244384766, 35.97746658325195], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.40843200683594, 35.69911575317383], [-76.63381958007812, 35.7030029296875], [-76.83831024169922, 35.7054557800293], [-76.82595825195312, 35.75688171386719], [-76.8052749633789, 35.790374755859375], [-76.80667877197266, 35.81084060668945], [-76.78306579589844, 35.85923385620117], [-76.76126098632812, 35.86454391479492], [-76.7417221069336, 35.88307571411133], [-76.72859954833984, 35.910858154296875], [-76.70832061767578, 35.91983413696289], [-76.69721984863281, 35.94154357910156], [-76.40946960449219, 35.97746658325195], [-76.3714828491211, 35.932342529296875], [-76.38356018066406, 35.900413513183594], [-76.35819244384766, 35.860591888427734], [-76.40869903564453, 35.78948211669922], [-76.40843200683594, 35.69911575317383]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;43&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.1, &quot;BIR74&quot;: 990.0, &quot;BIR79&quot;: 1141.0, &quot;CNTY_&quot;: 1962, &quot;CNTY_ID&quot;: 1962, &quot;CRESS_ID&quot;: 94, &quot;FIPS&quot;: &quot;37187&quot;, &quot;FIPSNO&quot;: 37187, &quot;NAME&quot;: &quot;Washington&quot;, &quot;NWBIR74&quot;: 521.0, &quot;NWBIR79&quot;: 651.0, &quot;NWR74&quot;: 526.262626, &quot;NWR79&quot;: 570.552147, &quot;PERIMETER&quot;: 1.331, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 5.050505, &quot;SIDR79&quot;: 0.0}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.40869903564453, 35.59466552734375, -76.02604675292969, 35.97687530517578], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.16730499267578, 35.696842193603516], [-76.21023559570312, 35.60438919067383], [-76.23279571533203, 35.59466552734375], [-76.2976303100586, 35.6116943359375], [-76.27344512939453, 35.68949890136719], [-76.40843200683594, 35.69911575317383], [-76.40869903564453, 35.78948211669922], [-76.35819244384766, 35.860591888427734], [-76.38356018066406, 35.900413513183594], [-76.3714828491211, 35.932342529296875], [-76.2137680053711, 35.97687530517578], [-76.08963775634766, 35.962913513183594], [-76.02604675292969, 35.92042541503906], [-76.07591247558594, 35.75680160522461], [-76.0430679321289, 35.6838493347168], [-76.16730499267578, 35.696842193603516]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;44&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.099, &quot;BIR74&quot;: 248.0, &quot;BIR79&quot;: 319.0, &quot;CNTY_&quot;: 1963, &quot;CNTY_ID&quot;: 1963, &quot;CRESS_ID&quot;: 89, &quot;FIPS&quot;: &quot;37177&quot;, &quot;FIPSNO&quot;: 37177, &quot;NAME&quot;: &quot;Tyrrell&quot;, &quot;NWBIR74&quot;: 116.0, &quot;NWBIR79&quot;: 141.0, &quot;NWR74&quot;: 467.741935, &quot;NWR79&quot;: 442.00627, &quot;PERIMETER&quot;: 1.411, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 0.0}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.2906723022461, 35.519004821777344, -81.8162841796875, 35.95497512817383], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.8162841796875, 35.574378967285156], [-81.83189392089844, 35.5650634765625], [-81.84027099609375, 35.5372428894043], [-81.86215209960938, 35.530548095703125], [-81.96704864501953, 35.52158737182617], [-82.00160217285156, 35.54597473144531], [-82.03618621826172, 35.528587341308594], [-82.11675262451172, 35.519004821777344], [-82.17070770263672, 35.528465270996094], [-82.26800537109375, 35.5688591003418], [-82.2906723022461, 35.58930206298828], [-82.26534271240234, 35.61248779296875], [-82.28424072265625, 35.6389045715332], [-82.2891845703125, 35.67148971557617], [-82.27920532226562, 35.69755554199219], [-82.21178436279297, 35.71698760986328], [-82.16429138183594, 35.76052474975586], [-82.15459442138672, 35.798370361328125], [-82.11885070800781, 35.81853103637695], [-82.09799194335938, 35.84385681152344], [-82.03468322753906, 35.853580474853516], [-81.99089813232422, 35.872474670410156], [-81.98334503173828, 35.887577056884766], [-81.98836517333984, 35.905643463134766], [-81.947021484375, 35.9104118347168], [-81.94495391845703, 35.91861343383789], [-81.96139526367188, 35.9392204284668], [-81.94134521484375, 35.95497512817383], [-81.9062271118164, 35.89201354980469], [-81.90625762939453, 35.84799575805664], [-81.9329833984375, 35.827598571777344], [-81.97529602050781, 35.81827926635742], [-81.985595703125, 35.79995346069336], [-81.8656234741211, 35.71885299682617], [-81.8162841796875, 35.574378967285156]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;45&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.116, &quot;BIR74&quot;: 1946.0, &quot;BIR79&quot;: 2215.0, &quot;CNTY_&quot;: 1964, &quot;CNTY_ID&quot;: 1964, &quot;CRESS_ID&quot;: 56, &quot;FIPS&quot;: &quot;37111&quot;, &quot;FIPSNO&quot;: 37111, &quot;NAME&quot;: &quot;McDowell&quot;, &quot;NWBIR74&quot;: 134.0, &quot;NWBIR79&quot;: 128.0, &quot;NWR74&quot;: 68.859198, &quot;NWR79&quot;: 57.78781, &quot;PERIMETER&quot;: 1.664, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 2.569373, &quot;SIDR79&quot;: 2.257336}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.06440734863281, 35.505699157714844, -79.5378189086914, 35.916812896728516], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.7649917602539, 35.50593566894531], [-80.06440734863281, 35.505699157714844], [-80.0426025390625, 35.916812896728516], [-79.5378189086914, 35.890968322753906], [-79.54098510742188, 35.83699035644531], [-79.55535888671875, 35.5130500793457], [-79.7649917602539, 35.50593566894531]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;46&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.201, &quot;BIR74&quot;: 4456.0, &quot;BIR79&quot;: 5711.0, &quot;CNTY_&quot;: 1968, &quot;CNTY_ID&quot;: 1968, &quot;CRESS_ID&quot;: 76, &quot;FIPS&quot;: &quot;37151&quot;, &quot;FIPSNO&quot;: 37151, &quot;NAME&quot;: &quot;Randolph&quot;, &quot;NWBIR74&quot;: 384.0, &quot;NWBIR79&quot;: 483.0, &quot;NWR74&quot;: 86.175943, &quot;NWR79&quot;: 84.57363, &quot;PERIMETER&quot;: 1.805, &quot;SID74&quot;: 7.0, &quot;SID79&quot;: 12.0, &quot;SIDR74&quot;: 1.570916, &quot;SIDR79&quot;: 2.101208}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.55535888671875, 35.5102424621582, -78.90571594238281, 35.8681526184082], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.55535888671875, 35.5130500793457], [-79.54098510742188, 35.83699035644531], [-79.23799133300781, 35.83724594116211], [-79.2461929321289, 35.8681526184082], [-79.09536743164062, 35.85394287109375], [-79.01813507080078, 35.85786437988281], [-78.90571594238281, 35.86051559448242], [-78.9444351196289, 35.77011489868164], [-78.93888854980469, 35.761444091796875], [-78.99880981445312, 35.601322174072266], [-78.92107391357422, 35.578857421875], [-78.9744873046875, 35.517154693603516], [-79.03849792480469, 35.549461364746094], [-79.06729125976562, 35.59870529174805], [-79.13260650634766, 35.62461471557617], [-79.19424438476562, 35.575130462646484], [-79.20973205566406, 35.55345153808594], [-79.22050476074219, 35.55080032348633], [-79.22713470458984, 35.565364837646484], [-79.27609252929688, 35.530277252197266], [-79.2861328125, 35.54440689086914], [-79.30536651611328, 35.54270553588867], [-79.31501007080078, 35.53913116455078], [-79.31285858154297, 35.5268669128418], [-79.33155059814453, 35.52198028564453], [-79.34294891357422, 35.5102424621582], [-79.55535888671875, 35.5130500793457]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;47&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.18, &quot;BIR74&quot;: 1646.0, &quot;BIR79&quot;: 2398.0, &quot;CNTY_&quot;: 1973, &quot;CNTY_ID&quot;: 1973, &quot;CRESS_ID&quot;: 19, &quot;FIPS&quot;: &quot;37037&quot;, &quot;FIPSNO&quot;: 37037, &quot;NAME&quot;: &quot;Chatham&quot;, &quot;NWBIR74&quot;: 591.0, &quot;NWBIR79&quot;: 687.0, &quot;NWR74&quot;: 359.052248, &quot;NWR79&quot;: 286.488741, &quot;PERIMETER&quot;: 2.142, &quot;SID74&quot;: 2.0, &quot;SID79&quot;: 3.0, &quot;SIDR74&quot;: 1.215067, &quot;SIDR79&quot;: 1.251043}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.18692779541016, 35.574256896972656, -77.67121887207031, 35.854496002197266], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.0653305053711, 35.58203887939453], [-78.1249008178711, 35.59751892089844], [-78.16244506835938, 35.6829833984375], [-78.16180419921875, 35.709293365478516], [-78.18692779541016, 35.72511291503906], [-77.873046875, 35.84470748901367], [-77.84492492675781, 35.835575103759766], [-77.83014678955078, 35.854496002197266], [-77.76713562011719, 35.83686447143555], [-77.7550048828125, 35.82483673095703], [-77.75749206542969, 35.79810333251953], [-77.73314666748047, 35.73954772949219], [-77.67121887207031, 35.670265197753906], [-77.69832611083984, 35.65399932861328], [-77.8262939453125, 35.574256896972656], [-77.82717895507812, 35.58290100097656], [-78.00213623046875, 35.57599639892578], [-78.06048583984375, 35.594669342041016], [-78.0653305053711, 35.58203887939453]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;48&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.094, &quot;BIR74&quot;: 3702.0, &quot;BIR79&quot;: 4706.0, &quot;CNTY_&quot;: 1979, &quot;CNTY_ID&quot;: 1979, &quot;CRESS_ID&quot;: 98, &quot;FIPS&quot;: &quot;37195&quot;, &quot;FIPSNO&quot;: 37195, &quot;NAME&quot;: &quot;Wilson&quot;, &quot;NWBIR74&quot;: 1827.0, &quot;NWBIR79&quot;: 2330.0, &quot;NWR74&quot;: 493.517018, &quot;NWR79&quot;: 495.112622, &quot;PERIMETER&quot;: 1.307, &quot;SID74&quot;: 11.0, &quot;SID79&quot;: 13.0, &quot;SIDR74&quot;: 2.971367, &quot;SIDR79&quot;: 2.762431}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.76612091064453, 35.49489974975586, -80.1819076538086, 35.85165786743164], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.2982406616211, 35.49489974975586], [-80.72651672363281, 35.507568359375], [-80.76612091064453, 35.682037353515625], [-80.70597076416016, 35.85165786743164], [-80.63494110107422, 35.84025955200195], [-80.60755920410156, 35.82225799560547], [-80.57232666015625, 35.813812255859375], [-80.52672576904297, 35.78180694580078], [-80.48869323730469, 35.77561569213867], [-80.45677185058594, 35.74579620361328], [-80.37725830078125, 35.71068572998047], [-80.32628631591797, 35.714012145996094], [-80.32559204101562, 35.68315505981445], [-80.28578186035156, 35.6369743347168], [-80.251220703125, 35.62480163574219], [-80.20921325683594, 35.57451248168945], [-80.1819076538086, 35.50511932373047], [-80.2982406616211, 35.49489974975586]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;49&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.134, &quot;BIR74&quot;: 4606.0, &quot;BIR79&quot;: 6427.0, &quot;CNTY_&quot;: 1980, &quot;CNTY_ID&quot;: 1980, &quot;CRESS_ID&quot;: 80, &quot;FIPS&quot;: &quot;37159&quot;, &quot;FIPSNO&quot;: 37159, &quot;NAME&quot;: &quot;Rowan&quot;, &quot;NWBIR74&quot;: 1057.0, &quot;NWBIR79&quot;: 1504.0, &quot;NWR74&quot;: 229.483283, &quot;NWR79&quot;: 234.012759, &quot;PERIMETER&quot;: 1.59, &quot;SID74&quot;: 3.0, &quot;SID79&quot;: 8.0, &quot;SIDR74&quot;: 0.651324, &quot;SIDR79&quot;: 1.244749}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.69832611083984, 35.32355499267578, -77.10376739501953, 35.82841873168945], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.47388458251953, 35.42152786254883], [-77.50456237792969, 35.484832763671875], [-77.50393676757812, 35.50389099121094], [-77.52104949951172, 35.51650619506836], [-77.52342987060547, 35.53017807006836], [-77.54957580566406, 35.525726318359375], [-77.56464385986328, 35.53194046020508], [-77.6341323852539, 35.587825775146484], [-77.69832611083984, 35.65399932861328], [-77.67121887207031, 35.670265197753906], [-77.5055160522461, 35.766754150390625], [-77.47323608398438, 35.799659729003906], [-77.4547119140625, 35.79381561279297], [-77.42699432373047, 35.808197021484375], [-77.4185791015625, 35.822086334228516], [-77.40569305419922, 35.817264556884766], [-77.39680480957031, 35.82841873168945], [-77.35810089111328, 35.815311431884766], [-77.2645034790039, 35.782779693603516], [-77.26081848144531, 35.759090423583984], [-77.2076644897461, 35.755126953125], [-77.17845916748047, 35.73219299316406], [-77.17742156982422, 35.71446228027344], [-77.1922378540039, 35.712093353271484], [-77.19551849365234, 35.699913024902344], [-77.1754379272461, 35.67628479003906], [-77.18721008300781, 35.664306640625], [-77.1746826171875, 35.63541030883789], [-77.15205383300781, 35.6198844909668], [-77.14834594726562, 35.59800338745117], [-77.11939239501953, 35.58549880981445], [-77.10376739501953, 35.55018615722656], [-77.14739990234375, 35.54758834838867], [-77.17221069335938, 35.51912307739258], [-77.19496154785156, 35.42295455932617], [-77.2112045288086, 35.3956413269043], [-77.24054718017578, 35.37998580932617], [-77.24430084228516, 35.354190826416016], [-77.26419067382812, 35.35011291503906], [-77.2938003540039, 35.37395095825195], [-77.35421752929688, 35.32355499267578], [-77.38616180419922, 35.329261779785156], [-77.4014892578125, 35.342769622802734], [-77.4439468383789, 35.35459518432617], [-77.47388458251953, 35.42152786254883]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;50&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.168, &quot;BIR74&quot;: 5094.0, &quot;BIR79&quot;: 6635.0, &quot;CNTY_&quot;: 1984, &quot;CNTY_ID&quot;: 1984, &quot;CRESS_ID&quot;: 74, &quot;FIPS&quot;: &quot;37147&quot;, &quot;FIPSNO&quot;: 37147, &quot;NAME&quot;: &quot;Pitt&quot;, &quot;NWBIR74&quot;: 2620.0, &quot;NWBIR79&quot;: 3059.0, &quot;NWR74&quot;: 514.330585, &quot;NWR79&quot;: 461.03994, &quot;PERIMETER&quot;: 1.791, &quot;SID74&quot;: 14.0, &quot;SID79&quot;: 11.0, &quot;SIDR74&quot;: 2.748331, &quot;SIDR79&quot;: 1.657875}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.52364349365234, 35.54356384277344, -80.9312744140625, 35.82331848144531], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.96143341064453, 35.54356384277344], [-81.52364349365234, 35.56126022338867], [-81.49569702148438, 35.60654830932617], [-81.40572357177734, 35.697509765625], [-81.37665557861328, 35.75003433227539], [-81.32813262939453, 35.79505920410156], [-81.14140319824219, 35.82331848144531], [-81.12728118896484, 35.78896713256836], [-81.10888671875, 35.77190017700195], [-81.07220458984375, 35.743648529052734], [-81.05477905273438, 35.713401794433594], [-81.00357818603516, 35.69705581665039], [-80.9312744140625, 35.619590759277344], [-80.96143341064453, 35.54356384277344]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;51&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.106, &quot;BIR74&quot;: 5754.0, &quot;BIR79&quot;: 6883.0, &quot;CNTY_&quot;: 1986, &quot;CNTY_ID&quot;: 1986, &quot;CRESS_ID&quot;: 18, &quot;FIPS&quot;: &quot;37035&quot;, &quot;FIPSNO&quot;: 37035, &quot;NAME&quot;: &quot;Catawba&quot;, &quot;NWBIR74&quot;: 790.0, &quot;NWBIR79&quot;: 914.0, &quot;NWR74&quot;: 137.295794, &quot;NWR79&quot;: 132.790934, &quot;PERIMETER&quot;: 1.444, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 21.0, &quot;SIDR74&quot;: 0.868961, &quot;SIDR79&quot;: 3.050995}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.88111114501953, 35.418033599853516, -82.17070770263672, 35.816402435302734], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-82.25810241699219, 35.46372985839844], [-82.3228759765625, 35.49515914916992], [-82.37096405029297, 35.4787712097168], [-82.36483764648438, 35.46345901489258], [-82.37368774414062, 35.45737838745117], [-82.40906524658203, 35.46892166137695], [-82.47492218017578, 35.44440460205078], [-82.51951599121094, 35.44391632080078], [-82.52690124511719, 35.428321838378906], [-82.55113220214844, 35.42689514160156], [-82.56393432617188, 35.43842315673828], [-82.61868286132812, 35.43767547607422], [-82.66898345947266, 35.45516586303711], [-82.71415710449219, 35.439151763916016], [-82.74388885498047, 35.418033599853516], [-82.7808837890625, 35.441688537597656], [-82.79472351074219, 35.464969635009766], [-82.7706298828125, 35.53273391723633], [-82.77203369140625, 35.571292877197266], [-82.81333923339844, 35.61753463745117], [-82.82310485839844, 35.62138748168945], [-82.84486389160156, 35.6131477355957], [-82.86552429199219, 35.63580322265625], [-82.88111114501953, 35.673561096191406], [-82.84326934814453, 35.69172668457031], [-82.80562591552734, 35.684906005859375], [-82.76630401611328, 35.694000244140625], [-82.50054931640625, 35.79612731933594], [-82.40581512451172, 35.81397247314453], [-82.37525177001953, 35.816402435302734], [-82.34539794921875, 35.80519485473633], [-82.34185028076172, 35.76350784301758], [-82.32184600830078, 35.73984909057617], [-82.28157806396484, 35.7202033996582], [-82.27920532226562, 35.69755554199219], [-82.2891845703125, 35.67148971557617], [-82.28424072265625, 35.6389045715332], [-82.26534271240234, 35.61248779296875], [-82.2906723022461, 35.58930206298828], [-82.26800537109375, 35.5688591003418], [-82.17070770263672, 35.528465270996094], [-82.22290802001953, 35.51569366455078], [-82.22760009765625, 35.4829216003418], [-82.24015808105469, 35.46815490722656], [-82.25810241699219, 35.46372985839844]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;52&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.168, &quot;BIR74&quot;: 7515.0, &quot;BIR79&quot;: 9956.0, &quot;CNTY_&quot;: 1988, &quot;CNTY_ID&quot;: 1988, &quot;CRESS_ID&quot;: 11, &quot;FIPS&quot;: &quot;37021&quot;, &quot;FIPSNO&quot;: 37021, &quot;NAME&quot;: &quot;Buncombe&quot;, &quot;NWBIR74&quot;: 930.0, &quot;NWBIR79&quot;: 1206.0, &quot;NWR74&quot;: 123.752495, &quot;NWR79&quot;: 121.132985, &quot;PERIMETER&quot;: 1.995, &quot;SID74&quot;: 9.0, &quot;SID79&quot;: 18.0, &quot;SIDR74&quot;: 1.197605, &quot;SIDR79&quot;: 1.807955}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.70896911621094, 35.24907684326172, -78.0653305053711, 35.81552505493164], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.53874206542969, 35.31511688232422], [-78.53946685791016, 35.336463928222656], [-78.60082244873047, 35.40303039550781], [-78.62317657470703, 35.446414947509766], [-78.6887435913086, 35.50752639770508], [-78.70896911621094, 35.514102935791016], [-78.70321655273438, 35.51993942260742], [-78.4776382446289, 35.695613861083984], [-78.25454711914062, 35.81552505493164], [-78.23404693603516, 35.745792388916016], [-78.2115478515625, 35.73819351196289], [-78.20561981201172, 35.72539520263672], [-78.18692779541016, 35.72511291503906], [-78.16180419921875, 35.709293365478516], [-78.16244506835938, 35.6829833984375], [-78.1249008178711, 35.59751892089844], [-78.0653305053711, 35.58203887939453], [-78.1459732055664, 35.428993225097656], [-78.15689086914062, 35.35063171386719], [-78.17745971679688, 35.339599609375], [-78.20903778076172, 35.339176177978516], [-78.23722839355469, 35.314632415771484], [-78.2681655883789, 35.317359924316406], [-78.31012725830078, 35.2802848815918], [-78.41667938232422, 35.24907684326172], [-78.49362182617188, 35.259620666503906], [-78.53874206542969, 35.31511688232422]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;53&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.207, &quot;BIR74&quot;: 3999.0, &quot;BIR79&quot;: 4780.0, &quot;CNTY_&quot;: 1989, &quot;CNTY_ID&quot;: 1989, &quot;CRESS_ID&quot;: 51, &quot;FIPS&quot;: &quot;37101&quot;, &quot;FIPSNO&quot;: 37101, &quot;NAME&quot;: &quot;Johnston&quot;, &quot;NWBIR74&quot;: 1165.0, &quot;NWBIR79&quot;: 1349.0, &quot;NWR74&quot;: 291.322831, &quot;NWR79&quot;: 282.217573, &quot;PERIMETER&quot;: 1.851, &quot;SID74&quot;: 6.0, &quot;SID79&quot;: 13.0, &quot;SIDR74&quot;: 1.500375, &quot;SIDR79&quot;: 2.719665}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.25912475585938, 35.290767669677734, -82.74388885498047, 35.79185104370117], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-82.74388885498047, 35.418033599853516], [-82.83323669433594, 35.31557083129883], [-82.91911315917969, 35.290767669677734], [-82.95362091064453, 35.308528900146484], [-82.98535919189453, 35.3563232421875], [-83.0385971069336, 35.389930725097656], [-83.0460433959961, 35.4069938659668], [-83.08771514892578, 35.446327209472656], [-83.12823486328125, 35.45661544799805], [-83.14237213134766, 35.48439407348633], [-83.181396484375, 35.51240921020508], [-83.15702056884766, 35.55166244506836], [-83.18037414550781, 35.582820892333984], [-83.1781005859375, 35.623291015625], [-83.19512939453125, 35.6378173828125], [-83.18429565429688, 35.66307830810547], [-83.21525573730469, 35.68539810180664], [-83.25912475585938, 35.691009521484375], [-83.25330352783203, 35.700706481933594], [-83.24385070800781, 35.71821594238281], [-83.18534851074219, 35.728885650634766], [-83.14366149902344, 35.7626838684082], [-83.1181869506836, 35.76380920410156], [-83.0599594116211, 35.78257751464844], [-82.98700714111328, 35.773990631103516], [-82.96275329589844, 35.79185104370117], [-82.94304656982422, 35.76646423339844], [-82.95218658447266, 35.73899841308594], [-82.90753936767578, 35.727848052978516], [-82.88111114501953, 35.673561096191406], [-82.86552429199219, 35.63580322265625], [-82.84486389160156, 35.6131477355957], [-82.82310485839844, 35.62138748168945], [-82.81333923339844, 35.61753463745117], [-82.77203369140625, 35.571292877197266], [-82.7706298828125, 35.53273391723633], [-82.79472351074219, 35.464969635009766], [-82.7808837890625, 35.441688537597656], [-82.74388885498047, 35.418033599853516]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;54&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.144, &quot;BIR74&quot;: 2110.0, &quot;BIR79&quot;: 2463.0, &quot;CNTY_&quot;: 1996, &quot;CNTY_ID&quot;: 1996, &quot;CRESS_ID&quot;: 44, &quot;FIPS&quot;: &quot;37087&quot;, &quot;FIPSNO&quot;: 37087, &quot;NAME&quot;: &quot;Haywood&quot;, &quot;NWBIR74&quot;: 57.0, &quot;NWBIR79&quot;: 62.0, &quot;NWR74&quot;: 27.014218, &quot;NWR79&quot;: 25.172554, &quot;PERIMETER&quot;: 1.69, &quot;SID74&quot;: 2.0, &quot;SID79&quot;: 8.0, &quot;SIDR74&quot;: 0.947867, &quot;SIDR79&quot;: 3.248071}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.02120971679688, 35.18982696533203, -75.45697784423828, 36.22925567626953], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-75.78317260742188, 36.22519302368164], [-75.77315521240234, 36.22925567626953], [-75.54496765136719, 35.788360595703125], [-75.7027359008789, 36.049861907958984], [-75.7408676147461, 36.050323486328125], [-75.78317260742188, 36.22519302368164]]], [[[-75.89149475097656, 35.63126754760742], [-75.90802764892578, 35.6656379699707], [-76.02120971679688, 35.66909408569336], [-75.98785400390625, 35.89270782470703], [-75.81805419921875, 35.923519134521484], [-75.74896240234375, 35.86933898925781], [-75.7293701171875, 35.6651725769043], [-75.779052734375, 35.57868576049805], [-75.89149475097656, 35.63126754760742]]], [[[-75.49121856689453, 35.67049789428711], [-75.53362274169922, 35.768856048583984], [-75.45697784423828, 35.61739730834961], [-75.52629852294922, 35.2279167175293], [-75.7492904663086, 35.18982696533203], [-75.69156646728516, 35.234989166259766], [-75.521484375, 35.28135681152344], [-75.47541809082031, 35.56449508666992], [-75.49121856689453, 35.67049789428711]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;55&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.094, &quot;BIR74&quot;: 521.0, &quot;BIR79&quot;: 1059.0, &quot;CNTY_&quot;: 2000, &quot;CNTY_ID&quot;: 2000, &quot;CRESS_ID&quot;: 28, &quot;FIPS&quot;: &quot;37055&quot;, &quot;FIPSNO&quot;: 37055, &quot;NAME&quot;: &quot;Dare&quot;, &quot;NWBIR74&quot;: 43.0, &quot;NWBIR79&quot;: 73.0, &quot;NWR74&quot;: 82.533589, &quot;NWR79&quot;: 68.932956, &quot;PERIMETER&quot;: 3.64, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 0.944287}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.19551849365234, 35.217166900634766, -76.49253845214844, 35.736778259277344], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-77.10376739501953, 35.55018615722656], [-77.11939239501953, 35.58549880981445], [-77.14834594726562, 35.59800338745117], [-77.15205383300781, 35.6198844909668], [-77.1746826171875, 35.63541030883789], [-77.18721008300781, 35.664306640625], [-77.1754379272461, 35.67628479003906], [-77.19551849365234, 35.699913024902344], [-77.1922378540039, 35.712093353271484], [-77.17742156982422, 35.71446228027344], [-77.17845916748047, 35.73219299316406], [-77.16128540039062, 35.736778259277344], [-76.97991180419922, 35.65012741088867], [-76.83831024169922, 35.7054557800293], [-76.63381958007812, 35.7030029296875], [-76.60891723632812, 35.664154052734375], [-76.60794830322266, 35.635066986083984], [-76.58587646484375, 35.60945510864258], [-76.53959655761719, 35.59403610229492], [-76.5189437866211, 35.57764434814453], [-76.49253845214844, 35.541786193847656], [-76.63819885253906, 35.52033615112305], [-76.62876892089844, 35.437896728515625], [-76.70537567138672, 35.41193389892578], [-77.10376739501953, 35.55018615722656]]], [[[-76.61451721191406, 35.272918701171875], [-76.64021301269531, 35.237247467041016], [-76.85057067871094, 35.217166900634766], [-76.8976058959961, 35.25157165527344], [-77.19496154785156, 35.42295455932617], [-77.17221069335938, 35.51912307739258], [-77.14739990234375, 35.54758834838867], [-77.10376739501953, 35.55018615722656], [-76.98318481445312, 35.436500549316406], [-76.69490051269531, 35.350425720214844], [-76.61451721191406, 35.272918701171875]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;56&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.203, &quot;BIR74&quot;: 2692.0, &quot;BIR79&quot;: 2909.0, &quot;CNTY_&quot;: 2004, &quot;CNTY_ID&quot;: 2004, &quot;CRESS_ID&quot;: 7, &quot;FIPS&quot;: &quot;37013&quot;, &quot;FIPSNO&quot;: 37013, &quot;NAME&quot;: &quot;Beaufort&quot;, &quot;NWBIR74&quot;: 1131.0, &quot;NWBIR79&quot;: 1163.0, &quot;NWR74&quot;: 420.13373, &quot;NWR79&quot;: 399.793744, &quot;PERIMETER&quot;: 3.197, &quot;SID74&quot;: 7.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 2.600297, &quot;SIDR79&quot;: 1.375043}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.95470428466797, 35.272220611572266, -83.15702056884766, 35.691009521484375], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-83.33181762695312, 35.31934356689453], [-83.4246826171875, 35.3153190612793], [-83.47322845458984, 35.29164505004883], [-83.67919158935547, 35.272220611572266], [-83.6900863647461, 35.28778076171875], [-83.68938446044922, 35.30824279785156], [-83.63421630859375, 35.33403396606445], [-83.59888458251953, 35.36236572265625], [-83.58038330078125, 35.401084899902344], [-83.58671569824219, 35.42768859863281], [-83.63232421875, 35.43674087524414], [-83.65361022949219, 35.42109680175781], [-83.74495697021484, 35.441402435302734], [-83.85498809814453, 35.45012664794922], [-83.87989044189453, 35.46202850341797], [-83.9300765991211, 35.44901657104492], [-83.95470428466797, 35.45545959472656], [-83.9100112915039, 35.476478576660156], [-83.8812255859375, 35.51058578491211], [-83.8302001953125, 35.51906204223633], [-83.77587890625, 35.55260467529297], [-83.6728744506836, 35.564971923828125], [-83.61386108398438, 35.571739196777344], [-83.56103515625, 35.55517578125], [-83.50579833984375, 35.55955123901367], [-83.45829010009766, 35.5972785949707], [-83.38709259033203, 35.62521743774414], [-83.34302520751953, 35.65325927734375], [-83.29841613769531, 35.65632629394531], [-83.25912475585938, 35.691009521484375], [-83.21525573730469, 35.68539810180664], [-83.18429565429688, 35.66307830810547], [-83.19512939453125, 35.6378173828125], [-83.1781005859375, 35.623291015625], [-83.18037414550781, 35.582820892333984], [-83.15702056884766, 35.55166244506836], [-83.181396484375, 35.51240921020508], [-83.2266616821289, 35.51345443725586], [-83.24730682373047, 35.506988525390625], [-83.30986022949219, 35.46347427368164], [-83.35302734375, 35.45589828491211], [-83.36471557617188, 35.413330078125], [-83.3298110961914, 35.36391067504883], [-83.33181762695312, 35.31934356689453]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;57&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.141, &quot;BIR74&quot;: 675.0, &quot;BIR79&quot;: 883.0, &quot;CNTY_&quot;: 2013, &quot;CNTY_ID&quot;: 2013, &quot;CRESS_ID&quot;: 87, &quot;FIPS&quot;: &quot;37173&quot;, &quot;FIPSNO&quot;: 37173, &quot;NAME&quot;: &quot;Swain&quot;, &quot;NWBIR74&quot;: 281.0, &quot;NWBIR79&quot;: 406.0, &quot;NWR74&quot;: 416.296296, &quot;NWR79&quot;: 459.796149, &quot;PERIMETER&quot;: 2.316, &quot;SID74&quot;: 3.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 4.444444, &quot;SIDR79&quot;: 2.265006}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.83058166503906, 35.33967208862305, -77.47388458251953, 35.65399932861328], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.80518341064453, 35.36458969116211], [-77.80410766601562, 35.401798248291016], [-77.83058166503906, 35.42362594604492], [-77.8262939453125, 35.574256896972656], [-77.69832611083984, 35.65399932861328], [-77.6341323852539, 35.587825775146484], [-77.56464385986328, 35.53194046020508], [-77.54957580566406, 35.525726318359375], [-77.52342987060547, 35.53017807006836], [-77.52104949951172, 35.51650619506836], [-77.50393676757812, 35.50389099121094], [-77.50456237792969, 35.484832763671875], [-77.47388458251953, 35.42152786254883], [-77.49467468261719, 35.40744400024414], [-77.53497314453125, 35.417823791503906], [-77.53717803955078, 35.401981353759766], [-77.55872344970703, 35.38108825683594], [-77.6218032836914, 35.366485595703125], [-77.66605377197266, 35.33967208862305], [-77.6844711303711, 35.34593963623047], [-77.69841766357422, 35.36981964111328], [-77.76069641113281, 35.3619384765625], [-77.80518341064453, 35.36458969116211]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;58&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.07, &quot;BIR74&quot;: 870.0, &quot;BIR79&quot;: 1178.0, &quot;CNTY_&quot;: 2016, &quot;CNTY_ID&quot;: 2016, &quot;CRESS_ID&quot;: 40, &quot;FIPS&quot;: &quot;37079&quot;, &quot;FIPSNO&quot;: 37079, &quot;NAME&quot;: &quot;Greene&quot;, &quot;NWBIR74&quot;: 534.0, &quot;NWBIR79&quot;: 664.0, &quot;NWR74&quot;: 613.793103, &quot;NWR79&quot;: 563.667233, &quot;PERIMETER&quot;: 1.105, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 4.597701, &quot;SIDR79&quot;: 3.395586}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.36248779296875, 35.30453872680664, -78.9744873046875, 35.62461471557617], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.18244171142578, 35.30453872680664], [-79.26432037353516, 35.34457015991211], [-79.28472900390625, 35.39280700683594], [-79.3031997680664, 35.40880584716797], [-79.3245849609375, 35.41482925415039], [-79.33109283447266, 35.444820404052734], [-79.36248779296875, 35.47041320800781], [-79.34367370605469, 35.491641998291016], [-79.34294891357422, 35.5102424621582], [-79.33155059814453, 35.52198028564453], [-79.31285858154297, 35.5268669128418], [-79.31501007080078, 35.53913116455078], [-79.30536651611328, 35.54270553588867], [-79.2861328125, 35.54440689086914], [-79.27609252929688, 35.530277252197266], [-79.22713470458984, 35.565364837646484], [-79.22050476074219, 35.55080032348633], [-79.20973205566406, 35.55345153808594], [-79.19424438476562, 35.575130462646484], [-79.13260650634766, 35.62461471557617], [-79.06729125976562, 35.59870529174805], [-79.03849792480469, 35.549461364746094], [-78.9744873046875, 35.517154693603516], [-79.18244171142578, 35.30453872680664]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;59&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.065, &quot;BIR74&quot;: 2252.0, &quot;BIR79&quot;: 2949.0, &quot;CNTY_&quot;: 2026, &quot;CNTY_ID&quot;: 2026, &quot;CRESS_ID&quot;: 53, &quot;FIPS&quot;: &quot;37105&quot;, &quot;FIPSNO&quot;: 37105, &quot;NAME&quot;: &quot;Lee&quot;, &quot;NWBIR74&quot;: 736.0, &quot;NWBIR79&quot;: 905.0, &quot;NWR74&quot;: 326.820604, &quot;NWR79&quot;: 306.883689, &quot;PERIMETER&quot;: 1.093, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 6.0, &quot;SIDR74&quot;: 2.220249, &quot;SIDR79&quot;: 2.034588}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.27872467041016, 35.182472229003906, -81.68431854248047, 35.60171127319336], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.97144317626953, 35.18828201293945], [-81.96451568603516, 35.2474250793457], [-82.05158233642578, 35.32312774658203], [-82.08415222167969, 35.33935546875], [-82.1221694946289, 35.38861846923828], [-82.1551284790039, 35.39710235595703], [-82.2582778930664, 35.39335632324219], [-82.27872467041016, 35.43564224243164], [-82.2746810913086, 35.45160675048828], [-82.25810241699219, 35.46372985839844], [-82.24015808105469, 35.46815490722656], [-82.22760009765625, 35.4829216003418], [-82.22290802001953, 35.51569366455078], [-82.17070770263672, 35.528465270996094], [-82.11675262451172, 35.519004821777344], [-82.03618621826172, 35.528587341308594], [-82.00160217285156, 35.54597473144531], [-81.96704864501953, 35.52158737182617], [-81.86215209960938, 35.530548095703125], [-81.84027099609375, 35.5372428894043], [-81.83189392089844, 35.5650634765625], [-81.8162841796875, 35.574378967285156], [-81.76560974121094, 35.584224700927734], [-81.7496109008789, 35.60171127319336], [-81.70082092285156, 35.595611572265625], [-81.69519805908203, 35.57163619995117], [-81.68431854248047, 35.56543731689453], [-81.69768524169922, 35.35326385498047], [-81.73716735839844, 35.254173278808594], [-81.75949096679688, 35.220699310302734], [-81.7653579711914, 35.182472229003906], [-81.87059020996094, 35.1831169128418], [-81.97144317626953, 35.18828201293945]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;60&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.146, &quot;BIR74&quot;: 2992.0, &quot;BIR79&quot;: 3543.0, &quot;CNTY_&quot;: 2027, &quot;CNTY_ID&quot;: 2027, &quot;CRESS_ID&quot;: 81, &quot;FIPS&quot;: &quot;37161&quot;, &quot;FIPSNO&quot;: 37161, &quot;NAME&quot;: &quot;Rutherford&quot;, &quot;NWBIR74&quot;: 495.0, &quot;NWBIR79&quot;: 576.0, &quot;NWR74&quot;: 165.441176, &quot;NWR79&quot;: 162.57409, &quot;PERIMETER&quot;: 1.778, &quot;SID74&quot;: 12.0, &quot;SID79&quot;: 8.0, &quot;SIDR74&quot;: 4.010695, &quot;SIDR79&quot;: 2.257973}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.31012725830078, 35.14418029785156, -77.80410766601562, 35.594669342041016], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.16319274902344, 35.182289123535156], [-78.16517639160156, 35.19321823120117], [-78.25740051269531, 35.220951080322266], [-78.31012725830078, 35.2802848815918], [-78.2681655883789, 35.317359924316406], [-78.23722839355469, 35.314632415771484], [-78.20903778076172, 35.339176177978516], [-78.17745971679688, 35.339599609375], [-78.15689086914062, 35.35063171386719], [-78.1459732055664, 35.428993225097656], [-78.0653305053711, 35.58203887939453], [-78.06048583984375, 35.594669342041016], [-78.00213623046875, 35.57599639892578], [-77.82717895507812, 35.58290100097656], [-77.8262939453125, 35.574256896972656], [-77.83058166503906, 35.42362594604492], [-77.80410766601562, 35.401798248291016], [-77.80518341064453, 35.36458969116211], [-77.83006286621094, 35.342350006103516], [-77.83657836914062, 35.1717414855957], [-77.8876724243164, 35.154964447021484], [-77.89415740966797, 35.14418029785156], [-77.91397857666016, 35.15997314453125], [-77.94469451904297, 35.16823196411133], [-77.96392822265625, 35.164024353027344], [-78.00215911865234, 35.18647766113281], [-78.03650665283203, 35.185691833496094], [-78.08753204345703, 35.17018508911133], [-78.16319274902344, 35.182289123535156]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;61&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.142, &quot;BIR74&quot;: 6638.0, &quot;BIR79&quot;: 8227.0, &quot;CNTY_&quot;: 2029, &quot;CNTY_ID&quot;: 2029, &quot;CRESS_ID&quot;: 96, &quot;FIPS&quot;: &quot;37191&quot;, &quot;FIPSNO&quot;: 37191, &quot;NAME&quot;: &quot;Wayne&quot;, &quot;NWBIR74&quot;: 2593.0, &quot;NWBIR79&quot;: 3073.0, &quot;NWR74&quot;: 390.629708, &quot;NWR79&quot;: 373.526194, &quot;PERIMETER&quot;: 1.655, &quot;SID74&quot;: 18.0, &quot;SID79&quot;: 23.0, &quot;SIDR74&quot;: 2.71166, &quot;SIDR79&quot;: 2.795673}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.2166519165039, 35.189964294433594, -78.53874206542969, 35.578857421875], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.61273956298828, 35.243831634521484], [-78.716064453125, 35.259979248046875], [-78.81238555908203, 35.25872039794922], [-78.87457275390625, 35.24253463745117], [-78.88601684570312, 35.22993469238281], [-78.91258239746094, 35.22246551513672], [-79.09589385986328, 35.189964294433594], [-79.14683532714844, 35.213043212890625], [-79.16909790039062, 35.23590087890625], [-79.2166519165039, 35.26527786254883], [-79.18244171142578, 35.30453872680664], [-78.9744873046875, 35.517154693603516], [-78.92107391357422, 35.578857421875], [-78.70321655273438, 35.51993942260742], [-78.70896911621094, 35.514102935791016], [-78.6887435913086, 35.50752639770508], [-78.62317657470703, 35.446414947509766], [-78.60082244873047, 35.40303039550781], [-78.53946685791016, 35.336463928222656], [-78.53874206542969, 35.31511688232422], [-78.58041381835938, 35.28657531738281], [-78.61273956298828, 35.243831634521484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;62&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.154, &quot;BIR74&quot;: 3776.0, &quot;BIR79&quot;: 4789.0, &quot;CNTY_&quot;: 2030, &quot;CNTY_ID&quot;: 2030, &quot;CRESS_ID&quot;: 43, &quot;FIPS&quot;: &quot;37085&quot;, &quot;FIPSNO&quot;: 37085, &quot;NAME&quot;: &quot;Harnett&quot;, &quot;NWBIR74&quot;: 1051.0, &quot;NWBIR79&quot;: 1453.0, &quot;NWR74&quot;: 278.336864, &quot;NWR79&quot;: 303.403633, &quot;PERIMETER&quot;: 1.68, &quot;SID74&quot;: 6.0, &quot;SID79&quot;: 10.0, &quot;SIDR74&quot;: 1.588983, &quot;SIDR79&quot;: 2.088119}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.7653579711914, 35.1628532409668, -81.3114242553711, 35.56543731689453], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.32282257080078, 35.16375732421875], [-81.36217498779297, 35.1628532409668], [-81.7653579711914, 35.182472229003906], [-81.75949096679688, 35.220699310302734], [-81.73716735839844, 35.254173278808594], [-81.69768524169922, 35.35326385498047], [-81.68431854248047, 35.56543731689453], [-81.64390563964844, 35.55329895019531], [-81.5881118774414, 35.56177520751953], [-81.56253814697266, 35.5553092956543], [-81.52364349365234, 35.56126022338867], [-81.5069580078125, 35.5464973449707], [-81.5155029296875, 35.52142333984375], [-81.44507598876953, 35.413368225097656], [-81.40741729736328, 35.359806060791016], [-81.35326385498047, 35.327301025390625], [-81.36479949951172, 35.31037139892578], [-81.35234832763672, 35.27510452270508], [-81.31942749023438, 35.260498046875], [-81.3114242553711, 35.187950134277344], [-81.32282257080078, 35.16375732421875]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;63&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.118, &quot;BIR74&quot;: 4866.0, &quot;BIR79&quot;: 5526.0, &quot;CNTY_&quot;: 2032, &quot;CNTY_ID&quot;: 2032, &quot;CRESS_ID&quot;: 23, &quot;FIPS&quot;: &quot;37045&quot;, &quot;FIPSNO&quot;: 37045, &quot;NAME&quot;: &quot;Cleveland&quot;, &quot;NWBIR74&quot;: 1491.0, &quot;NWBIR79&quot;: 1729.0, &quot;NWR74&quot;: 306.411837, &quot;NWR79&quot;: 312.884546, &quot;PERIMETER&quot;: 1.506, &quot;SID74&quot;: 10.0, &quot;SID79&quot;: 21.0, &quot;SIDR74&quot;: 2.055076, &quot;SIDR79&quot;: 3.800217}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.52364349365234, 35.39745330810547, -80.94219970703125, 35.56126022338867], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.95677185058594, 35.39745330810547], [-81.44507598876953, 35.413368225097656], [-81.5155029296875, 35.52142333984375], [-81.5069580078125, 35.5464973449707], [-81.52364349365234, 35.56126022338867], [-80.96143341064453, 35.54356384277344], [-80.9510726928711, 35.52866744995117], [-80.9553451538086, 35.50912094116211], [-80.94219970703125, 35.45112991333008], [-80.95386505126953, 35.436058044433594], [-80.95677185058594, 35.39745330810547]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;64&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.078, &quot;BIR74&quot;: 2216.0, &quot;BIR79&quot;: 2817.0, &quot;CNTY_&quot;: 2034, &quot;CNTY_ID&quot;: 2034, &quot;CRESS_ID&quot;: 55, &quot;FIPS&quot;: &quot;37109&quot;, &quot;FIPSNO&quot;: 37109, &quot;NAME&quot;: &quot;Lincoln&quot;, &quot;NWBIR74&quot;: 302.0, &quot;NWBIR79&quot;: 350.0, &quot;NWR74&quot;: 136.281588, &quot;NWR79&quot;: 124.245651, &quot;PERIMETER&quot;: 1.384, &quot;SID74&quot;: 8.0, &quot;SID79&quot;: 7.0, &quot;SIDR74&quot;: 3.610108, &quot;SIDR79&quot;: 2.484913}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.36471557617188, 35.00027847290039, -82.91911315917969, 35.51345443725586], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-83.10628509521484, 35.00027847290039], [-83.1614990234375, 35.05922317504883], [-83.14505767822266, 35.08328628540039], [-83.14820098876953, 35.09138107299805], [-83.1771469116211, 35.11149597167969], [-83.1934814453125, 35.139217376708984], [-83.21793365478516, 35.158992767333984], [-83.22003936767578, 35.22252655029297], [-83.23278045654297, 35.23080825805664], [-83.2639389038086, 35.221771240234375], [-83.28498077392578, 35.22663497924805], [-83.31063842773438, 35.259986877441406], [-83.33181762695312, 35.31934356689453], [-83.3298110961914, 35.36391067504883], [-83.36471557617188, 35.413330078125], [-83.35302734375, 35.45589828491211], [-83.30986022949219, 35.46347427368164], [-83.24730682373047, 35.506988525390625], [-83.2266616821289, 35.51345443725586], [-83.181396484375, 35.51240921020508], [-83.14237213134766, 35.48439407348633], [-83.12823486328125, 35.45661544799805], [-83.08771514892578, 35.446327209472656], [-83.0460433959961, 35.4069938659668], [-83.0385971069336, 35.389930725097656], [-82.98535919189453, 35.3563232421875], [-82.95362091064453, 35.308528900146484], [-82.91911315917969, 35.290767669677734], [-82.9268569946289, 35.2279052734375], [-82.97871398925781, 35.18572998046875], [-82.99058532714844, 35.15817642211914], [-82.9820785522461, 35.127506256103516], [-83.05208587646484, 35.0634765625], [-83.04385375976562, 35.040069580078125], [-83.00727844238281, 35.02420425415039], [-83.10628509521484, 35.00027847290039]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;65&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.125, &quot;BIR74&quot;: 1143.0, &quot;BIR79&quot;: 1504.0, &quot;CNTY_&quot;: 2039, &quot;CNTY_ID&quot;: 2039, &quot;CRESS_ID&quot;: 50, &quot;FIPS&quot;: &quot;37099&quot;, &quot;FIPSNO&quot;: 37099, &quot;NAME&quot;: &quot;Jackson&quot;, &quot;NWBIR74&quot;: 215.0, &quot;NWBIR79&quot;: 307.0, &quot;NWR74&quot;: 188.101487, &quot;NWR79&quot;: 204.12234, &quot;PERIMETER&quot;: 1.601, &quot;SID74&quot;: 2.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 1.749781, &quot;SIDR79&quot;: 3.324468}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.7649917602539, 35.037357330322266, -79.09589385986328, 35.5130500793457], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.60746765136719, 35.15918731689453], [-79.64837646484375, 35.18973159790039], [-79.70823669433594, 35.27841567993164], [-79.7649917602539, 35.50593566894531], [-79.55535888671875, 35.5130500793457], [-79.34294891357422, 35.5102424621582], [-79.34367370605469, 35.491641998291016], [-79.36248779296875, 35.47041320800781], [-79.33109283447266, 35.444820404052734], [-79.3245849609375, 35.41482925415039], [-79.3031997680664, 35.40880584716797], [-79.28472900390625, 35.39280700683594], [-79.26432037353516, 35.34457015991211], [-79.18244171142578, 35.30453872680664], [-79.2166519165039, 35.26527786254883], [-79.16909790039062, 35.23590087890625], [-79.14683532714844, 35.213043212890625], [-79.09589385986328, 35.189964294433594], [-79.09717559814453, 35.17680740356445], [-79.12200164794922, 35.17018508911133], [-79.14727783203125, 35.17354965209961], [-79.23529052734375, 35.203208923339844], [-79.35005187988281, 35.14079666137695], [-79.45536041259766, 35.037357330322266], [-79.49506378173828, 35.06250762939453], [-79.55290222167969, 35.06410598754883], [-79.5741958618164, 35.073265075683594], [-79.57563018798828, 35.11912536621094], [-79.60746765136719, 35.15918731689453]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;66&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.181, &quot;BIR74&quot;: 2648.0, &quot;BIR79&quot;: 3534.0, &quot;CNTY_&quot;: 2040, &quot;CNTY_ID&quot;: 2040, &quot;CRESS_ID&quot;: 63, &quot;FIPS&quot;: &quot;37125&quot;, &quot;FIPSNO&quot;: 37125, &quot;NAME&quot;: &quot;Moore&quot;, &quot;NWBIR74&quot;: 844.0, &quot;NWBIR79&quot;: 1151.0, &quot;NWR74&quot;: 318.731118, &quot;NWR79&quot;: 325.693265, &quot;PERIMETER&quot;: 1.98, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 1.888218, &quot;SIDR79&quot;: 1.414827}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.0655517578125, 35.002017974853516, -80.53964233398438, 35.50912094116211], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.04930114746094, 35.15153121948242], [-81.02396392822266, 35.14903259277344], [-81.00727844238281, 35.16324996948242], [-81.00151824951172, 35.195987701416016], [-81.01405334472656, 35.249900817871094], [-80.97964477539062, 35.33326721191406], [-80.92627716064453, 35.34867477416992], [-80.93775939941406, 35.364925384521484], [-80.98292541503906, 35.36909484863281], [-80.95677185058594, 35.39745330810547], [-80.95386505126953, 35.436058044433594], [-80.94219970703125, 35.45112991333008], [-80.9553451538086, 35.50912094116211], [-80.77622985839844, 35.50680923461914], [-80.77538299560547, 35.47957229614258], [-80.76168823242188, 35.46513748168945], [-80.74543762207031, 35.419857025146484], [-80.76274108886719, 35.40068054199219], [-80.68998718261719, 35.34075927734375], [-80.6594467163086, 35.26467514038086], [-80.53964233398438, 35.20581817626953], [-80.75968170166016, 35.03662109375], [-80.7972183227539, 35.0281982421875], [-80.84016418457031, 35.002017974853516], [-80.89471435546875, 35.05973434448242], [-80.92779541015625, 35.10124969482422], [-81.03988647460938, 35.037200927734375], [-81.0655517578125, 35.06648254394531], [-81.0284423828125, 35.10540771484375], [-81.04904174804688, 35.13201141357422], [-81.04930114746094, 35.15153121948242]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;67&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.143, &quot;BIR74&quot;: 21588.0, &quot;BIR79&quot;: 30757.0, &quot;CNTY_&quot;: 2041, &quot;CNTY_ID&quot;: 2041, &quot;CRESS_ID&quot;: 60, &quot;FIPS&quot;: &quot;37119&quot;, &quot;FIPSNO&quot;: 37119, &quot;NAME&quot;: &quot;Mecklenburg&quot;, &quot;NWBIR74&quot;: 8027.0, &quot;NWBIR79&quot;: 11631.0, &quot;NWR74&quot;: 371.826941, &quot;NWR79&quot;: 378.157818, &quot;PERIMETER&quot;: 1.887, &quot;SID74&quot;: 44.0, &quot;SID79&quot;: 35.0, &quot;SIDR74&quot;: 2.038169, &quot;SIDR79&quot;: 1.137952}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.77622985839844, 35.186912536621094, -80.2982406616211, 35.507568359375], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.50294494628906, 35.186912536621094], [-80.53964233398438, 35.20581817626953], [-80.6594467163086, 35.26467514038086], [-80.68998718261719, 35.34075927734375], [-80.76274108886719, 35.40068054199219], [-80.74543762207031, 35.419857025146484], [-80.76168823242188, 35.46513748168945], [-80.77538299560547, 35.47957229614258], [-80.77622985839844, 35.50680923461914], [-80.72651672363281, 35.507568359375], [-80.2982406616211, 35.49489974975586], [-80.37847137451172, 35.38483810424805], [-80.48171997070312, 35.210609436035156], [-80.50294494628906, 35.186912536621094]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;68&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.091, &quot;BIR74&quot;: 4099.0, &quot;BIR79&quot;: 5669.0, &quot;CNTY_&quot;: 2042, &quot;CNTY_ID&quot;: 2042, &quot;CRESS_ID&quot;: 13, &quot;FIPS&quot;: &quot;37025&quot;, &quot;FIPSNO&quot;: 37025, &quot;NAME&quot;: &quot;Cabarrus&quot;, &quot;NWBIR74&quot;: 856.0, &quot;NWBIR79&quot;: 1203.0, &quot;NWR74&quot;: 208.831422, &quot;NWR79&quot;: 212.206738, &quot;PERIMETER&quot;: 1.321, &quot;SID74&quot;: 3.0, &quot;SID79&quot;: 20.0, &quot;SIDR74&quot;: 0.731886, &quot;SIDR79&quot;: 3.527959}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.1819076538086, 35.13658142089844, -79.60746765136719, 35.50593566894531], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.0714111328125, 35.15074157714844], [-80.05906677246094, 35.17707824707031], [-80.06584167480469, 35.207942962646484], [-80.09234619140625, 35.25422668457031], [-80.09351348876953, 35.291446685791016], [-80.05075073242188, 35.366371154785156], [-80.05188751220703, 35.376808166503906], [-80.1163101196289, 35.464359283447266], [-80.16207122802734, 35.4747428894043], [-80.1819076538086, 35.50511932373047], [-80.06440734863281, 35.505699157714844], [-79.7649917602539, 35.50593566894531], [-79.70823669433594, 35.27841567993164], [-79.64837646484375, 35.18973159790039], [-79.60746765136719, 35.15918731689453], [-79.63729858398438, 35.15383529663086], [-79.69795227050781, 35.173072814941406], [-79.75984191894531, 35.16731262207031], [-79.83631896972656, 35.17380142211914], [-79.90946197509766, 35.15571975708008], [-79.97582244873047, 35.1507568359375], [-80.01068115234375, 35.137142181396484], [-80.06517791748047, 35.13658142089844], [-80.0714111328125, 35.15074157714844]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;69&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.13, &quot;BIR74&quot;: 1258.0, &quot;BIR79&quot;: 1598.0, &quot;CNTY_&quot;: 2044, &quot;CNTY_ID&quot;: 2044, &quot;CRESS_ID&quot;: 62, &quot;FIPS&quot;: &quot;37123&quot;, &quot;FIPSNO&quot;: 37123, &quot;NAME&quot;: &quot;Montgomery&quot;, &quot;NWBIR74&quot;: 472.0, &quot;NWBIR79&quot;: 588.0, &quot;NWR74&quot;: 375.198728, &quot;NWR79&quot;: 367.95995, &quot;PERIMETER&quot;: 1.732, &quot;SID74&quot;: 3.0, &quot;SID79&quot;: 8.0, &quot;SIDR74&quot;: 2.384738, &quot;SIDR79&quot;: 5.006258}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.50294494628906, 35.14973068237305, -80.05075073242188, 35.50511932373047], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.0714111328125, 35.15074157714844], [-80.11027526855469, 35.1938362121582], [-80.1316146850586, 35.17111587524414], [-80.1546859741211, 35.176082611083984], [-80.15914154052734, 35.15473937988281], [-80.16812896728516, 35.14973068237305], [-80.19010162353516, 35.1678581237793], [-80.21988677978516, 35.159183502197266], [-80.24758911132812, 35.204524993896484], [-80.26109313964844, 35.20404052734375], [-80.2751235961914, 35.193111419677734], [-80.32567596435547, 35.17391586303711], [-80.34872436523438, 35.17067337036133], [-80.3729476928711, 35.17786407470703], [-80.39875030517578, 35.16461181640625], [-80.42858123779297, 35.16859436035156], [-80.45328521728516, 35.16078567504883], [-80.48323059082031, 35.18291091918945], [-80.50294494628906, 35.186912536621094], [-80.48171997070312, 35.210609436035156], [-80.37847137451172, 35.38483810424805], [-80.2982406616211, 35.49489974975586], [-80.1819076538086, 35.50511932373047], [-80.16207122802734, 35.4747428894043], [-80.1163101196289, 35.464359283447266], [-80.05188751220703, 35.376808166503906], [-80.05075073242188, 35.366371154785156], [-80.09351348876953, 35.291446685791016], [-80.09234619140625, 35.25422668457031], [-80.06584167480469, 35.207942962646484], [-80.05906677246094, 35.17707824707031], [-80.0714111328125, 35.15074157714844]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;70&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.103, &quot;BIR74&quot;: 2356.0, &quot;BIR79&quot;: 3039.0, &quot;CNTY_&quot;: 2045, &quot;CNTY_ID&quot;: 2045, &quot;CRESS_ID&quot;: 84, &quot;FIPS&quot;: &quot;37167&quot;, &quot;FIPSNO&quot;: 37167, &quot;NAME&quot;: &quot;Stanly&quot;, &quot;NWBIR74&quot;: 370.0, &quot;NWBIR79&quot;: 528.0, &quot;NWR74&quot;: 157.04584, &quot;NWR79&quot;: 173.741362, &quot;PERIMETER&quot;: 1.461, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 7.0, &quot;SIDR74&quot;: 2.122241, &quot;SIDR79&quot;: 2.303389}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.74388885498047, 35.14949035644531, -82.25810241699219, 35.49515914916992], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-82.57003021240234, 35.14949035644531], [-82.58922576904297, 35.1849479675293], [-82.59623718261719, 35.24246597290039], [-82.61061096191406, 35.267578125], [-82.60810089111328, 35.29306411743164], [-82.74388885498047, 35.418033599853516], [-82.71415710449219, 35.439151763916016], [-82.66898345947266, 35.45516586303711], [-82.61868286132812, 35.43767547607422], [-82.56393432617188, 35.43842315673828], [-82.55113220214844, 35.42689514160156], [-82.52690124511719, 35.428321838378906], [-82.51951599121094, 35.44391632080078], [-82.47492218017578, 35.44440460205078], [-82.40906524658203, 35.46892166137695], [-82.37368774414062, 35.45737838745117], [-82.36483764648438, 35.46345901489258], [-82.37096405029297, 35.4787712097168], [-82.3228759765625, 35.49515914916992], [-82.25810241699219, 35.46372985839844], [-82.2746810913086, 35.45160675048828], [-82.27872467041016, 35.43564224243164], [-82.2582778930664, 35.39335632324219], [-82.31555938720703, 35.30961608886719], [-82.34130859375, 35.28549575805664], [-82.34508514404297, 35.24319076538086], [-82.3580322265625, 35.2429313659668], [-82.35086059570312, 35.19267272949219], [-82.36012268066406, 35.18294906616211], [-82.37137603759766, 35.18272399902344], [-82.38961029052734, 35.2082405090332], [-82.43791961669922, 35.169559478759766], [-82.46674346923828, 35.173500061035156], [-82.5246353149414, 35.15456008911133], [-82.57003021240234, 35.14949035644531]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;71&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.095, &quot;BIR74&quot;: 2574.0, &quot;BIR79&quot;: 3679.0, &quot;CNTY_&quot;: 2047, &quot;CNTY_ID&quot;: 2047, &quot;CRESS_ID&quot;: 45, &quot;FIPS&quot;: &quot;37089&quot;, &quot;FIPSNO&quot;: 37089, &quot;NAME&quot;: &quot;Henderson&quot;, &quot;NWBIR74&quot;: 158.0, &quot;NWBIR79&quot;: 264.0, &quot;NWR74&quot;: 61.383061, &quot;NWR79&quot;: 71.75863, &quot;PERIMETER&quot;: 1.471, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 8.0, &quot;SIDR74&quot;: 1.942502, &quot;SIDR79&quot;: 2.174504}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-84.0308609008789, 35.21538162231445, -83.58038330078125, 35.46202850341797], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-83.69563293457031, 35.25080871582031], [-83.7535629272461, 35.23716735839844], [-83.79187774658203, 35.248661041259766], [-83.83686065673828, 35.24674987792969], [-83.9216537475586, 35.21896743774414], [-83.96089935302734, 35.21538162231445], [-83.99220275878906, 35.23250198364258], [-84.00389099121094, 35.262088775634766], [-84.0308609008789, 35.29252243041992], [-84.02920532226562, 35.32529067993164], [-84.00630950927734, 35.372859954833984], [-84.01264953613281, 35.407623291015625], [-83.95470428466797, 35.45545959472656], [-83.9300765991211, 35.44901657104492], [-83.87989044189453, 35.46202850341797], [-83.85498809814453, 35.45012664794922], [-83.74495697021484, 35.441402435302734], [-83.65361022949219, 35.42109680175781], [-83.63232421875, 35.43674087524414], [-83.58671569824219, 35.42768859863281], [-83.58038330078125, 35.401084899902344], [-83.59888458251953, 35.36236572265625], [-83.63421630859375, 35.33403396606445], [-83.68938446044922, 35.30824279785156], [-83.6900863647461, 35.28778076171875], [-83.67919158935547, 35.272220611572266], [-83.69563293457031, 35.25080871582031]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;72&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.078, &quot;BIR74&quot;: 415.0, &quot;BIR79&quot;: 488.0, &quot;CNTY_&quot;: 2056, &quot;CNTY_ID&quot;: 2056, &quot;CRESS_ID&quot;: 38, &quot;FIPS&quot;: &quot;37075&quot;, &quot;FIPSNO&quot;: 37075, &quot;NAME&quot;: &quot;Graham&quot;, &quot;NWBIR74&quot;: 40.0, &quot;NWBIR79&quot;: 45.0, &quot;NWR74&quot;: 96.385542, &quot;NWR79&quot;: 92.213115, &quot;PERIMETER&quot;: 1.202, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 2.04918}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.83657836914062, 35.00083541870117, -77.38616180419922, 35.42152786254883], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.83657836914062, 35.1717414855957], [-77.83006286621094, 35.342350006103516], [-77.80518341064453, 35.36458969116211], [-77.76069641113281, 35.3619384765625], [-77.69841766357422, 35.36981964111328], [-77.6844711303711, 35.34593963623047], [-77.66605377197266, 35.33967208862305], [-77.6218032836914, 35.366485595703125], [-77.55872344970703, 35.38108825683594], [-77.53717803955078, 35.401981353759766], [-77.53497314453125, 35.417823791503906], [-77.49467468261719, 35.40744400024414], [-77.47388458251953, 35.42152786254883], [-77.4439468383789, 35.35459518432617], [-77.4014892578125, 35.342769622802734], [-77.38616180419922, 35.329261779785156], [-77.41315460205078, 35.33121871948242], [-77.45021057128906, 35.302059173583984], [-77.4485092163086, 35.285675048828125], [-77.42964935302734, 35.25983810424805], [-77.4740982055664, 35.22719192504883], [-77.52831268310547, 35.23969650268555], [-77.51077270507812, 35.15576934814453], [-77.5330581665039, 35.14488220214844], [-77.59949493408203, 35.07086944580078], [-77.73192596435547, 35.00083541870117], [-77.74478912353516, 35.002445220947266], [-77.75499725341797, 35.01808166503906], [-77.75160217285156, 35.09567642211914], [-77.7641372680664, 35.12861251831055], [-77.83657836914062, 35.1717414855957]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;73&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.104, &quot;BIR74&quot;: 3589.0, &quot;BIR79&quot;: 4225.0, &quot;CNTY_&quot;: 2065, &quot;CNTY_ID&quot;: 2065, &quot;CRESS_ID&quot;: 54, &quot;FIPS&quot;: &quot;37107&quot;, &quot;FIPSNO&quot;: 37107, &quot;NAME&quot;: &quot;Lenoir&quot;, &quot;NWBIR74&quot;: 1826.0, &quot;NWBIR79&quot;: 2047.0, &quot;NWR74&quot;: 508.776818, &quot;NWR79&quot;: 484.497041, &quot;PERIMETER&quot;: 1.548, &quot;SID74&quot;: 10.0, &quot;SID79&quot;: 14.0, &quot;SIDR74&quot;: 2.786291, &quot;SIDR79&quot;: 3.313609}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.05208587646484, 35.02420425415039, -82.57003021240234, 35.418033599853516], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-82.8876953125, 35.05537033081055], [-83.00727844238281, 35.02420425415039], [-83.04385375976562, 35.040069580078125], [-83.05208587646484, 35.0634765625], [-82.9820785522461, 35.127506256103516], [-82.99058532714844, 35.15817642211914], [-82.97871398925781, 35.18572998046875], [-82.9268569946289, 35.2279052734375], [-82.91911315917969, 35.290767669677734], [-82.83323669433594, 35.31557083129883], [-82.74388885498047, 35.418033599853516], [-82.60810089111328, 35.29306411743164], [-82.61061096191406, 35.267578125], [-82.59623718261719, 35.24246597290039], [-82.58922576904297, 35.1849479675293], [-82.57003021240234, 35.14949035644531], [-82.65449523925781, 35.11945724487305], [-82.68605041503906, 35.121463775634766], [-82.68803405761719, 35.097801208496094], [-82.69735717773438, 35.09123229980469], [-82.77134704589844, 35.08542251586914], [-82.8876953125, 35.05537033081055]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;74&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.098, &quot;BIR74&quot;: 1173.0, &quot;BIR79&quot;: 1401.0, &quot;CNTY_&quot;: 2067, &quot;CNTY_ID&quot;: 2067, &quot;CRESS_ID&quot;: 88, &quot;FIPS&quot;: &quot;37175&quot;, &quot;FIPSNO&quot;: 37175, &quot;NAME&quot;: &quot;Transylvania&quot;, &quot;NWBIR74&quot;: 92.0, &quot;NWBIR79&quot;: 104.0, &quot;NWR74&quot;: 78.431373, &quot;NWR79&quot;: 74.232691, &quot;PERIMETER&quot;: 1.389, &quot;SID74&quot;: 3.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 2.557545, &quot;SIDR79&quot;: 2.855103}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.44507598876953, 35.14903259277344, -80.92627716064453, 35.413368225097656], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.32282257080078, 35.16375732421875], [-81.3114242553711, 35.187950134277344], [-81.31942749023438, 35.260498046875], [-81.35234832763672, 35.27510452270508], [-81.36479949951172, 35.31037139892578], [-81.35326385498047, 35.327301025390625], [-81.40741729736328, 35.359806060791016], [-81.44507598876953, 35.413368225097656], [-80.95677185058594, 35.39745330810547], [-80.98292541503906, 35.36909484863281], [-80.93775939941406, 35.364925384521484], [-80.92627716064453, 35.34867477416992], [-80.97964477539062, 35.33326721191406], [-81.01405334472656, 35.249900817871094], [-81.00151824951172, 35.195987701416016], [-81.00727844238281, 35.16324996948242], [-81.02396392822266, 35.14903259277344], [-81.04930114746094, 35.15153121948242], [-81.32282257080078, 35.16375732421875]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;75&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.091, &quot;BIR74&quot;: 9014.0, &quot;BIR79&quot;: 11455.0, &quot;CNTY_&quot;: 2068, &quot;CNTY_ID&quot;: 2068, &quot;CRESS_ID&quot;: 36, &quot;FIPS&quot;: &quot;37071&quot;, &quot;FIPSNO&quot;: 37071, &quot;NAME&quot;: &quot;Gaston&quot;, &quot;NWBIR74&quot;: 1523.0, &quot;NWBIR79&quot;: 2194.0, &quot;NWR74&quot;: 168.959396, &quot;NWR79&quot;: 191.532082, &quot;PERIMETER&quot;: 1.47, &quot;SID74&quot;: 11.0, &quot;SID79&quot;: 26.0, &quot;SIDR74&quot;: 1.220324, &quot;SIDR79&quot;: 2.269751}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.3580322265625, 35.18418884277344, -81.96451568603516, 35.39710235595703], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-82.21017456054688, 35.1931266784668], [-82.27832794189453, 35.19500732421875], [-82.32077026367188, 35.18418884277344], [-82.35086059570312, 35.19267272949219], [-82.3580322265625, 35.2429313659668], [-82.34508514404297, 35.24319076538086], [-82.34130859375, 35.28549575805664], [-82.31555938720703, 35.30961608886719], [-82.2582778930664, 35.39335632324219], [-82.1551284790039, 35.39710235595703], [-82.1221694946289, 35.38861846923828], [-82.08415222167969, 35.33935546875], [-82.05158233642578, 35.32312774658203], [-81.96451568603516, 35.2474250793457], [-81.97144317626953, 35.18828201293945], [-82.21017456054688, 35.1931266784668]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;76&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.06, &quot;BIR74&quot;: 533.0, &quot;BIR79&quot;: 673.0, &quot;CNTY_&quot;: 2071, &quot;CNTY_ID&quot;: 2071, &quot;CRESS_ID&quot;: 75, &quot;FIPS&quot;: &quot;37149&quot;, &quot;FIPSNO&quot;: 37149, &quot;NAME&quot;: &quot;Polk&quot;, &quot;NWBIR74&quot;: 95.0, &quot;NWBIR79&quot;: 79.0, &quot;NWR74&quot;: 178.236398, &quot;NWR79&quot;: 117.384844, &quot;PERIMETER&quot;: 1.036, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 1.876173, &quot;SIDR79&quot;: 0.0}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.7395248413086, 34.99202346801758, -83.10628509521484, 35.31934356689453], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-83.10628509521484, 35.00027847290039], [-83.51300811767578, 34.99202346801758], [-83.5272216796875, 35.019737243652344], [-83.55323791503906, 35.035762786865234], [-83.56204223632812, 35.05594253540039], [-83.64356231689453, 35.127498626708984], [-83.6448745727539, 35.14336013793945], [-83.71780395507812, 35.13880920410156], [-83.7395248413086, 35.14583969116211], [-83.71308135986328, 35.18075180053711], [-83.72232818603516, 35.19727325439453], [-83.69669342041016, 35.21443557739258], [-83.69563293457031, 35.25080871582031], [-83.67919158935547, 35.272220611572266], [-83.47322845458984, 35.29164505004883], [-83.4246826171875, 35.3153190612793], [-83.33181762695312, 35.31934356689453], [-83.31063842773438, 35.259986877441406], [-83.28498077392578, 35.22663497924805], [-83.2639389038086, 35.221771240234375], [-83.23278045654297, 35.23080825805664], [-83.22003936767578, 35.22252655029297], [-83.21793365478516, 35.158992767333984], [-83.1934814453125, 35.139217376708984], [-83.1771469116211, 35.11149597167969], [-83.14820098876953, 35.09138107299805], [-83.14505767822266, 35.08328628540039], [-83.1614990234375, 35.05922317504883], [-83.10628509521484, 35.00027847290039]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;77&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.131, &quot;BIR74&quot;: 797.0, &quot;BIR79&quot;: 1157.0, &quot;CNTY_&quot;: 2082, &quot;CNTY_ID&quot;: 2082, &quot;CRESS_ID&quot;: 57, &quot;FIPS&quot;: &quot;37113&quot;, &quot;FIPSNO&quot;: 37113, &quot;NAME&quot;: &quot;Macon&quot;, &quot;NWBIR74&quot;: 9.0, &quot;NWBIR79&quot;: 22.0, &quot;NWR74&quot;: 11.292346, &quot;NWR79&quot;: 19.014693, &quot;PERIMETER&quot;: 1.677, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 3.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 2.592913}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.66641235351562, 34.55375289916992, -78.11373901367188, 35.31511688232422], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.11376953125, 34.720985412597656], [-78.11373901367188, 34.699180603027344], [-78.1567611694336, 34.677154541015625], [-78.25680541992188, 34.55375289916992], [-78.27461242675781, 34.581275939941406], [-78.30590057373047, 34.6053581237793], [-78.31988525390625, 34.63009262084961], [-78.30970001220703, 34.6358528137207], [-78.32234191894531, 34.645572662353516], [-78.3388671875, 34.6826057434082], [-78.36381530761719, 34.69204330444336], [-78.38667297363281, 34.72188949584961], [-78.4010009765625, 34.75933074951172], [-78.4992904663086, 34.855106353759766], [-78.5419921875, 34.90787124633789], [-78.59347534179688, 34.9434700012207], [-78.6342544555664, 34.98436737060547], [-78.66641235351562, 35.071468353271484], [-78.65815734863281, 35.09362030029297], [-78.64563751220703, 35.10255813598633], [-78.63348388671875, 35.153724670410156], [-78.64522552490234, 35.189727783203125], [-78.6327133178711, 35.19729995727539], [-78.63528442382812, 35.21095275878906], [-78.61273956298828, 35.243831634521484], [-78.58041381835938, 35.28657531738281], [-78.53874206542969, 35.31511688232422], [-78.49362182617188, 35.259620666503906], [-78.41667938232422, 35.24907684326172], [-78.31012725830078, 35.2802848815918], [-78.25740051269531, 35.220951080322266], [-78.16517639160156, 35.19321823120117], [-78.16319274902344, 35.182289123535156], [-78.17028045654297, 35.09748458862305], [-78.15524291992188, 35.06819152832031], [-78.14298248291016, 34.90132522583008], [-78.19544982910156, 34.74362564086914], [-78.15609741210938, 34.728477478027344], [-78.13581848144531, 34.71134567260742], [-78.11376953125, 34.720985412597656]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;78&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.241, &quot;BIR74&quot;: 3025.0, &quot;BIR79&quot;: 3447.0, &quot;CNTY_&quot;: 2083, &quot;CNTY_ID&quot;: 2083, &quot;CRESS_ID&quot;: 82, &quot;FIPS&quot;: &quot;37163&quot;, &quot;FIPSNO&quot;: 37163, &quot;NAME&quot;: &quot;Sampson&quot;, &quot;NWBIR74&quot;: 1396.0, &quot;NWBIR79&quot;: 1524.0, &quot;NWR74&quot;: 461.487603, &quot;NWR79&quot;: 442.123586, &quot;PERIMETER&quot;: 2.214, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 1.322314, &quot;SIDR79&quot;: 1.160429}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.9898910522461, 34.98221969604492, -76.50712585449219, 35.31208038330078], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.94324493408203, 35.07003402709961], [-76.94422912597656, 35.09972381591797], [-76.9898910522461, 35.15404510498047], [-76.97233581542969, 35.15677261352539], [-76.96660614013672, 35.187965393066406], [-76.94743347167969, 35.21699142456055], [-76.8976058959961, 35.25157165527344], [-76.85057067871094, 35.217166900634766], [-76.64021301269531, 35.237247467041016], [-76.61451721191406, 35.272918701171875], [-76.5912094116211, 35.31208038330078], [-76.54097747802734, 35.303688049316406], [-76.50712585449219, 35.2487678527832], [-76.64009094238281, 35.17251968383789], [-76.605224609375, 35.1385612487793], [-76.62422180175781, 35.06435012817383], [-76.67800903320312, 35.024085998535156], [-76.8494644165039, 34.98221969604492], [-76.94149017333984, 35.027427673339844], [-76.94324493408203, 35.07003402709961]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;79&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.082, &quot;BIR74&quot;: 542.0, &quot;BIR79&quot;: 631.0, &quot;CNTY_&quot;: 2085, &quot;CNTY_ID&quot;: 2085, &quot;CRESS_ID&quot;: 69, &quot;FIPS&quot;: &quot;37137&quot;, &quot;FIPSNO&quot;: 37137, &quot;NAME&quot;: &quot;Pamlico&quot;, &quot;NWBIR74&quot;: 222.0, &quot;NWBIR79&quot;: 277.0, &quot;NWR74&quot;: 409.594096, &quot;NWR79&quot;: 438.985737, &quot;PERIMETER&quot;: 1.388, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 1.845018, &quot;SIDR79&quot;: 1.584786}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-84.3238525390625, 34.988224029541016, -83.69563293457031, 35.29252243041992], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-84.2910385131836, 35.21054458618164], [-84.22594451904297, 35.26160430908203], [-84.17972564697266, 35.240989685058594], [-84.10164642333984, 35.24555206298828], [-84.04277801513672, 35.27257537841797], [-84.0308609008789, 35.29252243041992], [-84.00389099121094, 35.262088775634766], [-83.99220275878906, 35.23250198364258], [-83.96089935302734, 35.21538162231445], [-83.9216537475586, 35.21896743774414], [-83.83686065673828, 35.24674987792969], [-83.79187774658203, 35.248661041259766], [-83.7535629272461, 35.23716735839844], [-83.69563293457031, 35.25080871582031], [-83.69669342041016, 35.21443557739258], [-83.72232818603516, 35.19727325439453], [-83.71308135986328, 35.18075180053711], [-83.7395248413086, 35.14583969116211], [-83.7553939819336, 35.14806365966797], [-83.8538818359375, 35.12579345703125], [-83.90731811523438, 35.07041549682617], [-83.95285034179688, 35.04844284057617], [-83.95977020263672, 35.01912307739258], [-83.9885482788086, 34.98906707763672], [-84.11824035644531, 34.988224029541016], [-84.3238525390625, 34.989009857177734], [-84.2910385131836, 35.21054458618164]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;80&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.12, &quot;BIR74&quot;: 1027.0, &quot;BIR79&quot;: 1173.0, &quot;CNTY_&quot;: 2088, &quot;CNTY_ID&quot;: 2088, &quot;CRESS_ID&quot;: 20, &quot;FIPS&quot;: &quot;37039&quot;, &quot;FIPSNO&quot;: 37039, &quot;NAME&quot;: &quot;Cherokee&quot;, &quot;NWBIR74&quot;: 32.0, &quot;NWBIR79&quot;: 42.0, &quot;NWR74&quot;: 31.158715, &quot;NWR79&quot;: 35.805627, &quot;PERIMETER&quot;: 1.686, &quot;SID74&quot;: 2.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 1.94742, &quot;SIDR79&quot;: 0.852515}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.10684204101562, 34.827423095703125, -78.4992904663086, 35.259979248046875], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.4992904663086, 34.855106353759766], [-78.51744079589844, 34.843528747558594], [-78.83165740966797, 34.844356536865234], [-78.8962631225586, 34.830902099609375], [-78.91255187988281, 34.827423095703125], [-78.92862701416016, 34.879798889160156], [-78.948486328125, 34.90268325805664], [-79.03360748291016, 34.95382308959961], [-79.09431457519531, 35.03785705566406], [-79.10684204101562, 35.119224548339844], [-79.09717559814453, 35.17680740356445], [-79.09589385986328, 35.189964294433594], [-78.91258239746094, 35.22246551513672], [-78.88601684570312, 35.22993469238281], [-78.87457275390625, 35.24253463745117], [-78.81238555908203, 35.25872039794922], [-78.716064453125, 35.259979248046875], [-78.61273956298828, 35.243831634521484], [-78.63528442382812, 35.21095275878906], [-78.6327133178711, 35.19729995727539], [-78.64522552490234, 35.189727783203125], [-78.63348388671875, 35.153724670410156], [-78.64563751220703, 35.10255813598633], [-78.65815734863281, 35.09362030029297], [-78.66641235351562, 35.071468353271484], [-78.6342544555664, 34.98436737060547], [-78.59347534179688, 34.9434700012207], [-78.5419921875, 34.90787124633789], [-78.4992904663086, 34.855106353759766]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;81&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.172, &quot;BIR74&quot;: 20366.0, &quot;BIR79&quot;: 26370.0, &quot;CNTY_&quot;: 2090, &quot;CNTY_ID&quot;: 2090, &quot;CRESS_ID&quot;: 26, &quot;FIPS&quot;: &quot;37051&quot;, &quot;FIPSNO&quot;: 37051, &quot;NAME&quot;: &quot;Cumberland&quot;, &quot;NWBIR74&quot;: 7043.0, &quot;NWBIR79&quot;: 10614.0, &quot;NWR74&quot;: 345.821467, &quot;NWR79&quot;: 402.502844, &quot;PERIMETER&quot;: 1.835, &quot;SID74&quot;: 38.0, &quot;SID79&quot;: 57.0, &quot;SIDR74&quot;: 1.865855, &quot;SIDR79&quot;: 2.161547}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.73192596435547, 34.77451705932617, -77.04900360107422, 35.23969650268555], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.04900360107422, 34.83119201660156], [-77.05746459960938, 34.81504821777344], [-77.07313537597656, 34.8154411315918], [-77.10069274902344, 34.7974967956543], [-77.15982055664062, 34.78849792480469], [-77.16426086425781, 34.77451705932617], [-77.19284057617188, 34.80428695678711], [-77.18006134033203, 34.832149505615234], [-77.20626831054688, 34.83550262451172], [-77.22299194335938, 34.8845100402832], [-77.2854232788086, 34.9264030456543], [-77.33513641357422, 34.93254089355469], [-77.3699722290039, 34.914249420166016], [-77.4996337890625, 34.96250534057617], [-77.63925170898438, 34.9840202331543], [-77.68299102783203, 34.96672439575195], [-77.73192596435547, 35.00083541870117], [-77.59949493408203, 35.07086944580078], [-77.5330581665039, 35.14488220214844], [-77.51077270507812, 35.15576934814453], [-77.52831268310547, 35.23969650268555], [-77.4740982055664, 35.22719192504883], [-77.42340850830078, 35.194305419921875], [-77.20551300048828, 35.08805465698242], [-77.17924499511719, 35.05335998535156], [-77.14044952392578, 35.054237365722656], [-77.13111877441406, 35.06928253173828], [-77.11058807373047, 35.066036224365234], [-77.1033706665039, 35.024261474609375], [-77.10953521728516, 34.83042907714844], [-77.04900360107422, 34.83119201660156]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;82&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.121, &quot;BIR74&quot;: 578.0, &quot;BIR79&quot;: 650.0, &quot;CNTY_&quot;: 2091, &quot;CNTY_ID&quot;: 2091, &quot;CRESS_ID&quot;: 52, &quot;FIPS&quot;: &quot;37103&quot;, &quot;FIPSNO&quot;: 37103, &quot;NAME&quot;: &quot;Jones&quot;, &quot;NWBIR74&quot;: 297.0, &quot;NWBIR79&quot;: 305.0, &quot;NWR74&quot;: 513.84083, &quot;NWR79&quot;: 469.230769, &quot;PERIMETER&quot;: 1.978, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 1.730104, &quot;SIDR79&quot;: 3.076923}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.84016418457031, 34.814762115478516, -80.2751235961914, 35.20581817626953], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.84016418457031, 35.002017974853516], [-80.7972183227539, 35.0281982421875], [-80.75968170166016, 35.03662109375], [-80.53964233398438, 35.20581817626953], [-80.50294494628906, 35.186912536621094], [-80.48323059082031, 35.18291091918945], [-80.45328521728516, 35.16078567504883], [-80.42858123779297, 35.16859436035156], [-80.39875030517578, 35.16461181640625], [-80.3729476928711, 35.17786407470703], [-80.34872436523438, 35.17067337036133], [-80.32567596435547, 35.17391586303711], [-80.2751235961914, 35.193111419677734], [-80.32527923583984, 34.814762115478516], [-80.5615463256836, 34.81522750854492], [-80.80006408691406, 34.81611251831055], [-80.78565216064453, 34.94063949584961], [-80.84016418457031, 35.002017974853516]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;83&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.163, &quot;BIR74&quot;: 3915.0, &quot;BIR79&quot;: 5273.0, &quot;CNTY_&quot;: 2095, &quot;CNTY_ID&quot;: 2095, &quot;CRESS_ID&quot;: 90, &quot;FIPS&quot;: &quot;37179&quot;, &quot;FIPSNO&quot;: 37179, &quot;NAME&quot;: &quot;Union&quot;, &quot;NWBIR74&quot;: 1034.0, &quot;NWBIR79&quot;: 1348.0, &quot;NWR74&quot;: 264.112388, &quot;NWR79&quot;: 255.64195, &quot;PERIMETER&quot;: 1.716, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 9.0, &quot;SIDR74&quot;: 1.021711, &quot;SIDR79&quot;: 1.706808}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.32527923583984, 34.807918548583984, -79.85370635986328, 35.204524993896484], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.91995239257812, 34.807918548583984], [-80.32527923583984, 34.814762115478516], [-80.2751235961914, 35.193111419677734], [-80.26109313964844, 35.20404052734375], [-80.24758911132812, 35.204524993896484], [-80.21988677978516, 35.159183502197266], [-80.19010162353516, 35.1678581237793], [-80.16812896728516, 35.14973068237305], [-80.15914154052734, 35.15473937988281], [-80.1546859741211, 35.176082611083984], [-80.1316146850586, 35.17111587524414], [-80.11027526855469, 35.1938362121582], [-80.0714111328125, 35.15074157714844], [-80.06517791748047, 35.13658142089844], [-80.0584487915039, 35.10398483276367], [-80.0028076171875, 35.089927673339844], [-79.97528076171875, 35.09673309326172], [-79.94491577148438, 35.11533737182617], [-79.92749786376953, 35.115779876708984], [-79.9151382446289, 35.106693267822266], [-79.90843200683594, 35.07899475097656], [-79.882080078125, 35.044464111328125], [-79.8939208984375, 35.00724411010742], [-79.86705017089844, 34.967716217041016], [-79.85370635986328, 34.90458297729492], [-79.90142059326172, 34.85240936279297], [-79.91995239257812, 34.807918548583984]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;84&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.138, &quot;BIR74&quot;: 1570.0, &quot;BIR79&quot;: 1875.0, &quot;CNTY_&quot;: 2096, &quot;CNTY_ID&quot;: 2096, &quot;CRESS_ID&quot;: 4, &quot;FIPS&quot;: &quot;37007&quot;, &quot;FIPSNO&quot;: 37007, &quot;NAME&quot;: &quot;Anson&quot;, &quot;NWBIR74&quot;: 952.0, &quot;NWBIR79&quot;: 1161.0, &quot;NWR74&quot;: 606.369427, &quot;NWR79&quot;: 619.2, &quot;PERIMETER&quot;: 1.621, &quot;SID74&quot;: 15.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 9.55414, &quot;SIDR79&quot;: 2.133333}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.45536041259766, 34.83188247680664, -79.03360748291016, 35.203208923339844], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.34030151367188, 34.835609436035156], [-79.36067962646484, 34.94470977783203], [-79.3984146118164, 34.9962158203125], [-79.45536041259766, 35.037357330322266], [-79.35005187988281, 35.14079666137695], [-79.23529052734375, 35.203208923339844], [-79.14727783203125, 35.17354965209961], [-79.12200164794922, 35.17018508911133], [-79.09717559814453, 35.17680740356445], [-79.10684204101562, 35.119224548339844], [-79.09431457519531, 35.03785705566406], [-79.03360748291016, 34.95382308959961], [-79.18185424804688, 34.83188247680664], [-79.34030151367188, 34.835609436035156]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;85&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.098, &quot;BIR74&quot;: 1494.0, &quot;BIR79&quot;: 1706.0, &quot;CNTY_&quot;: 2097, &quot;CNTY_ID&quot;: 2097, &quot;CRESS_ID&quot;: 47, &quot;FIPS&quot;: &quot;37093&quot;, &quot;FIPSNO&quot;: 37093, &quot;NAME&quot;: &quot;Hoke&quot;, &quot;NWBIR74&quot;: 987.0, &quot;NWBIR79&quot;: 1172.0, &quot;NWR74&quot;: 660.64257, &quot;NWR79&quot;: 686.987104, &quot;PERIMETER&quot;: 1.262, &quot;SID74&quot;: 7.0, &quot;SID79&quot;: 6.0, &quot;SIDR74&quot;: 4.685408, &quot;SIDR79&quot;: 3.516999}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.63381958007812, 35.069435119628906, -75.76370239257812, 35.7030029296875], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-76.5189437866211, 35.57764434814453], [-76.53959655761719, 35.59403610229492], [-76.58587646484375, 35.60945510864258], [-76.60794830322266, 35.635066986083984], [-76.60891723632812, 35.664154052734375], [-76.63381958007812, 35.7030029296875], [-76.40843200683594, 35.69911575317383], [-76.27344512939453, 35.68949890136719], [-76.2976303100586, 35.6116943359375], [-76.23279571533203, 35.59466552734375], [-76.21023559570312, 35.60438919067383], [-76.16730499267578, 35.696842193603516], [-76.10474395751953, 35.663639068603516], [-76.02120971679688, 35.66909408569336], [-75.90802764892578, 35.6656379699707], [-75.89149475097656, 35.63126754760742], [-76.052978515625, 35.41460418701172], [-76.1816177368164, 35.34153366088867], [-76.4988021850586, 35.41621780395508], [-76.53375244140625, 35.450199127197266], [-76.45843505859375, 35.504425048828125], [-76.44652557373047, 35.550865173339844], [-76.5189437866211, 35.57764434814453]]], [[[-76.01700592041016, 35.069435119628906], [-75.97569274902344, 35.11618423461914], [-75.85393524169922, 35.16728210449219], [-75.76370239257812, 35.192283630371094], [-75.81153869628906, 35.16402053833008], [-75.90394592285156, 35.13249206542969], [-76.00287628173828, 35.069435119628906], [-76.01700592041016, 35.069435119628906]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;86&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.167, &quot;BIR74&quot;: 338.0, &quot;BIR79&quot;: 427.0, &quot;CNTY_&quot;: 2099, &quot;CNTY_ID&quot;: 2099, &quot;CRESS_ID&quot;: 48, &quot;FIPS&quot;: &quot;37095&quot;, &quot;FIPSNO&quot;: 37095, &quot;NAME&quot;: &quot;Hyde&quot;, &quot;NWBIR74&quot;: 134.0, &quot;NWBIR79&quot;: 169.0, &quot;NWR74&quot;: 396.449704, &quot;NWR79&quot;: 395.784543, &quot;PERIMETER&quot;: 2.709, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 0.0}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.19544982910156, 34.71100616455078, -77.65526580810547, 35.18647766113281], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.68983459472656, 34.72019577026367], [-77.92667388916016, 34.71100616455078], [-77.9393081665039, 34.71940612792969], [-77.98915100097656, 34.71709442138672], [-78.01736450195312, 34.72893142700195], [-78.11376953125, 34.720985412597656], [-78.13581848144531, 34.71134567260742], [-78.15609741210938, 34.728477478027344], [-78.19544982910156, 34.74362564086914], [-78.14298248291016, 34.90132522583008], [-78.15524291992188, 35.06819152832031], [-78.17028045654297, 35.09748458862305], [-78.16319274902344, 35.182289123535156], [-78.08753204345703, 35.17018508911133], [-78.03650665283203, 35.185691833496094], [-78.00215911865234, 35.18647766113281], [-77.96392822265625, 35.164024353027344], [-77.94469451904297, 35.16823196411133], [-77.91397857666016, 35.15997314453125], [-77.89415740966797, 35.14418029785156], [-77.8876724243164, 35.154964447021484], [-77.83657836914062, 35.1717414855957], [-77.7641372680664, 35.12861251831055], [-77.75160217285156, 35.09567642211914], [-77.75499725341797, 35.01808166503906], [-77.74478912353516, 35.002445220947266], [-77.73192596435547, 35.00083541870117], [-77.68299102783203, 34.96672439575195], [-77.65526580810547, 34.9189338684082], [-77.68983459472656, 34.72019577026367]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;87&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.204, &quot;BIR74&quot;: 2483.0, &quot;BIR79&quot;: 2777.0, &quot;CNTY_&quot;: 2100, &quot;CNTY_ID&quot;: 2100, &quot;CRESS_ID&quot;: 31, &quot;FIPS&quot;: &quot;37061&quot;, &quot;FIPSNO&quot;: 37061, &quot;NAME&quot;: &quot;Duplin&quot;, &quot;NWBIR74&quot;: 1061.0, &quot;NWBIR79&quot;: 1227.0, &quot;NWR74&quot;: 427.305679, &quot;NWR79&quot;: 441.843716, &quot;PERIMETER&quot;: 1.871, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 7.0, &quot;SIDR74&quot;: 1.610954, &quot;SIDR79&quot;: 2.520706}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.06517791748047, 34.80525588989258, -79.45536041259766, 35.17380142211914], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.68595886230469, 34.80525588989258], [-79.91995239257812, 34.807918548583984], [-79.90142059326172, 34.85240936279297], [-79.85370635986328, 34.90458297729492], [-79.86705017089844, 34.967716217041016], [-79.8939208984375, 35.00724411010742], [-79.882080078125, 35.044464111328125], [-79.90843200683594, 35.07899475097656], [-79.9151382446289, 35.106693267822266], [-79.92749786376953, 35.115779876708984], [-79.94491577148438, 35.11533737182617], [-79.97528076171875, 35.09673309326172], [-80.0028076171875, 35.089927673339844], [-80.0584487915039, 35.10398483276367], [-80.06517791748047, 35.13658142089844], [-80.01068115234375, 35.137142181396484], [-79.97582244873047, 35.1507568359375], [-79.90946197509766, 35.15571975708008], [-79.83631896972656, 35.17380142211914], [-79.75984191894531, 35.16731262207031], [-79.69795227050781, 35.173072814941406], [-79.63729858398438, 35.15383529663086], [-79.60746765136719, 35.15918731689453], [-79.57563018798828, 35.11912536621094], [-79.5741958618164, 35.073265075683594], [-79.55290222167969, 35.06410598754883], [-79.49506378173828, 35.06250762939453], [-79.45536041259766, 35.037357330322266], [-79.54710388183594, 35.00006103515625], [-79.57304382324219, 34.97836685180664], [-79.58052062988281, 34.94478988647461], [-79.56558990478516, 34.907501220703125], [-79.6219253540039, 34.849571228027344], [-79.61144256591797, 34.8177490234375], [-79.66014862060547, 34.81789779663086], [-79.68595886230469, 34.80525588989258]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;88&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.121, &quot;BIR74&quot;: 2756.0, &quot;BIR79&quot;: 3108.0, &quot;CNTY_&quot;: 2107, &quot;CNTY_ID&quot;: 2107, &quot;CRESS_ID&quot;: 77, &quot;FIPS&quot;: &quot;37153&quot;, &quot;FIPSNO&quot;: 37153, &quot;NAME&quot;: &quot;Richmond&quot;, &quot;NWBIR74&quot;: 1043.0, &quot;NWBIR79&quot;: 1218.0, &quot;NWR74&quot;: 378.447025, &quot;NWR79&quot;: 391.891892, &quot;PERIMETER&quot;: 1.855, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 7.0, &quot;SIDR74&quot;: 1.451379, &quot;SIDR79&quot;: 2.252252}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.9885482788086, 34.98906707763672, -83.51300811767578, 35.14806365966797], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-83.93799591064453, 34.9893913269043], [-83.9885482788086, 34.98906707763672], [-83.95977020263672, 35.01912307739258], [-83.95285034179688, 35.04844284057617], [-83.90731811523438, 35.07041549682617], [-83.8538818359375, 35.12579345703125], [-83.7553939819336, 35.14806365966797], [-83.7395248413086, 35.14583969116211], [-83.71780395507812, 35.13880920410156], [-83.6448745727539, 35.14336013793945], [-83.64356231689453, 35.127498626708984], [-83.56204223632812, 35.05594253540039], [-83.55323791503906, 35.035762786865234], [-83.5272216796875, 35.019737243652344], [-83.51300811767578, 34.99202346801758], [-83.5494155883789, 34.98953628540039], [-83.93799591064453, 34.9893913269043]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;89&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.051, &quot;BIR74&quot;: 284.0, &quot;BIR79&quot;: 419.0, &quot;CNTY_&quot;: 2109, &quot;CNTY_ID&quot;: 2109, &quot;CRESS_ID&quot;: 22, &quot;FIPS&quot;: &quot;37043&quot;, &quot;FIPSNO&quot;: 37043, &quot;NAME&quot;: &quot;Clay&quot;, &quot;NWBIR74&quot;: 1.0, &quot;NWBIR79&quot;: 5.0, &quot;NWR74&quot;: 3.521127, &quot;NWR79&quot;: 11.933174, &quot;PERIMETER&quot;: 1.096, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 0.0}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.4740982055664, 34.83042907714844, -76.62561798095703, 35.42295455932617], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-76.8976058959961, 35.25157165527344], [-76.94743347167969, 35.21699142456055], [-76.96660614013672, 35.187965393066406], [-76.97233581542969, 35.15677261352539], [-76.9898910522461, 35.15404510498047], [-76.94422912597656, 35.09972381591797], [-76.94324493408203, 35.07003402709961], [-77.04788208007812, 35.09215545654297], [-77.10467529296875, 35.08798599243164], [-77.11058807373047, 35.066036224365234], [-77.13111877441406, 35.06928253173828], [-77.14044952392578, 35.054237365722656], [-77.17924499511719, 35.05335998535156], [-77.20551300048828, 35.08805465698242], [-77.42340850830078, 35.194305419921875], [-77.4740982055664, 35.22719192504883], [-77.42964935302734, 35.25983810424805], [-77.4485092163086, 35.285675048828125], [-77.45021057128906, 35.302059173583984], [-77.41315460205078, 35.33121871948242], [-77.38616180419922, 35.329261779785156], [-77.35421752929688, 35.32355499267578], [-77.2938003540039, 35.37395095825195], [-77.26419067382812, 35.35011291503906], [-77.24430084228516, 35.354190826416016], [-77.24054718017578, 35.37998580932617], [-77.2112045288086, 35.3956413269043], [-77.19496154785156, 35.42295455932617], [-76.8976058959961, 35.25157165527344]]], [[[-76.64704895019531, 34.906333923339844], [-76.62561798095703, 34.890647888183594], [-76.75021362304688, 34.84827423095703], [-77.04900360107422, 34.83119201660156], [-77.10953521728516, 34.83042907714844], [-77.1033706665039, 35.024261474609375], [-77.11058807373047, 35.066036224365234], [-77.00119018554688, 35.052886962890625], [-76.9131088256836, 34.93647003173828], [-76.64704895019531, 34.906333923339844]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;90&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.177, &quot;BIR74&quot;: 5868.0, &quot;BIR79&quot;: 7595.0, &quot;CNTY_&quot;: 2119, &quot;CNTY_ID&quot;: 2119, &quot;CRESS_ID&quot;: 25, &quot;FIPS&quot;: &quot;37049&quot;, &quot;FIPSNO&quot;: 37049, &quot;NAME&quot;: &quot;Craven&quot;, &quot;NWBIR74&quot;: 1744.0, &quot;NWBIR79&quot;: 2342.0, &quot;NWR74&quot;: 297.205181, &quot;NWR79&quot;: 308.360764, &quot;PERIMETER&quot;: 2.916, &quot;SID74&quot;: 13.0, &quot;SID79&quot;: 18.0, &quot;SIDR74&quot;: 2.215406, &quot;SIDR79&quot;: 2.36998}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.68595886230469, 34.634090423583984, -79.32797241210938, 35.037357330322266], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.45597076416016, 34.634090423583984], [-79.6675033569336, 34.800662994384766], [-79.68595886230469, 34.80525588989258], [-79.66014862060547, 34.81789779663086], [-79.61144256591797, 34.8177490234375], [-79.6219253540039, 34.849571228027344], [-79.56558990478516, 34.907501220703125], [-79.58052062988281, 34.94478988647461], [-79.57304382324219, 34.97836685180664], [-79.54710388183594, 35.00006103515625], [-79.45536041259766, 35.037357330322266], [-79.3984146118164, 34.9962158203125], [-79.36067962646484, 34.94470977783203], [-79.34030151367188, 34.835609436035156], [-79.34445190429688, 34.808837890625], [-79.32797241210938, 34.77241134643555], [-79.45597076416016, 34.634090423583984]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;91&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.08, &quot;BIR74&quot;: 2255.0, &quot;BIR79&quot;: 2617.0, &quot;CNTY_&quot;: 2123, &quot;CNTY_ID&quot;: 2123, &quot;CRESS_ID&quot;: 83, &quot;FIPS&quot;: &quot;37165&quot;, &quot;FIPSNO&quot;: 37165, &quot;NAME&quot;: &quot;Scotland&quot;, &quot;NWBIR74&quot;: 1206.0, &quot;NWBIR79&quot;: 1436.0, &quot;NWR74&quot;: 534.81153, &quot;NWR79&quot;: 548.719908, &quot;PERIMETER&quot;: 1.188, &quot;SID74&quot;: 8.0, &quot;SID79&quot;: 16.0, &quot;SIDR74&quot;: 3.547672, &quot;SIDR79&quot;: 6.113871}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.68983459472656, 34.457008361816406, -77.12939453125, 34.9840202331543], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.53863525390625, 34.457008361816406], [-77.57633209228516, 34.46934509277344], [-77.68983459472656, 34.72019577026367], [-77.65526580810547, 34.9189338684082], [-77.68299102783203, 34.96672439575195], [-77.63925170898438, 34.9840202331543], [-77.4996337890625, 34.96250534057617], [-77.3699722290039, 34.914249420166016], [-77.33513641357422, 34.93254089355469], [-77.2854232788086, 34.9264030456543], [-77.22299194335938, 34.8845100402832], [-77.20626831054688, 34.83550262451172], [-77.18006134033203, 34.832149505615234], [-77.19284057617188, 34.80428695678711], [-77.16426086425781, 34.77451705932617], [-77.14895629882812, 34.76433181762695], [-77.12939453125, 34.684913635253906], [-77.15660095214844, 34.66063690185547], [-77.53863525390625, 34.457008361816406]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;92&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.195, &quot;BIR74&quot;: 11158.0, &quot;BIR79&quot;: 14655.0, &quot;CNTY_&quot;: 2146, &quot;CNTY_ID&quot;: 2146, &quot;CRESS_ID&quot;: 67, &quot;FIPS&quot;: &quot;37133&quot;, &quot;FIPSNO&quot;: 37133, &quot;NAME&quot;: &quot;Onslow&quot;, &quot;NWBIR74&quot;: 2217.0, &quot;NWBIR79&quot;: 3568.0, &quot;NWR74&quot;: 198.691522, &quot;NWR79&quot;: 243.466394, &quot;PERIMETER&quot;: 1.783, &quot;SID74&quot;: 29.0, &quot;SID79&quot;: 23.0, &quot;SIDR74&quot;: 2.599032, &quot;SIDR79&quot;: 1.56943}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.45597076416016, 34.30457305908203, -78.8033218383789, 34.95382308959961], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.86450958251953, 34.477195739746094], [-78.91947174072266, 34.45363998413086], [-78.95073699951172, 34.44938278198242], [-78.9753646850586, 34.399166107177734], [-79.00223541259766, 34.38804244995117], [-79.00641632080078, 34.366268157958984], [-79.02947235107422, 34.347373962402344], [-79.04094696044922, 34.319297790527344], [-79.07450103759766, 34.30457305908203], [-79.4471435546875, 34.61906051635742], [-79.45597076416016, 34.634090423583984], [-79.32797241210938, 34.77241134643555], [-79.34445190429688, 34.808837890625], [-79.34030151367188, 34.835609436035156], [-79.18185424804688, 34.83188247680664], [-79.03360748291016, 34.95382308959961], [-78.948486328125, 34.90268325805664], [-78.92862701416016, 34.879798889160156], [-78.91255187988281, 34.827423095703125], [-78.8962631225586, 34.830902099609375], [-78.84170532226562, 34.73500061035156], [-78.8033218383789, 34.68510437011719], [-78.85260009765625, 34.56658172607422], [-78.84566497802734, 34.50745391845703], [-78.86450958251953, 34.477195739746094]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;93&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.24, &quot;BIR74&quot;: 7889.0, &quot;BIR79&quot;: 9087.0, &quot;CNTY_&quot;: 2150, &quot;CNTY_ID&quot;: 2150, &quot;CRESS_ID&quot;: 78, &quot;FIPS&quot;: &quot;37155&quot;, &quot;FIPSNO&quot;: 37155, &quot;NAME&quot;: &quot;Robeson&quot;, &quot;NWBIR74&quot;: 5904.0, &quot;NWBIR79&quot;: 6899.0, &quot;NWR74&quot;: 748.383826, &quot;NWR79&quot;: 759.216463, &quot;PERIMETER&quot;: 2.004, &quot;SID74&quot;: 31.0, &quot;SID79&quot;: 26.0, &quot;SIDR74&quot;: 3.929522, &quot;SIDR79&quot;: 2.86123}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.16426086425781, 34.58782958984375, -76.28770446777344, 35.016658782958984], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-77.14895629882812, 34.76433181762695], [-77.16426086425781, 34.77451705932617], [-77.15982055664062, 34.78849792480469], [-77.10069274902344, 34.7974967956543], [-77.07313537597656, 34.8154411315918], [-77.05746459960938, 34.81504821777344], [-77.04900360107422, 34.83119201660156], [-76.75021362304688, 34.84827423095703], [-76.62561798095703, 34.890647888183594], [-76.64704895019531, 34.906333923339844], [-76.67005920410156, 34.96999740600586], [-76.52977752685547, 34.97463607788086], [-76.44503021240234, 35.016658782958984], [-76.42405700683594, 34.94624710083008], [-76.364013671875, 34.943111419677734], [-76.32940673828125, 34.975955963134766], [-76.31471252441406, 34.948814392089844], [-76.46990203857422, 34.78506088256836], [-76.62531280517578, 34.71975326538086], [-77.05052947998047, 34.698917388916016], [-77.14895629882812, 34.76433181762695]]], [[[-76.54427337646484, 34.58782958984375], [-76.55514526367188, 34.610660552978516], [-76.53775024414062, 34.613922119140625], [-76.48448181152344, 34.6976318359375], [-76.43229675292969, 34.760684967041016], [-76.37467956542969, 34.812870025634766], [-76.28770446777344, 34.877010345458984], [-76.4692611694336, 34.69328308105469], [-76.54427337646484, 34.58782958984375]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;94&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.125, &quot;BIR74&quot;: 2414.0, &quot;BIR79&quot;: 3339.0, &quot;CNTY_&quot;: 2156, &quot;CNTY_ID&quot;: 2156, &quot;CRESS_ID&quot;: 16, &quot;FIPS&quot;: &quot;37031&quot;, &quot;FIPSNO&quot;: 37031, &quot;NAME&quot;: &quot;Carteret&quot;, &quot;NWBIR74&quot;: 341.0, &quot;NWBIR79&quot;: 487.0, &quot;NWR74&quot;: 141.259321, &quot;NWR79&quot;: 145.852052, &quot;PERIMETER&quot;: 2.868, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 2.071251, &quot;SIDR79&quot;: 1.197963}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.8962631225586, 34.36442184448242, -78.169677734375, 34.855106353759766], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.2614974975586, 34.3947868347168], [-78.3289794921875, 34.36442184448242], [-78.43794250488281, 34.37184143066406], [-78.6380844116211, 34.45114517211914], [-78.65982055664062, 34.45094299316406], [-78.66849517822266, 34.46512985229492], [-78.8118896484375, 34.455318450927734], [-78.83635711669922, 34.459197998046875], [-78.86450958251953, 34.477195739746094], [-78.84566497802734, 34.50745391845703], [-78.85260009765625, 34.56658172607422], [-78.8033218383789, 34.68510437011719], [-78.84170532226562, 34.73500061035156], [-78.8962631225586, 34.830902099609375], [-78.83165740966797, 34.844356536865234], [-78.51744079589844, 34.843528747558594], [-78.4992904663086, 34.855106353759766], [-78.4010009765625, 34.75933074951172], [-78.38667297363281, 34.72188949584961], [-78.36381530761719, 34.69204330444336], [-78.3388671875, 34.6826057434082], [-78.32234191894531, 34.645572662353516], [-78.30970001220703, 34.6358528137207], [-78.31988525390625, 34.63009262084961], [-78.30590057373047, 34.6053581237793], [-78.27461242675781, 34.581275939941406], [-78.25680541992188, 34.55375289916992], [-78.26240539550781, 34.52793884277344], [-78.25505828857422, 34.507381439208984], [-78.169677734375, 34.46245193481445], [-78.2614974975586, 34.3947868347168]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;95&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.225, &quot;BIR74&quot;: 1782.0, &quot;BIR79&quot;: 2052.0, &quot;CNTY_&quot;: 2162, &quot;CNTY_ID&quot;: 2162, &quot;CRESS_ID&quot;: 9, &quot;FIPS&quot;: &quot;37017&quot;, &quot;FIPSNO&quot;: 37017, &quot;NAME&quot;: &quot;Bladen&quot;, &quot;NWBIR74&quot;: 818.0, &quot;NWBIR79&quot;: 1023.0, &quot;NWR74&quot;: 459.034792, &quot;NWR79&quot;: 498.538012, &quot;PERIMETER&quot;: 2.107, &quot;SID74&quot;: 8.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 4.489338, &quot;SIDR79&quot;: 2.436647}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.26240539550781, 34.30504608154297, -77.53863525390625, 34.72893142700195], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.02592468261719, 34.32876968383789], [-78.13024139404297, 34.3641242980957], [-78.15478515625, 34.36224365234375], [-78.18461608886719, 34.34817123413086], [-78.19456481933594, 34.351051330566406], [-78.2614974975586, 34.3947868347168], [-78.169677734375, 34.46245193481445], [-78.25505828857422, 34.507381439208984], [-78.26240539550781, 34.52793884277344], [-78.25680541992188, 34.55375289916992], [-78.1567611694336, 34.677154541015625], [-78.11373901367188, 34.699180603027344], [-78.11376953125, 34.720985412597656], [-78.01736450195312, 34.72893142700195], [-77.98915100097656, 34.71709442138672], [-77.9393081665039, 34.71940612792969], [-77.92667388916016, 34.71100616455078], [-77.68983459472656, 34.72019577026367], [-77.57633209228516, 34.46934509277344], [-77.53863525390625, 34.457008361816406], [-77.58676147460938, 34.420936584472656], [-77.60972595214844, 34.43504333496094], [-77.60261535644531, 34.412628173828125], [-77.75052642822266, 34.30504608154297], [-77.80914306640625, 34.359432220458984], [-77.82838439941406, 34.387969970703125], [-77.88806915283203, 34.364070892333984], [-77.92178344726562, 34.373313903808594], [-77.94393920898438, 34.35643768310547], [-77.94981384277344, 34.366085052490234], [-77.97907257080078, 34.37568664550781], [-77.99445343017578, 34.3623161315918], [-77.98667907714844, 34.33991622924805], [-78.02592468261719, 34.32876968383789]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;96&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.214, &quot;BIR74&quot;: 1228.0, &quot;BIR79&quot;: 1602.0, &quot;CNTY_&quot;: 2185, &quot;CNTY_ID&quot;: 2185, &quot;CRESS_ID&quot;: 71, &quot;FIPS&quot;: &quot;37141&quot;, &quot;FIPSNO&quot;: 37141, &quot;NAME&quot;: &quot;Pender&quot;, &quot;NWBIR74&quot;: 580.0, &quot;NWBIR79&quot;: 763.0, &quot;NWR74&quot;: 472.312704, &quot;NWR79&quot;: 476.27965, &quot;PERIMETER&quot;: 2.152, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 3.0, &quot;SIDR74&quot;: 3.257329, &quot;SIDR79&quot;: 1.872659}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.07450103759766, 33.948673248291016, -78.15478515625, 34.477195739746094], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.65571594238281, 33.948673248291016], [-79.07450103759766, 34.30457305908203], [-79.04094696044922, 34.319297790527344], [-79.02947235107422, 34.347373962402344], [-79.00641632080078, 34.366268157958984], [-79.00223541259766, 34.38804244995117], [-78.9753646850586, 34.399166107177734], [-78.95073699951172, 34.44938278198242], [-78.91947174072266, 34.45363998413086], [-78.86450958251953, 34.477195739746094], [-78.83635711669922, 34.459197998046875], [-78.8118896484375, 34.455318450927734], [-78.66849517822266, 34.46512985229492], [-78.65982055664062, 34.45094299316406], [-78.6380844116211, 34.45114517211914], [-78.43794250488281, 34.37184143066406], [-78.3289794921875, 34.36442184448242], [-78.2614974975586, 34.3947868347168], [-78.19456481933594, 34.351051330566406], [-78.18461608886719, 34.34817123413086], [-78.15478515625, 34.36224365234375], [-78.26106262207031, 34.21526336669922], [-78.37357330322266, 34.20235061645508], [-78.36112213134766, 34.18672180175781], [-78.42543029785156, 34.138065338134766], [-78.49274444580078, 34.158504486083984], [-78.52723693847656, 34.15485763549805], [-78.54428100585938, 34.13416290283203], [-78.56343078613281, 34.05894470214844], [-78.58778381347656, 34.03060531616211], [-78.6302719116211, 34.01020050048828], [-78.63471984863281, 33.97797775268555], [-78.65571594238281, 33.948673248291016]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;97&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.24, &quot;BIR74&quot;: 3350.0, &quot;BIR79&quot;: 4144.0, &quot;CNTY_&quot;: 2232, &quot;CNTY_ID&quot;: 2232, &quot;CRESS_ID&quot;: 24, &quot;FIPS&quot;: &quot;37047&quot;, &quot;FIPSNO&quot;: 37047, &quot;NAME&quot;: &quot;Columbus&quot;, &quot;NWBIR74&quot;: 1431.0, &quot;NWBIR79&quot;: 1832.0, &quot;NWR74&quot;: 427.164179, &quot;NWR79&quot;: 442.084942, &quot;PERIMETER&quot;: 2.365, &quot;SID74&quot;: 15.0, &quot;SID79&quot;: 17.0, &quot;SIDR74&quot;: 4.477612, &quot;SIDR79&quot;: 4.102317}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.02592468261719, 34.062034606933594, -77.75052642822266, 34.387969970703125], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.96073150634766, 34.18924331665039], [-77.96586608886719, 34.242286682128906], [-77.97528076171875, 34.24336242675781], [-77.98314666748047, 34.261680603027344], [-78.0002212524414, 34.26788330078125], [-77.99539184570312, 34.282798767089844], [-78.00701904296875, 34.28481674194336], [-78.01130676269531, 34.31261444091797], [-78.02592468261719, 34.32876968383789], [-77.98667907714844, 34.33991622924805], [-77.99445343017578, 34.3623161315918], [-77.97907257080078, 34.37568664550781], [-77.94981384277344, 34.366085052490234], [-77.94393920898438, 34.35643768310547], [-77.92178344726562, 34.373313903808594], [-77.88806915283203, 34.364070892333984], [-77.82838439941406, 34.387969970703125], [-77.80914306640625, 34.359432220458984], [-77.75052642822266, 34.30504608154297], [-77.86438751220703, 34.1927375793457], [-77.89440155029297, 34.06917953491211], [-77.9267578125, 34.062034606933594], [-77.96073150634766, 34.18924331665039]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;98&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.042, &quot;BIR74&quot;: 5526.0, &quot;BIR79&quot;: 6917.0, &quot;CNTY_&quot;: 2238, &quot;CNTY_ID&quot;: 2238, &quot;CRESS_ID&quot;: 65, &quot;FIPS&quot;: &quot;37129&quot;, &quot;FIPSNO&quot;: 37129, &quot;NAME&quot;: &quot;New Hanover&quot;, &quot;NWBIR74&quot;: 1633.0, &quot;NWBIR79&quot;: 2100.0, &quot;NWR74&quot;: 295.512125, &quot;NWR79&quot;: 303.599827, &quot;PERIMETER&quot;: 0.999, &quot;SID74&quot;: 12.0, &quot;SID79&quot;: 9.0, &quot;SIDR74&quot;: 2.171553, &quot;SIDR79&quot;: 1.301142}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.65571594238281, 33.88199234008789, -77.95852661132812, 34.3641242980957], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.65571594238281, 33.948673248291016], [-78.63471984863281, 33.97797775268555], [-78.6302719116211, 34.01020050048828], [-78.58778381347656, 34.03060531616211], [-78.56343078613281, 34.05894470214844], [-78.54428100585938, 34.13416290283203], [-78.52723693847656, 34.15485763549805], [-78.49274444580078, 34.158504486083984], [-78.42543029785156, 34.138065338134766], [-78.36112213134766, 34.18672180175781], [-78.37357330322266, 34.20235061645508], [-78.26106262207031, 34.21526336669922], [-78.15478515625, 34.36224365234375], [-78.13024139404297, 34.3641242980957], [-78.02592468261719, 34.32876968383789], [-78.01130676269531, 34.31261444091797], [-78.00701904296875, 34.28481674194336], [-77.99539184570312, 34.282798767089844], [-78.0002212524414, 34.26788330078125], [-77.98314666748047, 34.261680603027344], [-77.97528076171875, 34.24336242675781], [-77.96586608886719, 34.242286682128906], [-77.96073150634766, 34.18924331665039], [-77.95852661132812, 33.99258041381836], [-78.03480529785156, 33.91429138183594], [-78.57971954345703, 33.88199234008789], [-78.65571594238281, 33.948673248291016]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;99&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.212, &quot;BIR74&quot;: 2181.0, &quot;BIR79&quot;: 2655.0, &quot;CNTY_&quot;: 2241, &quot;CNTY_ID&quot;: 2241, &quot;CRESS_ID&quot;: 10, &quot;FIPS&quot;: &quot;37019&quot;, &quot;FIPSNO&quot;: 37019, &quot;NAME&quot;: &quot;Brunswick&quot;, &quot;NWBIR74&quot;: 659.0, &quot;NWBIR79&quot;: 841.0, &quot;NWR74&quot;: 302.154975, &quot;NWR79&quot;: 316.760829, &quot;PERIMETER&quot;: 2.024, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 6.0, &quot;SIDR74&quot;: 2.292526, &quot;SIDR79&quot;: 2.259887}, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
       "\n",
       "        \n",
       "    \n",
       "    geo_json_e70a3f6a0aa8d0ad995d5b52d3f8c106.bindTooltip(\n",
       "    function(layer){\n",
       "    let div = L.DomUtil.create(&#x27;div&#x27;);\n",
       "    \n",
       "    let handleObject = feature=&gt;typeof(feature)==&#x27;object&#x27; ? JSON.stringify(feature) : feature;\n",
       "    let fields = [&quot;AREA&quot;, &quot;PERIMETER&quot;, &quot;CNTY_&quot;, &quot;CNTY_ID&quot;, &quot;NAME&quot;, &quot;FIPS&quot;, &quot;FIPSNO&quot;, &quot;CRESS_ID&quot;, &quot;BIR74&quot;, &quot;SID74&quot;, &quot;NWBIR74&quot;, &quot;BIR79&quot;, &quot;SID79&quot;, &quot;NWBIR79&quot;, &quot;SIDR74&quot;, &quot;SIDR79&quot;, &quot;NWR74&quot;, &quot;NWR79&quot;];\n",
       "    let aliases = [&quot;AREA&quot;, &quot;PERIMETER&quot;, &quot;CNTY_&quot;, &quot;CNTY_ID&quot;, &quot;NAME&quot;, &quot;FIPS&quot;, &quot;FIPSNO&quot;, &quot;CRESS_ID&quot;, &quot;BIR74&quot;, &quot;SID74&quot;, &quot;NWBIR74&quot;, &quot;BIR79&quot;, &quot;SID79&quot;, &quot;NWBIR79&quot;, &quot;SIDR74&quot;, &quot;SIDR79&quot;, &quot;NWR74&quot;, &quot;NWR79&quot;];\n",
       "    let table = &#x27;&lt;table&gt;&#x27; +\n",
       "        String(\n",
       "        fields.map(\n",
       "        (v,i)=&gt;\n",
       "        `&lt;tr&gt;\n",
       "            &lt;th&gt;${aliases[i]}&lt;/th&gt;\n",
       "            \n",
       "            &lt;td&gt;${handleObject(layer.feature.properties[v])}&lt;/td&gt;\n",
       "        &lt;/tr&gt;`).join(&#x27;&#x27;))\n",
       "    +&#x27;&lt;/table&gt;&#x27;;\n",
       "    div.innerHTML=table;\n",
       "    \n",
       "    return div\n",
       "    }\n",
       "    ,{&quot;className&quot;: &quot;foliumtooltip&quot;, &quot;sticky&quot;: true});\n",
       "                     \n",
       "    \n",
       "            geo_json_e70a3f6a0aa8d0ad995d5b52d3f8c106.addTo(map_2cd5e3118561f53e0de38f6355f66d71);\n",
       "        \n",
       "&lt;/script&gt;\n",
       "&lt;/html&gt;\" style=\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>"
      ],
      "text/plain": [
       "<folium.folium.Map at 0x7fd86a914f20>"
      ]
     },
     "execution_count": 8,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "gdf.explore()"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "ed1f23f4-968f-4ab8-a876-2d1b07fdd794",
   "metadata": {},
   "source": [
    "## Building Spatial Weights\n",
    "With a GeoDataFrame in hand, we can build  spatial weights using the `W` class as:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 9,
   "id": "4e4ea913-d462-4943-ae66-41a3878c60b0",
   "metadata": {},
   "outputs": [
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "/tmp/ipykernel_616347/4235704840.py:1: FutureWarning: `use_index` defaults to False but will default to True in future. Set True/False directly to control this behavior and silence this warning\n",
      "  w_queen = weights.Queen.from_dataframe(gdf)\n"
     ]
    },
    {
     "data": {
      "text/plain": [
       "<libpysal.weights.contiguity.Queen at 0x7fd86a113e90>"
      ]
     },
     "execution_count": 9,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "w_queen = weights.Queen.from_dataframe(gdf)\n",
    "w_queen"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "d6f48b63-6a66-4bc5-97b6-00a276dcdb1f",
   "metadata": {},
   "source": [
    "For the `Graph`, weights are constructed from the dataframe as:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 10,
   "id": "3e77b0cb-313c-4960-9cc6-f5deb602748a",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "<Graph of 100 nodes and 490 nonzero edges indexed by\n",
       " [0, 1, 2, 3, 4, ...]>"
      ]
     },
     "execution_count": 10,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g_queen = graph.Graph.build_contiguity(gdf, rook=False)\n",
    "g_queen"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "c601e671-09b3-41cf-860d-92db22326e1b",
   "metadata": {},
   "source": [
    "Two things to be aware of here are:\n",
    "\n",
    "- the methods have different names for the two classes\n",
    "- the `W` relies on different methods to generate `Rook` or `Queen` contiguity weights, while the `Graph` relies on the `rook` keyword argument to do so."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "4192da75-3d27-4a61-99aa-8b9f11e11bd1",
   "metadata": {},
   "source": [
    "## Neighbors\n",
    "From the output in the previous cells, we see different information reported in the two cases.\n",
    "\n",
    "The neighbors of a spatial unit are those units that satisfy the specific contiguity relationship specified by the user. In our case of `Queen` contiguity, and pair of polygons that share at least one vertex are considered neighbors.\n",
    "\n",
    "This information is encoded differently in the two classes. For the `W` class, information on the neighbors is stored in the `neighbors` attribute which is a `dict` using the unit's id as the key, while the `list` of neighbor ids is the value:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 11,
   "id": "302e07a0-6bad-4ba2-9866-1194caa08c8f",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "dict"
      ]
     },
     "execution_count": 11,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "type(w_queen.neighbors)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 12,
   "id": "4e035e8a-6ac7-46aa-96d8-866cd3f01b4e",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "[96, 97, 98]"
      ]
     },
     "execution_count": 12,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "w_queen.neighbors[99]"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "5f75edf4-9cab-4e29-9246-fa71365c057a",
   "metadata": {},
   "source": [
    "For the `Graph` class the neighbor information is stored  in the `adjacency` attribute:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 13,
   "id": "f4e3cae4-854f-4a56-8afc-f0fb2524b67a",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "focal  neighbor\n",
       "0      1           1\n",
       "       17          1\n",
       "       18          1\n",
       "1      0           1\n",
       "       2           1\n",
       "                  ..\n",
       "98     96          1\n",
       "       99          1\n",
       "99     96          1\n",
       "       97          1\n",
       "       98          1\n",
       "Name: weight, Length: 490, dtype: int64"
      ]
     },
     "execution_count": 13,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g_queen.adjacency"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 14,
   "id": "3be036b5-97ef-4eb2-8429-93d867d017da",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "pandas.core.series.Series"
      ]
     },
     "execution_count": 14,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "type(g_queen.adjacency)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "b686532a-fb2e-4b45-a362-c7f7bdb13609",
   "metadata": {},
   "source": [
    "This is encoded as a pandas Series, with a multi-index. The first index is for the focal unit, and the second is for the neighboring unit.\n",
    "So we see here that the observation with the identifier of 99 has three neighbors: 96, 97, 98.\n",
    "This agrees with what we had for `W` so the question is why the need for the change?\n",
    "\n",
    "Part of the answer is in facilitating easier access to this information:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 15,
   "id": "075208ba-584e-403e-bc01-87834241fcc6",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "neighbor\n",
       "96    1\n",
       "97    1\n",
       "98    1\n",
       "Name: weight, dtype: int64"
      ]
     },
     "execution_count": 15,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g_queen[99]"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "23bfd089-9b67-493f-81f0-5900ed4368f6",
   "metadata": {},
   "source": [
    "here we can query the graph with an id to get the neighbor information, along with the weights attached to each neighbor in the form of a pandas series:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 16,
   "id": "589290ec-aec6-4f93-b70e-1f3a80d63643",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "pandas.core.series.Series"
      ]
     },
     "execution_count": 16,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "type(g_queen[99])"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "81380f43-5245-4502-a2bf-567d47ec7a6d",
   "metadata": {},
   "source": [
    "While we could also query the `W` object with an id, we get back a `dict`."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 17,
   "id": "5e1d8999-5d5d-4136-904a-05df8889919c",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "{96: 1.0, 97: 1.0, 98: 1.0}"
      ]
     },
     "execution_count": 17,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "w_queen[99]"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "ec3c3a30-982a-4568-b942-e3f5204d29b1",
   "metadata": {},
   "source": [
    "As we will see below, the pandas series will offer substantial gains in efficiency and scope over encoding the weights as `dicts`."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "3591c67e-d29b-4630-a401-0b2892e6ab6d",
   "metadata": {},
   "source": [
    "At the same time, if the neighbors are needed in the form of a `dict`, the graph has such an attribute:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 18,
   "id": "afc97b96-a76a-4001-a59e-a1d027c7c653",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "{0: (1, 17, 18),\n",
       " 1: (0, 2, 17),\n",
       " 2: (1, 9, 17, 22, 24),\n",
       " 3: (6, 55),\n",
       " 4: (5, 8, 15, 27),\n",
       " 5: (4, 7, 27),\n",
       " 6: (3, 7, 16),\n",
       " 7: (5, 6, 16, 19, 20),\n",
       " 8: (4, 14, 15, 23, 30),\n",
       " 9: (2, 11, 24, 25),\n",
       " 10: (11, 13, 26, 28),\n",
       " 11: (9, 10, 24, 25, 26),\n",
       " 12: (13, 14, 23, 29, 36),\n",
       " 13: (10, 12, 28, 29),\n",
       " 14: (8, 12, 23),\n",
       " 15: (4, 8, 23, 27, 30, 32, 35),\n",
       " 16: (6, 7, 19),\n",
       " 17: (0, 1, 2, 18, 22, 33, 38, 40),\n",
       " 18: (0, 17, 21, 33),\n",
       " 19: (7, 16, 20),\n",
       " 20: (7, 19),\n",
       " 21: (18, 31, 33, 42, 45),\n",
       " 22: (2, 17, 24, 38, 39),\n",
       " 23: (8, 12, 14, 15, 30, 36, 53),\n",
       " 24: (2, 9, 11, 22, 25, 39, 41),\n",
       " 25: (9, 11, 24, 26, 41, 46),\n",
       " 26: (10, 11, 25, 28, 46, 47),\n",
       " 27: (4, 5, 15, 35, 43),\n",
       " 28: (10, 13, 26, 29, 47),\n",
       " 29: (12, 13, 28, 36, 47),\n",
       " 30: (8, 15, 23, 32, 36, 48, 53),\n",
       " 31: (21, 34, 45),\n",
       " 32: (15, 30, 35, 48, 50),\n",
       " 33: (17, 18, 21, 40, 42, 51),\n",
       " 34: (31, 37, 45, 52),\n",
       " 35: (15, 27, 32, 43, 50, 56),\n",
       " 36: (12, 23, 29, 30, 47, 53, 62),\n",
       " 37: (34, 52, 54),\n",
       " 38: (17, 22, 39, 40, 49, 51, 64, 67, 68),\n",
       " 39: (22, 24, 38, 41, 49),\n",
       " 40: (17, 33, 38, 51),\n",
       " 41: (24, 25, 39, 46, 49, 69, 70),\n",
       " 42: (21, 33, 45, 51, 60, 63, 64),\n",
       " 43: (27, 35, 44, 56, 86),\n",
       " 44: (43, 86),\n",
       " 45: (21, 31, 34, 42, 52, 60),\n",
       " 46: (25, 26, 41, 47, 66, 69),\n",
       " 47: (26, 28, 29, 36, 46, 59, 62, 66),\n",
       " 48: (30, 32, 50, 53, 58, 61),\n",
       " 49: (38, 39, 41, 68, 69, 70),\n",
       " 50: (32, 35, 48, 56, 58, 73, 90),\n",
       " 51: (33, 38, 40, 42, 63, 64),\n",
       " 52: (34, 37, 45, 54, 60, 71, 74),\n",
       " 53: (23, 30, 36, 48, 61, 62, 78),\n",
       " 54: (37, 52, 57, 65, 71, 74),\n",
       " 55: (3, 86),\n",
       " 56: (35, 43, 50, 79, 86, 90),\n",
       " 57: (54, 65, 72, 77),\n",
       " 58: (48, 50, 61, 73),\n",
       " 59: (47, 62, 66),\n",
       " 60: (42, 45, 52, 63, 71, 76),\n",
       " 61: (48, 53, 58, 73, 78, 87),\n",
       " 62: (36, 47, 53, 59, 66, 78, 81),\n",
       " 63: (42, 51, 60, 64, 75),\n",
       " 64: (38, 42, 51, 63, 67, 75),\n",
       " 65: (54, 57, 74, 77),\n",
       " 66: (46, 47, 59, 62, 69, 81, 85, 88, 91),\n",
       " 67: (38, 64, 68, 75, 83),\n",
       " 68: (38, 49, 67, 70, 83),\n",
       " 69: (41, 46, 49, 66, 70, 84, 88),\n",
       " 70: (41, 49, 68, 69, 83, 84),\n",
       " 71: (52, 54, 60, 74, 76),\n",
       " 72: (57, 77, 80),\n",
       " 73: (50, 58, 61, 82, 87, 90),\n",
       " 74: (52, 54, 65, 71),\n",
       " 75: (63, 64, 67),\n",
       " 76: (60, 71),\n",
       " 77: (57, 65, 72, 80, 89),\n",
       " 78: (53, 61, 62, 81, 87, 95, 96),\n",
       " 79: (56, 90),\n",
       " 80: (72, 77, 89),\n",
       " 81: (62, 66, 78, 85, 93, 95),\n",
       " 82: (73, 87, 90, 92, 94),\n",
       " 83: (67, 68, 70, 84),\n",
       " 84: (69, 70, 83, 88),\n",
       " 85: (66, 81, 88, 91, 93),\n",
       " 86: (43, 44, 55, 56),\n",
       " 87: (61, 73, 78, 82, 92, 96),\n",
       " 88: (66, 69, 84, 85, 91),\n",
       " 89: (77, 80),\n",
       " 90: (50, 56, 73, 79, 82, 94),\n",
       " 91: (66, 85, 88, 93),\n",
       " 92: (82, 87, 94, 96),\n",
       " 93: (81, 85, 91, 95, 97),\n",
       " 94: (82, 90, 92),\n",
       " 95: (78, 81, 93, 96, 97),\n",
       " 96: (78, 87, 92, 95, 97, 98, 99),\n",
       " 97: (93, 95, 96, 99),\n",
       " 98: (96, 99),\n",
       " 99: (96, 97, 98)}"
      ]
     },
     "execution_count": 18,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g_queen.neighbors"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "5d9c48c6-9b9e-45da-bcab-ebf1302ff4ce",
   "metadata": {},
   "source": [
    "## Weights\n",
    "\n",
    "The value of a weight specifies the \"strength\" of the neighbor relationship between to geographical units.\n",
    "For our contiguity weights, these will be binary valued.\n",
    "\n",
    "In the `W` case, these values are stored in the `weights` attribute:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 19,
   "id": "81111346-a12e-4ada-a9b4-de7318450d8b",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "[1.0, 1.0, 1.0]"
      ]
     },
     "execution_count": 19,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "w_queen.weights[99]"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "e0bfecb4-2b20-47ff-87d2-c92226132977",
   "metadata": {},
   "source": [
    "For the `Graph`, the values of the weights are stored in the `adjacency` attribute:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 20,
   "id": "75126118-bd99-4467-967a-6e91a745acdc",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "neighbor\n",
       "96    1\n",
       "97    1\n",
       "98    1\n",
       "Name: weight, dtype: int64"
      ]
     },
     "execution_count": 20,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g_queen[99]"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "ebee5f1c-88b3-4d23-a9cd-aee2eb42ce1b",
   "metadata": {},
   "source": [
    "Again, the underlying types of these attributes need to be kept in mind. `weights` is a `dict` for `W`, and as part of the `ajacency` attribute of the `Graph`, which is of type:\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 21,
   "id": "1814d24f-3283-45a0-8ff5-f14a16ee22b5",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "pandas.core.series.Series"
      ]
     },
     "execution_count": 21,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "type(g_queen[0])"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "d2a6f2fb-7dce-4668-9529-b080207ad373",
   "metadata": {},
   "source": [
    "And, the helper `weights` attribute on the `Graph` mimics that on the `W`."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 22,
   "id": "ce459560-5b7b-433a-bede-5bfaac273bb5",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "(1, 1, 1)"
      ]
     },
     "execution_count": 22,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g_queen.weights[99]"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "ef3bccc1-a36c-4b47-afd3-c02cd1015b4f",
   "metadata": {},
   "source": [
    "Individual weight values will be identical between the two implementations:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 23,
   "id": "b6f6d449-1d55-4d22-b889-76088cb106e6",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "True"
      ]
     },
     "execution_count": 23,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g_queen[99][97] == w_queen[99][97]"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "30c912f4-f367-405d-bd9e-f9d3589e4cc0",
   "metadata": {},
   "source": [
    "As well as the neighbor sets for a given unit:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 24,
   "id": "6fa4e245-68e2-4dc2-bbdf-b05ed7527d76",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "neighbor\n",
       "96    True\n",
       "97    True\n",
       "98    True\n",
       "Name: weight, dtype: bool"
      ]
     },
     "execution_count": 24,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g_queen[99] == w_queen.weights[99]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 25,
   "id": "b3240892-ab52-4f99-a106-c9ebee1b3131",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "[1.0, 1.0, 1.0]"
      ]
     },
     "execution_count": 25,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "w_queen.weights[99]"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "bb9e8401-d6ab-47c2-92cf-5617dbee8b69",
   "metadata": {},
   "source": [
    "We are implicitly assuming that the order of the neighbor ids in the `W` matches that of the `Graph`.\n",
    "Here we see one advantage of the `Graph` in that the information about the neighbor ids comes along for the ride in the adjacency attribute, or any pandas like queries on that attribute.\n",
    "\n",
    "To be safe, we would have to double check the ordering of the weights in `W`:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 26,
   "id": "57ef256a-8130-4124-9916-5fbe288a76db",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "{96: 1.0, 97: 1.0, 98: 1.0}"
      ]
     },
     "execution_count": 26,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "w_queen[99]"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "ea43bd1a-9525-4b5a-8d24-22fc37db423d",
   "metadata": {},
   "source": [
    "So in this case our equality check above happened to be comparing the values for the same $i,j$ observations, but this is not guaranteed to always be the case. Handling the proper alignment of the ids and the weights was a key motivation for developing the `Graph`."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "a11ed77e-1f95-406e-8ad1-72ffaf7f37a3",
   "metadata": {},
   "source": [
    "The key take-away here is that the `Graph` combines the information about who are the neighbors *and* the values of the associated weights in the *same* data structure, the `adjacency` attribute, while in `W` there are *two different* `dicts` that handle the neighbor information and the weights information (`neighbor` and `weights`, respectively)."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "b60d44ce-d9a8-4a3c-a4a2-6d2f9b1336c5",
   "metadata": {},
   "source": [
    "## Cardinalities\n",
    "The `cardinalities` attribute contains information on the number of neighbors for each unit."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 27,
   "id": "f420b789-0ede-4ade-8b17-ff7f88e3c9e0",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "{0: 3,\n",
       " 1: 3,\n",
       " 2: 5,\n",
       " 3: 2,\n",
       " 4: 4,\n",
       " 5: 3,\n",
       " 6: 3,\n",
       " 7: 5,\n",
       " 8: 5,\n",
       " 9: 4,\n",
       " 10: 4,\n",
       " 11: 5,\n",
       " 12: 5,\n",
       " 13: 4,\n",
       " 14: 3,\n",
       " 15: 7,\n",
       " 16: 3,\n",
       " 17: 8,\n",
       " 18: 4,\n",
       " 19: 3,\n",
       " 20: 2,\n",
       " 21: 5,\n",
       " 22: 5,\n",
       " 23: 7,\n",
       " 24: 7,\n",
       " 25: 6,\n",
       " 26: 6,\n",
       " 27: 5,\n",
       " 28: 5,\n",
       " 29: 5,\n",
       " 30: 7,\n",
       " 31: 3,\n",
       " 32: 5,\n",
       " 33: 6,\n",
       " 34: 4,\n",
       " 35: 6,\n",
       " 36: 7,\n",
       " 37: 3,\n",
       " 38: 9,\n",
       " 39: 5,\n",
       " 40: 4,\n",
       " 41: 7,\n",
       " 42: 7,\n",
       " 43: 5,\n",
       " 44: 2,\n",
       " 45: 6,\n",
       " 46: 6,\n",
       " 47: 8,\n",
       " 48: 6,\n",
       " 49: 6,\n",
       " 50: 7,\n",
       " 51: 6,\n",
       " 52: 7,\n",
       " 53: 7,\n",
       " 54: 6,\n",
       " 55: 2,\n",
       " 56: 6,\n",
       " 57: 4,\n",
       " 58: 4,\n",
       " 59: 3,\n",
       " 60: 6,\n",
       " 61: 6,\n",
       " 62: 7,\n",
       " 63: 5,\n",
       " 64: 6,\n",
       " 65: 4,\n",
       " 66: 9,\n",
       " 67: 5,\n",
       " 68: 5,\n",
       " 69: 7,\n",
       " 70: 6,\n",
       " 71: 5,\n",
       " 72: 3,\n",
       " 73: 6,\n",
       " 74: 4,\n",
       " 75: 3,\n",
       " 76: 2,\n",
       " 77: 5,\n",
       " 78: 7,\n",
       " 79: 2,\n",
       " 80: 3,\n",
       " 81: 6,\n",
       " 82: 5,\n",
       " 83: 4,\n",
       " 84: 4,\n",
       " 85: 5,\n",
       " 86: 4,\n",
       " 87: 6,\n",
       " 88: 5,\n",
       " 89: 2,\n",
       " 90: 6,\n",
       " 91: 4,\n",
       " 92: 4,\n",
       " 93: 5,\n",
       " 94: 3,\n",
       " 95: 5,\n",
       " 96: 7,\n",
       " 97: 4,\n",
       " 98: 2,\n",
       " 99: 3}"
      ]
     },
     "execution_count": 27,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "w_queen.cardinalities"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 28,
   "id": "358a43aa-7859-4574-9150-780ef3b4c2c6",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "focal\n",
       "0     3\n",
       "1     3\n",
       "2     5\n",
       "3     2\n",
       "4     4\n",
       "     ..\n",
       "95    5\n",
       "96    7\n",
       "97    4\n",
       "98    2\n",
       "99    3\n",
       "Name: cardinalities, Length: 100, dtype: int64"
      ]
     },
     "execution_count": 28,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g_queen.cardinalities"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "5bbcf980-4658-4e43-80f3-3955151b39a9",
   "metadata": {},
   "source": [
    "Here we see that, although the attribute name is common to both classes, the data types are different. (Note: other cases of common names but different types that we won't cover here are listed [here](../../migration.rst)).\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 29,
   "id": "0ff66bd7-c78f-4ac3-8eae-27fbd09646d6",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "(dict, pandas.core.series.Series)"
      ]
     },
     "execution_count": 29,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "type(w_queen.cardinalities), type(g_queen.cardinalities)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "88aaf817-8b72-4da4-93e3-41976bda415f",
   "metadata": {},
   "source": [
    "Summaries of the cardinality distribution can be obtained for the `W` as:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 30,
   "id": "18a20a7e-9377-4f66-bd77-48e89866a874",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "[(2, 8), (3, 15), (4, 17), (5, 23), (6, 19), (7, 14), (8, 2), (9, 2)]"
      ]
     },
     "execution_count": 30,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "w_queen.histogram"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "8f2f0877-4c46-4502-9391-820719b77fcc",
   "metadata": {},
   "source": [
    "which indicates that 8 units have 2 neighbors, 15 have 3 neighbors and so on.\n",
    "\n",
    "For the `Graph` we can more easily visualize this distribution with:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 31,
   "id": "2364e921-4e95-4441-a8a2-37a8b2ea351c",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "<Axes: >"
      ]
     },
     "execution_count": 31,
     "metadata": {},
     "output_type": "execute_result"
    },
    {
     "data": {
      "image/png": "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XvRYhVm3bl2USqVYuXJl0aNk09XVFaVSadhHW1tb0WNl9dhjj8WHP/zhOOGEE2LixInxxje+Me69996ix8rm1a9+9YjnQKlUihUrVhQ9WhaHDx+OL3zhCzFr1qyYMGFCnHjiifGlL30pBgYGih4tm97e3li5cmXMnDkzJkyYEPPnz4+dO3cWMkvN/rz6i8mOHTtixYoVcfrpp8fhw4dj9erV0dnZGb///e9j0qRJRY9Xc9OnT4+vfvWr8drXvjYiIjZv3hzvete74r777os5c+YUPF1eO3fujI0bN8Yb3vCGokfJbs6cOfHTn/506HZDQ0OB0+R14MCBOOuss+Lss8+O22+/PVpaWuLPf/5zzf+a8ovJzp0748iRI0O3f/e738WiRYvife97X4FT5fM///M/8fWvfz02b94cc+bMiV27dsVFF10UkydPjssvv7zo8bL4+Mc/Hr/73e/ixhtvjPb29vjOd74T5557bvz+97+PV73qVXmHSXVo3759KSLSjh07ih6lMK94xSvSN7/5zaLHyKq3tzfNnj07dXd3pwULFqTLL7+86JGy+eIXv5hOPfXUoscozOc+97n01re+tegxXlQuv/zy9JrXvCYNDAwUPUoW559/frr44ouHHVu6dGn68Ic/XNBEefX19aWGhob0ox/9aNjxU089Na1evTr7PHXxbZf/dvDgwYiImDJlSsGT5HfkyJG4+eab49ChQzFv3ryix8lqxYoVcf7558e5555b9CiF2L17d7S3t8esWbPiAx/4QPzlL38peqRsfvCDH8Rpp50W73vf+6KlpSXe9KY3xTe+8Y2ixyrMM888E9/5znfi4osvrvobeL5YvfWtb42f/exn8ac//SkiIn7zm9/E3XffHeedd17Bk+Vx+PDhOHLkSBx//PHDjk+YMCHuvvvu/ANlz52CDQwMpCVLltTd/wt64IEH0qRJk1JDQ0OaPHly+vGPf1z0SFnddNNNae7cuenpp59OKaW6u/Jx2223pe9+97vpgQceGLry09ramvbv31/0aFmUy+VULpfTVVddlX7961+nr3/96+n4449PmzdvLnq0QmzdujU1NDSkxx57rOhRshkYGEhXXnllKpVKafz48alUKqW1a9cWPVZW8+bNSwsWLEiPPfZYOnz4cLrxxhtTqVRKr3vd67LPUnfxcckll6SZM2emRx99tOhRsqpUKmn37t1p586d6corr0xTp05NDz74YNFjZfHII4+klpaWdP/99w8dq7f4+G9PPfVUam1tTV/72teKHiWLxsbGNG/evGHHLrvssnTmmWcWNFGxOjs70zvf+c6ix8jqpptuStOnT0833XRTeuCBB9K3v/3tNGXKlPStb32r6NGyefjhh9Pb3/72FBGpoaEhnX766elDH/pQOuWUU7LPUlfxcemll6bp06env/zlL0WPUrhzzjknfeITnyh6jCxuueWWoX9sgx8RkUqlUmpoaEiHDx8uesRCnHvuuelTn/pU0WNkMWPGjPSxj31s2LHrr78+tbe3FzRRcf7617+mcePGpVtvvbXoUbKaPn162rBhw7Bj11xzTTrppJMKmqg4Tz31VHr88cdTSim9//3vT+edd172Gerit11SSnHZZZfFLbfcEnfccUfMmjWr6JEKl1KKSqVS9BhZnHPOOfHb3/522LGLLrooTj755Pjc5z5XV7/1MahSqcQf/vCHeNvb3lb0KFmcddZZI369/k9/+lPhb3ZZhE2bNkVLS0ucf/75RY+SVV9fX4wbN/zHHBsaGurqV20HTZo0KSZNmhQHDhyIbdu2xfr167PPUBfxsWLFitiyZUt8//vfj6ampti7d29EREyePDkmTJhQ8HS19/nPfz4WL14cHR0d0dvbGzfffHPccccd8ZOf/KTo0bJoamqKuXPnDjs2adKkOOGEE0Ycf6n6zGc+E0uWLIkZM2bEvn374stf/nL09PTE8uXLix4ti09/+tMxf/78WLt2bbz//e+PX/3qV7Fx48bYuHFj0aNlNTAwEJs2bYrly5fH+PF18eV/yJIlS+IrX/lKzJgxI+bMmRP33XdfXHvttXHxxRcXPVo227Zti5RSnHTSSfHwww/HZz/72TjppJPioosuyj9M9mstBYiIo35s2rSp6NGyuPjii9PMmTPTcccdl175ylemc845J23fvr3osQpVbz/zceGFF6Zp06alxsbG1N7enpYuXVo3P/Mz6Ic//GGaO3duKpfL6eSTT04bN24seqTstm3bliIiPfTQQ0WPkl1PT0+6/PLL04wZM9Lxxx+fTjzxxLR69epUqVSKHi2brVu3phNPPDEdd9xxqa2tLa1YsSL961//KmSWUkop5U8eAKBe1eXf+QAAiiM+AICsxAcAkJX4AACyEh8AQFbiAwDISnwAAFmJDwAgK/EBAGQlPgCArMQHAJCV+AAAsvp/36DNoj2grK8AAAAASUVORK5CYII=",
      "text/plain": [
       "<Figure size 640x480 with 1 Axes>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "g_queen.cardinalities.hist(bins=range(2, 10))"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "072e73ce-f9ba-4f5e-9d7a-904ce50f12af",
   "metadata": {},
   "source": [
    "While to get a similar visualization for `W` requires other packages:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 32,
   "id": "519487e9-8a23-4a15-8731-4cc1796ddda3",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/png": "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3/72t0dd19raGosXL45Pf/rTRRsHAKe6E/r2rG984xvx8MMPx4c//OG4+eabY9SoUVEoFKKhoSG++93vxqFDh2LRokXdtRUATjknFOqqqqp4/vnn46//+q9j4cKFkWVZREQUCoX44z/+47jrrruiqqqqW4YCwKnohH/gybBhw+Lxxx+PPXv2xJYtWyLLshg5cmScddZZ3bEPAE5pnfrJZBERZ511VowbN66YWwCA39Opn/UNAPQMoQaAhAk1ACRMqAEgYUINAAkTagBImFADQMKEGgASJtQAkDChBoCECTUAJCzXUD/33HMxffr0GDx4cBQKhXjkkUc6XJ9lWdTX18fgwYOjrKwsJk2aFK+++mo+YwEgB7mG+p133okLLrggli9ffszr77jjjli2bFksX7481q9fH9XV1XHFFVdES0tLDy8FgHx0+rdnFcO0adNi2rRpx7wuy7K48847Y9GiRTFjxoyIiFi1alVUVVXF6tWr48Ybbzzm17W1tUVbW1v75ebm5uIPB4Aekux71Fu3bo1du3bF1KlT28+VlpbGxIkT4/nnnz/u1y1dujQqKiraj6FDh/bEXADoFsmGeteuXRERUVVV1eF8VVVV+3XHsnDhwti7d2/7sX379m7dCQDdKdeXvv8QhUKhw+Usy44697tKS0ujtLS0u2cBQI9I9hl1dXV1RMRRz55379591LNsADhZJRvqurq6qK6ujrVr17afO3DgQKxbty4mTJiQ4zIA6Dm5vvS9b9++2LJlS/vlrVu3xssvvxwDBw6M2tramD9/fixZsiRGjhwZI0eOjCVLlsQZZ5wR1113XY6rAaDn5BrqF198MSZPntx+ecGCBRERMWvWrLjvvvviq1/9arS2tsZNN90Ue/bsiYsvvjiefPLJKC8vz2syAPSoXEM9adKkyLLsuNcXCoWor6+P+vr6nhsFAAlJ9j1qAECoASBpQg0ACRNqAEiYUANAwoQaABIm1ACQMKEGgIQJNQAkTKgBIGFCDQAJE2oASJhQA0DChBoAEibUAJAwoQaAhAk1ACRMqAEgYUINAAkTagBImFADQMKEGgASJtQAkDChBoCECTUAJEyoASBhQg0ACRNqAEhYn7wH9DaNjY3R1NSU94yia2hoyHsCAMcg1CegsbExRo8+N1pb9+c9pdu823Yg7wkA/A6hPgFNTU3R2ro/Lp69OAbUDM97TlHtfOVnsenRFXHw4MG8pwDwO4S6EwbUDI+BtaPynlFUzTu35T0BgGPwYTIASJhQA0DChBoAEibUAJAwoQaAhAk1ACRMqAEgYUINAAkTagBImFADQMKEGgASJtQAkDChBoCECTUAJEyoASBhQg0ACRNqAEiYUANAwoQaABIm1ACQMKEGgIQJNQAkTKgBIGFCDQAJE2oASJhQA0DChBoAEibUAJAwoQaAhAk1ACRMqAEgYUINAAkTagBImFADQMKEGgASJtQAkDChBoCECTUAJEyoASBhQg0ACRNqAEiYUANAwoQaABIm1ACQMKEGgIQJNQAkTKgBIGFCDQAJE2oASFjSoa6vr49CodDhqK6uznsWAPSYPnkPeD9jxoyJp556qv1ySUlJjmsAoGclH+o+ffp4Fg3AKSvpl74jIjZv3hyDBw+Ourq6uPbaa+ONN974P2/f1tYWzc3NHQ4A6K2SDvXFF18c999/f6xZsya+973vxa5du2LChAnx5ptvHvdrli5dGhUVFe3H0KFDe3AxABRX0qGeNm1afOYzn4mPfOQjMWXKlHjsscciImLVqlXH/ZqFCxfG3r1724/t27f31FwAKLrk36P+Xf3794+PfOQjsXnz5uPeprS0NEpLS3twFQB0n6SfUf++tra2aGhoiJqamrynAECPSDrUX/nKV2LdunWxdevWeOGFF+LP/uzPorm5OWbNmpX3NADoEUm/9P3f//3f8ed//ufR1NQU55xzTlxyySXx85//PIYNG5b3NADoEUmH+sEHH8x7AgDkKumXvgHgVCfUAJAwoQaAhAk1ACRMqAEgYUINAAkTagBImFADQMKEGgASJtQAkLCkf4QoAL1TQ0ND3hO6xaBBg6K2trZH71OoASia1r1vRkQhZs6cmfeUblFWdka89lpDj8ZaqAEomnf3t0REFhded2ucUzc67zlF1bxzW7xw723R1NQk1AD0bn9UWRsDa0flPeOk4MNkAJAwoQaAhAk1ACRMqAEgYUINAAkTagBImFADQMKEGgASJtQAkDChBoCECTUAJEyoASBhQg0ACRNqAEiYUANAwoQaABIm1ACQMKEGgIQJNQAkTKgBIGFCDQAJE2oASJhQA0DChBoAEibUAJAwoQaAhAk1ACRMqAEgYUINAAkTagBImFADQMKEGgASJtQAkDChBoCECTUAJEyoASBhQg0ACRNqAEiYUANAwoQaABIm1ACQMKEGgIQJNQAkTKgBIGFCDQAJE2oASJhQA0DChBoAEibUAJAwoQaAhAk1ACRMqAEgYUINAAkTagBImFADQMKEGgASJtQAkDChBoCECTUAJEyoASBhQg0ACRNqAEiYUANAwoQaABIm1ACQMKEGgIQJNQAkTKgBIGG9ItR33XVX1NXVRb9+/eJjH/tY/OQnP8l7EgD0iORD/dBDD8X8+fNj0aJF8dJLL8UnPvGJmDZtWjQ2NuY9DQC6XZ+8B7yfZcuWxRe/+MW44YYbIiLizjvvjDVr1sTdd98dS5cuPer2bW1t0dbW1n557969ERHR3Nzc5S379u2LiIi3/uv1ONjW2uU/LyXNO/8rIiL27tgcffsUcl5TXB5b7+Sx9U4n9WPb9d4TxH379hWlKRER5eXlUSi8z39OWcLa2tqykpKS7OGHH+5w/pZbbskuu+yyY37N4sWLs4hwOBwOhyP5Y+/eve/bwqSfUTc1NcWhQ4eiqqqqw/mqqqrYtWvXMb9m4cKFsWDBgvbLhw8fjrfeeivOPvvs9/9by/tobm6OoUOHxvbt22PAgAFd+rNS47H1Th5b7+Sx9U7d8djKy8vf9zZJh/qI3w9slmXHjW5paWmUlpZ2OHfmmWcWdc+AAQNOuv8BHuGx9U4eW+/ksfVOPf3Ykv4w2aBBg6KkpOSoZ8+7d+8+6lk2AJyMkg716aefHh/72Mdi7dq1Hc6vXbs2JkyYkNMqAOg5yb/0vWDBgvj85z8fF110UYwfPz5WrFgRjY2N8aUvfanHt5SWlsbixYuPemn9ZOCx9U4eW+/ksfVOeT22QpZlWY/eYyfcddddcccdd8TOnTtj7Nix8Z3vfCcuu+yyvGcBQLfrFaEGgFNV0u9RA8CpTqgBIGFCDQAJE2oASJhQ/wGWLl0a48aNi/Ly8qisrIyrr746Xn/99bxnFcXdd98d559/fvtP2hk/fnz8+Mc/zntW0S1dujQKhULMnz8/7ylFUV9fH4VCocNRXV2d96yi2bFjR8ycOTPOPvvsOOOMM+LCCy+MDRs25D2ry4YPH37Uf2+FQiHmzJmT97QuOXjwYHzjG9+Iurq6KCsrixEjRsTtt98ehw8fzntaUbS0tMT8+fNj2LBhUVZWFhMmTIj169f32P0n/33UKVi3bl3MmTMnxo0bFwcPHoxFixbF1KlT41e/+lX0798/73ldMmTIkPiHf/iH+NCHPhQREatWrYo/+ZM/iZdeeinGjBmT87riWL9+faxYsSLOP//8vKcU1ZgxY+Kpp55qv1xSUpLjmuLZs2dPfPzjH4/JkyfHj3/846isrIz//M//LPqPAs7D+vXr49ChQ+2XN23aFFdccUVcc801Oa7qun/8x3+Me+65J1atWhVjxoyJF198Ma6//vqoqKiIefPm5T2vy2644YbYtGlTfP/734/BgwfHD37wg5gyZUr86le/ig984APdP6Crv+HqVLR79+4sIrJ169blPaVbnHXWWdk///M/5z2jKFpaWrKRI0dma9euzSZOnJjNmzcv70lFsXjx4uyCCy7Ie0a3uPXWW7NLL7007xk9Yt68edkHP/jB7PDhw3lP6ZKrrroqmz17dodzM2bMyGbOnJnTouLZv39/VlJSkv3bv/1bh/MXXHBBtmjRoh7Z4KXvTjjyO64HDhyY85LiOnToUDz44IPxzjvvxPjx4/OeUxRz5syJq666KqZMmZL3lKLbvHlzDB48OOrq6uLaa6+NN954I+9JRfHoo4/GRRddFNdcc01UVlbGRz/60fje976X96yiO3DgQPzgBz+I2bNnd/k3++Xt0ksvjaeffjp+/etfR0TEL3/5y/jpT38aV155Zc7Luu7gwYNx6NCh6NevX4fzZWVl8dOf/rRnRvTIXwdOIocPH86mT59+Uv2Nf+PGjVn//v2zkpKSrKKiInvsscfynlQUDzzwQDZ27NistbU1y7LspHpG/fjjj2f/8i//km3cuLH91YKqqqqsqakp72ldVlpampWWlmYLFy7MfvGLX2T33HNP1q9fv2zVqlV5Tyuqhx56KCspKcl27NiR95QuO3z4cPa1r30tKxQKWZ8+fbJCoZAtWbIk71lFM378+GzixInZjh07soMHD2bf//73s0KhkH34wx/ukfsX6hN00003ZcOGDcu2b9+e95SiaWtryzZv3pytX78++9rXvpYNGjQoe/XVV/Oe1SWNjY1ZZWVl9vLLL7efO5lC/fv27duXVVVVZd/+9rfzntJlffv2zcaPH9/h3Ny5c7NLLrkkp0XdY+rUqdmnP/3pvGcUxQMPPJANGTIke+CBB7KNGzdm999/fzZw4MDsvvvuy3taUWzZsiW77LLLsojISkpKsnHjxmV/8Rd/kZ177rk9cv9CfQJuvvnmbMiQIdkbb7yR95Rudfnll2d/9Vd/lfeMLvnhD3/Y/i/VkSMiskKhkJWUlGQHDx7Me2LRTZkyJfvSl76U94wuq62tzb74xS92OHfXXXdlgwcPzmlR8W3bti077bTTskceeSTvKUUxZMiQbPny5R3O/d3f/V02atSonBZ1j3379mW/+c1vsizLss9+9rPZlVde2SP361Pff4Asy2Lu3Lnxwx/+MJ599tmoq6vLe1K3yrIs2tra8p7RJZdffnm88sorHc5df/31MXr06Lj11ltPmk9IH9HW1hYNDQ3xiU98Iu8pXfbxj3/8qG9//PWvfx3Dhg3LaVHxrVy5MiorK+Oqq67Ke0pR7N+/P047reNHnkpKSk6ab886on///tG/f//Ys2dPrFmzJu64444euV+h/gPMmTMnVq9eHT/60Y+ivLw8du3aFRERFRUVUVZWlvO6rvn6178e06ZNi6FDh0ZLS0s8+OCD8eyzz8YTTzyR97QuKS8vj7Fjx3Y4179//zj77LOPOt8bfeUrX4np06dHbW1t7N69O/7+7/8+mpubY9asWXlP67Ivf/nLMWHChFiyZEl89rOfjf/4j/+IFStWxIoVK/KeVhSHDx+OlStXxqxZs6JPn5Pj/4KnT58e3/rWt6K2tjbGjBkTL730Uixbtixmz56d97SiWLNmTWRZFqNGjYotW7bE3/zN38SoUaPi+uuv75kBPfK8vZeLiGMeK1euzHtal82ePTsbNmxYdvrpp2fnnHNOdvnll2dPPvlk3rO6xcn0HvXnPve5rKamJuvbt282ePDgbMaMGb3+cwW/61//9V+zsWPHZqWlpdno0aOzFStW5D2paNasWZNFRPb666/nPaVompubs3nz5mW1tbVZv379shEjRmSLFi3K2tra8p5WFA899FA2YsSI7PTTT8+qq6uzOXPmZG+//XaP3b9fcwkACfN91ACQMKEGgIQJNQAkTKgBIGFCDQAJE2oASJhQA0DChBoAEibUAJAwoQaAhAk1ACTs/wEb95lmbL5kRQAAAABJRU5ErkJggg==",
      "text/plain": [
       "<Figure size 500x500 with 1 Axes>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "sns.displot(pd.Series(w_queen.cardinalities), bins=range(2, 10));"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "b8fe49b2-8bb8-4e93-bfb3-dc9e93410df2",
   "metadata": {},
   "source": [
    "## Geovisualization of the Weights\n",
    "\n",
    "Both `W` and `Graph` afford the ability to visualize the connectivity structure as a graph embedded in the geographic space.\n",
    "For the `W`, the `plot` method can be used"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 33,
   "id": "0cb29997-4555-4883-b118-3802d2adda9e",
   "metadata": {},
   "outputs": [],
   "source": [
    "gdf = gdf.to_crs(gdf.estimate_utm_crs())"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 34,
   "id": "72a287f3-c85e-411b-939f-a1ba5fdf5ff1",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/png": "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",
      "text/plain": [
       "<Figure size 640x480 with 1 Axes>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "w_queen.plot(gdf);"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "068e0437-0e1e-47cd-a0e5-8f477bc9d2d9",
   "metadata": {},
   "source": [
    "and the same can be done with the `Graph`:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 35,
   "id": "b560cc2e-9438-4e65-a3a2-d70bec954f8b",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "<Axes: >"
      ]
     },
     "execution_count": 35,
     "metadata": {},
     "output_type": "execute_result"
    },
    {
     "data": {
      "image/png": "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cOCAQRutVksTJkzgff788892dRJOTk6msLAwmj17NrVq1Ur2PSC0BAQEUJMmTWjEiBG0du1aunbtGtcCsWdaylxj6TPNNFvjx483WN+4cWMCQG3atDHbR2YIIpmleZZLZszfSlVwBQU74OjoiClTpqBHjx6ibebNm2dxLaiEhAQAsKneioODAzp06IC2bdti27ZtmDRpEh48eCDYloigUqnwww8/IC0tDW/evEFMTIzg8uHDB6vHJIRWq4VWq7VrnwyNRiO43tXVFS4uLqJLQkICnjx5Yrb/ypUrIyAgQLLNy5cvceXKFbN9dejQAR07dkTz5s1Ru3ZtuLm5ibaVU/35r7/+wty5c80eFwCioqIkt7PxV65cGe/evcOtW7fw4sULgzYqlQpTpkyBh4cHxowZgylTpiApKQlz5syxuLq1EO7u7qhRowZq1KgBQHfPhoeHY+7cuVi0aJHZ/Xv06IHu3bujdOnS8PX1FW3n6OiI+fPno127dia1odh5WPpMFy5cGABM7qlff/0Vhw8fRmhoKMLCwhAcHCzaR3BwMAICAhAZGSlYr4rVnpPqw5h8+fLZtd0ngd3EpCxG0dwoZDUsSZd+FAJbZsyYYVWfR44cIQBUpkwZu43z6NGjdtMyuLi4UEBAAFWsWJEaN25M3bp1oxEjRshO+rZ7926KjY2l6OhoioqKosjISIqIiKBnz57R06dP6fHjx/Tw4UO6d+8e3blzh/766y+6efMmXbt2ja5cuUKLFy+WdZytW7dSdHQ0vX//npKSkigjI0OWNsGeX8ly+9JfPDw8qEWLFrRs2TKTTLVSZsXIyEiaM2eOgXO5Pc4jX758BIDOnTvHHW7HjRsn2v7333/nff/www9mowNtIbNMK+ZSMljaFwD68ssvTbb16dOHAFCVKlXMXifWj/Fire9WZmipLEExS0mgCDcKWcn79+95mGZISAh30mU29goVKlj1YmAvserVq9ttrHJV0MWLF6f27dtT//79afLkybR48WIKCQmhsLAwevjwIcXFxYkKCOZelmyCsPVlqVar+YSbGS9le7705fQVEBBAO3fupL59+xpEJbGlYsWKNGHCBJo5c6bktdXf5uzsTK1ataKcOXPadB76/l9JSUk0Y8YMAnQmKilWrFjBj9u1a1fKyMiw+HeQw969e81eE2vvBbVazaPBWrVqZfX9dP36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",
      "text/plain": [
       "<Figure size 640x480 with 1 Axes>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "g_queen.plot(gdf)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "ff87e52b-5035-44c3-9e25-adff9d1ffcfe",
   "metadata": {},
   "source": [
    "However, the `Graph` adds an `explore` function allowing for a richer visualization:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 36,
   "id": "e372a3c5-cc3c-45b1-b1be-b73756ff1279",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<div style=\"width:100%;\"><div style=\"position:relative;width:100%;height:0;padding-bottom:60%;\"><span style=\"color:#565656\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\"&lt;!DOCTYPE html&gt;\n",
       "&lt;html&gt;\n",
       "&lt;head&gt;\n",
       "    \n",
       "    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\n",
       "    \n",
       "        &lt;script&gt;\n",
       "            L_NO_TOUCH = false;\n",
       "            L_DISABLE_3D = false;\n",
       "        &lt;/script&gt;\n",
       "    \n",
       "    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\n",
       "    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\n",
       "    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\n",
       "    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\n",
       "    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\n",
       "    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\n",
       "    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\n",
       "    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\n",
       "    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css&quot;/&gt;\n",
       "    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\n",
       "    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\n",
       "    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\n",
       "    \n",
       "            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\n",
       "                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\n",
       "            &lt;style&gt;\n",
       "                #map_4e4cc50555d29d4cafe90d8dcbfd79b9 {\n",
       "                    position: relative;\n",
       "                    width: 100.0%;\n",
       "                    height: 100.0%;\n",
       "                    left: 0.0%;\n",
       "                    top: 0.0%;\n",
       "                }\n",
       "                .leaflet-container { font-size: 1rem; }\n",
       "            &lt;/style&gt;\n",
       "        \n",
       "    \n",
       "                    &lt;style&gt;\n",
       "                        .foliumtooltip {\n",
       "                            \n",
       "                        }\n",
       "                       .foliumtooltip table{\n",
       "                            margin: auto;\n",
       "                        }\n",
       "                        .foliumtooltip tr{\n",
       "                            text-align: left;\n",
       "                        }\n",
       "                        .foliumtooltip th{\n",
       "                            padding: 2px; padding-right: 8px;\n",
       "                        }\n",
       "                    &lt;/style&gt;\n",
       "            \n",
       "    \n",
       "                    &lt;style&gt;\n",
       "                        .foliumtooltip {\n",
       "                            \n",
       "                        }\n",
       "                       .foliumtooltip table{\n",
       "                            margin: auto;\n",
       "                        }\n",
       "                        .foliumtooltip tr{\n",
       "                            text-align: left;\n",
       "                        }\n",
       "                        .foliumtooltip th{\n",
       "                            padding: 2px; padding-right: 8px;\n",
       "                        }\n",
       "                    &lt;/style&gt;\n",
       "            \n",
       "    \n",
       "                    &lt;style&gt;\n",
       "                        .foliumtooltip {\n",
       "                            \n",
       "                        }\n",
       "                       .foliumtooltip table{\n",
       "                            margin: auto;\n",
       "                        }\n",
       "                        .foliumtooltip tr{\n",
       "                            text-align: left;\n",
       "                        }\n",
       "                        .foliumtooltip th{\n",
       "                            padding: 2px; padding-right: 8px;\n",
       "                        }\n",
       "                    &lt;/style&gt;\n",
       "            \n",
       "&lt;/head&gt;\n",
       "&lt;body&gt;\n",
       "    \n",
       "    \n",
       "            &lt;div class=&quot;folium-map&quot; id=&quot;map_4e4cc50555d29d4cafe90d8dcbfd79b9&quot; &gt;&lt;/div&gt;\n",
       "        \n",
       "&lt;/body&gt;\n",
       "&lt;script&gt;\n",
       "    \n",
       "    \n",
       "            var map_4e4cc50555d29d4cafe90d8dcbfd79b9 = L.map(\n",
       "                &quot;map_4e4cc50555d29d4cafe90d8dcbfd79b9&quot;,\n",
       "                {\n",
       "                    center: [35.235820770263665, -79.89041519165039],\n",
       "                    crs: L.CRS.EPSG3857,\n",
       "                    zoom: 10,\n",
       "                    zoomControl: true,\n",
       "                    preferCanvas: false,\n",
       "                }\n",
       "            );\n",
       "            L.control.scale().addTo(map_4e4cc50555d29d4cafe90d8dcbfd79b9);\n",
       "\n",
       "            \n",
       "\n",
       "        \n",
       "    \n",
       "            var tile_layer_19357033389877fc2230916b2dbb30ed = L.tileLayer(\n",
       "                &quot;https://a.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png&quot;,\n",
       "                {&quot;attribution&quot;: &quot;\\u0026copy; \\u003ca href=\\&quot;https://www.openstreetmap.org/copyright\\&quot;\\u003eOpenStreetMap\\u003c/a\\u003e contributors \\u0026copy; \\u003ca href=\\&quot;https://carto.com/attributions\\&quot;\\u003eCARTO\\u003c/a\\u003e&quot;, &quot;detectRetina&quot;: false, &quot;maxNativeZoom&quot;: 20, &quot;maxZoom&quot;: 20, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\n",
       "            );\n",
       "        \n",
       "    \n",
       "            tile_layer_19357033389877fc2230916b2dbb30ed.addTo(map_4e4cc50555d29d4cafe90d8dcbfd79b9);\n",
       "        \n",
       "    \n",
       "            map_4e4cc50555d29d4cafe90d8dcbfd79b9.fitBounds(\n",
       "                [[33.88199234008788, -84.3238525390625], [36.589649200439446, -75.45697784423828]],\n",
       "                {}\n",
       "            );\n",
       "        \n",
       "    \n",
       "        function geo_json_e05a8ca41ab613d20be5e827a7c55cce_styler(feature) {\n",
       "            switch(feature.id) {\n",
       "                default:\n",
       "                    return {&quot;fillOpacity&quot;: 0.5, &quot;weight&quot;: 2};\n",
       "            }\n",
       "        }\n",
       "        function geo_json_e05a8ca41ab613d20be5e827a7c55cce_highlighter(feature) {\n",
       "            switch(feature.id) {\n",
       "                default:\n",
       "                    return {&quot;fillOpacity&quot;: 0.75};\n",
       "            }\n",
       "        }\n",
       "        function geo_json_e05a8ca41ab613d20be5e827a7c55cce_pointToLayer(feature, latlng) {\n",
       "            var opts = {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3388ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#3388ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 2, &quot;stroke&quot;: true, &quot;weight&quot;: 3};\n",
       "            \n",
       "            let style = geo_json_e05a8ca41ab613d20be5e827a7c55cce_styler(feature)\n",
       "            Object.assign(opts, style)\n",
       "            \n",
       "            return new L.CircleMarker(latlng, opts)\n",
       "        }\n",
       "\n",
       "        function geo_json_e05a8ca41ab613d20be5e827a7c55cce_onEachFeature(feature, layer) {\n",
       "            layer.on({\n",
       "                mouseout: function(e) {\n",
       "                    if(typeof e.target.setStyle === &quot;function&quot;){\n",
       "                        geo_json_e05a8ca41ab613d20be5e827a7c55cce.resetStyle(e.target);\n",
       "                    }\n",
       "                },\n",
       "                mouseover: function(e) {\n",
       "                    if(typeof e.target.setStyle === &quot;function&quot;){\n",
       "                        const highlightStyle = geo_json_e05a8ca41ab613d20be5e827a7c55cce_highlighter(e.target.feature)\n",
       "                        e.target.setStyle(highlightStyle);\n",
       "                    }\n",
       "                },\n",
       "            });\n",
       "        };\n",
       "        var geo_json_e05a8ca41ab613d20be5e827a7c55cce = L.geoJson(null, {\n",
       "                onEachFeature: geo_json_e05a8ca41ab613d20be5e827a7c55cce_onEachFeature,\n",
       "            \n",
       "                style: geo_json_e05a8ca41ab613d20be5e827a7c55cce_styler,\n",
       "                pointToLayer: geo_json_e05a8ca41ab613d20be5e827a7c55cce_pointToLayer,\n",
       "        });\n",
       "\n",
       "        function geo_json_e05a8ca41ab613d20be5e827a7c55cce_add (data) {\n",
       "            geo_json_e05a8ca41ab613d20be5e827a7c55cce\n",
       "                .addData(data);\n",
       "        }\n",
       "            geo_json_e05a8ca41ab613d20be5e827a7c55cce_add({&quot;bbox&quot;: [-84.3238525390625, 33.88199234008788, -75.45697784423828, 36.589649200439446], &quot;features&quot;: [{&quot;bbox&quot;: [-81.74107360839844, 36.23435592651367, -81.2398910522461, 36.589649200439446], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.4727554321289, 36.23435592651367], [-81.5408401489258, 36.27250671386719], [-81.56198120117188, 36.2735939025879], [-81.63306427001953, 36.3406867980957], [-81.74107360839844, 36.39178466796875], [-81.69828033447266, 36.4717788696289], [-81.70279693603516, 36.51934051513671], [-81.66999816894531, 36.589649200439446], [-81.34529876708984, 36.5728645324707], [-81.34754180908203, 36.53791427612304], [-81.32477569580078, 36.51367950439453], [-81.31332397460938, 36.48069763183594], [-81.2662353515625, 36.43720626831055], [-81.2628402709961, 36.40504074096678], [-81.24069213867188, 36.37941741943359], [-81.2398910522461, 36.36536407470704], [-81.26424407958984, 36.352413177490234], [-81.32899475097656, 36.363502502441406], [-81.36137390136719, 36.353160858154304], [-81.36569213867188, 36.33905029296874], [-81.35413360595703, 36.29971694946288], [-81.3674545288086, 36.2786979675293], [-81.40638732910156, 36.28505325317382], [-81.4123306274414, 36.26729202270508], [-81.43103790283203, 36.260719299316406], [-81.45288848876953, 36.239585876464844], [-81.4727554321289, 36.23435592651367]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.114, &quot;BIR74&quot;: 1091.0, &quot;BIR79&quot;: 1364.0, &quot;CNTY_&quot;: 1825, &quot;CNTY_ID&quot;: 1825, &quot;CRESS_ID&quot;: 5, &quot;FIPS&quot;: &quot;37009&quot;, &quot;FIPSNO&quot;: 37009, &quot;NAME&quot;: &quot;Ashe&quot;, &quot;NWBIR74&quot;: 10.0, &quot;NWBIR79&quot;: 19.0, &quot;NWR74&quot;: 9.165903, &quot;NWR79&quot;: 13.929619, &quot;PERIMETER&quot;: 1.442, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 0.91659, &quot;SIDR79&quot;: 0.0}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.34754180908203, 36.36536407470704, -80.9034423828125, 36.5728645324707], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.2398910522461, 36.36536407470704], [-81.24069213867188, 36.37941741943359], [-81.2628402709961, 36.40504074096678], [-81.2662353515625, 36.43720626831055], [-81.31332397460938, 36.48069763183594], [-81.32477569580078, 36.51367950439453], [-81.34754180908203, 36.53791427612304], [-81.34529876708984, 36.5728645324707], [-80.9034423828125, 36.56521224975587], [-80.93354797363283, 36.49831390380859], [-80.96577453613281, 36.467220306396484], [-80.94966888427734, 36.41473388671876], [-80.95639038085938, 36.4037971496582], [-80.97795104980469, 36.39137649536133], [-80.98284149169922, 36.37183380126953], [-81.00277709960938, 36.36668014526367], [-81.02464294433594, 36.37783432006836], [-81.04280090332031, 36.410335540771484], [-81.08425140380861, 36.4299201965332], [-81.09856414794922, 36.43115234375], [-81.11331176757812, 36.42285156249999], [-81.12937927246094, 36.42633056640625], [-81.13839721679688, 36.41762542724609], [-81.15336608886719, 36.424739837646484], [-81.17667388916016, 36.415443420410156], [-81.2398910522461, 36.36536407470704]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;1&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.061, &quot;BIR74&quot;: 487.0, &quot;BIR79&quot;: 542.0, &quot;CNTY_&quot;: 1827, &quot;CNTY_ID&quot;: 1827, &quot;CRESS_ID&quot;: 3, &quot;FIPS&quot;: &quot;37005&quot;, &quot;FIPSNO&quot;: 37005, &quot;NAME&quot;: &quot;Alleghany&quot;, &quot;NWBIR74&quot;: 10.0, &quot;NWBIR79&quot;: 12.0, &quot;NWR74&quot;: 20.533881, &quot;NWR79&quot;: 22.140221, &quot;PERIMETER&quot;: 1.231, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 3.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 5.535055}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.96577453613281, 36.23388290405273, -80.43531036376953, 36.56521224975587], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.45634460449219, 36.242557525634766], [-80.47638702392578, 36.25472640991212], [-80.53688049316406, 36.256736755371094], [-80.54501342773438, 36.27665710449219], [-80.55415344238281, 36.2784309387207], [-80.5905990600586, 36.2682762145996], [-80.62431335449219, 36.27309799194336], [-80.66744232177734, 36.24610137939452], [-80.6966552734375, 36.259090423583984], [-80.72403717041017, 36.25847244262694], [-80.73436737060547, 36.26475906372071], [-80.7525634765625, 36.25829696655273], [-80.76629638671876, 36.26183700561523], [-80.78269958496094, 36.24857711791992], [-80.87438201904297, 36.23388290405273], [-80.87086486816406, 36.324623107910156], [-80.88892364501953, 36.35442733764648], [-80.92456817626953, 36.37275314331055], [-80.95639038085938, 36.4037971496582], [-80.94966888427734, 36.41473388671876], [-80.96577453613281, 36.467220306396484], [-80.93354797363283, 36.49831390380859], [-80.9034423828125, 36.56521224975587], [-80.8381576538086, 36.56343841552734], [-80.61105346679688, 36.55729675292969], [-80.43531036376953, 36.55104446411133], [-80.45301055908205, 36.257087707519524], [-80.45634460449219, 36.242557525634766]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;2&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.143, &quot;BIR74&quot;: 3188.0, &quot;BIR79&quot;: 3616.0, &quot;CNTY_&quot;: 1828, &quot;CNTY_ID&quot;: 1828, &quot;CRESS_ID&quot;: 86, &quot;FIPS&quot;: &quot;37171&quot;, &quot;FIPSNO&quot;: 37171, &quot;NAME&quot;: &quot;Surry&quot;, &quot;NWBIR74&quot;: 208.0, &quot;NWBIR79&quot;: 260.0, &quot;NWR74&quot;: 65.244668, &quot;NWR79&quot;: 71.902655, &quot;PERIMETER&quot;: 1.63, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 6.0, &quot;SIDR74&quot;: 1.568381, &quot;SIDR79&quot;: 1.659292}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.33025360107422, 36.072818756103516, -75.77315521240234, 36.55716323852538], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-76.00897216796875, 36.319595336914055], [-76.01734924316406, 36.33773040771483], [-76.03287506103516, 36.335975646972656], [-76.04395294189453, 36.353591918945305], [-76.09508514404297, 36.34891510009766], [-76.16092681884766, 36.39189910888672], [-76.15814971923828, 36.412689208984375], [-76.16828918457031, 36.42708587646483], [-76.33025360107422, 36.55605697631837], [-76.12739562988281, 36.55716323852538], [-76.04595947265625, 36.556953430175774], [-76.03321075439453, 36.51437377929687], [-76.091064453125, 36.50356674194335], [-75.97607421875, 36.436214447021484], [-75.96976470947266, 36.41511917114258], [-76.0016098022461, 36.418914794921875], [-75.95125579833984, 36.36547088623046], [-75.9281234741211, 36.42324447631836], [-75.92459106445312, 36.350948333740234], [-75.80005645751953, 36.112815856933594], [-75.7988510131836, 36.072818756103516], [-75.85516357421875, 36.10566711425782], [-75.91376495361328, 36.24480056762695], [-75.95751190185547, 36.259452819824205], [-75.94193267822266, 36.29433822631836], [-76.00897216796875, 36.319595336914055]]], [[[-76.02716827392578, 36.5567169189453], [-75.99866485595703, 36.55665206909179], [-75.91191864013672, 36.542530059814446], [-75.9248046875, 36.473976135253906], [-75.97727966308594, 36.478015899658196], [-75.97628784179688, 36.51792526245117], [-76.02716827392578, 36.5567169189453]]], [[[-75.90198516845703, 36.55619812011719], [-75.87816619873047, 36.55587387084961], [-75.77315521240234, 36.22925567626953], [-75.78317260742188, 36.225193023681626], [-75.90198516845703, 36.55619812011719]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;3&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.07, &quot;BIR74&quot;: 508.0, &quot;BIR79&quot;: 830.0, &quot;CNTY_&quot;: 1831, &quot;CNTY_ID&quot;: 1831, &quot;CRESS_ID&quot;: 27, &quot;FIPS&quot;: &quot;37053&quot;, &quot;FIPSNO&quot;: 37053, &quot;NAME&quot;: &quot;Currituck&quot;, &quot;NWBIR74&quot;: 123.0, &quot;NWBIR79&quot;: 145.0, &quot;NWR74&quot;: 242.125984, &quot;NWR79&quot;: 174.698795, &quot;PERIMETER&quot;: 2.968, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 1.968504, &quot;SIDR79&quot;: 2.409639}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.90120697021484, 36.162765502929695, -77.07530975341798, 36.55628585815428], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.21766662597656, 36.240982055664055], [-77.23461151123047, 36.21459960937501], [-77.29861450195312, 36.21152877807615], [-77.29351043701172, 36.16286087036132], [-77.30947875976564, 36.162765502929695], [-77.33499145507812, 36.1828498840332], [-77.38903045654297, 36.2031021118164], [-77.37862396240234, 36.24008560180665], [-77.41346740722656, 36.255817413330064], [-77.41885375976562, 36.281795501708984], [-77.45411682128906, 36.31975555419921], [-77.53807830810547, 36.302459716796875], [-77.55743408203125, 36.30421447753906], [-77.57195281982422, 36.314495086669915], [-77.580078125, 36.32826995849609], [-77.55968475341797, 36.37594604492188], [-77.56041717529297, 36.406356811523445], [-77.63597106933594, 36.44053649902344], [-77.65099334716797, 36.47258758544922], [-77.6988754272461, 36.47895812988282], [-77.74940490722656, 36.47357177734376], [-77.90120697021484, 36.50988769531249], [-77.89885711669922, 36.55294418334961], [-77.76393127441406, 36.55344009399414], [-77.32005310058594, 36.55391693115235], [-77.17735290527344, 36.55628585815428], [-77.1544189453125, 36.526252746582024], [-77.09213256835938, 36.50751876831054], [-77.07530975341798, 36.48351669311524], [-77.0832748413086, 36.470096588134766], [-77.12732696533203, 36.470710754394524], [-77.13932037353516, 36.456478118896484], [-77.14196014404297, 36.41706466674805], [-77.21766662597656, 36.240982055664055]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;4&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.153, &quot;BIR74&quot;: 1421.0, &quot;BIR79&quot;: 1606.0, &quot;CNTY_&quot;: 1832, &quot;CNTY_ID&quot;: 1832, &quot;CRESS_ID&quot;: 66, &quot;FIPS&quot;: &quot;37131&quot;, &quot;FIPSNO&quot;: 37131, &quot;NAME&quot;: &quot;Northampton&quot;, &quot;NWBIR74&quot;: 1066.0, &quot;NWBIR79&quot;: 1197.0, &quot;NWR74&quot;: 750.175932, &quot;NWR79&quot;: 745.330012, &quot;PERIMETER&quot;: 2.206, &quot;SID74&quot;: 9.0, &quot;SID79&quot;: 3.0, &quot;SIDR74&quot;: 6.333568, &quot;SIDR79&quot;: 1.867995}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.21766662597656, 36.23023605346679, -76.7074966430664, 36.55628585815428], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.74506378173828, 36.233917236328125], [-76.9806900024414, 36.23023605346679], [-76.99475097656251, 36.23558044433594], [-77.13007354736328, 36.23346328735351], [-77.21766662597656, 36.240982055664055], [-77.14196014404297, 36.41706466674805], [-77.13932037353516, 36.456478118896484], [-77.12732696533203, 36.470710754394524], [-77.0832748413086, 36.470096588134766], [-77.07530975341798, 36.48351669311524], [-77.09213256835938, 36.50751876831054], [-77.1544189453125, 36.526252746582024], [-77.17735290527344, 36.55628585815428], [-76.92413330078125, 36.554145812988274], [-76.9084243774414, 36.50428390502929], [-76.94577026367188, 36.458961486816406], [-76.95367431640625, 36.419231414794915], [-76.94351196289062, 36.401729583740234], [-76.92407989501953, 36.392444610595696], [-76.74134826660156, 36.315166473388665], [-76.7074966430664, 36.26613235473632], [-76.74506378173828, 36.233917236328125]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;5&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.097, &quot;BIR74&quot;: 1452.0, &quot;BIR79&quot;: 1838.0, &quot;CNTY_&quot;: 1833, &quot;CNTY_ID&quot;: 1833, &quot;CRESS_ID&quot;: 46, &quot;FIPS&quot;: &quot;37091&quot;, &quot;FIPSNO&quot;: 37091, &quot;NAME&quot;: &quot;Hertford&quot;, &quot;NWBIR74&quot;: 954.0, &quot;NWBIR79&quot;: 1237.0, &quot;NWR74&quot;: 657.024793, &quot;NWR79&quot;: 673.014146, &quot;PERIMETER&quot;: 1.67, &quot;SID74&quot;: 7.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 4.820937, &quot;SIDR79&quot;: 2.720348}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.56358337402344, 36.169727325439446, -75.95718383789062, 36.55605697631837], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.00897216796875, 36.319595336914055], [-75.95718383789062, 36.19377136230468], [-75.98133850097656, 36.169727325439446], [-76.18316650390625, 36.31523895263672], [-76.1934814453125, 36.3248519897461], [-76.21619415283203, 36.3278465270996], [-76.23853302001953, 36.36122894287108], [-76.26128387451172, 36.363758087158196], [-76.27413177490234, 36.38140869140625], [-76.30335998535156, 36.39184570312499], [-76.32136535644531, 36.4096450805664], [-76.40596771240234, 36.44715881347657], [-76.49834442138672, 36.50390243530274], [-76.56358337402344, 36.55525207519531], [-76.49755859375, 36.55581283569335], [-76.33025360107422, 36.55605697631837], [-76.16828918457031, 36.42708587646483], [-76.15814971923828, 36.412689208984375], [-76.16092681884766, 36.39189910888672], [-76.09508514404297, 36.34891510009766], [-76.04395294189453, 36.353591918945305], [-76.03287506103516, 36.335975646972656], [-76.01734924316406, 36.33773040771483], [-76.00897216796875, 36.319595336914055]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;6&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.062, &quot;BIR74&quot;: 286.0, &quot;BIR79&quot;: 350.0, &quot;CNTY_&quot;: 1834, &quot;CNTY_ID&quot;: 1834, &quot;CRESS_ID&quot;: 15, &quot;FIPS&quot;: &quot;37029&quot;, &quot;FIPSNO&quot;: 37029, &quot;NAME&quot;: &quot;Camden&quot;, &quot;NWBIR74&quot;: 115.0, &quot;NWBIR79&quot;: 139.0, &quot;NWR74&quot;: 402.097902, &quot;NWR79&quot;: 397.142857, &quot;PERIMETER&quot;: 1.547, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 5.714286}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.95367431640625, 36.294517517089844, -76.4603500366211, 36.55525207519531], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.56250762939453, 36.34056854248046], [-76.60424041748048, 36.31498336791992], [-76.6482162475586, 36.31531524658204], [-76.68873596191406, 36.294517517089844], [-76.77664184570312, 36.358329772949226], [-76.92407989501953, 36.392444610595696], [-76.94351196289062, 36.401729583740234], [-76.95367431640625, 36.419231414794915], [-76.94577026367188, 36.458961486816406], [-76.9084243774414, 36.50428390502929], [-76.92413330078125, 36.554145812988274], [-76.921630859375, 36.55415725708007], [-76.56358337402344, 36.55525207519531], [-76.49834442138672, 36.50390243530274], [-76.5024642944336, 36.45228576660156], [-76.4603500366211, 36.37389755249023], [-76.56250762939453, 36.34056854248046]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;7&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.091, &quot;BIR74&quot;: 420.0, &quot;BIR79&quot;: 594.0, &quot;CNTY_&quot;: 1835, &quot;CNTY_ID&quot;: 1835, &quot;CRESS_ID&quot;: 37, &quot;FIPS&quot;: &quot;37073&quot;, &quot;FIPSNO&quot;: 37073, &quot;NAME&quot;: &quot;Gates&quot;, &quot;NWBIR74&quot;: 254.0, &quot;NWBIR79&quot;: 371.0, &quot;NWR74&quot;: 604.761905, &quot;NWR79&quot;: 624.579125, &quot;PERIMETER&quot;: 1.284, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 3.367003}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.32125091552734, 36.195945739746094, -77.89885711669922, 36.55294418334961], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.30876159667969, 36.260040283203125], [-78.28292846679688, 36.2918815612793], [-78.32125091552734, 36.5455322265625], [-78.05166625976562, 36.552474975585945], [-77.89885711669922, 36.55294418334961], [-77.90120697021484, 36.50988769531249], [-77.91692352294922, 36.50063705444335], [-77.93013763427734, 36.35298538208006], [-77.95208740234375, 36.28123092651367], [-78.00628662109375, 36.195945739746094], [-78.058349609375, 36.21132278442383], [-78.10962677001953, 36.213508605957024], [-78.13471984863281, 36.23658370971679], [-78.30876159667969, 36.260040283203125]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;8&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.118, &quot;BIR74&quot;: 968.0, &quot;BIR79&quot;: 1190.0, &quot;CNTY_&quot;: 1836, &quot;CNTY_ID&quot;: 1836, &quot;CRESS_ID&quot;: 93, &quot;FIPS&quot;: &quot;37185&quot;, &quot;FIPSNO&quot;: 37185, &quot;NAME&quot;: &quot;Warren&quot;, &quot;NWBIR74&quot;: 748.0, &quot;NWBIR79&quot;: 844.0, &quot;NWR74&quot;: 772.727273, &quot;NWR79&quot;: 709.243697, &quot;PERIMETER&quot;: 1.421, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 4.132231, &quot;SIDR79&quot;: 1.680672}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.45301055908205, 36.2502326965332, -80.02405548095703, 36.55104446411133], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.02567291259766, 36.2502326965332], [-80.45301055908205, 36.257087707519524], [-80.43531036376953, 36.55104446411133], [-80.048095703125, 36.54713439941405], [-80.02405548095703, 36.545024871826165], [-80.02567291259766, 36.2502326965332]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;9&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.124, &quot;BIR74&quot;: 1612.0, &quot;BIR79&quot;: 2038.0, &quot;CNTY_&quot;: 1837, &quot;CNTY_ID&quot;: 1837, &quot;CRESS_ID&quot;: 85, &quot;FIPS&quot;: &quot;37169&quot;, &quot;FIPSNO&quot;: 37169, &quot;NAME&quot;: &quot;Stokes&quot;, &quot;NWBIR74&quot;: 160.0, &quot;NWBIR79&quot;: 176.0, &quot;NWR74&quot;: 99.255583, &quot;NWR79&quot;: 86.359176, &quot;PERIMETER&quot;: 1.428, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 0.620347, &quot;SIDR79&quot;: 2.453386}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.53050994873047, 36.23366928100587, -79.14432525634766, 36.5497817993164], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.53050994873047, 36.246135711669915], [-79.51029968261719, 36.54765701293946], [-79.2170639038086, 36.5497817993164], [-79.14432525634766, 36.546058654785156], [-79.15927124023438, 36.23366928100587], [-79.25849914550781, 36.23568725585937], [-79.53050994873047, 36.246135711669915]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;10&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.114, &quot;BIR74&quot;: 1035.0, &quot;BIR79&quot;: 1253.0, &quot;CNTY_&quot;: 1838, &quot;CNTY_ID&quot;: 1838, &quot;CRESS_ID&quot;: 17, &quot;FIPS&quot;: &quot;37033&quot;, &quot;FIPSNO&quot;: 37033, &quot;NAME&quot;: &quot;Caswell&quot;, &quot;NWBIR74&quot;: 550.0, &quot;NWBIR79&quot;: 597.0, &quot;NWR74&quot;: 531.400966, &quot;NWR79&quot;: 476.456504, &quot;PERIMETER&quot;: 1.352, &quot;SID74&quot;: 2.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 1.932367, &quot;SIDR79&quot;: 1.596169}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.02567291259766, 36.236156463623054, -79.51029968261719, 36.547889709472656], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.53050994873047, 36.246135711669915], [-79.53057861328125, 36.236156463623054], [-80.02567291259766, 36.2502326965332], [-80.02405548095703, 36.545024871826165], [-79.71744537353516, 36.547889709472656], [-79.51029968261719, 36.54765701293946], [-79.53050994873047, 36.246135711669915]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;11&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.153, &quot;BIR74&quot;: 4449.0, &quot;BIR79&quot;: 5386.0, &quot;CNTY_&quot;: 1839, &quot;CNTY_ID&quot;: 1839, &quot;CRESS_ID&quot;: 79, &quot;FIPS&quot;: &quot;37157&quot;, &quot;FIPSNO&quot;: 37157, &quot;NAME&quot;: &quot;Rockingham&quot;, &quot;NWBIR74&quot;: 1243.0, &quot;NWBIR79&quot;: 1369.0, &quot;NWR74&quot;: 279.388627, &quot;NWR79&quot;: 254.177497, &quot;PERIMETER&quot;: 1.616, &quot;SID74&quot;: 16.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 3.596314, &quot;SIDR79&quot;: 0.928333}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.81035614013672, 36.01412582397462, -78.45880889892578, 36.54607391357422], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.7491226196289, 36.06359100341796], [-78.78841400146484, 36.062183380126946], [-78.8040542602539, 36.08094024658203], [-78.81035614013672, 36.11457443237303], [-78.80680084228516, 36.23157501220703], [-78.79669952392578, 36.54353332519531], [-78.73738861083984, 36.54607391357422], [-78.45880889892578, 36.541481018066406], [-78.46375274658205, 36.523857116699205], [-78.50250244140625, 36.504390716552734], [-78.51708984375, 36.461483001708984], [-78.51471710205078, 36.17522430419922], [-78.49252319335938, 36.173587799072266], [-78.54585266113281, 36.06808853149415], [-78.54802703857422, 36.01412582397462], [-78.69557189941406, 36.066646575927734], [-78.7491226196289, 36.06359100341796]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;12&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.143, &quot;BIR74&quot;: 1671.0, &quot;BIR79&quot;: 2074.0, &quot;CNTY_&quot;: 1840, &quot;CNTY_ID&quot;: 1840, &quot;CRESS_ID&quot;: 39, &quot;FIPS&quot;: &quot;37077&quot;, &quot;FIPSNO&quot;: 37077, &quot;NAME&quot;: &quot;Granville&quot;, &quot;NWBIR74&quot;: 930.0, &quot;NWBIR79&quot;: 1058.0, &quot;NWR74&quot;: 556.552962, &quot;NWR79&quot;: 510.125362, &quot;PERIMETER&quot;: 1.663, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 2.393776, &quot;SIDR79&quot;: 1.92864}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.15927124023438, 36.23157501220703, -78.79669952392578, 36.546058654785156], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.80680084228516, 36.23157501220703], [-78.95108032226562, 36.23383712768555], [-79.15927124023438, 36.23366928100587], [-79.14432525634766, 36.546058654785156], [-78.79669952392578, 36.54353332519531], [-78.80680084228516, 36.23157501220703]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;13&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.109, &quot;BIR74&quot;: 1556.0, &quot;BIR79&quot;: 1790.0, &quot;CNTY_&quot;: 1841, &quot;CNTY_ID&quot;: 1841, &quot;CRESS_ID&quot;: 73, &quot;FIPS&quot;: &quot;37145&quot;, &quot;FIPSNO&quot;: 37145, &quot;NAME&quot;: &quot;Person&quot;, &quot;NWBIR74&quot;: 613.0, &quot;NWBIR79&quot;: 650.0, &quot;NWR74&quot;: 393.958869, &quot;NWR79&quot;: 363.128492, &quot;PERIMETER&quot;: 1.325, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 2.570694, &quot;SIDR79&quot;: 2.234637}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.51708984375, 36.16217422485351, -78.28292846679688, 36.5455322265625], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.49252319335938, 36.173587799072266], [-78.51471710205078, 36.17522430419922], [-78.51708984375, 36.461483001708984], [-78.50250244140625, 36.504390716552734], [-78.46375274658205, 36.523857116699205], [-78.45880889892578, 36.541481018066406], [-78.32125091552734, 36.5455322265625], [-78.28292846679688, 36.2918815612793], [-78.30876159667969, 36.260040283203125], [-78.3460464477539, 36.22518157958984], [-78.38085174560547, 36.22475051879883], [-78.41695404052734, 36.16217422485351], [-78.49252319335938, 36.173587799072266]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;14&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.072, &quot;BIR74&quot;: 2180.0, &quot;BIR79&quot;: 2753.0, &quot;CNTY_&quot;: 1842, &quot;CNTY_ID&quot;: 1842, &quot;CRESS_ID&quot;: 91, &quot;FIPS&quot;: &quot;37181&quot;, &quot;FIPSNO&quot;: 37181, &quot;NAME&quot;: &quot;Vance&quot;, &quot;NWBIR74&quot;: 1179.0, &quot;NWBIR79&quot;: 1492.0, &quot;NWR74&quot;: 540.825688, &quot;NWR79&quot;: 541.954232, &quot;PERIMETER&quot;: 1.085, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 6.0, &quot;SIDR74&quot;: 1.834862, &quot;SIDR79&quot;: 2.179441}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.00628662109375, 35.99471664428711, -77.24103546142578, 36.50988769531249], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.33220672607422, 36.067981719970696], [-77.40531158447266, 35.99471664428711], [-77.42574310302734, 35.99606323242188], [-77.43821716308594, 36.014034271240234], [-77.46397399902344, 36.026382446289055], [-77.52513122558594, 36.035385131835945], [-77.53585815429689, 36.05557250976563], [-77.53668975830078, 36.08236312866211], [-77.54788208007812, 36.08849334716797], [-77.60625457763672, 36.09739303588867], [-77.6423568725586, 36.12670135498047], [-77.68562316894531, 36.14660263061524], [-77.70050811767578, 36.144168853759766], [-77.72018432617188, 36.13411331176758], [-77.7471694946289, 36.14642333984375], [-77.8013687133789, 36.144256591796875], [-77.8113021850586, 36.135818481445305], [-77.8868408203125, 36.14443969726563], [-77.91783905029297, 36.15678024291992], [-77.92240142822266, 36.17773056030273], [-77.9392318725586, 36.187549591064446], [-77.95586395263672, 36.1837501525879], [-77.97339630126953, 36.18904113769532], [-77.98511505126953, 36.17744445800781], [-78.00628662109375, 36.195945739746094], [-77.95208740234375, 36.28123092651367], [-77.93013763427734, 36.35298538208006], [-77.91692352294922, 36.50063705444335], [-77.90120697021484, 36.50988769531249], [-77.74940490722656, 36.47357177734376], [-77.6988754272461, 36.47895812988282], [-77.65099334716797, 36.47258758544922], [-77.63597106933594, 36.44053649902344], [-77.56041717529297, 36.406356811523445], [-77.55968475341797, 36.37594604492188], [-77.580078125, 36.32826995849609], [-77.57195281982422, 36.314495086669915], [-77.55743408203125, 36.30421447753906], [-77.53807830810547, 36.302459716796875], [-77.45411682128906, 36.31975555419921], [-77.41885375976562, 36.281795501708984], [-77.41346740722656, 36.255817413330064], [-77.37862396240234, 36.24008560180665], [-77.38903045654297, 36.2031021118164], [-77.33499145507812, 36.1828498840332], [-77.30947875976564, 36.162765502929695], [-77.29351043701172, 36.16286087036132], [-77.2704086303711, 36.15552520751953], [-77.25591278076172, 36.130687713623054], [-77.25749969482422, 36.11847305297853], [-77.24103546142578, 36.10130310058594], [-77.30987548828125, 36.087444305419915], [-77.33220672607422, 36.067981719970696]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;15&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.19, &quot;BIR74&quot;: 3608.0, &quot;BIR79&quot;: 4463.0, &quot;CNTY_&quot;: 1846, &quot;CNTY_ID&quot;: 1846, &quot;CRESS_ID&quot;: 42, &quot;FIPS&quot;: &quot;37083&quot;, &quot;FIPSNO&quot;: 37083, &quot;NAME&quot;: &quot;Halifax&quot;, &quot;NWBIR74&quot;: 2365.0, &quot;NWBIR79&quot;: 2980.0, &quot;NWR74&quot;: 655.487805, &quot;NWR79&quot;: 667.712301, &quot;PERIMETER&quot;: 2.204, &quot;SID74&quot;: 18.0, &quot;SID79&quot;: 17.0, &quot;SIDR74&quot;: 4.988914, &quot;SIDR79&quot;: 3.809097}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.5024642944336, 36.147689819335945, -76.11270904541017, 36.50390243530274], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.2989273071289, 36.21422958374023], [-76.32423400878906, 36.23362350463867], [-76.37242126464844, 36.25234603881836], [-76.4603500366211, 36.37389755249023], [-76.5024642944336, 36.45228576660156], [-76.49834442138672, 36.50390243530274], [-76.40596771240234, 36.44715881347657], [-76.32136535644531, 36.4096450805664], [-76.30335998535156, 36.39184570312499], [-76.27413177490234, 36.38140869140625], [-76.26128387451172, 36.363758087158196], [-76.23853302001953, 36.36122894287108], [-76.21619415283203, 36.3278465270996], [-76.1934814453125, 36.3248519897461], [-76.18316650390625, 36.31523895263672], [-76.21890258789062, 36.29660797119139], [-76.11270904541017, 36.174419403076165], [-76.14193725585938, 36.147689819335945], [-76.23497772216797, 36.163360595703125], [-76.2989273071289, 36.21422958374023]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;16&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.053, &quot;BIR74&quot;: 1638.0, &quot;BIR79&quot;: 2275.0, &quot;CNTY_&quot;: 1848, &quot;CNTY_ID&quot;: 1848, &quot;CRESS_ID&quot;: 70, &quot;FIPS&quot;: &quot;37139&quot;, &quot;FIPSNO&quot;: 37139, &quot;NAME&quot;: &quot;Pasquotank&quot;, &quot;NWBIR74&quot;: 622.0, &quot;NWBIR79&quot;: 933.0, &quot;NWR74&quot;: 379.73138, &quot;NWR79&quot;: 410.10989, &quot;PERIMETER&quot;: 1.171, &quot;SID74&quot;: 3.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 1.831502, &quot;SIDR79&quot;: 1.758242}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.54610443115234, 35.98932647705078, -80.87086486816406, 36.43115234375], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.02056884765625, 36.0349349975586], [-81.0840835571289, 36.02076721191407], [-81.12406158447266, 36.03128433227538], [-81.15746307373047, 36.02098083496094], [-81.23600769042969, 36.02382278442382], [-81.32186889648438, 35.98932647705078], [-81.34735107421875, 36.015357971191406], [-81.38871002197266, 36.03756713867187], [-81.39814758300781, 36.05605697631835], [-81.42963409423828, 36.06566238403319], [-81.45443725585938, 36.083057403564446], [-81.5173110961914, 36.09543228149414], [-81.54610443115234, 36.11139297485351], [-81.49932098388672, 36.13603591918946], [-81.4508056640625, 36.19062042236328], [-81.4727554321289, 36.23435592651367], [-81.45288848876953, 36.239585876464844], [-81.43103790283203, 36.260719299316406], [-81.4123306274414, 36.26729202270508], [-81.40638732910156, 36.28505325317382], [-81.3674545288086, 36.2786979675293], [-81.35413360595703, 36.29971694946288], [-81.36569213867188, 36.33905029296874], [-81.36137390136719, 36.353160858154304], [-81.32899475097656, 36.363502502441406], [-81.26424407958984, 36.352413177490234], [-81.2398910522461, 36.36536407470704], [-81.17667388916016, 36.415443420410156], [-81.15336608886719, 36.424739837646484], [-81.13839721679688, 36.41762542724609], [-81.12937927246094, 36.42633056640625], [-81.11331176757812, 36.42285156249999], [-81.09856414794922, 36.43115234375], [-81.08425140380861, 36.4299201965332], [-81.04280090332031, 36.410335540771484], [-81.02464294433594, 36.37783432006836], [-81.00277709960938, 36.36668014526367], [-80.98284149169922, 36.37183380126953], [-80.97795104980469, 36.39137649536133], [-80.95639038085938, 36.4037971496582], [-80.92456817626953, 36.37275314331055], [-80.88892364501953, 36.35442733764648], [-80.87086486816406, 36.324623107910156], [-80.87438201904297, 36.23388290405273], [-80.87741088867188, 36.05240631103516], [-80.98895263671875, 36.05334854125976], [-81.02056884765625, 36.0349349975586]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;17&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.199, &quot;BIR74&quot;: 3146.0, &quot;BIR79&quot;: 3725.0, &quot;CNTY_&quot;: 1874, &quot;CNTY_ID&quot;: 1874, &quot;CRESS_ID&quot;: 97, &quot;FIPS&quot;: &quot;37193&quot;, &quot;FIPSNO&quot;: 37193, &quot;NAME&quot;: &quot;Wilkes&quot;, &quot;NWBIR74&quot;: 200.0, &quot;NWBIR79&quot;: 222.0, &quot;NWR74&quot;: 63.572791, &quot;NWR79&quot;: 59.597315, &quot;PERIMETER&quot;: 1.984, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 7.0, &quot;SIDR74&quot;: 1.271456, &quot;SIDR79&quot;: 1.879195}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.9111557006836, 36.10456085205079, -81.4508056640625, 36.39178466796875], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.80622100830078, 36.10456085205079], [-81.81715393066406, 36.1093864440918], [-81.82231140136719, 36.15785598754883], [-81.8502426147461, 36.181472778320305], [-81.88519287109375, 36.18863677978517], [-81.89856719970703, 36.198856353759766], [-81.9065628051758, 36.221866607666016], [-81.89399719238283, 36.26698303222656], [-81.9111557006836, 36.29075241088867], [-81.83057403564453, 36.33465576171875], [-81.7304916381836, 36.32934188842774], [-81.70945739746094, 36.33372497558593], [-81.7403793334961, 36.36185836791992], [-81.74107360839844, 36.39178466796875], [-81.63306427001953, 36.3406867980957], [-81.56198120117188, 36.2735939025879], [-81.5408401489258, 36.27250671386719], [-81.4727554321289, 36.23435592651367], [-81.4508056640625, 36.19062042236328], [-81.49932098388672, 36.13603591918946], [-81.54610443115234, 36.11139297485351], [-81.65900421142578, 36.117591857910156], [-81.80622100830078, 36.10456085205079]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;18&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.081, &quot;BIR74&quot;: 1323.0, &quot;BIR79&quot;: 1775.0, &quot;CNTY_&quot;: 1880, &quot;CNTY_ID&quot;: 1880, &quot;CRESS_ID&quot;: 95, &quot;FIPS&quot;: &quot;37189&quot;, &quot;FIPSNO&quot;: 37189, &quot;NAME&quot;: &quot;Watauga&quot;, &quot;NWBIR74&quot;: 17.0, &quot;NWBIR79&quot;: 33.0, &quot;NWR74&quot;: 12.849584, &quot;NWR79&quot;: 18.591549, &quot;PERIMETER&quot;: 1.288, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 0.755858, &quot;SIDR79&quot;: 0.56338}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.59449005126953, 36.07979202270508, -76.27550506591797, 36.37389755249023], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.48052978515625, 36.07979202270508], [-76.53695678710938, 36.08792495727539], [-76.57559967041016, 36.102657318115234], [-76.59449005126953, 36.23981857299805], [-76.57108306884767, 36.277729034423835], [-76.56250762939453, 36.34056854248046], [-76.4603500366211, 36.37389755249023], [-76.37242126464844, 36.25234603881836], [-76.32423400878906, 36.23362350463867], [-76.2989273071289, 36.21422958374023], [-76.27550506591797, 36.110370635986314], [-76.48052978515625, 36.07979202270508]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;19&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.063, &quot;BIR74&quot;: 484.0, &quot;BIR79&quot;: 676.0, &quot;CNTY_&quot;: 1881, &quot;CNTY_ID&quot;: 1881, &quot;CRESS_ID&quot;: 72, &quot;FIPS&quot;: &quot;37143&quot;, &quot;FIPSNO&quot;: 37143, &quot;NAME&quot;: &quot;Perquimans&quot;, &quot;NWBIR74&quot;: 230.0, &quot;NWBIR79&quot;: 310.0, &quot;NWR74&quot;: 475.206612, &quot;NWR79&quot;: 458.579882, &quot;PERIMETER&quot;: 1.0, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 2.066116, &quot;SIDR79&quot;: 0.0}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.72650909423828, 36.0071678161621, -76.42042541503906, 36.34056854248046], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.68873596191406, 36.294517517089844], [-76.6482162475586, 36.31531524658204], [-76.60424041748048, 36.31498336791992], [-76.56250762939453, 36.34056854248046], [-76.57108306884767, 36.277729034423835], [-76.59449005126953, 36.23981857299805], [-76.57559967041016, 36.102657318115234], [-76.53695678710938, 36.08792495727539], [-76.48052978515625, 36.07979202270508], [-76.42042541503906, 36.058605194091804], [-76.52301025390625, 36.0071678161621], [-76.59400177001953, 36.01013183593749], [-76.64901733398439, 36.06570816040039], [-76.63320922851562, 36.03711700439454], [-76.69015502929688, 36.04961013793945], [-76.72650909423828, 36.156822204589844], [-76.68873596191406, 36.294517517089844]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;20&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.044, &quot;BIR74&quot;: 751.0, &quot;BIR79&quot;: 899.0, &quot;CNTY_&quot;: 1887, &quot;CNTY_ID&quot;: 1887, &quot;CRESS_ID&quot;: 21, &quot;FIPS&quot;: &quot;37041&quot;, &quot;FIPSNO&quot;: 37041, &quot;NAME&quot;: &quot;Chowan&quot;, &quot;NWBIR74&quot;: 368.0, &quot;NWBIR79&quot;: 491.0, &quot;NWR74&quot;: 490.013316, &quot;NWR79&quot;: 546.162403, &quot;PERIMETER&quot;: 1.158, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 1.331558, &quot;SIDR79&quot;: 1.112347}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.0777587890625, 35.905643463134766, -81.73226928710938, 36.29075241088867], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.94134521484375, 35.95497512817383], [-81.96139526367188, 35.9392204284668], [-81.94495391845703, 35.91861343383789], [-81.947021484375, 35.9104118347168], [-81.98836517333984, 35.905643463134766], [-82.00506591796875, 35.9144401550293], [-82.04910278320312, 35.96723556518555], [-82.042724609375, 36.005008697509766], [-82.06232452392578, 36.03552627563477], [-82.0777587890625, 36.10013961791991], [-82.02045440673828, 36.12971115112305], [-81.93311309814453, 36.263320922851555], [-81.9111557006836, 36.29075241088867], [-81.89399719238283, 36.26698303222656], [-81.9065628051758, 36.221866607666016], [-81.89856719970703, 36.198856353759766], [-81.88519287109375, 36.18863677978517], [-81.8502426147461, 36.181472778320305], [-81.82231140136719, 36.15785598754883], [-81.81715393066406, 36.1093864440918], [-81.80622100830078, 36.10456085205079], [-81.73226928710938, 36.05847549438477], [-81.80278778076172, 35.960330963134766], [-81.85987091064455, 35.97034072875976], [-81.88081359863281, 35.9895248413086], [-81.90084838867188, 35.994651794433594], [-81.92214965820312, 35.98251342773438], [-81.94134521484375, 35.95497512817383]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;21&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.064, &quot;BIR74&quot;: 781.0, &quot;BIR79&quot;: 977.0, &quot;CNTY_&quot;: 1892, &quot;CNTY_ID&quot;: 1892, &quot;CRESS_ID&quot;: 6, &quot;FIPS&quot;: &quot;37011&quot;, &quot;FIPSNO&quot;: 37011, &quot;NAME&quot;: &quot;Avery&quot;, &quot;NWBIR74&quot;: 4.0, &quot;NWBIR79&quot;: 5.0, &quot;NWR74&quot;: 5.121639, &quot;NWR79&quot;: 5.117707, &quot;PERIMETER&quot;: 1.213, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 0.0}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.87741088867188, 36.043266296386726, -80.44081115722658, 36.2784309387207], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.49554443359375, 36.043266296386726], [-80.6895751953125, 36.04547882080079], [-80.87741088867188, 36.05240631103516], [-80.87438201904297, 36.23388290405273], [-80.78269958496094, 36.24857711791992], [-80.76629638671876, 36.26183700561523], [-80.7525634765625, 36.25829696655273], [-80.73436737060547, 36.26475906372071], [-80.72403717041017, 36.25847244262694], [-80.6966552734375, 36.259090423583984], [-80.66744232177734, 36.24610137939452], [-80.62431335449219, 36.27309799194336], [-80.5905990600586, 36.2682762145996], [-80.55415344238281, 36.2784309387207], [-80.54501342773438, 36.27665710449219], [-80.53688049316406, 36.256736755371094], [-80.47638702392578, 36.25472640991212], [-80.45634460449219, 36.242557525634766], [-80.44081115722658, 36.21948623657227], [-80.44480895996094, 36.12330627441407], [-80.49198150634766, 36.107696533203125], [-80.50498962402344, 36.094940185546875], [-80.50824737548828, 36.070884704589844], [-80.49554443359375, 36.043266296386726]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;22&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.086, &quot;BIR74&quot;: 1269.0, &quot;BIR79&quot;: 1568.0, &quot;CNTY_&quot;: 1893, &quot;CNTY_ID&quot;: 1893, &quot;CRESS_ID&quot;: 99, &quot;FIPS&quot;: &quot;37197&quot;, &quot;FIPSNO&quot;: 37197, &quot;NAME&quot;: &quot;Yadkin&quot;, &quot;NWBIR74&quot;: 65.0, &quot;NWBIR79&quot;: 76.0, &quot;NWR74&quot;: 51.221434, &quot;NWR79&quot;: 48.469388, &quot;PERIMETER&quot;: 1.267, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 0.788022, &quot;SIDR79&quot;: 0.637755}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.54802703857422, 35.81552505493163, -78.00628662109375, 36.260040283203125], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.25454711914062, 35.81552505493163], [-78.266845703125, 35.8483772277832], [-78.30841064453125, 35.89344787597656], [-78.32954406738281, 35.887847900390625], [-78.36011505126953, 35.91867446899414], [-78.39447784423828, 35.93230056762695], [-78.43114471435547, 35.97271728515625], [-78.54802703857422, 36.01412582397462], [-78.54585266113281, 36.06808853149415], [-78.49252319335938, 36.173587799072266], [-78.41695404052734, 36.16217422485351], [-78.38085174560547, 36.22475051879883], [-78.3460464477539, 36.22518157958984], [-78.30876159667969, 36.260040283203125], [-78.13471984863281, 36.23658370971679], [-78.10962677001953, 36.213508605957024], [-78.058349609375, 36.21132278442383], [-78.00628662109375, 36.195945739746094], [-78.13091278076172, 36.02146911621094], [-78.25454711914062, 35.81552505493163]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;23&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.128, &quot;BIR74&quot;: 1399.0, &quot;BIR79&quot;: 1863.0, &quot;CNTY_&quot;: 1897, &quot;CNTY_ID&quot;: 1897, &quot;CRESS_ID&quot;: 35, &quot;FIPS&quot;: &quot;37069&quot;, &quot;FIPSNO&quot;: 37069, &quot;NAME&quot;: &quot;Franklin&quot;, &quot;NWBIR74&quot;: 736.0, &quot;NWBIR79&quot;: 950.0, &quot;NWR74&quot;: 526.090064, &quot;NWR79&quot;: 509.93022, &quot;PERIMETER&quot;: 1.554, &quot;SID74&quot;: 2.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 1.429593, &quot;SIDR79&quot;: 0.0}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.50824737548828, 35.96792984008789, -80.02567291259766, 36.257087707519524], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.03810119628906, 36.00618362426758], [-80.12114715576172, 36.02155303955078], [-80.20987701416016, 36.021427154541016], [-80.21206665039062, 35.99012374877929], [-80.33430480957031, 35.9925651550293], [-80.33028411865234, 35.98123550415039], [-80.38024139404297, 35.96792984008789], [-80.41159057617189, 35.98461151123046], [-80.41797637939453, 36.0086326599121], [-80.449951171875, 36.029838562011726], [-80.46486663818361, 36.0501937866211], [-80.484130859375, 36.03832244873047], [-80.49554443359375, 36.043266296386726], [-80.50824737548828, 36.070884704589844], [-80.50498962402344, 36.094940185546875], [-80.49198150634766, 36.107696533203125], [-80.44480895996094, 36.12330627441407], [-80.44081115722658, 36.21948623657227], [-80.45634460449219, 36.242557525634766], [-80.45301055908205, 36.257087707519524], [-80.02567291259766, 36.2502326965332], [-80.03810119628906, 36.00618362426758]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;24&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.108, &quot;BIR74&quot;: 11858.0, &quot;BIR79&quot;: 15704.0, &quot;CNTY_&quot;: 1900, &quot;CNTY_ID&quot;: 1900, &quot;CRESS_ID&quot;: 34, &quot;FIPS&quot;: &quot;37067&quot;, &quot;FIPSNO&quot;: 37067, &quot;NAME&quot;: &quot;Forsyth&quot;, &quot;NWBIR74&quot;: 3919.0, &quot;NWBIR79&quot;: 5031.0, &quot;NWR74&quot;: 330.494181, &quot;NWR79&quot;: 320.364238, &quot;PERIMETER&quot;: 1.483, &quot;SID74&quot;: 10.0, &quot;SID79&quot;: 18.0, &quot;SIDR74&quot;: 0.843313, &quot;SIDR79&quot;: 1.146205}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.0426025390625, 35.890968322753906, -79.53057861328125, 36.2502326965332], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.5378189086914, 35.890968322753906], [-80.0426025390625, 35.91681289672851], [-80.03810119628906, 36.00618362426758], [-80.02567291259766, 36.2502326965332], [-79.53057861328125, 36.236156463623054], [-79.5378189086914, 35.890968322753906]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;25&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.17, &quot;BIR74&quot;: 16184.0, &quot;BIR79&quot;: 20543.0, &quot;CNTY_&quot;: 1903, &quot;CNTY_ID&quot;: 1903, &quot;CRESS_ID&quot;: 41, &quot;FIPS&quot;: &quot;37081&quot;, &quot;FIPSNO&quot;: 37081, &quot;NAME&quot;: &quot;Guilford&quot;, &quot;NWBIR74&quot;: 5483.0, &quot;NWBIR79&quot;: 7089.0, &quot;NWR74&quot;: 338.791399, &quot;NWR79&quot;: 345.08105, &quot;PERIMETER&quot;: 1.68, &quot;SID74&quot;: 23.0, &quot;SID79&quot;: 38.0, &quot;SIDR74&quot;: 1.421157, &quot;SIDR79&quot;: 1.849779}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.54098510742188, 35.83699035644531, -79.23799133300781, 36.246135711669915], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.24619293212892, 35.86815261840819], [-79.23799133300781, 35.837245941162095], [-79.54098510742188, 35.83699035644531], [-79.5378189086914, 35.890968322753906], [-79.53057861328125, 36.236156463623054], [-79.53050994873047, 36.246135711669915], [-79.25849914550781, 36.23568725585937], [-79.25977325439453, 36.047893524169915], [-79.27082061767578, 35.90460205078125], [-79.24619293212892, 35.86815261840819]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;26&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.111, &quot;BIR74&quot;: 4672.0, &quot;BIR79&quot;: 5767.0, &quot;CNTY_&quot;: 1904, &quot;CNTY_ID&quot;: 1904, &quot;CRESS_ID&quot;: 1, &quot;FIPS&quot;: &quot;37001&quot;, &quot;FIPSNO&quot;: 37001, &quot;NAME&quot;: &quot;Alamance&quot;, &quot;NWBIR74&quot;: 1243.0, &quot;NWBIR79&quot;: 1397.0, &quot;NWR74&quot;: 266.053082, &quot;NWR79&quot;: 242.240333, &quot;PERIMETER&quot;: 1.392, &quot;SID74&quot;: 13.0, &quot;SID79&quot;: 11.0, &quot;SIDR74&quot;: 2.782534, &quot;SIDR79&quot;: 1.907404}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.33220672607422, 35.81418228149415, -76.69376373291016, 36.240982055664055], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.78306579589844, 35.859233856201165], [-76.81053161621094, 35.88130950927734], [-76.8348388671875, 35.88422775268555], [-76.85672760009766, 35.83578109741212], [-76.87848663330078, 35.817291259765625], [-76.89848327636719, 35.81418228149415], [-76.9048080444336, 35.86791229248047], [-76.93609619140626, 35.894599914550774], [-76.99073028564453, 35.87783813476563], [-77.00442504882812, 35.861839294433594], [-77.0483169555664, 35.85749053955077], [-77.0341796875, 35.91433334350585], [-77.04088592529297, 35.931751251220696], [-77.06629943847656, 35.93600845336914], [-77.09001159667969, 35.92524337768554], [-77.18867492675781, 35.93124771118165], [-77.19589233398438, 35.935955047607415], [-77.19339752197266, 35.988094329833984], [-77.21553802490234, 35.98906707763672], [-77.21380615234375, 36.00536346435547], [-77.27671813964844, 36.0276985168457], [-77.31525421142578, 36.0480842590332], [-77.33220672607422, 36.067981719970696], [-77.30987548828125, 36.087444305419915], [-77.24103546142578, 36.10130310058594], [-77.25749969482422, 36.11847305297853], [-77.25591278076172, 36.130687713623054], [-77.2704086303711, 36.15552520751953], [-77.29351043701172, 36.16286087036132], [-77.29861450195312, 36.21152877807615], [-77.23461151123047, 36.21459960937501], [-77.21766662597656, 36.240982055664055], [-77.13007354736328, 36.23346328735351], [-76.99475097656251, 36.23558044433594], [-76.9806900024414, 36.23023605346679], [-76.74506378173828, 36.233917236328125], [-76.76067352294922, 36.14459228515624], [-76.69376373291016, 35.99296951293945], [-76.74112701416016, 35.936626434326165], [-76.69721984863281, 35.94154357910156], [-76.70832061767578, 35.91983413696289], [-76.72859954833984, 35.910858154296875], [-76.7417221069336, 35.883075714111335], [-76.76126098632812, 35.864543914794915], [-76.78306579589844, 35.859233856201165]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;27&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.18, &quot;BIR74&quot;: 1324.0, &quot;BIR79&quot;: 1616.0, &quot;CNTY_&quot;: 1905, &quot;CNTY_ID&quot;: 1905, &quot;CRESS_ID&quot;: 8, &quot;FIPS&quot;: &quot;37015&quot;, &quot;FIPSNO&quot;: 37015, &quot;NAME&quot;: &quot;Bertie&quot;, &quot;NWBIR74&quot;: 921.0, &quot;NWBIR79&quot;: 1161.0, &quot;NWR74&quot;: 695.619335, &quot;NWR79&quot;: 718.440594, &quot;PERIMETER&quot;: 2.151, &quot;SID74&quot;: 6.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 4.531722, &quot;SIDR79&quot;: 3.094059}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.27082061767578, 35.85394287109375, -78.95108032226562, 36.23568725585937], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.0181350708008, 35.85786437988281], [-79.09536743164062, 35.85394287109375], [-79.24619293212892, 35.86815261840819], [-79.27082061767578, 35.90460205078125], [-79.25977325439453, 36.047893524169915], [-79.25849914550781, 36.23568725585937], [-79.15927124023438, 36.23366928100587], [-78.95108032226562, 36.23383712768555], [-79.0181350708008, 35.85786437988281]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;28&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.104, &quot;BIR74&quot;: 3164.0, &quot;BIR79&quot;: 4478.0, &quot;CNTY_&quot;: 1907, &quot;CNTY_ID&quot;: 1907, &quot;CRESS_ID&quot;: 68, &quot;FIPS&quot;: &quot;37135&quot;, &quot;FIPSNO&quot;: 37135, &quot;NAME&quot;: &quot;Orange&quot;, &quot;NWBIR74&quot;: 776.0, &quot;NWBIR79&quot;: 1086.0, &quot;NWR74&quot;: 245.259166, &quot;NWR79&quot;: 242.518982, &quot;PERIMETER&quot;: 1.294, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 6.0, &quot;SIDR74&quot;: 1.264223, &quot;SIDR79&quot;: 1.339884}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.0181350708008, 35.85786437988281, -78.70415496826172, 36.23383712768555], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.0181350708008, 35.85786437988281], [-78.95108032226562, 36.23383712768555], [-78.80680084228516, 36.23157501220703], [-78.81035614013672, 36.11457443237303], [-78.8040542602539, 36.08094024658203], [-78.78841400146484, 36.062183380126946], [-78.7491226196289, 36.06359100341796], [-78.7533950805664, 36.0114631652832], [-78.72810363769531, 36.02707290649413], [-78.71617126464844, 36.026493072509766], [-78.70415496826172, 35.9973258972168], [-78.70734405517578, 35.97694396972656], [-78.73419952392578, 35.93458557128906], [-78.76350402832033, 35.91447448730469], [-78.80829620361328, 35.91992568969726], [-78.82795715332031, 35.86022949218751], [-78.90571594238281, 35.86051559448241], [-79.0181350708008, 35.85786437988281]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;29&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.077, &quot;BIR74&quot;: 7970.0, &quot;BIR79&quot;: 10432.0, &quot;CNTY_&quot;: 1908, &quot;CNTY_ID&quot;: 1908, &quot;CRESS_ID&quot;: 32, &quot;FIPS&quot;: &quot;37063&quot;, &quot;FIPSNO&quot;: 37063, &quot;NAME&quot;: &quot;Durham&quot;, &quot;NWBIR74&quot;: 3732.0, &quot;NWBIR79&quot;: 4948.0, &quot;NWR74&quot;: 468.25596, &quot;NWR79&quot;: 474.309816, &quot;PERIMETER&quot;: 1.271, &quot;SID74&quot;: 16.0, &quot;SID79&quot;: 22.0, &quot;SIDR74&quot;: 2.007528, &quot;SIDR79&quot;: 2.108896}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.25454711914062, 35.725112915039055, -77.70050811767578, 36.195945739746094], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.18692779541016, 35.725112915039055], [-78.20561981201172, 35.72539520263671], [-78.2115478515625, 35.73819351196289], [-78.23404693603516, 35.745792388916016], [-78.25454711914062, 35.81552505493163], [-78.13091278076172, 36.02146911621094], [-78.00628662109375, 36.195945739746094], [-77.98511505126953, 36.17744445800781], [-77.97339630126953, 36.18904113769532], [-77.95586395263672, 36.1837501525879], [-77.9392318725586, 36.187549591064446], [-77.92240142822266, 36.17773056030273], [-77.91783905029297, 36.15678024291992], [-77.8868408203125, 36.14443969726563], [-77.8113021850586, 36.135818481445305], [-77.8013687133789, 36.144256591796875], [-77.7471694946289, 36.14642333984375], [-77.72018432617188, 36.13411331176758], [-77.70050811767578, 36.144168853759766], [-77.83014678955078, 35.85449600219727], [-77.84492492675781, 35.83557510375976], [-77.873046875, 35.84470748901367], [-78.18692779541016, 35.725112915039055]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;30&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.142, &quot;BIR74&quot;: 4021.0, &quot;BIR79&quot;: 5189.0, &quot;CNTY_&quot;: 1913, &quot;CNTY_ID&quot;: 1913, &quot;CRESS_ID&quot;: 64, &quot;FIPS&quot;: &quot;37127&quot;, &quot;FIPSNO&quot;: 37127, &quot;NAME&quot;: &quot;Nash&quot;, &quot;NWBIR74&quot;: 1851.0, &quot;NWBIR79&quot;: 2274.0, &quot;NWR74&quot;: 460.33325, &quot;NWR79&quot;: 438.234727, &quot;PERIMETER&quot;: 1.64, &quot;SID74&quot;: 8.0, &quot;SID79&quot;: 7.0, &quot;SIDR74&quot;: 1.989555, &quot;SIDR79&quot;: 1.349008}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.4084243774414, 35.8184814453125, -81.98334503173828, 36.147014617919915], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-82.11885070800781, 35.81853103637696], [-82.14665222167969, 35.8184814453125], [-82.1410140991211, 35.90027236938476], [-82.14956665039062, 35.92144775390625], [-82.18460845947266, 35.93487548828124], [-82.19577026367188, 35.94737625122071], [-82.19905090332031, 36.00177001953125], [-82.23210144042969, 36.00387573242188], [-82.24061584472656, 35.98420333862304], [-82.25885772705078, 35.98567581176758], [-82.30169677734375, 36.029327392578125], [-82.3096923828125, 36.011474609375], [-82.32968139648438, 36.01426315307617], [-82.34026336669922, 36.02539825439454], [-82.34449768066406, 36.07024002075196], [-82.38517761230469, 36.07850646972656], [-82.4084243774414, 36.075317382812486], [-82.37385559082031, 36.098697662353516], [-82.31192779541016, 36.12215042114258], [-82.2623062133789, 36.12037658691406], [-82.20773315429688, 36.147014617919915], [-82.154052734375, 36.13962173461914], [-82.11808013916016, 36.09625625610351], [-82.0777587890625, 36.10013961791991], [-82.06232452392578, 36.03552627563477], [-82.042724609375, 36.005008697509766], [-82.04910278320312, 35.96723556518555], [-82.00506591796875, 35.9144401550293], [-81.98836517333984, 35.905643463134766], [-81.98334503173828, 35.887577056884766], [-81.99089813232422, 35.87247467041016], [-82.03468322753906, 35.853580474853516], [-82.09799194335938, 35.84385681152344], [-82.11885070800781, 35.81853103637696]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;31&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.059, &quot;BIR74&quot;: 671.0, &quot;BIR79&quot;: 919.0, &quot;CNTY_&quot;: 1927, &quot;CNTY_ID&quot;: 1927, &quot;CRESS_ID&quot;: 61, &quot;FIPS&quot;: &quot;37121&quot;, &quot;FIPSNO&quot;: 37121, &quot;NAME&quot;: &quot;Mitchell&quot;, &quot;NWBIR74&quot;: 1.0, &quot;NWBIR79&quot;: 4.0, &quot;NWR74&quot;: 1.490313, &quot;NWR79&quot;: 4.352557, &quot;PERIMETER&quot;: 1.319, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 2.176279}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.83014678955078, 35.670265197753906, -77.34236907958984, 36.14660263061524], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.67121887207031, 35.670265197753906], [-77.73314666748048, 35.73954772949217], [-77.75749206542969, 35.79810333251953], [-77.7550048828125, 35.82483673095703], [-77.76713562011719, 35.83686447143555], [-77.83014678955078, 35.85449600219727], [-77.70050811767578, 36.144168853759766], [-77.68562316894531, 36.14660263061524], [-77.6423568725586, 36.12670135498047], [-77.60625457763672, 36.09739303588867], [-77.54788208007812, 36.08849334716797], [-77.53668975830078, 36.08236312866211], [-77.53585815429689, 36.05557250976563], [-77.52513122558594, 36.035385131835945], [-77.46397399902344, 36.026382446289055], [-77.43821716308594, 36.014034271240234], [-77.42574310302734, 35.99606323242188], [-77.40531158447266, 35.99471664428711], [-77.34236907958984, 35.90800476074218], [-77.35810089111328, 35.815311431884766], [-77.39680480957031, 35.82841873168945], [-77.40569305419922, 35.817264556884766], [-77.4185791015625, 35.822086334228516], [-77.42699432373047, 35.808197021484375], [-77.4547119140625, 35.79381561279296], [-77.47323608398438, 35.799659729003906], [-77.5055160522461, 35.766754150390625], [-77.67121887207031, 35.670265197753906]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;32&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.131, &quot;BIR74&quot;: 3657.0, &quot;BIR79&quot;: 4359.0, &quot;CNTY_&quot;: 1928, &quot;CNTY_ID&quot;: 1928, &quot;CRESS_ID&quot;: 33, &quot;FIPS&quot;: &quot;37065&quot;, &quot;FIPSNO&quot;: 37065, &quot;NAME&quot;: &quot;Edgecombe&quot;, &quot;NWBIR74&quot;: 2186.0, &quot;NWBIR79&quot;: 2696.0, &quot;NWR74&quot;: 597.757725, &quot;NWR79&quot;: 618.490479, &quot;PERIMETER&quot;: 1.521, &quot;SID74&quot;: 10.0, &quot;SID79&quot;: 9.0, &quot;SIDR74&quot;: 2.734482, &quot;SIDR79&quot;: 2.064694}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.80622100830078, 35.75003433227539, -81.32186889648438, 36.117591857910156], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.32813262939453, 35.795059204101555], [-81.37665557861328, 35.75003433227539], [-81.41757202148438, 35.75590515136719], [-81.45714569091797, 35.779933929443345], [-81.56025695800781, 35.77544784545898], [-81.59336853027344, 35.81312561035157], [-81.70182800292969, 35.86879730224609], [-81.74844360351562, 35.92075729370118], [-81.77347564697266, 35.92220306396484], [-81.77568817138672, 35.94394683837891], [-81.80278778076172, 35.960330963134766], [-81.73226928710938, 36.05847549438477], [-81.80622100830078, 36.10456085205079], [-81.65900421142578, 36.117591857910156], [-81.54610443115234, 36.11139297485351], [-81.5173110961914, 36.09543228149414], [-81.45443725585938, 36.083057403564446], [-81.42963409423828, 36.06566238403319], [-81.39814758300781, 36.05605697631835], [-81.38871002197266, 36.03756713867187], [-81.34735107421875, 36.015357971191406], [-81.32186889648438, 35.98932647705078], [-81.32926177978516, 35.989246368408196], [-81.33956909179688, 35.92924118041992], [-81.33068084716797, 35.87580108642578], [-81.33721160888672, 35.82762908935547], [-81.32813262939453, 35.795059204101555]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;33&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.122, &quot;BIR74&quot;: 3609.0, &quot;BIR79&quot;: 4249.0, &quot;CNTY_&quot;: 1932, &quot;CNTY_ID&quot;: 1932, &quot;CRESS_ID&quot;: 14, &quot;FIPS&quot;: &quot;37027&quot;, &quot;FIPSNO&quot;: 37027, &quot;NAME&quot;: &quot;Caldwell&quot;, &quot;NWBIR74&quot;: 309.0, &quot;NWBIR79&quot;: 360.0, &quot;NWR74&quot;: 85.619285, &quot;NWR79&quot;: 84.725818, &quot;PERIMETER&quot;: 1.516, &quot;SID74&quot;: 6.0, &quot;SID79&quot;: 9.0, &quot;SIDR74&quot;: 1.66251, &quot;SIDR79&quot;: 2.118145}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.5069351196289, 35.69755554199219, -82.11885070800781, 36.07850646972656], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-82.27920532226562, 35.69755554199219], [-82.28157806396484, 35.7202033996582], [-82.32184600830078, 35.73984909057618], [-82.34185028076173, 35.76350784301758], [-82.34539794921875, 35.80519485473633], [-82.37525177001953, 35.816402435302734], [-82.40581512451172, 35.81397247314453], [-82.44148254394531, 35.88222885131837], [-82.48709106445312, 35.904884338378906], [-82.48394775390626, 35.9476089477539], [-82.5069351196289, 35.97254180908204], [-82.4751968383789, 35.993175506591804], [-82.4084243774414, 36.075317382812486], [-82.38517761230469, 36.07850646972656], [-82.34449768066406, 36.07024002075196], [-82.34026336669922, 36.02539825439454], [-82.32968139648438, 36.01426315307617], [-82.3096923828125, 36.011474609375], [-82.30169677734375, 36.029327392578125], [-82.25885772705078, 35.98567581176758], [-82.24061584472656, 35.98420333862304], [-82.23210144042969, 36.00387573242188], [-82.19905090332031, 36.00177001953125], [-82.19577026367188, 35.94737625122071], [-82.18460845947266, 35.93487548828124], [-82.14956665039062, 35.92144775390625], [-82.1410140991211, 35.90027236938476], [-82.14665222167969, 35.8184814453125], [-82.11885070800781, 35.81853103637696], [-82.15459442138672, 35.79837036132813], [-82.16429138183594, 35.76052474975587], [-82.21178436279297, 35.71698760986328], [-82.27920532226562, 35.69755554199219]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;34&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.08, &quot;BIR74&quot;: 770.0, &quot;BIR79&quot;: 869.0, &quot;CNTY_&quot;: 1936, &quot;CNTY_ID&quot;: 1936, &quot;CRESS_ID&quot;: 100, &quot;FIPS&quot;: &quot;37199&quot;, &quot;FIPSNO&quot;: 37199, &quot;NAME&quot;: &quot;Yancey&quot;, &quot;NWBIR74&quot;: 12.0, &quot;NWBIR79&quot;: 10.0, &quot;NWR74&quot;: 15.584416, &quot;NWR79&quot;: 11.50748, &quot;PERIMETER&quot;: 1.307, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 1.150748}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.40531158447266, 35.65012741088867, -76.78306579589844, 36.067981719970696], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.17845916748047, 35.73219299316406], [-77.2076644897461, 35.755126953125], [-77.26081848144531, 35.75909042358398], [-77.2645034790039, 35.78277969360351], [-77.35810089111328, 35.815311431884766], [-77.34236907958984, 35.90800476074218], [-77.40531158447266, 35.99471664428711], [-77.33220672607422, 36.067981719970696], [-77.31525421142578, 36.0480842590332], [-77.27671813964844, 36.0276985168457], [-77.21380615234375, 36.00536346435547], [-77.21553802490234, 35.98906707763672], [-77.19339752197266, 35.988094329833984], [-77.19589233398438, 35.935955047607415], [-77.18867492675781, 35.93124771118165], [-77.09001159667969, 35.92524337768554], [-77.06629943847656, 35.93600845336914], [-77.04088592529297, 35.931751251220696], [-77.0341796875, 35.91433334350585], [-77.0483169555664, 35.85749053955077], [-77.00442504882812, 35.861839294433594], [-76.99073028564453, 35.87783813476563], [-76.93609619140626, 35.894599914550774], [-76.9048080444336, 35.86791229248047], [-76.89848327636719, 35.81418228149415], [-76.87848663330078, 35.817291259765625], [-76.85672760009766, 35.83578109741212], [-76.8348388671875, 35.88422775268555], [-76.81053161621094, 35.88130950927734], [-76.78306579589844, 35.859233856201165], [-76.80667877197266, 35.81084060668946], [-76.8052749633789, 35.790374755859375], [-76.82595825195312, 35.75688171386718], [-76.83831024169922, 35.70545578002929], [-76.97991180419922, 35.65012741088867], [-77.16128540039062, 35.736778259277344], [-77.17845916748047, 35.73219299316406]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;35&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.118, &quot;BIR74&quot;: 1549.0, &quot;BIR79&quot;: 1849.0, &quot;CNTY_&quot;: 1937, &quot;CNTY_ID&quot;: 1937, &quot;CRESS_ID&quot;: 59, &quot;FIPS&quot;: &quot;37117&quot;, &quot;FIPSNO&quot;: 37117, &quot;NAME&quot;: &quot;Martin&quot;, &quot;NWBIR74&quot;: 883.0, &quot;NWBIR79&quot;: 1033.0, &quot;NWR74&quot;: 570.04519, &quot;NWR79&quot;: 558.680368, &quot;PERIMETER&quot;: 1.899, &quot;SID74&quot;: 2.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 1.291156, &quot;SIDR79&quot;: 0.540833}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.99880981445312, 35.51993942260741, -78.25454711914062, 36.066646575927734], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.92107391357422, 35.57885742187499], [-78.99880981445312, 35.60132217407225], [-78.9388885498047, 35.76144409179687], [-78.9444351196289, 35.77011489868164], [-78.90571594238281, 35.86051559448241], [-78.82795715332031, 35.86022949218751], [-78.80829620361328, 35.91992568969726], [-78.76350402832033, 35.91447448730469], [-78.73419952392578, 35.93458557128906], [-78.70734405517578, 35.97694396972656], [-78.70415496826172, 35.9973258972168], [-78.71617126464844, 36.026493072509766], [-78.72810363769531, 36.02707290649413], [-78.7533950805664, 36.0114631652832], [-78.7491226196289, 36.06359100341796], [-78.69557189941406, 36.066646575927734], [-78.54802703857422, 36.01412582397462], [-78.43114471435547, 35.97271728515625], [-78.39447784423828, 35.93230056762695], [-78.36011505126953, 35.91867446899414], [-78.32954406738281, 35.887847900390625], [-78.30841064453125, 35.89344787597656], [-78.266845703125, 35.8483772277832], [-78.25454711914062, 35.81552505493163], [-78.4776382446289, 35.69561386108399], [-78.70321655273438, 35.51993942260741], [-78.92107391357422, 35.57885742187499]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;36&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.219, &quot;BIR74&quot;: 14484.0, &quot;BIR79&quot;: 20857.0, &quot;CNTY_&quot;: 1938, &quot;CNTY_ID&quot;: 1938, &quot;CRESS_ID&quot;: 92, &quot;FIPS&quot;: &quot;37183&quot;, &quot;FIPSNO&quot;: 37183, &quot;NAME&quot;: &quot;Wake&quot;, &quot;NWBIR74&quot;: 4397.0, &quot;NWBIR79&quot;: 6221.0, &quot;NWR74&quot;: 303.57636, &quot;NWR79&quot;: 298.269166, &quot;PERIMETER&quot;: 2.13, &quot;SID74&quot;: 16.0, &quot;SID79&quot;: 31.0, &quot;SIDR74&quot;: 1.104667, &quot;SIDR79&quot;: 1.486312}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.96275329589844, 35.6735610961914, -82.40581512451172, 36.05434036254882], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-82.8959732055664, 35.948360443115234], [-82.85626983642578, 35.94742584228515], [-82.80867004394531, 35.920871734619126], [-82.77644348144531, 35.956573486328125], [-82.77359771728516, 35.987503051757805], [-82.76322937011719, 35.99954605102539], [-82.64389038085938, 36.0517234802246], [-82.62804412841797, 36.05434036254882], [-82.60440063476562, 36.04298782348632], [-82.59223175048828, 36.0224494934082], [-82.60580444335938, 36.00354766845703], [-82.59930419921875, 35.96329879760743], [-82.55414581298828, 35.95610809326172], [-82.5069351196289, 35.97254180908204], [-82.48394775390626, 35.9476089477539], [-82.48709106445312, 35.904884338378906], [-82.44148254394531, 35.88222885131837], [-82.40581512451172, 35.81397247314453], [-82.50054931640625, 35.79612731933594], [-82.76630401611328, 35.694000244140625], [-82.80562591552734, 35.68490600585937], [-82.84326934814453, 35.69172668457032], [-82.88111114501953, 35.6735610961914], [-82.90753936767578, 35.727848052978516], [-82.95218658447266, 35.73899841308594], [-82.94304656982422, 35.76646423339843], [-82.96275329589844, 35.79185104370117], [-82.90682220458984, 35.872215270996094], [-82.91407012939455, 35.9278678894043], [-82.8959732055664, 35.948360443115234]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;37&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.118, &quot;BIR74&quot;: 765.0, &quot;BIR79&quot;: 926.0, &quot;CNTY_&quot;: 1946, &quot;CNTY_ID&quot;: 1946, &quot;CRESS_ID&quot;: 58, &quot;FIPS&quot;: &quot;37115&quot;, &quot;FIPSNO&quot;: 37115, &quot;NAME&quot;: &quot;Madison&quot;, &quot;NWBIR74&quot;: 5.0, &quot;NWBIR79&quot;: 3.0, &quot;NWR74&quot;: 6.535948, &quot;NWR79&quot;: 3.239741, &quot;PERIMETER&quot;: 1.601, &quot;SID74&quot;: 2.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 2.614379, &quot;SIDR79&quot;: 2.159827}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.10888671875, 35.50680923461913, -80.6895751953125, 36.05334854125976], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.72651672363281, 35.50756835937499], [-80.77622985839844, 35.50680923461913], [-80.9553451538086, 35.50912094116211], [-80.9510726928711, 35.52866744995117], [-80.96143341064455, 35.543563842773445], [-80.9312744140625, 35.619590759277344], [-81.00357818603516, 35.69705581665038], [-81.05477905273438, 35.71340179443359], [-81.07220458984375, 35.743648529052734], [-81.10888671875, 35.77190017700196], [-81.04910278320312, 35.835968017578125], [-80.99534606933594, 35.97707748413087], [-81.02056884765625, 36.0349349975586], [-80.98895263671875, 36.05334854125976], [-80.87741088867188, 36.05240631103516], [-80.6895751953125, 36.04547882080079], [-80.70597076416016, 35.85165786743164], [-80.76612091064453, 35.682037353515625], [-80.72651672363281, 35.50756835937499]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;38&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.155, &quot;BIR74&quot;: 4139.0, &quot;BIR79&quot;: 5400.0, &quot;CNTY_&quot;: 1947, &quot;CNTY_ID&quot;: 1947, &quot;CRESS_ID&quot;: 49, &quot;FIPS&quot;: &quot;37097&quot;, &quot;FIPSNO&quot;: 37097, &quot;NAME&quot;: &quot;Iredell&quot;, &quot;NWBIR74&quot;: 1144.0, &quot;NWBIR79&quot;: 1305.0, &quot;NWR74&quot;: 276.395265, &quot;NWR79&quot;: 241.666667, &quot;PERIMETER&quot;: 1.781, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 0.966417, &quot;SIDR79&quot;: 0.925926}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.70597076416016, 35.74579620361329, -80.36170959472656, 36.0501937866211], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.45677185058594, 35.74579620361329], [-80.48869323730469, 35.775615692138665], [-80.52672576904297, 35.78180694580078], [-80.57232666015625, 35.813812255859375], [-80.60755920410156, 35.82225799560546], [-80.63494110107422, 35.840259552001946], [-80.70597076416016, 35.85165786743164], [-80.6895751953125, 36.04547882080079], [-80.49554443359375, 36.043266296386726], [-80.484130859375, 36.03832244873047], [-80.46486663818361, 36.0501937866211], [-80.449951171875, 36.029838562011726], [-80.41797637939453, 36.0086326599121], [-80.41159057617189, 35.98461151123046], [-80.38024139404297, 35.96792984008789], [-80.36306762695312, 35.94212341308594], [-80.36170959472656, 35.895851135253906], [-80.40593719482422, 35.884368896484375], [-80.38650512695312, 35.858570098876946], [-80.38643646240234, 35.845413208007805], [-80.3954849243164, 35.83948516845702], [-80.41480255126953, 35.84486389160155], [-80.4260711669922, 35.83030700683594], [-80.44650268554688, 35.830684661865234], [-80.45779418945312, 35.822475433349595], [-80.47942352294922, 35.83327865600586], [-80.47288513183594, 35.78611755371094], [-80.45064544677734, 35.76487731933595], [-80.45677185058594, 35.74579620361329]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;39&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.069, &quot;BIR74&quot;: 1207.0, &quot;BIR79&quot;: 1438.0, &quot;CNTY_&quot;: 1948, &quot;CNTY_ID&quot;: 1948, &quot;CRESS_ID&quot;: 30, &quot;FIPS&quot;: &quot;37059&quot;, &quot;FIPSNO&quot;: 37059, &quot;NAME&quot;: &quot;Davie&quot;, &quot;NWBIR74&quot;: 148.0, &quot;NWBIR79&quot;: 177.0, &quot;NWR74&quot;: 122.618061, &quot;NWR79&quot;: 123.087622, &quot;PERIMETER&quot;: 1.201, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 3.0, &quot;SIDR74&quot;: 0.8285, &quot;SIDR79&quot;: 2.086231}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.33956909179688, 35.77190017700196, -80.99534606933594, 36.0349349975586], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.10888671875, 35.77190017700196], [-81.12728118896484, 35.78896713256835], [-81.14140319824219, 35.82331848144531], [-81.32813262939453, 35.795059204101555], [-81.33721160888672, 35.82762908935547], [-81.33068084716797, 35.87580108642578], [-81.33956909179688, 35.92924118041992], [-81.32926177978516, 35.989246368408196], [-81.32186889648438, 35.98932647705078], [-81.23600769042969, 36.02382278442382], [-81.15746307373047, 36.02098083496094], [-81.12406158447266, 36.03128433227538], [-81.0840835571289, 36.02076721191407], [-81.02056884765625, 36.0349349975586], [-80.99534606933594, 35.97707748413087], [-81.04910278320312, 35.835968017578125], [-81.10888671875, 35.77190017700196]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;40&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.066, &quot;BIR74&quot;: 1333.0, &quot;BIR79&quot;: 1683.0, &quot;CNTY_&quot;: 1950, &quot;CNTY_ID&quot;: 1950, &quot;CRESS_ID&quot;: 2, &quot;FIPS&quot;: &quot;37003&quot;, &quot;FIPSNO&quot;: 37003, &quot;NAME&quot;: &quot;Alexander&quot;, &quot;NWBIR74&quot;: 128.0, &quot;NWBIR79&quot;: 150.0, &quot;NWR74&quot;: 96.024006, &quot;NWR79&quot;: 89.12656, &quot;PERIMETER&quot;: 1.07, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 1.188354}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.47942352294922, 35.505119323730455, -80.03810119628906, 36.02155303955078], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.06440734863281, 35.505699157714844], [-80.1819076538086, 35.505119323730455], [-80.20921325683594, 35.574512481689446], [-80.251220703125, 35.62480163574219], [-80.28578186035158, 35.6369743347168], [-80.32559204101562, 35.68315505981445], [-80.32628631591797, 35.714012145996094], [-80.37725830078125, 35.71068572998047], [-80.45677185058594, 35.74579620361329], [-80.45064544677734, 35.76487731933595], [-80.47288513183594, 35.78611755371094], [-80.47942352294922, 35.83327865600586], [-80.45779418945312, 35.822475433349595], [-80.44650268554688, 35.830684661865234], [-80.4260711669922, 35.83030700683594], [-80.41480255126953, 35.84486389160155], [-80.3954849243164, 35.83948516845702], [-80.38643646240234, 35.845413208007805], [-80.38650512695312, 35.858570098876946], [-80.40593719482422, 35.884368896484375], [-80.36170959472656, 35.895851135253906], [-80.36306762695312, 35.94212341308594], [-80.38024139404297, 35.96792984008789], [-80.33028411865234, 35.98123550415039], [-80.33430480957031, 35.9925651550293], [-80.21206665039062, 35.99012374877929], [-80.20987701416016, 36.021427154541016], [-80.12114715576172, 36.02155303955078], [-80.03810119628906, 36.00618362426758], [-80.0426025390625, 35.91681289672851], [-80.06440734863281, 35.505699157714844]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;41&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.145, &quot;BIR74&quot;: 5509.0, &quot;BIR79&quot;: 7143.0, &quot;CNTY_&quot;: 1951, &quot;CNTY_ID&quot;: 1951, &quot;CRESS_ID&quot;: 29, &quot;FIPS&quot;: &quot;37057&quot;, &quot;FIPSNO&quot;: 37057, &quot;NAME&quot;: &quot;Davidson&quot;, &quot;NWBIR74&quot;: 736.0, &quot;NWBIR79&quot;: 941.0, &quot;NWR74&quot;: 133.599564, &quot;NWR79&quot;: 131.737365, &quot;PERIMETER&quot;: 1.791, &quot;SID74&quot;: 8.0, &quot;SID79&quot;: 8.0, &quot;SIDR74&quot;: 1.452169, &quot;SIDR79&quot;: 1.119978}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.985595703125, 35.5532989501953, -81.37665557861328, 35.994651794433594], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.8162841796875, 35.574378967285156], [-81.8656234741211, 35.71885299682617], [-81.985595703125, 35.79995346069335], [-81.97529602050781, 35.818279266357415], [-81.9329833984375, 35.82759857177734], [-81.90625762939453, 35.847995758056626], [-81.9062271118164, 35.89201354980468], [-81.94134521484375, 35.95497512817383], [-81.92214965820312, 35.98251342773438], [-81.90084838867188, 35.994651794433594], [-81.88081359863281, 35.9895248413086], [-81.85987091064455, 35.97034072875976], [-81.80278778076172, 35.960330963134766], [-81.77568817138672, 35.94394683837891], [-81.77347564697266, 35.92220306396484], [-81.74844360351562, 35.92075729370118], [-81.70182800292969, 35.86879730224609], [-81.59336853027344, 35.81312561035157], [-81.56025695800781, 35.77544784545898], [-81.45714569091797, 35.779933929443345], [-81.41757202148438, 35.75590515136719], [-81.37665557861328, 35.75003433227539], [-81.40572357177734, 35.69750976562499], [-81.49569702148438, 35.60654830932617], [-81.52364349365234, 35.56126022338867], [-81.56253814697266, 35.5553092956543], [-81.5881118774414, 35.56177520751953], [-81.64390563964845, 35.5532989501953], [-81.68431854248047, 35.56543731689454], [-81.69519805908203, 35.57163619995117], [-81.70082092285156, 35.595611572265625], [-81.7496109008789, 35.60171127319336], [-81.76560974121094, 35.584224700927734], [-81.8162841796875, 35.574378967285156]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;42&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.134, &quot;BIR74&quot;: 3573.0, &quot;BIR79&quot;: 4314.0, &quot;CNTY_&quot;: 1958, &quot;CNTY_ID&quot;: 1958, &quot;CRESS_ID&quot;: 12, &quot;FIPS&quot;: &quot;37023&quot;, &quot;FIPSNO&quot;: 37023, &quot;NAME&quot;: &quot;Burke&quot;, &quot;NWBIR74&quot;: 326.0, &quot;NWBIR79&quot;: 407.0, &quot;NWR74&quot;: 91.239854, &quot;NWR79&quot;: 94.343996, &quot;PERIMETER&quot;: 1.755, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 15.0, &quot;SIDR74&quot;: 1.399384, &quot;SIDR79&quot;: 3.477051}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.83831024169922, 35.69911575317382, -76.35819244384766, 35.97746658325195], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.40843200683594, 35.69911575317382], [-76.63381958007812, 35.70300292968751], [-76.83831024169922, 35.70545578002929], [-76.82595825195312, 35.75688171386718], [-76.8052749633789, 35.790374755859375], [-76.80667877197266, 35.81084060668946], [-76.78306579589844, 35.859233856201165], [-76.76126098632812, 35.864543914794915], [-76.7417221069336, 35.883075714111335], [-76.72859954833984, 35.910858154296875], [-76.70832061767578, 35.91983413696289], [-76.69721984863281, 35.94154357910156], [-76.4094696044922, 35.97746658325195], [-76.3714828491211, 35.93234252929687], [-76.38356018066406, 35.900413513183594], [-76.35819244384766, 35.860591888427734], [-76.40869903564453, 35.78948211669921], [-76.40843200683594, 35.69911575317382]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;43&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.1, &quot;BIR74&quot;: 990.0, &quot;BIR79&quot;: 1141.0, &quot;CNTY_&quot;: 1962, &quot;CNTY_ID&quot;: 1962, &quot;CRESS_ID&quot;: 94, &quot;FIPS&quot;: &quot;37187&quot;, &quot;FIPSNO&quot;: 37187, &quot;NAME&quot;: &quot;Washington&quot;, &quot;NWBIR74&quot;: 521.0, &quot;NWBIR79&quot;: 651.0, &quot;NWR74&quot;: 526.262626, &quot;NWR79&quot;: 570.552147, &quot;PERIMETER&quot;: 1.331, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 5.050505, &quot;SIDR79&quot;: 0.0}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.40869903564453, 35.59466552734375, -76.02604675292969, 35.97687530517578], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.16730499267578, 35.696842193603516], [-76.21023559570312, 35.604389190673835], [-76.23279571533203, 35.59466552734375], [-76.2976303100586, 35.61169433593749], [-76.27344512939453, 35.689498901367195], [-76.40843200683594, 35.69911575317382], [-76.40869903564453, 35.78948211669921], [-76.35819244384766, 35.860591888427734], [-76.38356018066406, 35.900413513183594], [-76.3714828491211, 35.93234252929687], [-76.2137680053711, 35.97687530517578], [-76.08963775634766, 35.96291351318359], [-76.02604675292969, 35.92042541503906], [-76.07591247558594, 35.756801605224595], [-76.0430679321289, 35.6838493347168], [-76.16730499267578, 35.696842193603516]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;44&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.099, &quot;BIR74&quot;: 248.0, &quot;BIR79&quot;: 319.0, &quot;CNTY_&quot;: 1963, &quot;CNTY_ID&quot;: 1963, &quot;CRESS_ID&quot;: 89, &quot;FIPS&quot;: &quot;37177&quot;, &quot;FIPSNO&quot;: 37177, &quot;NAME&quot;: &quot;Tyrrell&quot;, &quot;NWBIR74&quot;: 116.0, &quot;NWBIR79&quot;: 141.0, &quot;NWR74&quot;: 467.741935, &quot;NWR79&quot;: 442.00627, &quot;PERIMETER&quot;: 1.411, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 0.0}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.2906723022461, 35.51900482177735, -81.8162841796875, 35.95497512817383], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.8162841796875, 35.574378967285156], [-81.83189392089844, 35.56506347656249], [-81.84027099609375, 35.537242889404304], [-81.86215209960939, 35.53054809570312], [-81.96704864501953, 35.52158737182617], [-82.00160217285156, 35.545974731445305], [-82.03618621826172, 35.52858734130858], [-82.11675262451172, 35.51900482177735], [-82.17070770263672, 35.52846527099609], [-82.26800537109375, 35.56885910034179], [-82.2906723022461, 35.58930206298828], [-82.26534271240234, 35.61248779296876], [-82.28424072265625, 35.638904571533196], [-82.2891845703125, 35.67148971557617], [-82.27920532226562, 35.69755554199219], [-82.21178436279297, 35.71698760986328], [-82.16429138183594, 35.76052474975587], [-82.15459442138672, 35.79837036132813], [-82.11885070800781, 35.81853103637696], [-82.09799194335938, 35.84385681152344], [-82.03468322753906, 35.853580474853516], [-81.99089813232422, 35.87247467041016], [-81.98334503173828, 35.887577056884766], [-81.98836517333984, 35.905643463134766], [-81.947021484375, 35.9104118347168], [-81.94495391845703, 35.91861343383789], [-81.96139526367188, 35.9392204284668], [-81.94134521484375, 35.95497512817383], [-81.9062271118164, 35.89201354980468], [-81.90625762939453, 35.847995758056626], [-81.9329833984375, 35.82759857177734], [-81.97529602050781, 35.818279266357415], [-81.985595703125, 35.79995346069335], [-81.8656234741211, 35.71885299682617], [-81.8162841796875, 35.574378967285156]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;45&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.116, &quot;BIR74&quot;: 1946.0, &quot;BIR79&quot;: 2215.0, &quot;CNTY_&quot;: 1964, &quot;CNTY_ID&quot;: 1964, &quot;CRESS_ID&quot;: 56, &quot;FIPS&quot;: &quot;37111&quot;, &quot;FIPSNO&quot;: 37111, &quot;NAME&quot;: &quot;McDowell&quot;, &quot;NWBIR74&quot;: 134.0, &quot;NWBIR79&quot;: 128.0, &quot;NWR74&quot;: 68.859198, &quot;NWR79&quot;: 57.78781, &quot;PERIMETER&quot;: 1.664, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 2.569373, &quot;SIDR79&quot;: 2.257336}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.06440734863281, 35.505699157714844, -79.5378189086914, 35.91681289672851], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.7649917602539, 35.50593566894532], [-80.06440734863281, 35.505699157714844], [-80.0426025390625, 35.91681289672851], [-79.5378189086914, 35.890968322753906], [-79.54098510742188, 35.83699035644531], [-79.55535888671875, 35.5130500793457], [-79.7649917602539, 35.50593566894532]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;46&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.201, &quot;BIR74&quot;: 4456.0, &quot;BIR79&quot;: 5711.0, &quot;CNTY_&quot;: 1968, &quot;CNTY_ID&quot;: 1968, &quot;CRESS_ID&quot;: 76, &quot;FIPS&quot;: &quot;37151&quot;, &quot;FIPSNO&quot;: 37151, &quot;NAME&quot;: &quot;Randolph&quot;, &quot;NWBIR74&quot;: 384.0, &quot;NWBIR79&quot;: 483.0, &quot;NWR74&quot;: 86.175943, &quot;NWR79&quot;: 84.57363, &quot;PERIMETER&quot;: 1.805, &quot;SID74&quot;: 7.0, &quot;SID79&quot;: 12.0, &quot;SIDR74&quot;: 1.570916, &quot;SIDR79&quot;: 2.101208}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.55535888671875, 35.5102424621582, -78.90571594238281, 35.86815261840819], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.55535888671875, 35.5130500793457], [-79.54098510742188, 35.83699035644531], [-79.23799133300781, 35.837245941162095], [-79.24619293212892, 35.86815261840819], [-79.09536743164062, 35.85394287109375], [-79.0181350708008, 35.85786437988281], [-78.90571594238281, 35.86051559448241], [-78.9444351196289, 35.77011489868164], [-78.9388885498047, 35.76144409179687], [-78.99880981445312, 35.60132217407225], [-78.92107391357422, 35.57885742187499], [-78.9744873046875, 35.51715469360351], [-79.03849792480469, 35.54946136474609], [-79.06729125976562, 35.59870529174805], [-79.13260650634766, 35.62461471557617], [-79.19424438476562, 35.575130462646484], [-79.20973205566406, 35.55345153808594], [-79.22050476074219, 35.55080032348633], [-79.22713470458984, 35.565364837646484], [-79.27609252929688, 35.53027725219726], [-79.2861328125, 35.54440689086914], [-79.30536651611328, 35.542705535888665], [-79.31501007080078, 35.53913116455078], [-79.31285858154297, 35.5268669128418], [-79.33155059814455, 35.521980285644524], [-79.34294891357422, 35.5102424621582], [-79.55535888671875, 35.5130500793457]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;47&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.18, &quot;BIR74&quot;: 1646.0, &quot;BIR79&quot;: 2398.0, &quot;CNTY_&quot;: 1973, &quot;CNTY_ID&quot;: 1973, &quot;CRESS_ID&quot;: 19, &quot;FIPS&quot;: &quot;37037&quot;, &quot;FIPSNO&quot;: 37037, &quot;NAME&quot;: &quot;Chatham&quot;, &quot;NWBIR74&quot;: 591.0, &quot;NWBIR79&quot;: 687.0, &quot;NWR74&quot;: 359.052248, &quot;NWR79&quot;: 286.488741, &quot;PERIMETER&quot;: 2.142, &quot;SID74&quot;: 2.0, &quot;SID79&quot;: 3.0, &quot;SIDR74&quot;: 1.215067, &quot;SIDR79&quot;: 1.251043}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.18692779541016, 35.574256896972656, -77.67121887207031, 35.85449600219727], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.0653305053711, 35.58203887939453], [-78.1249008178711, 35.59751892089843], [-78.16244506835938, 35.6829833984375], [-78.16180419921875, 35.70929336547852], [-78.18692779541016, 35.725112915039055], [-77.873046875, 35.84470748901367], [-77.84492492675781, 35.83557510375976], [-77.83014678955078, 35.85449600219727], [-77.76713562011719, 35.83686447143555], [-77.7550048828125, 35.82483673095703], [-77.75749206542969, 35.79810333251953], [-77.73314666748048, 35.73954772949217], [-77.67121887207031, 35.670265197753906], [-77.69832611083984, 35.65399932861328], [-77.8262939453125, 35.574256896972656], [-77.82717895507812, 35.58290100097656], [-78.00213623046875, 35.575996398925774], [-78.06048583984375, 35.594669342041016], [-78.0653305053711, 35.58203887939453]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;48&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.094, &quot;BIR74&quot;: 3702.0, &quot;BIR79&quot;: 4706.0, &quot;CNTY_&quot;: 1979, &quot;CNTY_ID&quot;: 1979, &quot;CRESS_ID&quot;: 98, &quot;FIPS&quot;: &quot;37195&quot;, &quot;FIPSNO&quot;: 37195, &quot;NAME&quot;: &quot;Wilson&quot;, &quot;NWBIR74&quot;: 1827.0, &quot;NWBIR79&quot;: 2330.0, &quot;NWR74&quot;: 493.517018, &quot;NWR79&quot;: 495.112622, &quot;PERIMETER&quot;: 1.307, &quot;SID74&quot;: 11.0, &quot;SID79&quot;: 13.0, &quot;SIDR74&quot;: 2.971367, &quot;SIDR79&quot;: 2.762431}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.76612091064453, 35.49489974975585, -80.1819076538086, 35.85165786743164], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.2982406616211, 35.49489974975585], [-80.72651672363281, 35.50756835937499], [-80.76612091064453, 35.682037353515625], [-80.70597076416016, 35.85165786743164], [-80.63494110107422, 35.840259552001946], [-80.60755920410156, 35.82225799560546], [-80.57232666015625, 35.813812255859375], [-80.52672576904297, 35.78180694580078], [-80.48869323730469, 35.775615692138665], [-80.45677185058594, 35.74579620361329], [-80.37725830078125, 35.71068572998047], [-80.32628631591797, 35.714012145996094], [-80.32559204101562, 35.68315505981445], [-80.28578186035158, 35.6369743347168], [-80.251220703125, 35.62480163574219], [-80.20921325683594, 35.574512481689446], [-80.1819076538086, 35.505119323730455], [-80.2982406616211, 35.49489974975585]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;49&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.134, &quot;BIR74&quot;: 4606.0, &quot;BIR79&quot;: 6427.0, &quot;CNTY_&quot;: 1980, &quot;CNTY_ID&quot;: 1980, &quot;CRESS_ID&quot;: 80, &quot;FIPS&quot;: &quot;37159&quot;, &quot;FIPSNO&quot;: 37159, &quot;NAME&quot;: &quot;Rowan&quot;, &quot;NWBIR74&quot;: 1057.0, &quot;NWBIR79&quot;: 1504.0, &quot;NWR74&quot;: 229.483283, &quot;NWR79&quot;: 234.012759, &quot;PERIMETER&quot;: 1.59, &quot;SID74&quot;: 3.0, &quot;SID79&quot;: 8.0, &quot;SIDR74&quot;: 0.651324, &quot;SIDR79&quot;: 1.244749}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.69832611083984, 35.32355499267578, -77.10376739501953, 35.82841873168945], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.47388458251953, 35.42152786254882], [-77.50456237792969, 35.48483276367187], [-77.50393676757812, 35.50389099121094], [-77.52104949951172, 35.51650619506837], [-77.52342987060547, 35.53017807006836], [-77.54957580566406, 35.52572631835937], [-77.56464385986328, 35.531940460205085], [-77.6341323852539, 35.58782577514648], [-77.69832611083984, 35.65399932861328], [-77.67121887207031, 35.670265197753906], [-77.5055160522461, 35.766754150390625], [-77.47323608398438, 35.799659729003906], [-77.4547119140625, 35.79381561279296], [-77.42699432373047, 35.808197021484375], [-77.4185791015625, 35.822086334228516], [-77.40569305419922, 35.817264556884766], [-77.39680480957031, 35.82841873168945], [-77.35810089111328, 35.815311431884766], [-77.2645034790039, 35.78277969360351], [-77.26081848144531, 35.75909042358398], [-77.2076644897461, 35.755126953125], [-77.17845916748047, 35.73219299316406], [-77.17742156982422, 35.714462280273445], [-77.1922378540039, 35.712093353271484], [-77.19551849365234, 35.699913024902344], [-77.1754379272461, 35.67628479003907], [-77.18721008300781, 35.664306640625], [-77.1746826171875, 35.63541030883788], [-77.15205383300781, 35.619884490966804], [-77.14834594726562, 35.59800338745117], [-77.11939239501953, 35.58549880981446], [-77.10376739501953, 35.55018615722657], [-77.14739990234375, 35.547588348388665], [-77.17221069335938, 35.519123077392585], [-77.19496154785156, 35.42295455932617], [-77.2112045288086, 35.3956413269043], [-77.24054718017578, 35.37998580932617], [-77.24430084228516, 35.354190826416016], [-77.26419067382812, 35.350112915039055], [-77.2938003540039, 35.37395095825196], [-77.35421752929688, 35.32355499267578], [-77.38616180419922, 35.32926177978516], [-77.4014892578125, 35.34276962280273], [-77.4439468383789, 35.35459518432617], [-77.47388458251953, 35.42152786254882]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;50&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.168, &quot;BIR74&quot;: 5094.0, &quot;BIR79&quot;: 6635.0, &quot;CNTY_&quot;: 1984, &quot;CNTY_ID&quot;: 1984, &quot;CRESS_ID&quot;: 74, &quot;FIPS&quot;: &quot;37147&quot;, &quot;FIPSNO&quot;: 37147, &quot;NAME&quot;: &quot;Pitt&quot;, &quot;NWBIR74&quot;: 2620.0, &quot;NWBIR79&quot;: 3059.0, &quot;NWR74&quot;: 514.330585, &quot;NWR79&quot;: 461.03994, &quot;PERIMETER&quot;: 1.791, &quot;SID74&quot;: 14.0, &quot;SID79&quot;: 11.0, &quot;SIDR74&quot;: 2.748331, &quot;SIDR79&quot;: 1.657875}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.52364349365234, 35.543563842773445, -80.9312744140625, 35.82331848144531], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.96143341064455, 35.543563842773445], [-81.52364349365234, 35.56126022338867], [-81.49569702148438, 35.60654830932617], [-81.40572357177734, 35.69750976562499], [-81.37665557861328, 35.75003433227539], [-81.32813262939453, 35.795059204101555], [-81.14140319824219, 35.82331848144531], [-81.12728118896484, 35.78896713256835], [-81.10888671875, 35.77190017700196], [-81.07220458984375, 35.743648529052734], [-81.05477905273438, 35.71340179443359], [-81.00357818603516, 35.69705581665038], [-80.9312744140625, 35.619590759277344], [-80.96143341064455, 35.543563842773445]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;51&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.106, &quot;BIR74&quot;: 5754.0, &quot;BIR79&quot;: 6883.0, &quot;CNTY_&quot;: 1986, &quot;CNTY_ID&quot;: 1986, &quot;CRESS_ID&quot;: 18, &quot;FIPS&quot;: &quot;37035&quot;, &quot;FIPSNO&quot;: 37035, &quot;NAME&quot;: &quot;Catawba&quot;, &quot;NWBIR74&quot;: 790.0, &quot;NWBIR79&quot;: 914.0, &quot;NWR74&quot;: 137.295794, &quot;NWR79&quot;: 132.790934, &quot;PERIMETER&quot;: 1.444, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 21.0, &quot;SIDR74&quot;: 0.868961, &quot;SIDR79&quot;: 3.050995}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.88111114501953, 35.41803359985351, -82.17070770263672, 35.816402435302734], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-82.25810241699219, 35.46372985839844], [-82.3228759765625, 35.49515914916991], [-82.37096405029297, 35.4787712097168], [-82.36483764648438, 35.46345901489258], [-82.37368774414062, 35.45737838745117], [-82.40906524658203, 35.46892166137695], [-82.47492218017578, 35.44440460205078], [-82.51951599121094, 35.44391632080078], [-82.52690124511719, 35.428321838378906], [-82.55113220214844, 35.42689514160156], [-82.56393432617188, 35.438423156738274], [-82.61868286132812, 35.43767547607421], [-82.66898345947266, 35.45516586303711], [-82.7141571044922, 35.43915176391602], [-82.74388885498047, 35.41803359985351], [-82.7808837890625, 35.44168853759765], [-82.79472351074219, 35.464969635009766], [-82.7706298828125, 35.53273391723633], [-82.77203369140625, 35.571292877197266], [-82.81333923339844, 35.61753463745117], [-82.82310485839844, 35.62138748168945], [-82.84486389160156, 35.61314773559569], [-82.86552429199219, 35.63580322265625], [-82.88111114501953, 35.6735610961914], [-82.84326934814453, 35.69172668457032], [-82.80562591552734, 35.68490600585937], [-82.76630401611328, 35.694000244140625], [-82.50054931640625, 35.79612731933594], [-82.40581512451172, 35.81397247314453], [-82.37525177001953, 35.816402435302734], [-82.34539794921875, 35.80519485473633], [-82.34185028076173, 35.76350784301758], [-82.32184600830078, 35.73984909057618], [-82.28157806396484, 35.7202033996582], [-82.27920532226562, 35.69755554199219], [-82.2891845703125, 35.67148971557617], [-82.28424072265625, 35.638904571533196], [-82.26534271240234, 35.61248779296876], [-82.2906723022461, 35.58930206298828], [-82.26800537109375, 35.56885910034179], [-82.17070770263672, 35.52846527099609], [-82.22290802001953, 35.51569366455078], [-82.22760009765625, 35.4829216003418], [-82.24015808105469, 35.468154907226555], [-82.25810241699219, 35.46372985839844]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;52&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.168, &quot;BIR74&quot;: 7515.0, &quot;BIR79&quot;: 9956.0, &quot;CNTY_&quot;: 1988, &quot;CNTY_ID&quot;: 1988, &quot;CRESS_ID&quot;: 11, &quot;FIPS&quot;: &quot;37021&quot;, &quot;FIPSNO&quot;: 37021, &quot;NAME&quot;: &quot;Buncombe&quot;, &quot;NWBIR74&quot;: 930.0, &quot;NWBIR79&quot;: 1206.0, &quot;NWR74&quot;: 123.752495, &quot;NWR79&quot;: 121.132985, &quot;PERIMETER&quot;: 1.995, &quot;SID74&quot;: 9.0, &quot;SID79&quot;: 18.0, &quot;SIDR74&quot;: 1.197605, &quot;SIDR79&quot;: 1.807955}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.70896911621094, 35.24907684326172, -78.0653305053711, 35.81552505493163], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.53874206542969, 35.31511688232422], [-78.53946685791016, 35.336463928222656], [-78.60082244873047, 35.40303039550781], [-78.62317657470703, 35.44641494750976], [-78.6887435913086, 35.507526397705085], [-78.70896911621094, 35.51410293579101], [-78.70321655273438, 35.51993942260741], [-78.4776382446289, 35.69561386108399], [-78.25454711914062, 35.81552505493163], [-78.23404693603516, 35.745792388916016], [-78.2115478515625, 35.73819351196289], [-78.20561981201172, 35.72539520263671], [-78.18692779541016, 35.725112915039055], [-78.16180419921875, 35.70929336547852], [-78.16244506835938, 35.6829833984375], [-78.1249008178711, 35.59751892089843], [-78.0653305053711, 35.58203887939453], [-78.1459732055664, 35.42899322509765], [-78.15689086914062, 35.35063171386719], [-78.17745971679688, 35.33959960937501], [-78.20903778076172, 35.3391761779785], [-78.23722839355469, 35.314632415771484], [-78.2681655883789, 35.317359924316406], [-78.31012725830078, 35.2802848815918], [-78.41667938232422, 35.24907684326172], [-78.49362182617188, 35.259620666503906], [-78.53874206542969, 35.31511688232422]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;53&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.207, &quot;BIR74&quot;: 3999.0, &quot;BIR79&quot;: 4780.0, &quot;CNTY_&quot;: 1989, &quot;CNTY_ID&quot;: 1989, &quot;CRESS_ID&quot;: 51, &quot;FIPS&quot;: &quot;37101&quot;, &quot;FIPSNO&quot;: 37101, &quot;NAME&quot;: &quot;Johnston&quot;, &quot;NWBIR74&quot;: 1165.0, &quot;NWBIR79&quot;: 1349.0, &quot;NWR74&quot;: 291.322831, &quot;NWR79&quot;: 282.217573, &quot;PERIMETER&quot;: 1.851, &quot;SID74&quot;: 6.0, &quot;SID79&quot;: 13.0, &quot;SIDR74&quot;: 1.500375, &quot;SIDR79&quot;: 2.719665}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.25912475585938, 35.290767669677734, -82.74388885498047, 35.79185104370117], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-82.74388885498047, 35.41803359985351], [-82.83323669433594, 35.315570831298814], [-82.91911315917969, 35.290767669677734], [-82.95362091064453, 35.308528900146484], [-82.98535919189453, 35.3563232421875], [-83.0385971069336, 35.38993072509765], [-83.0460433959961, 35.4069938659668], [-83.08771514892578, 35.44632720947266], [-83.12823486328125, 35.456615447998054], [-83.14237213134766, 35.48439407348633], [-83.18139648437501, 35.51240921020508], [-83.15702056884766, 35.55166244506836], [-83.18037414550781, 35.58282089233399], [-83.1781005859375, 35.623291015625], [-83.19512939453125, 35.6378173828125], [-83.18429565429688, 35.66307830810547], [-83.21525573730469, 35.68539810180664], [-83.25912475585938, 35.691009521484375], [-83.25330352783203, 35.7007064819336], [-83.24385070800781, 35.718215942382805], [-83.18534851074219, 35.728885650634766], [-83.14366149902344, 35.762683868408196], [-83.1181869506836, 35.763809204101555], [-83.0599594116211, 35.782577514648445], [-82.98700714111328, 35.773990631103516], [-82.96275329589844, 35.79185104370117], [-82.94304656982422, 35.76646423339843], [-82.95218658447266, 35.73899841308594], [-82.90753936767578, 35.727848052978516], [-82.88111114501953, 35.6735610961914], [-82.86552429199219, 35.63580322265625], [-82.84486389160156, 35.61314773559569], [-82.82310485839844, 35.62138748168945], [-82.81333923339844, 35.61753463745117], [-82.77203369140625, 35.571292877197266], [-82.7706298828125, 35.53273391723633], [-82.79472351074219, 35.464969635009766], [-82.7808837890625, 35.44168853759765], [-82.74388885498047, 35.41803359985351]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;54&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.144, &quot;BIR74&quot;: 2110.0, &quot;BIR79&quot;: 2463.0, &quot;CNTY_&quot;: 1996, &quot;CNTY_ID&quot;: 1996, &quot;CRESS_ID&quot;: 44, &quot;FIPS&quot;: &quot;37087&quot;, &quot;FIPSNO&quot;: 37087, &quot;NAME&quot;: &quot;Haywood&quot;, &quot;NWBIR74&quot;: 57.0, &quot;NWBIR79&quot;: 62.0, &quot;NWR74&quot;: 27.014218, &quot;NWR79&quot;: 25.172554, &quot;PERIMETER&quot;: 1.69, &quot;SID74&quot;: 2.0, &quot;SID79&quot;: 8.0, &quot;SIDR74&quot;: 0.947867, &quot;SIDR79&quot;: 3.248071}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.02120971679688, 35.189826965332024, -75.45697784423828, 36.22925567626953], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-75.78317260742188, 36.225193023681626], [-75.77315521240234, 36.22925567626953], [-75.54496765136719, 35.788360595703125], [-75.7027359008789, 36.049861907958984], [-75.7408676147461, 36.050323486328125], [-75.78317260742188, 36.225193023681626]]], [[[-75.89149475097656, 35.63126754760743], [-75.90802764892578, 35.6656379699707], [-76.02120971679688, 35.66909408569335], [-75.98785400390625, 35.89270782470703], [-75.81805419921875, 35.92351913452148], [-75.74896240234375, 35.86933898925781], [-75.7293701171875, 35.66517257690429], [-75.779052734375, 35.57868576049804], [-75.89149475097656, 35.63126754760743]]], [[[-75.49121856689453, 35.6704978942871], [-75.53362274169922, 35.76885604858398], [-75.45697784423828, 35.6173973083496], [-75.52629852294922, 35.227916717529304], [-75.7492904663086, 35.189826965332024], [-75.69156646728516, 35.23498916625976], [-75.521484375, 35.28135681152344], [-75.47541809082031, 35.56449508666993], [-75.49121856689453, 35.6704978942871]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;55&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.094, &quot;BIR74&quot;: 521.0, &quot;BIR79&quot;: 1059.0, &quot;CNTY_&quot;: 2000, &quot;CNTY_ID&quot;: 2000, &quot;CRESS_ID&quot;: 28, &quot;FIPS&quot;: &quot;37055&quot;, &quot;FIPSNO&quot;: 37055, &quot;NAME&quot;: &quot;Dare&quot;, &quot;NWBIR74&quot;: 43.0, &quot;NWBIR79&quot;: 73.0, &quot;NWR74&quot;: 82.533589, &quot;NWR79&quot;: 68.932956, &quot;PERIMETER&quot;: 3.64, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 0.944287}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.19551849365234, 35.217166900634766, -76.49253845214844, 35.736778259277344], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-77.10376739501953, 35.55018615722657], [-77.11939239501953, 35.58549880981446], [-77.14834594726562, 35.59800338745117], [-77.15205383300781, 35.619884490966804], [-77.1746826171875, 35.63541030883788], [-77.18721008300781, 35.664306640625], [-77.1754379272461, 35.67628479003907], [-77.19551849365234, 35.699913024902344], [-77.1922378540039, 35.712093353271484], [-77.17742156982422, 35.714462280273445], [-77.17845916748047, 35.73219299316406], [-77.16128540039062, 35.736778259277344], [-76.97991180419922, 35.65012741088867], [-76.83831024169922, 35.70545578002929], [-76.63381958007812, 35.70300292968751], [-76.60891723632812, 35.664154052734375], [-76.60794830322266, 35.63506698608398], [-76.58587646484375, 35.60945510864258], [-76.53959655761719, 35.59403610229492], [-76.5189437866211, 35.57764434814453], [-76.49253845214844, 35.541786193847656], [-76.63819885253906, 35.520336151123054], [-76.62876892089844, 35.43789672851562], [-76.70537567138672, 35.411933898925774], [-77.10376739501953, 35.55018615722657]]], [[[-76.61451721191406, 35.272918701171875], [-76.64021301269531, 35.237247467041016], [-76.85057067871094, 35.217166900634766], [-76.8976058959961, 35.25157165527344], [-77.19496154785156, 35.42295455932617], [-77.17221069335938, 35.519123077392585], [-77.14739990234375, 35.547588348388665], [-77.10376739501953, 35.55018615722657], [-76.98318481445312, 35.436500549316406], [-76.69490051269531, 35.350425720214844], [-76.61451721191406, 35.272918701171875]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;56&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.203, &quot;BIR74&quot;: 2692.0, &quot;BIR79&quot;: 2909.0, &quot;CNTY_&quot;: 2004, &quot;CNTY_ID&quot;: 2004, &quot;CRESS_ID&quot;: 7, &quot;FIPS&quot;: &quot;37013&quot;, &quot;FIPSNO&quot;: 37013, &quot;NAME&quot;: &quot;Beaufort&quot;, &quot;NWBIR74&quot;: 1131.0, &quot;NWBIR79&quot;: 1163.0, &quot;NWR74&quot;: 420.13373, &quot;NWR79&quot;: 399.793744, &quot;PERIMETER&quot;: 3.197, &quot;SID74&quot;: 7.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 2.600297, &quot;SIDR79&quot;: 1.375043}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.95470428466797, 35.27222061157226, -83.15702056884766, 35.691009521484375], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-83.33181762695312, 35.319343566894524], [-83.4246826171875, 35.31531906127929], [-83.47322845458984, 35.29164505004883], [-83.67919158935547, 35.27222061157226], [-83.6900863647461, 35.28778076171874], [-83.68938446044922, 35.30824279785156], [-83.63421630859375, 35.334033966064446], [-83.59888458251953, 35.36236572265625], [-83.58038330078126, 35.40108489990235], [-83.58671569824219, 35.42768859863282], [-83.63232421875, 35.43674087524414], [-83.65361022949219, 35.42109680175781], [-83.74495697021484, 35.441402435302734], [-83.85498809814453, 35.45012664794922], [-83.87989044189453, 35.46202850341796], [-83.93007659912111, 35.44901657104492], [-83.95470428466797, 35.45545959472656], [-83.9100112915039, 35.476478576660156], [-83.8812255859375, 35.5105857849121], [-83.8302001953125, 35.51906204223633], [-83.77587890625, 35.55260467529297], [-83.6728744506836, 35.56497192382813], [-83.61386108398438, 35.57173919677735], [-83.56103515625, 35.55517578125], [-83.50579833984375, 35.55955123901367], [-83.45829010009766, 35.597278594970696], [-83.38709259033203, 35.62521743774414], [-83.34302520751953, 35.65325927734374], [-83.29841613769531, 35.65632629394531], [-83.25912475585938, 35.691009521484375], [-83.21525573730469, 35.68539810180664], [-83.18429565429688, 35.66307830810547], [-83.19512939453125, 35.6378173828125], [-83.1781005859375, 35.623291015625], [-83.18037414550781, 35.58282089233399], [-83.15702056884766, 35.55166244506836], [-83.18139648437501, 35.51240921020508], [-83.2266616821289, 35.51345443725586], [-83.24730682373047, 35.506988525390625], [-83.30986022949219, 35.46347427368164], [-83.35302734375, 35.45589828491211], [-83.36471557617188, 35.413330078125], [-83.3298110961914, 35.36391067504883], [-83.33181762695312, 35.319343566894524]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;57&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.141, &quot;BIR74&quot;: 675.0, &quot;BIR79&quot;: 883.0, &quot;CNTY_&quot;: 2013, &quot;CNTY_ID&quot;: 2013, &quot;CRESS_ID&quot;: 87, &quot;FIPS&quot;: &quot;37173&quot;, &quot;FIPSNO&quot;: 37173, &quot;NAME&quot;: &quot;Swain&quot;, &quot;NWBIR74&quot;: 281.0, &quot;NWBIR79&quot;: 406.0, &quot;NWR74&quot;: 416.296296, &quot;NWR79&quot;: 459.796149, &quot;PERIMETER&quot;: 2.316, &quot;SID74&quot;: 3.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 4.444444, &quot;SIDR79&quot;: 2.265006}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.83058166503906, 35.33967208862305, -77.47388458251953, 35.65399932861328], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.80518341064453, 35.36458969116211], [-77.80410766601562, 35.40179824829101], [-77.83058166503906, 35.42362594604492], [-77.8262939453125, 35.574256896972656], [-77.69832611083984, 35.65399932861328], [-77.6341323852539, 35.58782577514648], [-77.56464385986328, 35.531940460205085], [-77.54957580566406, 35.52572631835937], [-77.52342987060547, 35.53017807006836], [-77.52104949951172, 35.51650619506837], [-77.50393676757812, 35.50389099121094], [-77.50456237792969, 35.48483276367187], [-77.47388458251953, 35.42152786254882], [-77.4946746826172, 35.40744400024413], [-77.53497314453125, 35.417823791503906], [-77.53717803955078, 35.401981353759766], [-77.55872344970703, 35.38108825683594], [-77.6218032836914, 35.36648559570312], [-77.66605377197266, 35.33967208862305], [-77.6844711303711, 35.34593963623048], [-77.69841766357423, 35.36981964111328], [-77.76069641113281, 35.3619384765625], [-77.80518341064453, 35.36458969116211]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;58&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.07, &quot;BIR74&quot;: 870.0, &quot;BIR79&quot;: 1178.0, &quot;CNTY_&quot;: 2016, &quot;CNTY_ID&quot;: 2016, &quot;CRESS_ID&quot;: 40, &quot;FIPS&quot;: &quot;37079&quot;, &quot;FIPSNO&quot;: 37079, &quot;NAME&quot;: &quot;Greene&quot;, &quot;NWBIR74&quot;: 534.0, &quot;NWBIR79&quot;: 664.0, &quot;NWR74&quot;: 613.793103, &quot;NWR79&quot;: 563.667233, &quot;PERIMETER&quot;: 1.105, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 4.597701, &quot;SIDR79&quot;: 3.395586}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.36248779296875, 35.30453872680664, -78.9744873046875, 35.62461471557617], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.18244171142578, 35.30453872680664], [-79.26432037353516, 35.34457015991212], [-79.28472900390626, 35.39280700683594], [-79.3031997680664, 35.408805847167976], [-79.3245849609375, 35.41482925415039], [-79.33109283447266, 35.44482040405272], [-79.36248779296875, 35.470413208007805], [-79.34367370605469, 35.491641998291016], [-79.34294891357422, 35.5102424621582], [-79.33155059814455, 35.521980285644524], [-79.31285858154297, 35.5268669128418], [-79.31501007080078, 35.53913116455078], [-79.30536651611328, 35.542705535888665], [-79.2861328125, 35.54440689086914], [-79.27609252929688, 35.53027725219726], [-79.22713470458984, 35.565364837646484], [-79.22050476074219, 35.55080032348633], [-79.20973205566406, 35.55345153808594], [-79.19424438476562, 35.575130462646484], [-79.13260650634766, 35.62461471557617], [-79.06729125976562, 35.59870529174805], [-79.03849792480469, 35.54946136474609], [-78.9744873046875, 35.51715469360351], [-79.18244171142578, 35.30453872680664]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;59&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.065, &quot;BIR74&quot;: 2252.0, &quot;BIR79&quot;: 2949.0, &quot;CNTY_&quot;: 2026, &quot;CNTY_ID&quot;: 2026, &quot;CRESS_ID&quot;: 53, &quot;FIPS&quot;: &quot;37105&quot;, &quot;FIPSNO&quot;: 37105, &quot;NAME&quot;: &quot;Lee&quot;, &quot;NWBIR74&quot;: 736.0, &quot;NWBIR79&quot;: 905.0, &quot;NWR74&quot;: 326.820604, &quot;NWR79&quot;: 306.883689, &quot;PERIMETER&quot;: 1.093, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 6.0, &quot;SIDR74&quot;: 2.220249, &quot;SIDR79&quot;: 2.034588}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.27872467041016, 35.182472229003906, -81.68431854248047, 35.60171127319336], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.97144317626953, 35.188282012939446], [-81.96451568603516, 35.2474250793457], [-82.05158233642578, 35.32312774658203], [-82.08415222167969, 35.33935546874999], [-82.1221694946289, 35.38861846923828], [-82.1551284790039, 35.39710235595703], [-82.25827789306642, 35.39335632324217], [-82.27872467041016, 35.43564224243163], [-82.2746810913086, 35.45160675048828], [-82.25810241699219, 35.46372985839844], [-82.24015808105469, 35.468154907226555], [-82.22760009765625, 35.4829216003418], [-82.22290802001953, 35.51569366455078], [-82.17070770263672, 35.52846527099609], [-82.11675262451172, 35.51900482177735], [-82.03618621826172, 35.52858734130858], [-82.00160217285156, 35.545974731445305], [-81.96704864501953, 35.52158737182617], [-81.86215209960939, 35.53054809570312], [-81.84027099609375, 35.537242889404304], [-81.83189392089844, 35.56506347656249], [-81.8162841796875, 35.574378967285156], [-81.76560974121094, 35.584224700927734], [-81.7496109008789, 35.60171127319336], [-81.70082092285156, 35.595611572265625], [-81.69519805908203, 35.57163619995117], [-81.68431854248047, 35.56543731689454], [-81.69768524169922, 35.35326385498047], [-81.73716735839844, 35.25417327880859], [-81.75949096679688, 35.220699310302734], [-81.7653579711914, 35.182472229003906], [-81.87059020996094, 35.18311691284181], [-81.97144317626953, 35.188282012939446]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;60&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.146, &quot;BIR74&quot;: 2992.0, &quot;BIR79&quot;: 3543.0, &quot;CNTY_&quot;: 2027, &quot;CNTY_ID&quot;: 2027, &quot;CRESS_ID&quot;: 81, &quot;FIPS&quot;: &quot;37161&quot;, &quot;FIPSNO&quot;: 37161, &quot;NAME&quot;: &quot;Rutherford&quot;, &quot;NWBIR74&quot;: 495.0, &quot;NWBIR79&quot;: 576.0, &quot;NWR74&quot;: 165.441176, &quot;NWR79&quot;: 162.57409, &quot;PERIMETER&quot;: 1.778, &quot;SID74&quot;: 12.0, &quot;SID79&quot;: 8.0, &quot;SIDR74&quot;: 4.010695, &quot;SIDR79&quot;: 2.257973}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.31012725830078, 35.14418029785156, -77.80410766601562, 35.594669342041016], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.16319274902344, 35.18228912353516], [-78.16517639160156, 35.193218231201165], [-78.25740051269531, 35.220951080322266], [-78.31012725830078, 35.2802848815918], [-78.2681655883789, 35.317359924316406], [-78.23722839355469, 35.314632415771484], [-78.20903778076172, 35.3391761779785], [-78.17745971679688, 35.33959960937501], [-78.15689086914062, 35.35063171386719], [-78.1459732055664, 35.42899322509765], [-78.0653305053711, 35.58203887939453], [-78.06048583984375, 35.594669342041016], [-78.00213623046875, 35.575996398925774], [-77.82717895507812, 35.58290100097656], [-77.8262939453125, 35.574256896972656], [-77.83058166503906, 35.42362594604492], [-77.80410766601562, 35.40179824829101], [-77.80518341064453, 35.36458969116211], [-77.83006286621094, 35.34235000610351], [-77.83657836914064, 35.171741485595696], [-77.8876724243164, 35.15496444702148], [-77.89415740966798, 35.14418029785156], [-77.91397857666016, 35.15997314453125], [-77.94469451904297, 35.16823196411133], [-77.96392822265625, 35.16402435302734], [-78.00215911865234, 35.186477661132805], [-78.03650665283203, 35.18569183349609], [-78.08753204345703, 35.17018508911133], [-78.16319274902344, 35.18228912353516]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;61&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.142, &quot;BIR74&quot;: 6638.0, &quot;BIR79&quot;: 8227.0, &quot;CNTY_&quot;: 2029, &quot;CNTY_ID&quot;: 2029, &quot;CRESS_ID&quot;: 96, &quot;FIPS&quot;: &quot;37191&quot;, &quot;FIPSNO&quot;: 37191, &quot;NAME&quot;: &quot;Wayne&quot;, &quot;NWBIR74&quot;: 2593.0, &quot;NWBIR79&quot;: 3073.0, &quot;NWR74&quot;: 390.629708, &quot;NWR79&quot;: 373.526194, &quot;PERIMETER&quot;: 1.655, &quot;SID74&quot;: 18.0, &quot;SID79&quot;: 23.0, &quot;SIDR74&quot;: 2.71166, &quot;SIDR79&quot;: 2.795673}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.2166519165039, 35.189964294433594, -78.53874206542969, 35.57885742187499], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.61273956298828, 35.243831634521484], [-78.716064453125, 35.259979248046875], [-78.81238555908203, 35.25872039794921], [-78.87457275390625, 35.24253463745117], [-78.88601684570312, 35.229934692382805], [-78.91258239746094, 35.22246551513671], [-79.09589385986328, 35.189964294433594], [-79.14683532714844, 35.21304321289062], [-79.16909790039064, 35.23590087890626], [-79.2166519165039, 35.26527786254882], [-79.18244171142578, 35.30453872680664], [-78.9744873046875, 35.51715469360351], [-78.92107391357422, 35.57885742187499], [-78.70321655273438, 35.51993942260741], [-78.70896911621094, 35.51410293579101], [-78.6887435913086, 35.507526397705085], [-78.62317657470703, 35.44641494750976], [-78.60082244873047, 35.40303039550781], [-78.53946685791016, 35.336463928222656], [-78.53874206542969, 35.31511688232422], [-78.58041381835938, 35.286575317382805], [-78.61273956298828, 35.243831634521484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;62&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.154, &quot;BIR74&quot;: 3776.0, &quot;BIR79&quot;: 4789.0, &quot;CNTY_&quot;: 2030, &quot;CNTY_ID&quot;: 2030, &quot;CRESS_ID&quot;: 43, &quot;FIPS&quot;: &quot;37085&quot;, &quot;FIPSNO&quot;: 37085, &quot;NAME&quot;: &quot;Harnett&quot;, &quot;NWBIR74&quot;: 1051.0, &quot;NWBIR79&quot;: 1453.0, &quot;NWR74&quot;: 278.336864, &quot;NWR79&quot;: 303.403633, &quot;PERIMETER&quot;: 1.68, &quot;SID74&quot;: 6.0, &quot;SID79&quot;: 10.0, &quot;SIDR74&quot;: 1.588983, &quot;SIDR79&quot;: 2.088119}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.7653579711914, 35.16285324096679, -81.3114242553711, 35.56543731689454], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.32282257080078, 35.16375732421875], [-81.36217498779297, 35.16285324096679], [-81.7653579711914, 35.182472229003906], [-81.75949096679688, 35.220699310302734], [-81.73716735839844, 35.25417327880859], [-81.69768524169922, 35.35326385498047], [-81.68431854248047, 35.56543731689454], [-81.64390563964845, 35.5532989501953], [-81.5881118774414, 35.56177520751953], [-81.56253814697266, 35.5553092956543], [-81.52364349365234, 35.56126022338867], [-81.5069580078125, 35.54649734497071], [-81.5155029296875, 35.52142333984376], [-81.44507598876953, 35.413368225097656], [-81.40741729736328, 35.359806060791016], [-81.35326385498047, 35.32730102539063], [-81.36479949951172, 35.31037139892578], [-81.35234832763672, 35.275104522705064], [-81.31942749023438, 35.260498046875], [-81.3114242553711, 35.187950134277344], [-81.32282257080078, 35.16375732421875]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;63&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.118, &quot;BIR74&quot;: 4866.0, &quot;BIR79&quot;: 5526.0, &quot;CNTY_&quot;: 2032, &quot;CNTY_ID&quot;: 2032, &quot;CRESS_ID&quot;: 23, &quot;FIPS&quot;: &quot;37045&quot;, &quot;FIPSNO&quot;: 37045, &quot;NAME&quot;: &quot;Cleveland&quot;, &quot;NWBIR74&quot;: 1491.0, &quot;NWBIR79&quot;: 1729.0, &quot;NWR74&quot;: 306.411837, &quot;NWR79&quot;: 312.884546, &quot;PERIMETER&quot;: 1.506, &quot;SID74&quot;: 10.0, &quot;SID79&quot;: 21.0, &quot;SIDR74&quot;: 2.055076, &quot;SIDR79&quot;: 3.800217}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.52364349365234, 35.39745330810547, -80.94219970703125, 35.56126022338867], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.95677185058594, 35.39745330810547], [-81.44507598876953, 35.413368225097656], [-81.5155029296875, 35.52142333984376], [-81.5069580078125, 35.54649734497071], [-81.52364349365234, 35.56126022338867], [-80.96143341064455, 35.543563842773445], [-80.9510726928711, 35.52866744995117], [-80.9553451538086, 35.50912094116211], [-80.94219970703125, 35.451129913330085], [-80.95386505126953, 35.436058044433594], [-80.95677185058594, 35.39745330810547]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;64&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.078, &quot;BIR74&quot;: 2216.0, &quot;BIR79&quot;: 2817.0, &quot;CNTY_&quot;: 2034, &quot;CNTY_ID&quot;: 2034, &quot;CRESS_ID&quot;: 55, &quot;FIPS&quot;: &quot;37109&quot;, &quot;FIPSNO&quot;: 37109, &quot;NAME&quot;: &quot;Lincoln&quot;, &quot;NWBIR74&quot;: 302.0, &quot;NWBIR79&quot;: 350.0, &quot;NWR74&quot;: 136.281588, &quot;NWR79&quot;: 124.245651, &quot;PERIMETER&quot;: 1.384, &quot;SID74&quot;: 8.0, &quot;SID79&quot;: 7.0, &quot;SIDR74&quot;: 3.610108, &quot;SIDR79&quot;: 2.484913}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.36471557617188, 35.00027847290038, -82.91911315917969, 35.51345443725586], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-83.10628509521484, 35.00027847290038], [-83.1614990234375, 35.05922317504883], [-83.14505767822266, 35.08328628540038], [-83.14820098876953, 35.091381072998054], [-83.1771469116211, 35.11149597167969], [-83.1934814453125, 35.13921737670899], [-83.21793365478516, 35.15899276733398], [-83.22003936767578, 35.222526550292976], [-83.23278045654297, 35.23080825805664], [-83.2639389038086, 35.22177124023437], [-83.28498077392578, 35.22663497924805], [-83.31063842773438, 35.259986877441406], [-83.33181762695312, 35.319343566894524], [-83.3298110961914, 35.36391067504883], [-83.36471557617188, 35.413330078125], [-83.35302734375, 35.45589828491211], [-83.30986022949219, 35.46347427368164], [-83.24730682373047, 35.506988525390625], [-83.2266616821289, 35.51345443725586], [-83.18139648437501, 35.51240921020508], [-83.14237213134766, 35.48439407348633], [-83.12823486328125, 35.456615447998054], [-83.08771514892578, 35.44632720947266], [-83.0460433959961, 35.4069938659668], [-83.0385971069336, 35.38993072509765], [-82.98535919189453, 35.3563232421875], [-82.95362091064453, 35.308528900146484], [-82.91911315917969, 35.290767669677734], [-82.9268569946289, 35.22790527343751], [-82.97871398925781, 35.18572998046875], [-82.99058532714844, 35.15817642211913], [-82.9820785522461, 35.12750625610351], [-83.05208587646484, 35.06347656249999], [-83.04385375976562, 35.04006958007812], [-83.00727844238281, 35.02420425415039], [-83.10628509521484, 35.00027847290038]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;65&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.125, &quot;BIR74&quot;: 1143.0, &quot;BIR79&quot;: 1504.0, &quot;CNTY_&quot;: 2039, &quot;CNTY_ID&quot;: 2039, &quot;CRESS_ID&quot;: 50, &quot;FIPS&quot;: &quot;37099&quot;, &quot;FIPSNO&quot;: 37099, &quot;NAME&quot;: &quot;Jackson&quot;, &quot;NWBIR74&quot;: 215.0, &quot;NWBIR79&quot;: 307.0, &quot;NWR74&quot;: 188.101487, &quot;NWR79&quot;: 204.12234, &quot;PERIMETER&quot;: 1.601, &quot;SID74&quot;: 2.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 1.749781, &quot;SIDR79&quot;: 3.324468}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.7649917602539, 35.03735733032227, -79.09589385986328, 35.5130500793457], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.60746765136719, 35.15918731689453], [-79.64837646484375, 35.18973159790038], [-79.70823669433594, 35.27841567993164], [-79.7649917602539, 35.50593566894532], [-79.55535888671875, 35.5130500793457], [-79.34294891357422, 35.5102424621582], [-79.34367370605469, 35.491641998291016], [-79.36248779296875, 35.470413208007805], [-79.33109283447266, 35.44482040405272], [-79.3245849609375, 35.41482925415039], [-79.3031997680664, 35.408805847167976], [-79.28472900390626, 35.39280700683594], [-79.26432037353516, 35.34457015991212], [-79.18244171142578, 35.30453872680664], [-79.2166519165039, 35.26527786254882], [-79.16909790039064, 35.23590087890626], [-79.14683532714844, 35.21304321289062], [-79.09589385986328, 35.189964294433594], [-79.09717559814453, 35.176807403564446], [-79.12200164794922, 35.17018508911133], [-79.14727783203125, 35.1735496520996], [-79.23529052734375, 35.203208923339844], [-79.35005187988281, 35.14079666137695], [-79.45536041259766, 35.03735733032227], [-79.49506378173828, 35.062507629394524], [-79.55290222167969, 35.06410598754882], [-79.57419586181642, 35.073265075683594], [-79.57563018798828, 35.11912536621094], [-79.60746765136719, 35.15918731689453]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;66&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.181, &quot;BIR74&quot;: 2648.0, &quot;BIR79&quot;: 3534.0, &quot;CNTY_&quot;: 2040, &quot;CNTY_ID&quot;: 2040, &quot;CRESS_ID&quot;: 63, &quot;FIPS&quot;: &quot;37125&quot;, &quot;FIPSNO&quot;: 37125, &quot;NAME&quot;: &quot;Moore&quot;, &quot;NWBIR74&quot;: 844.0, &quot;NWBIR79&quot;: 1151.0, &quot;NWR74&quot;: 318.731118, &quot;NWR79&quot;: 325.693265, &quot;PERIMETER&quot;: 1.98, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 1.888218, &quot;SIDR79&quot;: 1.414827}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.0655517578125, 35.002017974853516, -80.53964233398438, 35.50912094116211], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.04930114746094, 35.15153121948242], [-81.02396392822266, 35.149032592773445], [-81.00727844238281, 35.16324996948243], [-81.00151824951172, 35.195987701416016], [-81.01405334472656, 35.249900817871094], [-80.97964477539062, 35.33326721191406], [-80.92627716064453, 35.348674774169915], [-80.93775939941406, 35.36492538452149], [-80.98292541503906, 35.369094848632805], [-80.95677185058594, 35.39745330810547], [-80.95386505126953, 35.436058044433594], [-80.94219970703125, 35.451129913330085], [-80.9553451538086, 35.50912094116211], [-80.77622985839844, 35.50680923461913], [-80.77538299560547, 35.47957229614257], [-80.76168823242188, 35.46513748168945], [-80.74543762207031, 35.419857025146484], [-80.76274108886719, 35.40068054199219], [-80.68998718261719, 35.34075927734376], [-80.6594467163086, 35.26467514038087], [-80.53964233398438, 35.205818176269524], [-80.75968170166016, 35.03662109375], [-80.7972183227539, 35.028198242187514], [-80.84016418457033, 35.002017974853516], [-80.89471435546875, 35.05973434448241], [-80.92779541015625, 35.10124969482421], [-81.03988647460938, 35.037200927734375], [-81.0655517578125, 35.06648254394531], [-81.0284423828125, 35.10540771484374], [-81.04904174804688, 35.13201141357422], [-81.04930114746094, 35.15153121948242]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;67&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.143, &quot;BIR74&quot;: 21588.0, &quot;BIR79&quot;: 30757.0, &quot;CNTY_&quot;: 2041, &quot;CNTY_ID&quot;: 2041, &quot;CRESS_ID&quot;: 60, &quot;FIPS&quot;: &quot;37119&quot;, &quot;FIPSNO&quot;: 37119, &quot;NAME&quot;: &quot;Mecklenburg&quot;, &quot;NWBIR74&quot;: 8027.0, &quot;NWBIR79&quot;: 11631.0, &quot;NWR74&quot;: 371.826941, &quot;NWR79&quot;: 378.157818, &quot;PERIMETER&quot;: 1.887, &quot;SID74&quot;: 44.0, &quot;SID79&quot;: 35.0, &quot;SIDR74&quot;: 2.038169, &quot;SIDR79&quot;: 1.137952}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.77622985839844, 35.186912536621094, -80.2982406616211, 35.50756835937499], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.50294494628906, 35.186912536621094], [-80.53964233398438, 35.205818176269524], [-80.6594467163086, 35.26467514038087], [-80.68998718261719, 35.34075927734376], [-80.76274108886719, 35.40068054199219], [-80.74543762207031, 35.419857025146484], [-80.76168823242188, 35.46513748168945], [-80.77538299560547, 35.47957229614257], [-80.77622985839844, 35.50680923461913], [-80.72651672363281, 35.50756835937499], [-80.2982406616211, 35.49489974975585], [-80.37847137451172, 35.38483810424805], [-80.48171997070312, 35.21060943603516], [-80.50294494628906, 35.186912536621094]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;68&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.091, &quot;BIR74&quot;: 4099.0, &quot;BIR79&quot;: 5669.0, &quot;CNTY_&quot;: 2042, &quot;CNTY_ID&quot;: 2042, &quot;CRESS_ID&quot;: 13, &quot;FIPS&quot;: &quot;37025&quot;, &quot;FIPSNO&quot;: 37025, &quot;NAME&quot;: &quot;Cabarrus&quot;, &quot;NWBIR74&quot;: 856.0, &quot;NWBIR79&quot;: 1203.0, &quot;NWR74&quot;: 208.831422, &quot;NWR79&quot;: 212.206738, &quot;PERIMETER&quot;: 1.321, &quot;SID74&quot;: 3.0, &quot;SID79&quot;: 20.0, &quot;SIDR74&quot;: 0.731886, &quot;SIDR79&quot;: 3.527959}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.1819076538086, 35.136581420898445, -79.60746765136719, 35.50593566894532], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.0714111328125, 35.150741577148445], [-80.05906677246094, 35.17707824707031], [-80.06584167480469, 35.207942962646484], [-80.09234619140625, 35.25422668457031], [-80.09351348876953, 35.291446685791016], [-80.05075073242188, 35.36637115478515], [-80.05188751220703, 35.376808166503906], [-80.1163101196289, 35.46435928344726], [-80.16207122802734, 35.47474288940429], [-80.1819076538086, 35.505119323730455], [-80.06440734863281, 35.505699157714844], [-79.7649917602539, 35.50593566894532], [-79.70823669433594, 35.27841567993164], [-79.64837646484375, 35.18973159790038], [-79.60746765136719, 35.15918731689453], [-79.63729858398438, 35.15383529663087], [-79.69795227050781, 35.173072814941406], [-79.75984191894531, 35.16731262207032], [-79.83631896972656, 35.17380142211913], [-79.90946197509766, 35.15571975708007], [-79.97582244873047, 35.1507568359375], [-80.01068115234375, 35.13714218139649], [-80.06517791748047, 35.136581420898445], [-80.0714111328125, 35.150741577148445]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;69&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.13, &quot;BIR74&quot;: 1258.0, &quot;BIR79&quot;: 1598.0, &quot;CNTY_&quot;: 2044, &quot;CNTY_ID&quot;: 2044, &quot;CRESS_ID&quot;: 62, &quot;FIPS&quot;: &quot;37123&quot;, &quot;FIPSNO&quot;: 37123, &quot;NAME&quot;: &quot;Montgomery&quot;, &quot;NWBIR74&quot;: 472.0, &quot;NWBIR79&quot;: 588.0, &quot;NWR74&quot;: 375.198728, &quot;NWR79&quot;: 367.95995, &quot;PERIMETER&quot;: 1.732, &quot;SID74&quot;: 3.0, &quot;SID79&quot;: 8.0, &quot;SIDR74&quot;: 2.384738, &quot;SIDR79&quot;: 5.006258}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.50294494628906, 35.14973068237305, -80.05075073242188, 35.505119323730455], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.0714111328125, 35.150741577148445], [-80.11027526855469, 35.193836212158196], [-80.1316146850586, 35.17111587524413], [-80.1546859741211, 35.17608261108398], [-80.15914154052734, 35.15473937988281], [-80.16812896728516, 35.14973068237305], [-80.19010162353516, 35.167858123779304], [-80.21988677978516, 35.15918350219726], [-80.24758911132814, 35.204524993896484], [-80.26109313964844, 35.20404052734374], [-80.2751235961914, 35.193111419677734], [-80.32567596435547, 35.173915863037124], [-80.34872436523438, 35.17067337036132], [-80.3729476928711, 35.177864074707024], [-80.39875030517578, 35.16461181640625], [-80.42858123779297, 35.168594360351555], [-80.45328521728516, 35.16078567504883], [-80.48323059082031, 35.182910919189446], [-80.50294494628906, 35.186912536621094], [-80.48171997070312, 35.21060943603516], [-80.37847137451172, 35.38483810424805], [-80.2982406616211, 35.49489974975585], [-80.1819076538086, 35.505119323730455], [-80.16207122802734, 35.47474288940429], [-80.1163101196289, 35.46435928344726], [-80.05188751220703, 35.376808166503906], [-80.05075073242188, 35.36637115478515], [-80.09351348876953, 35.291446685791016], [-80.09234619140625, 35.25422668457031], [-80.06584167480469, 35.207942962646484], [-80.05906677246094, 35.17707824707031], [-80.0714111328125, 35.150741577148445]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;70&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.103, &quot;BIR74&quot;: 2356.0, &quot;BIR79&quot;: 3039.0, &quot;CNTY_&quot;: 2045, &quot;CNTY_ID&quot;: 2045, &quot;CRESS_ID&quot;: 84, &quot;FIPS&quot;: &quot;37167&quot;, &quot;FIPSNO&quot;: 37167, &quot;NAME&quot;: &quot;Stanly&quot;, &quot;NWBIR74&quot;: 370.0, &quot;NWBIR79&quot;: 528.0, &quot;NWR74&quot;: 157.04584, &quot;NWR79&quot;: 173.741362, &quot;PERIMETER&quot;: 1.461, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 7.0, &quot;SIDR74&quot;: 2.122241, &quot;SIDR79&quot;: 2.303389}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.74388885498047, 35.14949035644531, -82.25810241699219, 35.49515914916991], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-82.57003021240234, 35.14949035644531], [-82.58922576904297, 35.18494796752929], [-82.59623718261719, 35.24246597290039], [-82.61061096191406, 35.26757812500001], [-82.60810089111328, 35.29306411743165], [-82.74388885498047, 35.41803359985351], [-82.7141571044922, 35.43915176391602], [-82.66898345947266, 35.45516586303711], [-82.61868286132812, 35.43767547607421], [-82.56393432617188, 35.438423156738274], [-82.55113220214844, 35.42689514160156], [-82.52690124511719, 35.428321838378906], [-82.51951599121094, 35.44391632080078], [-82.47492218017578, 35.44440460205078], [-82.40906524658203, 35.46892166137695], [-82.37368774414062, 35.45737838745117], [-82.36483764648438, 35.46345901489258], [-82.37096405029297, 35.4787712097168], [-82.3228759765625, 35.49515914916991], [-82.25810241699219, 35.46372985839844], [-82.2746810913086, 35.45160675048828], [-82.27872467041016, 35.43564224243163], [-82.25827789306642, 35.39335632324217], [-82.31555938720703, 35.30961608886718], [-82.34130859375, 35.28549575805664], [-82.34508514404297, 35.24319076538086], [-82.3580322265625, 35.2429313659668], [-82.35086059570312, 35.19267272949219], [-82.36012268066406, 35.18294906616211], [-82.37137603759766, 35.182723999023445], [-82.38961029052734, 35.208240509033196], [-82.43791961669922, 35.16955947875977], [-82.46674346923828, 35.173500061035156], [-82.52463531494142, 35.15456008911132], [-82.57003021240234, 35.14949035644531]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;71&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.095, &quot;BIR74&quot;: 2574.0, &quot;BIR79&quot;: 3679.0, &quot;CNTY_&quot;: 2047, &quot;CNTY_ID&quot;: 2047, &quot;CRESS_ID&quot;: 45, &quot;FIPS&quot;: &quot;37089&quot;, &quot;FIPSNO&quot;: 37089, &quot;NAME&quot;: &quot;Henderson&quot;, &quot;NWBIR74&quot;: 158.0, &quot;NWBIR79&quot;: 264.0, &quot;NWR74&quot;: 61.383061, &quot;NWR79&quot;: 71.75863, &quot;PERIMETER&quot;: 1.471, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 8.0, &quot;SIDR74&quot;: 1.942502, &quot;SIDR79&quot;: 2.174504}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-84.03086090087892, 35.21538162231445, -83.58038330078126, 35.46202850341796], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-83.69563293457031, 35.25080871582032], [-83.7535629272461, 35.23716735839844], [-83.79187774658203, 35.24866104125976], [-83.83686065673828, 35.24674987792968], [-83.9216537475586, 35.21896743774413], [-83.96089935302734, 35.21538162231445], [-83.99220275878906, 35.232501983642585], [-84.00389099121094, 35.262088775634766], [-84.03086090087892, 35.29252243041993], [-84.02920532226562, 35.32529067993164], [-84.00630950927734, 35.37285995483398], [-84.01264953613281, 35.40762329101562], [-83.95470428466797, 35.45545959472656], [-83.93007659912111, 35.44901657104492], [-83.87989044189453, 35.46202850341796], [-83.85498809814453, 35.45012664794922], [-83.74495697021484, 35.441402435302734], [-83.65361022949219, 35.42109680175781], [-83.63232421875, 35.43674087524414], [-83.58671569824219, 35.42768859863282], [-83.58038330078126, 35.40108489990235], [-83.59888458251953, 35.36236572265625], [-83.63421630859375, 35.334033966064446], [-83.68938446044922, 35.30824279785156], [-83.6900863647461, 35.28778076171874], [-83.67919158935547, 35.27222061157226], [-83.69563293457031, 35.25080871582032]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;72&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.078, &quot;BIR74&quot;: 415.0, &quot;BIR79&quot;: 488.0, &quot;CNTY_&quot;: 2056, &quot;CNTY_ID&quot;: 2056, &quot;CRESS_ID&quot;: 38, &quot;FIPS&quot;: &quot;37075&quot;, &quot;FIPSNO&quot;: 37075, &quot;NAME&quot;: &quot;Graham&quot;, &quot;NWBIR74&quot;: 40.0, &quot;NWBIR79&quot;: 45.0, &quot;NWR74&quot;: 96.385542, &quot;NWR79&quot;: 92.213115, &quot;PERIMETER&quot;: 1.202, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 2.04918}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.83657836914064, 35.00083541870117, -77.38616180419922, 35.42152786254882], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.83657836914064, 35.171741485595696], [-77.83006286621094, 35.34235000610351], [-77.80518341064453, 35.36458969116211], [-77.76069641113281, 35.3619384765625], [-77.69841766357423, 35.36981964111328], [-77.6844711303711, 35.34593963623048], [-77.66605377197266, 35.33967208862305], [-77.6218032836914, 35.36648559570312], [-77.55872344970703, 35.38108825683594], [-77.53717803955078, 35.401981353759766], [-77.53497314453125, 35.417823791503906], [-77.4946746826172, 35.40744400024413], [-77.47388458251953, 35.42152786254882], [-77.4439468383789, 35.35459518432617], [-77.4014892578125, 35.34276962280273], [-77.38616180419922, 35.32926177978516], [-77.41315460205078, 35.33121871948242], [-77.45021057128906, 35.302059173583984], [-77.4485092163086, 35.285675048828125], [-77.42964935302734, 35.259838104248054], [-77.4740982055664, 35.227191925048814], [-77.52831268310547, 35.239696502685554], [-77.51077270507812, 35.15576934814453], [-77.5330581665039, 35.144882202148445], [-77.59949493408203, 35.070869445800774], [-77.73192596435547, 35.00083541870117], [-77.74478912353516, 35.002445220947266], [-77.75499725341797, 35.01808166503906], [-77.75160217285156, 35.09567642211913], [-77.7641372680664, 35.12861251831054], [-77.83657836914064, 35.171741485595696]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;73&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.104, &quot;BIR74&quot;: 3589.0, &quot;BIR79&quot;: 4225.0, &quot;CNTY_&quot;: 2065, &quot;CNTY_ID&quot;: 2065, &quot;CRESS_ID&quot;: 54, &quot;FIPS&quot;: &quot;37107&quot;, &quot;FIPSNO&quot;: 37107, &quot;NAME&quot;: &quot;Lenoir&quot;, &quot;NWBIR74&quot;: 1826.0, &quot;NWBIR79&quot;: 2047.0, &quot;NWR74&quot;: 508.776818, &quot;NWR79&quot;: 484.497041, &quot;PERIMETER&quot;: 1.548, &quot;SID74&quot;: 10.0, &quot;SID79&quot;: 14.0, &quot;SIDR74&quot;: 2.786291, &quot;SIDR79&quot;: 3.313609}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.05208587646484, 35.02420425415039, -82.57003021240234, 35.41803359985351], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-82.8876953125, 35.055370330810554], [-83.00727844238281, 35.02420425415039], [-83.04385375976562, 35.04006958007812], [-83.05208587646484, 35.06347656249999], [-82.9820785522461, 35.12750625610351], [-82.99058532714844, 35.15817642211913], [-82.97871398925781, 35.18572998046875], [-82.9268569946289, 35.22790527343751], [-82.91911315917969, 35.290767669677734], [-82.83323669433594, 35.315570831298814], [-82.74388885498047, 35.41803359985351], [-82.60810089111328, 35.29306411743165], [-82.61061096191406, 35.26757812500001], [-82.59623718261719, 35.24246597290039], [-82.58922576904297, 35.18494796752929], [-82.57003021240234, 35.14949035644531], [-82.65449523925781, 35.11945724487304], [-82.68605041503906, 35.12146377563476], [-82.68803405761719, 35.097801208496094], [-82.69735717773438, 35.091232299804695], [-82.77134704589844, 35.08542251586914], [-82.8876953125, 35.055370330810554]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;74&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.098, &quot;BIR74&quot;: 1173.0, &quot;BIR79&quot;: 1401.0, &quot;CNTY_&quot;: 2067, &quot;CNTY_ID&quot;: 2067, &quot;CRESS_ID&quot;: 88, &quot;FIPS&quot;: &quot;37175&quot;, &quot;FIPSNO&quot;: 37175, &quot;NAME&quot;: &quot;Transylvania&quot;, &quot;NWBIR74&quot;: 92.0, &quot;NWBIR79&quot;: 104.0, &quot;NWR74&quot;: 78.431373, &quot;NWR79&quot;: 74.232691, &quot;PERIMETER&quot;: 1.389, &quot;SID74&quot;: 3.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 2.557545, &quot;SIDR79&quot;: 2.855103}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.44507598876953, 35.149032592773445, -80.92627716064453, 35.413368225097656], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.32282257080078, 35.16375732421875], [-81.3114242553711, 35.187950134277344], [-81.31942749023438, 35.260498046875], [-81.35234832763672, 35.275104522705064], [-81.36479949951172, 35.31037139892578], [-81.35326385498047, 35.32730102539063], [-81.40741729736328, 35.359806060791016], [-81.44507598876953, 35.413368225097656], [-80.95677185058594, 35.39745330810547], [-80.98292541503906, 35.369094848632805], [-80.93775939941406, 35.36492538452149], [-80.92627716064453, 35.348674774169915], [-80.97964477539062, 35.33326721191406], [-81.01405334472656, 35.249900817871094], [-81.00151824951172, 35.195987701416016], [-81.00727844238281, 35.16324996948243], [-81.02396392822266, 35.149032592773445], [-81.04930114746094, 35.15153121948242], [-81.32282257080078, 35.16375732421875]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;75&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.091, &quot;BIR74&quot;: 9014.0, &quot;BIR79&quot;: 11455.0, &quot;CNTY_&quot;: 2068, &quot;CNTY_ID&quot;: 2068, &quot;CRESS_ID&quot;: 36, &quot;FIPS&quot;: &quot;37071&quot;, &quot;FIPSNO&quot;: 37071, &quot;NAME&quot;: &quot;Gaston&quot;, &quot;NWBIR74&quot;: 1523.0, &quot;NWBIR79&quot;: 2194.0, &quot;NWR74&quot;: 168.959396, &quot;NWR79&quot;: 191.532082, &quot;PERIMETER&quot;: 1.47, &quot;SID74&quot;: 11.0, &quot;SID79&quot;: 26.0, &quot;SIDR74&quot;: 1.220324, &quot;SIDR79&quot;: 2.269751}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.3580322265625, 35.18418884277343, -81.96451568603516, 35.39710235595703], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-82.21017456054688, 35.193126678466804], [-82.27832794189453, 35.19500732421874], [-82.32077026367188, 35.18418884277343], [-82.35086059570312, 35.19267272949219], [-82.3580322265625, 35.2429313659668], [-82.34508514404297, 35.24319076538086], [-82.34130859375, 35.28549575805664], [-82.31555938720703, 35.30961608886718], [-82.25827789306642, 35.39335632324217], [-82.1551284790039, 35.39710235595703], [-82.1221694946289, 35.38861846923828], [-82.08415222167969, 35.33935546874999], [-82.05158233642578, 35.32312774658203], [-81.96451568603516, 35.2474250793457], [-81.97144317626953, 35.188282012939446], [-82.21017456054688, 35.193126678466804]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;76&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.06, &quot;BIR74&quot;: 533.0, &quot;BIR79&quot;: 673.0, &quot;CNTY_&quot;: 2071, &quot;CNTY_ID&quot;: 2071, &quot;CRESS_ID&quot;: 75, &quot;FIPS&quot;: &quot;37149&quot;, &quot;FIPSNO&quot;: 37149, &quot;NAME&quot;: &quot;Polk&quot;, &quot;NWBIR74&quot;: 95.0, &quot;NWBIR79&quot;: 79.0, &quot;NWR74&quot;: 178.236398, &quot;NWR79&quot;: 117.384844, &quot;PERIMETER&quot;: 1.036, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 1.876173, &quot;SIDR79&quot;: 0.0}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.7395248413086, 34.99202346801758, -83.10628509521484, 35.319343566894524], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-83.10628509521484, 35.00027847290038], [-83.51300811767578, 34.99202346801758], [-83.5272216796875, 35.019737243652344], [-83.55323791503906, 35.03576278686523], [-83.56204223632812, 35.05594253540038], [-83.64356231689453, 35.127498626708984], [-83.6448745727539, 35.14336013793946], [-83.71780395507812, 35.13880920410156], [-83.7395248413086, 35.14583969116211], [-83.71308135986328, 35.18075180053711], [-83.72232818603516, 35.19727325439453], [-83.69669342041016, 35.214435577392585], [-83.69563293457031, 35.25080871582032], [-83.67919158935547, 35.27222061157226], [-83.47322845458984, 35.29164505004883], [-83.4246826171875, 35.31531906127929], [-83.33181762695312, 35.319343566894524], [-83.31063842773438, 35.259986877441406], [-83.28498077392578, 35.22663497924805], [-83.2639389038086, 35.22177124023437], [-83.23278045654297, 35.23080825805664], [-83.22003936767578, 35.222526550292976], [-83.21793365478516, 35.15899276733398], [-83.1934814453125, 35.13921737670899], [-83.1771469116211, 35.11149597167969], [-83.14820098876953, 35.091381072998054], [-83.14505767822266, 35.08328628540038], [-83.1614990234375, 35.05922317504883], [-83.10628509521484, 35.00027847290038]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;77&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.131, &quot;BIR74&quot;: 797.0, &quot;BIR79&quot;: 1157.0, &quot;CNTY_&quot;: 2082, &quot;CNTY_ID&quot;: 2082, &quot;CRESS_ID&quot;: 57, &quot;FIPS&quot;: &quot;37113&quot;, &quot;FIPSNO&quot;: 37113, &quot;NAME&quot;: &quot;Macon&quot;, &quot;NWBIR74&quot;: 9.0, &quot;NWBIR79&quot;: 22.0, &quot;NWR74&quot;: 11.292346, &quot;NWR79&quot;: 19.014693, &quot;PERIMETER&quot;: 1.677, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 3.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 2.592913}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.66641235351562, 34.553752899169915, -78.11373901367188, 35.31511688232422], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.11376953125, 34.72098541259764], [-78.11373901367188, 34.699180603027344], [-78.1567611694336, 34.67715454101562], [-78.25680541992188, 34.553752899169915], [-78.27461242675781, 34.58127593994141], [-78.30590057373047, 34.60535812377929], [-78.31988525390625, 34.63009262084961], [-78.30970001220703, 34.635852813720696], [-78.32234191894531, 34.64557266235351], [-78.3388671875, 34.6826057434082], [-78.36381530761719, 34.69204330444335], [-78.38667297363281, 34.72188949584961], [-78.4010009765625, 34.75933074951172], [-78.4992904663086, 34.85510635375977], [-78.5419921875, 34.90787124633789], [-78.59347534179688, 34.943470001220696], [-78.6342544555664, 34.98436737060547], [-78.66641235351562, 35.07146835327148], [-78.65815734863283, 35.09362030029296], [-78.64563751220703, 35.10255813598633], [-78.63348388671875, 35.153724670410156], [-78.64522552490236, 35.18972778320312], [-78.6327133178711, 35.1972999572754], [-78.63528442382812, 35.210952758789055], [-78.61273956298828, 35.243831634521484], [-78.58041381835938, 35.286575317382805], [-78.53874206542969, 35.31511688232422], [-78.49362182617188, 35.259620666503906], [-78.41667938232422, 35.24907684326172], [-78.31012725830078, 35.2802848815918], [-78.25740051269531, 35.220951080322266], [-78.16517639160156, 35.193218231201165], [-78.16319274902344, 35.18228912353516], [-78.17028045654297, 35.09748458862305], [-78.15524291992189, 35.06819152832031], [-78.14298248291016, 34.90132522583007], [-78.19544982910156, 34.74362564086913], [-78.15609741210938, 34.728477478027344], [-78.13581848144531, 34.711345672607415], [-78.11376953125, 34.72098541259764]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;78&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.241, &quot;BIR74&quot;: 3025.0, &quot;BIR79&quot;: 3447.0, &quot;CNTY_&quot;: 2083, &quot;CNTY_ID&quot;: 2083, &quot;CRESS_ID&quot;: 82, &quot;FIPS&quot;: &quot;37163&quot;, &quot;FIPSNO&quot;: 37163, &quot;NAME&quot;: &quot;Sampson&quot;, &quot;NWBIR74&quot;: 1396.0, &quot;NWBIR79&quot;: 1524.0, &quot;NWR74&quot;: 461.487603, &quot;NWR79&quot;: 442.123586, &quot;PERIMETER&quot;: 2.214, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 1.322314, &quot;SIDR79&quot;: 1.160429}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.9898910522461, 34.98221969604491, -76.50712585449219, 35.31208038330078], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.94324493408203, 35.0700340270996], [-76.94422912597658, 35.09972381591797], [-76.9898910522461, 35.15404510498046], [-76.97233581542969, 35.15677261352538], [-76.96660614013672, 35.18796539306641], [-76.94743347167969, 35.216991424560554], [-76.8976058959961, 35.25157165527344], [-76.85057067871094, 35.217166900634766], [-76.64021301269531, 35.237247467041016], [-76.61451721191406, 35.272918701171875], [-76.5912094116211, 35.31208038330078], [-76.54097747802734, 35.303688049316406], [-76.50712585449219, 35.248767852783196], [-76.64009094238281, 35.17251968383789], [-76.605224609375, 35.13856124877929], [-76.62422180175781, 35.06435012817383], [-76.67800903320312, 35.024085998535156], [-76.8494644165039, 34.98221969604491], [-76.94149017333984, 35.027427673339844], [-76.94324493408203, 35.0700340270996]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;79&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.082, &quot;BIR74&quot;: 542.0, &quot;BIR79&quot;: 631.0, &quot;CNTY_&quot;: 2085, &quot;CNTY_ID&quot;: 2085, &quot;CRESS_ID&quot;: 69, &quot;FIPS&quot;: &quot;37137&quot;, &quot;FIPSNO&quot;: 37137, &quot;NAME&quot;: &quot;Pamlico&quot;, &quot;NWBIR74&quot;: 222.0, &quot;NWBIR79&quot;: 277.0, &quot;NWR74&quot;: 409.594096, &quot;NWR79&quot;: 438.985737, &quot;PERIMETER&quot;: 1.388, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 1.845018, &quot;SIDR79&quot;: 1.584786}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-84.3238525390625, 34.988224029541016, -83.69563293457031, 35.29252243041993], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-84.2910385131836, 35.21054458618163], [-84.22594451904297, 35.26160430908203], [-84.17972564697266, 35.24098968505859], [-84.10164642333984, 35.24555206298828], [-84.04277801513672, 35.27257537841797], [-84.03086090087892, 35.29252243041993], [-84.00389099121094, 35.262088775634766], [-83.99220275878906, 35.232501983642585], [-83.96089935302734, 35.21538162231445], [-83.9216537475586, 35.21896743774413], [-83.83686065673828, 35.24674987792968], [-83.79187774658203, 35.24866104125976], [-83.7535629272461, 35.23716735839844], [-83.69563293457031, 35.25080871582032], [-83.69669342041016, 35.214435577392585], [-83.72232818603516, 35.19727325439453], [-83.71308135986328, 35.18075180053711], [-83.7395248413086, 35.14583969116211], [-83.7553939819336, 35.148063659667976], [-83.8538818359375, 35.12579345703126], [-83.90731811523438, 35.07041549682617], [-83.95285034179688, 35.04844284057617], [-83.95977020263672, 35.01912307739258], [-83.9885482788086, 34.98906707763672], [-84.11824035644531, 34.988224029541016], [-84.3238525390625, 34.98900985717773], [-84.2910385131836, 35.21054458618163]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;80&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.12, &quot;BIR74&quot;: 1027.0, &quot;BIR79&quot;: 1173.0, &quot;CNTY_&quot;: 2088, &quot;CNTY_ID&quot;: 2088, &quot;CRESS_ID&quot;: 20, &quot;FIPS&quot;: &quot;37039&quot;, &quot;FIPSNO&quot;: 37039, &quot;NAME&quot;: &quot;Cherokee&quot;, &quot;NWBIR74&quot;: 32.0, &quot;NWBIR79&quot;: 42.0, &quot;NWR74&quot;: 31.158715, &quot;NWR79&quot;: 35.805627, &quot;PERIMETER&quot;: 1.686, &quot;SID74&quot;: 2.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 1.94742, &quot;SIDR79&quot;: 0.852515}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.10684204101562, 34.82742309570313, -78.4992904663086, 35.259979248046875], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.4992904663086, 34.85510635375977], [-78.51744079589844, 34.843528747558594], [-78.83165740966797, 34.844356536865234], [-78.89626312255861, 34.830902099609375], [-78.91255187988283, 34.82742309570313], [-78.92862701416016, 34.879798889160156], [-78.948486328125, 34.90268325805663], [-79.03360748291016, 34.9538230895996], [-79.09431457519531, 35.03785705566407], [-79.10684204101562, 35.119224548339844], [-79.09717559814453, 35.176807403564446], [-79.09589385986328, 35.189964294433594], [-78.91258239746094, 35.22246551513671], [-78.88601684570312, 35.229934692382805], [-78.87457275390625, 35.24253463745117], [-78.81238555908203, 35.25872039794921], [-78.716064453125, 35.259979248046875], [-78.61273956298828, 35.243831634521484], [-78.63528442382812, 35.210952758789055], [-78.6327133178711, 35.1972999572754], [-78.64522552490236, 35.18972778320312], [-78.63348388671875, 35.153724670410156], [-78.64563751220703, 35.10255813598633], [-78.65815734863283, 35.09362030029296], [-78.66641235351562, 35.07146835327148], [-78.6342544555664, 34.98436737060547], [-78.59347534179688, 34.943470001220696], [-78.5419921875, 34.90787124633789], [-78.4992904663086, 34.85510635375977]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;81&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.172, &quot;BIR74&quot;: 20366.0, &quot;BIR79&quot;: 26370.0, &quot;CNTY_&quot;: 2090, &quot;CNTY_ID&quot;: 2090, &quot;CRESS_ID&quot;: 26, &quot;FIPS&quot;: &quot;37051&quot;, &quot;FIPSNO&quot;: 37051, &quot;NAME&quot;: &quot;Cumberland&quot;, &quot;NWBIR74&quot;: 7043.0, &quot;NWBIR79&quot;: 10614.0, &quot;NWR74&quot;: 345.821467, &quot;NWR79&quot;: 402.502844, &quot;PERIMETER&quot;: 1.835, &quot;SID74&quot;: 38.0, &quot;SID79&quot;: 57.0, &quot;SIDR74&quot;: 1.865855, &quot;SIDR79&quot;: 2.161547}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.73192596435547, 34.77451705932617, -77.04900360107422, 35.239696502685554], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.04900360107422, 34.83119201660156], [-77.05746459960938, 34.81504821777343], [-77.07313537597656, 34.815441131591804], [-77.10069274902344, 34.7974967956543], [-77.15982055664062, 34.78849792480469], [-77.16426086425783, 34.77451705932617], [-77.19284057617188, 34.80428695678711], [-77.18006134033203, 34.832149505615234], [-77.20626831054688, 34.835502624511726], [-77.22299194335938, 34.884510040283196], [-77.28542327880861, 34.92640304565429], [-77.33513641357422, 34.93254089355468], [-77.3699722290039, 34.914249420166016], [-77.4996337890625, 34.96250534057617], [-77.63925170898438, 34.9840202331543], [-77.68299102783203, 34.966724395751946], [-77.73192596435547, 35.00083541870117], [-77.59949493408203, 35.070869445800774], [-77.5330581665039, 35.144882202148445], [-77.51077270507812, 35.15576934814453], [-77.52831268310547, 35.239696502685554], [-77.4740982055664, 35.227191925048814], [-77.42340850830078, 35.194305419921875], [-77.20551300048828, 35.08805465698242], [-77.17924499511719, 35.05335998535157], [-77.14044952392578, 35.054237365722656], [-77.13111877441406, 35.06928253173829], [-77.11058807373047, 35.066036224365234], [-77.1033706665039, 35.02426147460937], [-77.10953521728516, 34.83042907714844], [-77.04900360107422, 34.83119201660156]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;82&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.121, &quot;BIR74&quot;: 578.0, &quot;BIR79&quot;: 650.0, &quot;CNTY_&quot;: 2091, &quot;CNTY_ID&quot;: 2091, &quot;CRESS_ID&quot;: 52, &quot;FIPS&quot;: &quot;37103&quot;, &quot;FIPSNO&quot;: 37103, &quot;NAME&quot;: &quot;Jones&quot;, &quot;NWBIR74&quot;: 297.0, &quot;NWBIR79&quot;: 305.0, &quot;NWR74&quot;: 513.84083, &quot;NWR79&quot;: 469.230769, &quot;PERIMETER&quot;: 1.978, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 1.730104, &quot;SIDR79&quot;: 3.076923}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.84016418457033, 34.814762115478516, -80.2751235961914, 35.205818176269524], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.84016418457033, 35.002017974853516], [-80.7972183227539, 35.028198242187514], [-80.75968170166016, 35.03662109375], [-80.53964233398438, 35.205818176269524], [-80.50294494628906, 35.186912536621094], [-80.48323059082031, 35.182910919189446], [-80.45328521728516, 35.16078567504883], [-80.42858123779297, 35.168594360351555], [-80.39875030517578, 35.16461181640625], [-80.3729476928711, 35.177864074707024], [-80.34872436523438, 35.17067337036132], [-80.32567596435547, 35.173915863037124], [-80.2751235961914, 35.193111419677734], [-80.32527923583984, 34.814762115478516], [-80.5615463256836, 34.815227508544915], [-80.80006408691406, 34.81611251831054], [-80.78565216064453, 34.94063949584961], [-80.84016418457033, 35.002017974853516]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;83&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.163, &quot;BIR74&quot;: 3915.0, &quot;BIR79&quot;: 5273.0, &quot;CNTY_&quot;: 2095, &quot;CNTY_ID&quot;: 2095, &quot;CRESS_ID&quot;: 90, &quot;FIPS&quot;: &quot;37179&quot;, &quot;FIPSNO&quot;: 37179, &quot;NAME&quot;: &quot;Union&quot;, &quot;NWBIR74&quot;: 1034.0, &quot;NWBIR79&quot;: 1348.0, &quot;NWR74&quot;: 264.112388, &quot;NWR79&quot;: 255.64195, &quot;PERIMETER&quot;: 1.716, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 9.0, &quot;SIDR74&quot;: 1.021711, &quot;SIDR79&quot;: 1.706808}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.32527923583984, 34.807918548583984, -79.85370635986328, 35.204524993896484], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.91995239257812, 34.807918548583984], [-80.32527923583984, 34.814762115478516], [-80.2751235961914, 35.193111419677734], [-80.26109313964844, 35.20404052734374], [-80.24758911132814, 35.204524993896484], [-80.21988677978516, 35.15918350219726], [-80.19010162353516, 35.167858123779304], [-80.16812896728516, 35.14973068237305], [-80.15914154052734, 35.15473937988281], [-80.1546859741211, 35.17608261108398], [-80.1316146850586, 35.17111587524413], [-80.11027526855469, 35.193836212158196], [-80.0714111328125, 35.150741577148445], [-80.06517791748047, 35.136581420898445], [-80.0584487915039, 35.10398483276367], [-80.0028076171875, 35.089927673339844], [-79.97528076171875, 35.09673309326171], [-79.94491577148438, 35.115337371826165], [-79.92749786376953, 35.115779876708984], [-79.9151382446289, 35.10669326782227], [-79.90843200683594, 35.078994750976555], [-79.882080078125, 35.044464111328125], [-79.8939208984375, 35.00724411010742], [-79.86705017089844, 34.96771621704102], [-79.85370635986328, 34.90458297729492], [-79.90142059326172, 34.85240936279296], [-79.91995239257812, 34.807918548583984]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;84&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.138, &quot;BIR74&quot;: 1570.0, &quot;BIR79&quot;: 1875.0, &quot;CNTY_&quot;: 2096, &quot;CNTY_ID&quot;: 2096, &quot;CRESS_ID&quot;: 4, &quot;FIPS&quot;: &quot;37007&quot;, &quot;FIPSNO&quot;: 37007, &quot;NAME&quot;: &quot;Anson&quot;, &quot;NWBIR74&quot;: 952.0, &quot;NWBIR79&quot;: 1161.0, &quot;NWR74&quot;: 606.369427, &quot;NWR79&quot;: 619.2, &quot;PERIMETER&quot;: 1.621, &quot;SID74&quot;: 15.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 9.55414, &quot;SIDR79&quot;: 2.133333}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.45536041259766, 34.83188247680663, -79.03360748291016, 35.203208923339844], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.34030151367188, 34.83560943603514], [-79.36067962646484, 34.94470977783204], [-79.3984146118164, 34.9962158203125], [-79.45536041259766, 35.03735733032227], [-79.35005187988281, 35.14079666137695], [-79.23529052734375, 35.203208923339844], [-79.14727783203125, 35.1735496520996], [-79.12200164794922, 35.17018508911133], [-79.09717559814453, 35.176807403564446], [-79.10684204101562, 35.119224548339844], [-79.09431457519531, 35.03785705566407], [-79.03360748291016, 34.9538230895996], [-79.18185424804688, 34.83188247680663], [-79.34030151367188, 34.83560943603514]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;85&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.098, &quot;BIR74&quot;: 1494.0, &quot;BIR79&quot;: 1706.0, &quot;CNTY_&quot;: 2097, &quot;CNTY_ID&quot;: 2097, &quot;CRESS_ID&quot;: 47, &quot;FIPS&quot;: &quot;37093&quot;, &quot;FIPSNO&quot;: 37093, &quot;NAME&quot;: &quot;Hoke&quot;, &quot;NWBIR74&quot;: 987.0, &quot;NWBIR79&quot;: 1172.0, &quot;NWR74&quot;: 660.64257, &quot;NWR79&quot;: 686.987104, &quot;PERIMETER&quot;: 1.262, &quot;SID74&quot;: 7.0, &quot;SID79&quot;: 6.0, &quot;SIDR74&quot;: 4.685408, &quot;SIDR79&quot;: 3.516999}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.63381958007812, 35.069435119628906, -75.76370239257812, 35.70300292968751], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-76.5189437866211, 35.57764434814453], [-76.53959655761719, 35.59403610229492], [-76.58587646484375, 35.60945510864258], [-76.60794830322266, 35.63506698608398], [-76.60891723632812, 35.664154052734375], [-76.63381958007812, 35.70300292968751], [-76.40843200683594, 35.69911575317382], [-76.27344512939453, 35.689498901367195], [-76.2976303100586, 35.61169433593749], [-76.23279571533203, 35.59466552734375], [-76.21023559570312, 35.604389190673835], [-76.16730499267578, 35.696842193603516], [-76.10474395751953, 35.663639068603516], [-76.02120971679688, 35.66909408569335], [-75.90802764892578, 35.6656379699707], [-75.89149475097656, 35.63126754760743], [-76.05297851562501, 35.41460418701171], [-76.1816177368164, 35.341533660888665], [-76.4988021850586, 35.41621780395508], [-76.53375244140625, 35.45019912719727], [-76.45843505859375, 35.50442504882813], [-76.44652557373047, 35.55086517333984], [-76.5189437866211, 35.57764434814453]]], [[[-76.01700592041016, 35.069435119628906], [-75.97569274902344, 35.11618423461914], [-75.85393524169922, 35.16728210449218], [-75.76370239257812, 35.1922836303711], [-75.81153869628906, 35.16402053833007], [-75.90394592285156, 35.132492065429695], [-76.00287628173828, 35.069435119628906], [-76.01700592041016, 35.069435119628906]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;86&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.167, &quot;BIR74&quot;: 338.0, &quot;BIR79&quot;: 427.0, &quot;CNTY_&quot;: 2099, &quot;CNTY_ID&quot;: 2099, &quot;CRESS_ID&quot;: 48, &quot;FIPS&quot;: &quot;37095&quot;, &quot;FIPSNO&quot;: 37095, &quot;NAME&quot;: &quot;Hyde&quot;, &quot;NWBIR74&quot;: 134.0, &quot;NWBIR79&quot;: 169.0, &quot;NWR74&quot;: 396.449704, &quot;NWR79&quot;: 395.784543, &quot;PERIMETER&quot;: 2.709, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 0.0}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.19544982910156, 34.711006164550774, -77.65526580810547, 35.186477661132805], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.68983459472656, 34.72019577026367], [-77.92667388916016, 34.711006164550774], [-77.9393081665039, 34.719406127929695], [-77.98915100097656, 34.717094421386726], [-78.01736450195312, 34.728931427001946], [-78.11376953125, 34.72098541259764], [-78.13581848144531, 34.711345672607415], [-78.15609741210938, 34.728477478027344], [-78.19544982910156, 34.74362564086913], [-78.14298248291016, 34.90132522583007], [-78.15524291992189, 35.06819152832031], [-78.17028045654297, 35.09748458862305], [-78.16319274902344, 35.18228912353516], [-78.08753204345703, 35.17018508911133], [-78.03650665283203, 35.18569183349609], [-78.00215911865234, 35.186477661132805], [-77.96392822265625, 35.16402435302734], [-77.94469451904297, 35.16823196411133], [-77.91397857666016, 35.15997314453125], [-77.89415740966798, 35.14418029785156], [-77.8876724243164, 35.15496444702148], [-77.83657836914064, 35.171741485595696], [-77.7641372680664, 35.12861251831054], [-77.75160217285156, 35.09567642211913], [-77.75499725341797, 35.01808166503906], [-77.74478912353516, 35.002445220947266], [-77.73192596435547, 35.00083541870117], [-77.68299102783203, 34.966724395751946], [-77.65526580810547, 34.9189338684082], [-77.68983459472656, 34.72019577026367]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;87&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.204, &quot;BIR74&quot;: 2483.0, &quot;BIR79&quot;: 2777.0, &quot;CNTY_&quot;: 2100, &quot;CNTY_ID&quot;: 2100, &quot;CRESS_ID&quot;: 31, &quot;FIPS&quot;: &quot;37061&quot;, &quot;FIPSNO&quot;: 37061, &quot;NAME&quot;: &quot;Duplin&quot;, &quot;NWBIR74&quot;: 1061.0, &quot;NWBIR79&quot;: 1227.0, &quot;NWR74&quot;: 427.305679, &quot;NWR79&quot;: 441.843716, &quot;PERIMETER&quot;: 1.871, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 7.0, &quot;SIDR74&quot;: 1.610954, &quot;SIDR79&quot;: 2.520706}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.06517791748047, 34.805255889892564, -79.45536041259766, 35.17380142211913], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.68595886230469, 34.805255889892564], [-79.91995239257812, 34.807918548583984], [-79.90142059326172, 34.85240936279296], [-79.85370635986328, 34.90458297729492], [-79.86705017089844, 34.96771621704102], [-79.8939208984375, 35.00724411010742], [-79.882080078125, 35.044464111328125], [-79.90843200683594, 35.078994750976555], [-79.9151382446289, 35.10669326782227], [-79.92749786376953, 35.115779876708984], [-79.94491577148438, 35.115337371826165], [-79.97528076171875, 35.09673309326171], [-80.0028076171875, 35.089927673339844], [-80.0584487915039, 35.10398483276367], [-80.06517791748047, 35.136581420898445], [-80.01068115234375, 35.13714218139649], [-79.97582244873047, 35.1507568359375], [-79.90946197509766, 35.15571975708007], [-79.83631896972656, 35.17380142211913], [-79.75984191894531, 35.16731262207032], [-79.69795227050781, 35.173072814941406], [-79.63729858398438, 35.15383529663087], [-79.60746765136719, 35.15918731689453], [-79.57563018798828, 35.11912536621094], [-79.57419586181642, 35.073265075683594], [-79.55290222167969, 35.06410598754882], [-79.49506378173828, 35.062507629394524], [-79.45536041259766, 35.03735733032227], [-79.54710388183594, 35.00006103515624], [-79.57304382324219, 34.97836685180665], [-79.58052062988281, 34.94478988647461], [-79.56558990478517, 34.90750122070313], [-79.6219253540039, 34.84957122802734], [-79.61144256591797, 34.8177490234375], [-79.66014862060547, 34.81789779663085], [-79.68595886230469, 34.805255889892564]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;88&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.121, &quot;BIR74&quot;: 2756.0, &quot;BIR79&quot;: 3108.0, &quot;CNTY_&quot;: 2107, &quot;CNTY_ID&quot;: 2107, &quot;CRESS_ID&quot;: 77, &quot;FIPS&quot;: &quot;37153&quot;, &quot;FIPSNO&quot;: 37153, &quot;NAME&quot;: &quot;Richmond&quot;, &quot;NWBIR74&quot;: 1043.0, &quot;NWBIR79&quot;: 1218.0, &quot;NWR74&quot;: 378.447025, &quot;NWR79&quot;: 391.891892, &quot;PERIMETER&quot;: 1.855, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 7.0, &quot;SIDR74&quot;: 1.451379, &quot;SIDR79&quot;: 2.252252}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.9885482788086, 34.98906707763672, -83.51300811767578, 35.148063659667976], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-83.93799591064453, 34.98939132690429], [-83.9885482788086, 34.98906707763672], [-83.95977020263672, 35.01912307739258], [-83.95285034179688, 35.04844284057617], [-83.90731811523438, 35.07041549682617], [-83.8538818359375, 35.12579345703126], [-83.7553939819336, 35.148063659667976], [-83.7395248413086, 35.14583969116211], [-83.71780395507812, 35.13880920410156], [-83.6448745727539, 35.14336013793946], [-83.64356231689453, 35.127498626708984], [-83.56204223632812, 35.05594253540038], [-83.55323791503906, 35.03576278686523], [-83.5272216796875, 35.019737243652344], [-83.51300811767578, 34.99202346801758], [-83.5494155883789, 34.98953628540039], [-83.93799591064453, 34.98939132690429]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;89&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.051, &quot;BIR74&quot;: 284.0, &quot;BIR79&quot;: 419.0, &quot;CNTY_&quot;: 2109, &quot;CNTY_ID&quot;: 2109, &quot;CRESS_ID&quot;: 22, &quot;FIPS&quot;: &quot;37043&quot;, &quot;FIPSNO&quot;: 37043, &quot;NAME&quot;: &quot;Clay&quot;, &quot;NWBIR74&quot;: 1.0, &quot;NWBIR79&quot;: 5.0, &quot;NWR74&quot;: 3.521127, &quot;NWR79&quot;: 11.933174, &quot;PERIMETER&quot;: 1.096, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 0.0}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.4740982055664, 34.83042907714844, -76.62561798095703, 35.42295455932617], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-76.8976058959961, 35.25157165527344], [-76.94743347167969, 35.216991424560554], [-76.96660614013672, 35.18796539306641], [-76.97233581542969, 35.15677261352538], [-76.9898910522461, 35.15404510498046], [-76.94422912597658, 35.09972381591797], [-76.94324493408203, 35.0700340270996], [-77.04788208007812, 35.092155456542976], [-77.10467529296875, 35.08798599243163], [-77.11058807373047, 35.066036224365234], [-77.13111877441406, 35.06928253173829], [-77.14044952392578, 35.054237365722656], [-77.17924499511719, 35.05335998535157], [-77.20551300048828, 35.08805465698242], [-77.42340850830078, 35.194305419921875], [-77.4740982055664, 35.227191925048814], [-77.42964935302734, 35.259838104248054], [-77.4485092163086, 35.285675048828125], [-77.45021057128906, 35.302059173583984], [-77.41315460205078, 35.33121871948242], [-77.38616180419922, 35.32926177978516], [-77.35421752929688, 35.32355499267578], [-77.2938003540039, 35.37395095825196], [-77.26419067382812, 35.350112915039055], [-77.24430084228516, 35.354190826416016], [-77.24054718017578, 35.37998580932617], [-77.2112045288086, 35.3956413269043], [-77.19496154785156, 35.42295455932617], [-76.8976058959961, 35.25157165527344]]], [[[-76.64704895019531, 34.906333923339844], [-76.62561798095703, 34.890647888183594], [-76.75021362304688, 34.848274230957024], [-77.04900360107422, 34.83119201660156], [-77.10953521728516, 34.83042907714844], [-77.1033706665039, 35.02426147460937], [-77.11058807373047, 35.066036224365234], [-77.00119018554688, 35.05288696289063], [-76.9131088256836, 34.93647003173829], [-76.64704895019531, 34.906333923339844]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;90&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.177, &quot;BIR74&quot;: 5868.0, &quot;BIR79&quot;: 7595.0, &quot;CNTY_&quot;: 2119, &quot;CNTY_ID&quot;: 2119, &quot;CRESS_ID&quot;: 25, &quot;FIPS&quot;: &quot;37049&quot;, &quot;FIPSNO&quot;: 37049, &quot;NAME&quot;: &quot;Craven&quot;, &quot;NWBIR74&quot;: 1744.0, &quot;NWBIR79&quot;: 2342.0, &quot;NWR74&quot;: 297.205181, &quot;NWR79&quot;: 308.360764, &quot;PERIMETER&quot;: 2.916, &quot;SID74&quot;: 13.0, &quot;SID79&quot;: 18.0, &quot;SIDR74&quot;: 2.215406, &quot;SIDR79&quot;: 2.36998}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.68595886230469, 34.634090423583984, -79.32797241210938, 35.03735733032227], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.45597076416016, 34.634090423583984], [-79.6675033569336, 34.800662994384766], [-79.68595886230469, 34.805255889892564], [-79.66014862060547, 34.81789779663085], [-79.61144256591797, 34.8177490234375], [-79.6219253540039, 34.84957122802734], [-79.56558990478517, 34.90750122070313], [-79.58052062988281, 34.94478988647461], [-79.57304382324219, 34.97836685180665], [-79.54710388183594, 35.00006103515624], [-79.45536041259766, 35.03735733032227], [-79.3984146118164, 34.9962158203125], [-79.36067962646484, 34.94470977783204], [-79.34030151367188, 34.83560943603514], [-79.34445190429688, 34.80883789062501], [-79.32797241210938, 34.77241134643555], [-79.45597076416016, 34.634090423583984]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;91&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.08, &quot;BIR74&quot;: 2255.0, &quot;BIR79&quot;: 2617.0, &quot;CNTY_&quot;: 2123, &quot;CNTY_ID&quot;: 2123, &quot;CRESS_ID&quot;: 83, &quot;FIPS&quot;: &quot;37165&quot;, &quot;FIPSNO&quot;: 37165, &quot;NAME&quot;: &quot;Scotland&quot;, &quot;NWBIR74&quot;: 1206.0, &quot;NWBIR79&quot;: 1436.0, &quot;NWR74&quot;: 534.81153, &quot;NWR79&quot;: 548.719908, &quot;PERIMETER&quot;: 1.188, &quot;SID74&quot;: 8.0, &quot;SID79&quot;: 16.0, &quot;SIDR74&quot;: 3.547672, &quot;SIDR79&quot;: 6.113871}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.68983459472656, 34.45700836181641, -77.12939453125, 34.9840202331543], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.53863525390625, 34.45700836181641], [-77.57633209228516, 34.469345092773445], [-77.68983459472656, 34.72019577026367], [-77.65526580810547, 34.9189338684082], [-77.68299102783203, 34.966724395751946], [-77.63925170898438, 34.9840202331543], [-77.4996337890625, 34.96250534057617], [-77.3699722290039, 34.914249420166016], [-77.33513641357422, 34.93254089355468], [-77.28542327880861, 34.92640304565429], [-77.22299194335938, 34.884510040283196], [-77.20626831054688, 34.835502624511726], [-77.18006134033203, 34.832149505615234], [-77.19284057617188, 34.80428695678711], [-77.16426086425783, 34.77451705932617], [-77.14895629882812, 34.76433181762695], [-77.12939453125, 34.6849136352539], [-77.15660095214845, 34.660636901855476], [-77.53863525390625, 34.45700836181641]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;92&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.195, &quot;BIR74&quot;: 11158.0, &quot;BIR79&quot;: 14655.0, &quot;CNTY_&quot;: 2146, &quot;CNTY_ID&quot;: 2146, &quot;CRESS_ID&quot;: 67, &quot;FIPS&quot;: &quot;37133&quot;, &quot;FIPSNO&quot;: 37133, &quot;NAME&quot;: &quot;Onslow&quot;, &quot;NWBIR74&quot;: 2217.0, &quot;NWBIR79&quot;: 3568.0, &quot;NWR74&quot;: 198.691522, &quot;NWR79&quot;: 243.466394, &quot;PERIMETER&quot;: 1.783, &quot;SID74&quot;: 29.0, &quot;SID79&quot;: 23.0, &quot;SIDR74&quot;: 2.599032, &quot;SIDR79&quot;: 1.56943}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.45597076416016, 34.30457305908203, -78.8033218383789, 34.9538230895996], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.86450958251953, 34.47719573974609], [-78.91947174072266, 34.45363998413086], [-78.95073699951172, 34.449382781982415], [-78.9753646850586, 34.39916610717773], [-79.00223541259766, 34.38804244995117], [-79.00641632080078, 34.366268157958984], [-79.02947235107422, 34.347373962402344], [-79.04094696044922, 34.319297790527344], [-79.07450103759766, 34.30457305908203], [-79.4471435546875, 34.61906051635743], [-79.45597076416016, 34.634090423583984], [-79.32797241210938, 34.77241134643555], [-79.34445190429688, 34.80883789062501], [-79.34030151367188, 34.83560943603514], [-79.18185424804688, 34.83188247680663], [-79.03360748291016, 34.9538230895996], [-78.948486328125, 34.90268325805663], [-78.92862701416016, 34.879798889160156], [-78.91255187988283, 34.82742309570313], [-78.89626312255861, 34.830902099609375], [-78.84170532226562, 34.735000610351555], [-78.8033218383789, 34.68510437011718], [-78.85260009765625, 34.56658172607421], [-78.84566497802734, 34.50745391845703], [-78.86450958251953, 34.47719573974609]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;93&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.24, &quot;BIR74&quot;: 7889.0, &quot;BIR79&quot;: 9087.0, &quot;CNTY_&quot;: 2150, &quot;CNTY_ID&quot;: 2150, &quot;CRESS_ID&quot;: 78, &quot;FIPS&quot;: &quot;37155&quot;, &quot;FIPSNO&quot;: 37155, &quot;NAME&quot;: &quot;Robeson&quot;, &quot;NWBIR74&quot;: 5904.0, &quot;NWBIR79&quot;: 6899.0, &quot;NWR74&quot;: 748.383826, &quot;NWR79&quot;: 759.216463, &quot;PERIMETER&quot;: 2.004, &quot;SID74&quot;: 31.0, &quot;SID79&quot;: 26.0, &quot;SIDR74&quot;: 3.929522, &quot;SIDR79&quot;: 2.86123}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.16426086425783, 34.58782958984375, -76.28770446777344, 35.016658782958984], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-77.14895629882812, 34.76433181762695], [-77.16426086425783, 34.77451705932617], [-77.15982055664062, 34.78849792480469], [-77.10069274902344, 34.7974967956543], [-77.07313537597656, 34.815441131591804], [-77.05746459960938, 34.81504821777343], [-77.04900360107422, 34.83119201660156], [-76.75021362304688, 34.848274230957024], [-76.62561798095703, 34.890647888183594], [-76.64704895019531, 34.906333923339844], [-76.67005920410156, 34.96999740600585], [-76.52977752685547, 34.97463607788085], [-76.44503021240234, 35.016658782958984], [-76.42405700683594, 34.946247100830085], [-76.364013671875, 34.943111419677734], [-76.32940673828125, 34.97595596313477], [-76.31471252441406, 34.94881439208984], [-76.46990203857422, 34.78506088256836], [-76.62531280517578, 34.71975326538086], [-77.05052947998047, 34.69891738891602], [-77.14895629882812, 34.76433181762695]]], [[[-76.54427337646486, 34.58782958984375], [-76.55514526367188, 34.61066055297852], [-76.53775024414062, 34.61392211914062], [-76.48448181152344, 34.69763183593751], [-76.43229675292969, 34.76068496704101], [-76.37467956542969, 34.81287002563477], [-76.28770446777344, 34.87701034545899], [-76.4692611694336, 34.693283081054695], [-76.54427337646486, 34.58782958984375]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;94&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.125, &quot;BIR74&quot;: 2414.0, &quot;BIR79&quot;: 3339.0, &quot;CNTY_&quot;: 2156, &quot;CNTY_ID&quot;: 2156, &quot;CRESS_ID&quot;: 16, &quot;FIPS&quot;: &quot;37031&quot;, &quot;FIPSNO&quot;: 37031, &quot;NAME&quot;: &quot;Carteret&quot;, &quot;NWBIR74&quot;: 341.0, &quot;NWBIR79&quot;: 487.0, &quot;NWR74&quot;: 141.259321, &quot;NWR79&quot;: 145.852052, &quot;PERIMETER&quot;: 2.868, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 2.071251, &quot;SIDR79&quot;: 1.197963}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.89626312255861, 34.364421844482415, -78.169677734375, 34.85510635375977], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.2614974975586, 34.3947868347168], [-78.3289794921875, 34.364421844482415], [-78.43794250488281, 34.37184143066406], [-78.6380844116211, 34.45114517211915], [-78.65982055664062, 34.45094299316406], [-78.66849517822266, 34.46512985229493], [-78.8118896484375, 34.455318450927734], [-78.83635711669922, 34.45919799804686], [-78.86450958251953, 34.47719573974609], [-78.84566497802734, 34.50745391845703], [-78.85260009765625, 34.56658172607421], [-78.8033218383789, 34.68510437011718], [-78.84170532226562, 34.735000610351555], [-78.89626312255861, 34.830902099609375], [-78.83165740966797, 34.844356536865234], [-78.51744079589844, 34.843528747558594], [-78.4992904663086, 34.85510635375977], [-78.4010009765625, 34.75933074951172], [-78.38667297363281, 34.72188949584961], [-78.36381530761719, 34.69204330444335], [-78.3388671875, 34.6826057434082], [-78.32234191894531, 34.64557266235351], [-78.30970001220703, 34.635852813720696], [-78.31988525390625, 34.63009262084961], [-78.30590057373047, 34.60535812377929], [-78.27461242675781, 34.58127593994141], [-78.25680541992188, 34.553752899169915], [-78.26240539550781, 34.52793884277344], [-78.25505828857422, 34.507381439208984], [-78.169677734375, 34.46245193481445], [-78.2614974975586, 34.3947868347168]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;95&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.225, &quot;BIR74&quot;: 1782.0, &quot;BIR79&quot;: 2052.0, &quot;CNTY_&quot;: 2162, &quot;CNTY_ID&quot;: 2162, &quot;CRESS_ID&quot;: 9, &quot;FIPS&quot;: &quot;37017&quot;, &quot;FIPSNO&quot;: 37017, &quot;NAME&quot;: &quot;Bladen&quot;, &quot;NWBIR74&quot;: 818.0, &quot;NWBIR79&quot;: 1023.0, &quot;NWR74&quot;: 459.034792, &quot;NWR79&quot;: 498.538012, &quot;PERIMETER&quot;: 2.107, &quot;SID74&quot;: 8.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 4.489338, &quot;SIDR79&quot;: 2.436647}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.26240539550781, 34.30504608154297, -77.53863525390625, 34.728931427001946], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.02592468261719, 34.32876968383788], [-78.13024139404297, 34.36412429809569], [-78.15478515625, 34.36224365234376], [-78.18461608886719, 34.34817123413085], [-78.19456481933594, 34.351051330566406], [-78.2614974975586, 34.3947868347168], [-78.169677734375, 34.46245193481445], [-78.25505828857422, 34.507381439208984], [-78.26240539550781, 34.52793884277344], [-78.25680541992188, 34.553752899169915], [-78.1567611694336, 34.67715454101562], [-78.11373901367188, 34.699180603027344], [-78.11376953125, 34.72098541259764], [-78.01736450195312, 34.728931427001946], [-77.98915100097656, 34.717094421386726], [-77.9393081665039, 34.719406127929695], [-77.92667388916016, 34.711006164550774], [-77.68983459472656, 34.72019577026367], [-77.57633209228516, 34.469345092773445], [-77.53863525390625, 34.45700836181641], [-77.58676147460938, 34.420936584472656], [-77.60972595214844, 34.43504333496095], [-77.60261535644531, 34.412628173828125], [-77.75052642822266, 34.30504608154297], [-77.80914306640625, 34.359432220458984], [-77.82838439941406, 34.38796997070313], [-77.88806915283203, 34.364070892333984], [-77.92178344726562, 34.373313903808594], [-77.94393920898438, 34.35643768310547], [-77.94981384277344, 34.366085052490234], [-77.97907257080078, 34.375686645507805], [-77.99445343017578, 34.362316131591804], [-77.98667907714844, 34.33991622924805], [-78.02592468261719, 34.32876968383788]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;96&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.214, &quot;BIR74&quot;: 1228.0, &quot;BIR79&quot;: 1602.0, &quot;CNTY_&quot;: 2185, &quot;CNTY_ID&quot;: 2185, &quot;CRESS_ID&quot;: 71, &quot;FIPS&quot;: &quot;37141&quot;, &quot;FIPSNO&quot;: 37141, &quot;NAME&quot;: &quot;Pender&quot;, &quot;NWBIR74&quot;: 580.0, &quot;NWBIR79&quot;: 763.0, &quot;NWR74&quot;: 472.312704, &quot;NWR79&quot;: 476.27965, &quot;PERIMETER&quot;: 2.152, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 3.0, &quot;SIDR74&quot;: 3.257329, &quot;SIDR79&quot;: 1.872659}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.07450103759766, 33.948673248291, -78.15478515625, 34.47719573974609], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.65571594238281, 33.948673248291], [-79.07450103759766, 34.30457305908203], [-79.04094696044922, 34.319297790527344], [-79.02947235107422, 34.347373962402344], [-79.00641632080078, 34.366268157958984], [-79.00223541259766, 34.38804244995117], [-78.9753646850586, 34.39916610717773], [-78.95073699951172, 34.449382781982415], [-78.91947174072266, 34.45363998413086], [-78.86450958251953, 34.47719573974609], [-78.83635711669922, 34.45919799804686], [-78.8118896484375, 34.455318450927734], [-78.66849517822266, 34.46512985229493], [-78.65982055664062, 34.45094299316406], [-78.6380844116211, 34.45114517211915], [-78.43794250488281, 34.37184143066406], [-78.3289794921875, 34.364421844482415], [-78.2614974975586, 34.3947868347168], [-78.19456481933594, 34.351051330566406], [-78.18461608886719, 34.34817123413085], [-78.15478515625, 34.36224365234376], [-78.26106262207031, 34.21526336669921], [-78.37357330322266, 34.20235061645508], [-78.36112213134766, 34.186721801757805], [-78.42543029785158, 34.138065338134766], [-78.49274444580078, 34.15850448608399], [-78.52723693847656, 34.15485763549805], [-78.54428100585938, 34.13416290283203], [-78.56343078613281, 34.05894470214844], [-78.58778381347656, 34.0306053161621], [-78.63027191162111, 34.01020050048828], [-78.63471984863281, 33.977977752685554], [-78.65571594238281, 33.948673248291]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;97&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.24, &quot;BIR74&quot;: 3350.0, &quot;BIR79&quot;: 4144.0, &quot;CNTY_&quot;: 2232, &quot;CNTY_ID&quot;: 2232, &quot;CRESS_ID&quot;: 24, &quot;FIPS&quot;: &quot;37047&quot;, &quot;FIPSNO&quot;: 37047, &quot;NAME&quot;: &quot;Columbus&quot;, &quot;NWBIR74&quot;: 1431.0, &quot;NWBIR79&quot;: 1832.0, &quot;NWR74&quot;: 427.164179, &quot;NWR79&quot;: 442.084942, &quot;PERIMETER&quot;: 2.365, &quot;SID74&quot;: 15.0, &quot;SID79&quot;: 17.0, &quot;SIDR74&quot;: 4.477612, &quot;SIDR79&quot;: 4.102317}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.02592468261719, 34.062034606933594, -77.75052642822266, 34.38796997070313], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.96073150634766, 34.18924331665039], [-77.96586608886719, 34.242286682128906], [-77.97528076171875, 34.24336242675782], [-77.98314666748047, 34.26168060302734], [-78.0002212524414, 34.26788330078124], [-77.99539184570312, 34.282798767089844], [-78.00701904296875, 34.28481674194336], [-78.01130676269531, 34.31261444091797], [-78.02592468261719, 34.32876968383788], [-77.98667907714844, 34.33991622924805], [-77.99445343017578, 34.362316131591804], [-77.97907257080078, 34.375686645507805], [-77.94981384277344, 34.366085052490234], [-77.94393920898438, 34.35643768310547], [-77.92178344726562, 34.373313903808594], [-77.88806915283203, 34.364070892333984], [-77.82838439941406, 34.38796997070313], [-77.80914306640625, 34.359432220458984], [-77.75052642822266, 34.30504608154297], [-77.86438751220703, 34.1927375793457], [-77.89440155029297, 34.0691795349121], [-77.9267578125, 34.062034606933594], [-77.96073150634766, 34.18924331665039]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;98&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.042, &quot;BIR74&quot;: 5526.0, &quot;BIR79&quot;: 6917.0, &quot;CNTY_&quot;: 2238, &quot;CNTY_ID&quot;: 2238, &quot;CRESS_ID&quot;: 65, &quot;FIPS&quot;: &quot;37129&quot;, &quot;FIPSNO&quot;: 37129, &quot;NAME&quot;: &quot;New Hanover&quot;, &quot;NWBIR74&quot;: 1633.0, &quot;NWBIR79&quot;: 2100.0, &quot;NWR74&quot;: 295.512125, &quot;NWR79&quot;: 303.599827, &quot;PERIMETER&quot;: 0.999, &quot;SID74&quot;: 12.0, &quot;SID79&quot;: 9.0, &quot;SIDR74&quot;: 2.171553, &quot;SIDR79&quot;: 1.301142}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.65571594238281, 33.88199234008788, -77.95852661132812, 34.36412429809569], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.65571594238281, 33.948673248291], [-78.63471984863281, 33.977977752685554], [-78.63027191162111, 34.01020050048828], [-78.58778381347656, 34.0306053161621], [-78.56343078613281, 34.05894470214844], [-78.54428100585938, 34.13416290283203], [-78.52723693847656, 34.15485763549805], [-78.49274444580078, 34.15850448608399], [-78.42543029785158, 34.138065338134766], [-78.36112213134766, 34.186721801757805], [-78.37357330322266, 34.20235061645508], [-78.26106262207031, 34.21526336669921], [-78.15478515625, 34.36224365234376], [-78.13024139404297, 34.36412429809569], [-78.02592468261719, 34.32876968383788], [-78.01130676269531, 34.31261444091797], [-78.00701904296875, 34.28481674194336], [-77.99539184570312, 34.282798767089844], [-78.0002212524414, 34.26788330078124], [-77.98314666748047, 34.26168060302734], [-77.97528076171875, 34.24336242675782], [-77.96586608886719, 34.242286682128906], [-77.96073150634766, 34.18924331665039], [-77.95852661132812, 33.99258041381836], [-78.03480529785156, 33.914291381835945], [-78.57971954345703, 33.88199234008788], [-78.65571594238281, 33.948673248291]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;99&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.212, &quot;BIR74&quot;: 2181.0, &quot;BIR79&quot;: 2655.0, &quot;CNTY_&quot;: 2241, &quot;CNTY_ID&quot;: 2241, &quot;CRESS_ID&quot;: 10, &quot;FIPS&quot;: &quot;37019&quot;, &quot;FIPSNO&quot;: 37019, &quot;NAME&quot;: &quot;Brunswick&quot;, &quot;NWBIR74&quot;: 659.0, &quot;NWBIR79&quot;: 841.0, &quot;NWR74&quot;: 302.154975, &quot;NWR79&quot;: 316.760829, &quot;PERIMETER&quot;: 2.024, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 6.0, &quot;SIDR74&quot;: 2.292526, &quot;SIDR79&quot;: 2.259887}, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
       "\n",
       "        \n",
       "    \n",
       "    geo_json_e05a8ca41ab613d20be5e827a7c55cce.bindTooltip(\n",
       "    function(layer){\n",
       "    let div = L.DomUtil.create(&#x27;div&#x27;);\n",
       "    \n",
       "    let handleObject = feature=&gt;typeof(feature)==&#x27;object&#x27; ? JSON.stringify(feature) : feature;\n",
       "    let fields = [&quot;AREA&quot;, &quot;PERIMETER&quot;, &quot;CNTY_&quot;, &quot;CNTY_ID&quot;, &quot;NAME&quot;, &quot;FIPS&quot;, &quot;FIPSNO&quot;, &quot;CRESS_ID&quot;, &quot;BIR74&quot;, &quot;SID74&quot;, &quot;NWBIR74&quot;, &quot;BIR79&quot;, &quot;SID79&quot;, &quot;NWBIR79&quot;, &quot;SIDR74&quot;, &quot;SIDR79&quot;, &quot;NWR74&quot;, &quot;NWR79&quot;];\n",
       "    let aliases = [&quot;AREA&quot;, &quot;PERIMETER&quot;, &quot;CNTY_&quot;, &quot;CNTY_ID&quot;, &quot;NAME&quot;, &quot;FIPS&quot;, &quot;FIPSNO&quot;, &quot;CRESS_ID&quot;, &quot;BIR74&quot;, &quot;SID74&quot;, &quot;NWBIR74&quot;, &quot;BIR79&quot;, &quot;SID79&quot;, &quot;NWBIR79&quot;, &quot;SIDR74&quot;, &quot;SIDR79&quot;, &quot;NWR74&quot;, &quot;NWR79&quot;];\n",
       "    let table = &#x27;&lt;table&gt;&#x27; +\n",
       "        String(\n",
       "        fields.map(\n",
       "        (v,i)=&gt;\n",
       "        `&lt;tr&gt;\n",
       "            &lt;th&gt;${aliases[i]}&lt;/th&gt;\n",
       "            \n",
       "            &lt;td&gt;${handleObject(layer.feature.properties[v])}&lt;/td&gt;\n",
       "        &lt;/tr&gt;`).join(&#x27;&#x27;))\n",
       "    +&#x27;&lt;/table&gt;&#x27;;\n",
       "    div.innerHTML=table;\n",
       "    \n",
       "    return div\n",
       "    }\n",
       "    ,{&quot;className&quot;: &quot;foliumtooltip&quot;, &quot;sticky&quot;: true});\n",
       "                     \n",
       "    \n",
       "            geo_json_e05a8ca41ab613d20be5e827a7c55cce.addTo(map_4e4cc50555d29d4cafe90d8dcbfd79b9);\n",
       "        \n",
       "    \n",
       "        function geo_json_73c8dd9784c176f9b04a7afc37345bc3_styler(feature) {\n",
       "            switch(feature.id) {\n",
       "                default:\n",
       "                    return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;black&quot;, &quot;fillOpacity&quot;: 0.5, &quot;weight&quot;: 2};\n",
       "            }\n",
       "        }\n",
       "        function geo_json_73c8dd9784c176f9b04a7afc37345bc3_highlighter(feature) {\n",
       "            switch(feature.id) {\n",
       "                default:\n",
       "                    return {&quot;fillOpacity&quot;: 0.75};\n",
       "            }\n",
       "        }\n",
       "        function geo_json_73c8dd9784c176f9b04a7afc37345bc3_pointToLayer(feature, latlng) {\n",
       "            var opts = {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3388ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#3388ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 2, &quot;stroke&quot;: true, &quot;weight&quot;: 3};\n",
       "            \n",
       "            let style = geo_json_73c8dd9784c176f9b04a7afc37345bc3_styler(feature)\n",
       "            Object.assign(opts, style)\n",
       "            \n",
       "            return new L.CircleMarker(latlng, opts)\n",
       "        }\n",
       "\n",
       "        function geo_json_73c8dd9784c176f9b04a7afc37345bc3_onEachFeature(feature, layer) {\n",
       "            layer.on({\n",
       "                mouseout: function(e) {\n",
       "                    if(typeof e.target.setStyle === &quot;function&quot;){\n",
       "                        geo_json_73c8dd9784c176f9b04a7afc37345bc3.resetStyle(e.target);\n",
       "                    }\n",
       "                },\n",
       "                mouseover: function(e) {\n",
       "                    if(typeof e.target.setStyle === &quot;function&quot;){\n",
       "                        const highlightStyle = geo_json_73c8dd9784c176f9b04a7afc37345bc3_highlighter(e.target.feature)\n",
       "                        e.target.setStyle(highlightStyle);\n",
       "                    }\n",
       "                },\n",
       "            });\n",
       "        };\n",
       "        var geo_json_73c8dd9784c176f9b04a7afc37345bc3 = L.geoJson(null, {\n",
       "                onEachFeature: geo_json_73c8dd9784c176f9b04a7afc37345bc3_onEachFeature,\n",
       "            \n",
       "                style: geo_json_73c8dd9784c176f9b04a7afc37345bc3_styler,\n",
       "                pointToLayer: geo_json_73c8dd9784c176f9b04a7afc37345bc3_pointToLayer,\n",
       "        });\n",
       "\n",
       "        function geo_json_73c8dd9784c176f9b04a7afc37345bc3_add (data) {\n",
       "            geo_json_73c8dd9784c176f9b04a7afc37345bc3\n",
       "                .addData(data);\n",
       "        }\n",
       "            geo_json_73c8dd9784c176f9b04a7afc37345bc3_add({&quot;bbox&quot;: [-84.0321893966368, 34.0902733398776, -75.87201533024219, 36.47409386901486], &quot;features&quot;: [{&quot;bbox&quot;: [-81.49548148653162, 36.420388562634756, -81.13220542827582, 36.47409386901486], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.49548148653162, 36.420388562634756], [-81.13220542827582, 36.47409386901486]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 0, &quot;neighbor&quot;: 1, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.49548148653162, 36.212591058235546, -81.1680924257293, 36.420388562634756], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.49548148653162, 36.420388562634756], [-81.1680924257293, 36.212591058235546]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;1&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 0, &quot;neighbor&quot;: 17, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.70133643506227, 36.250751216087075, -81.49548148653162, 36.420388562634756], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.49548148653162, 36.420388562634756], [-81.70133643506227, 36.250751216087075]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;2&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 0, &quot;neighbor&quot;: 18, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.13220542827582, 36.38789612168756, -80.69283730965327, 36.47409386901486], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.13220542827582, 36.47409386901486], [-80.69283730965327, 36.38789612168756]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;3&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 1, &quot;neighbor&quot;: 2, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.1680924257293, 36.212591058235546, -81.13220542827582, 36.47409386901486], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.13220542827582, 36.47409386901486], [-81.1680924257293, 36.212591058235546]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;4&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 1, &quot;neighbor&quot;: 17, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.69283730965327, 36.38789612168756, -80.23456192640865, 36.401227370972855], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.69283730965327, 36.38789612168756], [-80.23456192640865, 36.401227370972855]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;5&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 2, &quot;neighbor&quot;: 9, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.1680924257293, 36.212591058235546, -80.69283730965327, 36.38789612168756], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.69283730965327, 36.38789612168756], [-81.1680924257293, 36.212591058235546]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;6&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 2, &quot;neighbor&quot;: 17, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.69283730965327, 36.17220768865046, -80.65910549496982, 36.38789612168756], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.69283730965327, 36.38789612168756], [-80.65910549496982, 36.17220768865046]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;7&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 2, &quot;neighbor&quot;: 22, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.69283730965327, 36.1143389052351, -80.25053372049967, 36.38789612168756], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.69283730965327, 36.38789612168756], [-80.25053372049967, 36.1143389052351]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;8&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 2, &quot;neighbor&quot;: 24, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.19502280601716, 36.305372474455865, -75.93765003734005, 36.369675590406956], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-75.93765003734005, 36.305372474455865], [-76.19502280601716, 36.369675590406956]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;9&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 3, &quot;neighbor&quot;: 6, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-75.93765003734005, 35.773009234143785, -75.87201533024219, 36.305372474455865], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-75.93765003734005, 36.305372474455865], [-75.87201533024219, 35.773009234143785]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;10&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 3, &quot;neighbor&quot;: 55, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.37246171928803, 36.346271292404964, -76.99851152335646, 36.35951639232211], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.37246171928803, 36.346271292404964], [-76.99851152335646, 36.35951639232211]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;11&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 4, &quot;neighbor&quot;: 5, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.11408945025987, 36.346271292404964, -77.37246171928803, 36.431574192838355], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.37246171928803, 36.346271292404964], [-78.11408945025987, 36.431574192838355]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;12&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 4, &quot;neighbor&quot;: 8, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.67958234541625, 36.25616892305704, -77.37246171928803, 36.346271292404964], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.37246171928803, 36.346271292404964], [-77.67958234541625, 36.25616892305704]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;13&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 4, &quot;neighbor&quot;: 15, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.37246171928803, 36.02838211402072, -77.00034832803134, 36.346271292404964], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.37246171928803, 36.346271292404964], [-77.00034832803134, 36.02838211402072]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;14&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 4, &quot;neighbor&quot;: 27, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.99851152335646, 36.35951639232211, -76.71802675073793, 36.43099711652998], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.99851152335646, 36.35951639232211], [-76.71802675073793, 36.43099711652998]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;15&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 5, &quot;neighbor&quot;: 7, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.00034832803134, 36.02838211402072, -76.99851152335646, 36.35951639232211], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.99851152335646, 36.35951639232211], [-77.00034832803134, 36.02838211402072]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;16&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 5, &quot;neighbor&quot;: 27, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.71802675073793, 36.369675590406956, -76.19502280601716, 36.43099711652998], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.19502280601716, 36.369675590406956], [-76.71802675073793, 36.43099711652998]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;17&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 6, &quot;neighbor&quot;: 7, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.3082408976784, 36.32482355505354, -76.19502280601716, 36.369675590406956], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.19502280601716, 36.369675590406956], [-76.3082408976784, 36.32482355505354]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;18&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 6, &quot;neighbor&quot;: 16, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.71802675073793, 36.32482355505354, -76.3082408976784, 36.43099711652998], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.71802675073793, 36.43099711652998], [-76.3082408976784, 36.32482355505354]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;19&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 7, &quot;neighbor&quot;: 16, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.71802675073793, 36.22728328016211, -76.45111569351359, 36.43099711652998], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.71802675073793, 36.43099711652998], [-76.45111569351359, 36.22728328016211]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;20&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 7, &quot;neighbor&quot;: 19, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.71802675073793, 36.19801271093677, -76.65150188131545, 36.43099711652998], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.71802675073793, 36.43099711652998], [-76.65150188131545, 36.19801271093677]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;21&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 7, &quot;neighbor&quot;: 20, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.40588759239012, 36.37686581999349, -78.11408945025987, 36.431574192838355], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.11408945025987, 36.431574192838355], [-78.40588759239012, 36.37686581999349]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;22&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 8, &quot;neighbor&quot;: 14, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.11408945025987, 36.25616892305704, -77.67958234541625, 36.431574192838355], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.11408945025987, 36.431574192838355], [-77.67958234541625, 36.25616892305704]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;23&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 8, &quot;neighbor&quot;: 15, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.33218415595869, 36.04481979569061, -78.11408945025987, 36.431574192838355], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.11408945025987, 36.431574192838355], [-78.33218415595869, 36.04481979569061]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;24&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 8, &quot;neighbor&quot;: 23, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.11408945025987, 35.93822583107635, -77.98657016102852, 36.431574192838355], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.11408945025987, 36.431574192838355], [-77.98657016102852, 35.93822583107635]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;25&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 8, &quot;neighbor&quot;: 30, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.23456192640865, 36.39578671196982, -79.77276476728454, 36.401227370972855], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.23456192640865, 36.401227370972855], [-79.77276476728454, 36.39578671196982]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;26&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 9, &quot;neighbor&quot;: 11, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.25053372049967, 36.1143389052351, -80.23456192640865, 36.401227370972855], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.23456192640865, 36.401227370972855], [-80.25053372049967, 36.1143389052351]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;27&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 9, &quot;neighbor&quot;: 24, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.23456192640865, 36.121425443650615, -79.78257703120624, 36.401227370972855], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.23456192640865, 36.401227370972855], [-79.78257703120624, 36.121425443650615]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;28&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 9, &quot;neighbor&quot;: 25, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.77276476728454, 36.394472390737356, -79.33606772948953, 36.39578671196982], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.33606772948953, 36.394472390737356], [-79.77276476728454, 36.39578671196982]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;29&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 10, &quot;neighbor&quot;: 11, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.33606772948953, 36.38895351245035, -78.97676286158412, 36.394472390737356], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.33606772948953, 36.394472390737356], [-78.97676286158412, 36.38895351245035]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;30&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 10, &quot;neighbor&quot;: 13, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.40062842768751, 35.97812907941472, -79.33606772948953, 36.394472390737356], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.33606772948953, 36.394472390737356], [-79.40062842768751, 35.97812907941472]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;31&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 10, &quot;neighbor&quot;: 26, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.33606772948953, 35.974239868231855, -79.13156582724993, 36.394472390737356], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.33606772948953, 36.394472390737356], [-79.13156582724993, 35.974239868231855]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;32&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 10, &quot;neighbor&quot;: 28, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.25053372049967, 36.1143389052351, -79.77276476728454, 36.39578671196982], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.77276476728454, 36.39578671196982], [-80.25053372049967, 36.1143389052351]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;33&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 11, &quot;neighbor&quot;: 24, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.78257703120624, 36.121425443650615, -79.77276476728454, 36.39578671196982], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.77276476728454, 36.39578671196982], [-79.78257703120624, 36.121425443650615]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;34&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 11, &quot;neighbor&quot;: 25, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.77276476728454, 35.97812907941472, -79.40062842768751, 36.39578671196982], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.77276476728454, 36.39578671196982], [-79.40062842768751, 35.97812907941472]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;35&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 11, &quot;neighbor&quot;: 26, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.97676286158412, 36.3465746028161, -78.65955245707339, 36.38895351245035], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.65955245707339, 36.3465746028161], [-78.97676286158412, 36.38895351245035]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;36&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 12, &quot;neighbor&quot;: 13, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.65955245707339, 36.3465746028161, -78.40588759239012, 36.37686581999349], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.65955245707339, 36.3465746028161], [-78.40588759239012, 36.37686581999349]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;37&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 12, &quot;neighbor&quot;: 14, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.65955245707339, 36.04481979569061, -78.33218415595869, 36.3465746028161], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.65955245707339, 36.3465746028161], [-78.33218415595869, 36.04481979569061]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;38&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 12, &quot;neighbor&quot;: 23, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.86743923985517, 36.046624468880886, -78.65955245707339, 36.3465746028161], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.65955245707339, 36.3465746028161], [-78.86743923985517, 36.046624468880886]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;39&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 12, &quot;neighbor&quot;: 29, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.65955245707339, 35.793718523235434, -78.61963768303745, 36.3465746028161], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.65955245707339, 36.3465746028161], [-78.61963768303745, 35.793718523235434]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;40&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 12, &quot;neighbor&quot;: 36, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.13156582724993, 35.974239868231855, -78.97676286158412, 36.38895351245035], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.97676286158412, 36.38895351245035], [-79.13156582724993, 35.974239868231855]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;41&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 13, &quot;neighbor&quot;: 28, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.97676286158412, 36.046624468880886, -78.86743923985517, 36.38895351245035], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.97676286158412, 36.38895351245035], [-78.86743923985517, 36.046624468880886]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;42&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 13, &quot;neighbor&quot;: 29, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.40588759239012, 36.04481979569061, -78.33218415595869, 36.37686581999349], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.40588759239012, 36.37686581999349], [-78.33218415595869, 36.04481979569061]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;43&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 14, &quot;neighbor&quot;: 23, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.33218415595869, 36.04481979569061, -77.67958234541625, 36.25616892305704], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.67958234541625, 36.25616892305704], [-78.33218415595869, 36.04481979569061]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;44&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 15, &quot;neighbor&quot;: 23, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.67958234541625, 36.02838211402072, -77.00034832803134, 36.25616892305704], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.67958234541625, 36.25616892305704], [-77.00034832803134, 36.02838211402072]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;45&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 15, &quot;neighbor&quot;: 27, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.98657016102852, 35.93822583107635, -77.67958234541625, 36.25616892305704], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.67958234541625, 36.25616892305704], [-77.98657016102852, 35.93822583107635]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;46&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 15, &quot;neighbor&quot;: 30, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.67958234541625, 35.88136990275862, -77.5816426130457, 36.25616892305704], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.67958234541625, 36.25616892305704], [-77.5816426130457, 35.88136990275862]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;47&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 15, &quot;neighbor&quot;: 32, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.67958234541625, 35.85241144553857, -77.1263213146242, 36.25616892305704], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.67958234541625, 36.25616892305704], [-77.1263213146242, 35.85241144553857]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;48&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 15, &quot;neighbor&quot;: 35, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.45111569351359, 36.22728328016211, -76.3082408976784, 36.32482355505354], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.3082408976784, 36.32482355505354], [-76.45111569351359, 36.22728328016211]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;49&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 16, &quot;neighbor&quot;: 19, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.70133643506227, 36.212591058235546, -81.1680924257293, 36.250751216087075], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.1680924257293, 36.212591058235546], [-81.70133643506227, 36.250751216087075]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;50&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 17, &quot;neighbor&quot;: 18, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.1680924257293, 36.17220768865046, -80.65910549496982, 36.212591058235546], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.1680924257293, 36.212591058235546], [-80.65910549496982, 36.17220768865046]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;51&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 17, &quot;neighbor&quot;: 22, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.5564902506844, 35.93679745767059, -81.1680924257293, 36.212591058235546], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.1680924257293, 36.212591058235546], [-81.5564902506844, 35.93679745767059]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;52&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 17, &quot;neighbor&quot;: 33, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.1680924257293, 35.803923095003206, -80.90101493959926, 36.212591058235546], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.1680924257293, 36.212591058235546], [-80.90101493959926, 35.803923095003206]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;53&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 17, &quot;neighbor&quot;: 38, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.17936093491355, 35.90285493694586, -81.1680924257293, 36.212591058235546], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.1680924257293, 36.212591058235546], [-81.17936093491355, 35.90285493694586]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;54&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 17, &quot;neighbor&quot;: 40, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.91995341116828, 36.0793186797884, -81.70133643506227, 36.250751216087075], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.70133643506227, 36.250751216087075], [-81.91995341116828, 36.0793186797884]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;55&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 18, &quot;neighbor&quot;: 21, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.70133643506227, 35.93679745767059, -81.5564902506844, 36.250751216087075], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.70133643506227, 36.250751216087075], [-81.5564902506844, 35.93679745767059]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;56&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 18, &quot;neighbor&quot;: 33, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.65150188131545, 36.19801271093677, -76.45111569351359, 36.22728328016211], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.45111569351359, 36.22728328016211], [-76.65150188131545, 36.19801271093677]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;57&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 19, &quot;neighbor&quot;: 20, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.12248353999284, 35.975969205859286, -81.91995341116828, 36.0793186797884], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.91995341116828, 36.0793186797884], [-82.12248353999284, 35.975969205859286]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;58&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 21, &quot;neighbor&quot;: 31, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.91995341116828, 35.93679745767059, -81.5564902506844, 36.0793186797884], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.91995341116828, 36.0793186797884], [-81.5564902506844, 35.93679745767059]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;59&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 21, &quot;neighbor&quot;: 33, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.91995341116828, 35.764754813596575, -81.6825329190607, 36.0793186797884], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.91995341116828, 36.0793186797884], [-81.6825329190607, 35.764754813596575]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;60&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 21, &quot;neighbor&quot;: 42, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.04339606088747, 35.74009996280318, -81.91995341116828, 36.0793186797884], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.91995341116828, 36.0793186797884], [-82.04339606088747, 35.74009996280318]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;61&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 21, &quot;neighbor&quot;: 45, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.65910549496982, 36.1143389052351, -80.25053372049967, 36.17220768865046], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.65910549496982, 36.17220768865046], [-80.25053372049967, 36.1143389052351]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;62&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 22, &quot;neighbor&quot;: 24, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.90101493959926, 35.803923095003206, -80.65910549496982, 36.17220768865046], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.65910549496982, 36.17220768865046], [-80.90101493959926, 35.803923095003206]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;63&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 22, &quot;neighbor&quot;: 38, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.65910549496982, 35.91976543237011, -80.53127816956352, 36.17220768865046], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.65910549496982, 36.17220768865046], [-80.53127816956352, 35.91976543237011]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;64&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 22, &quot;neighbor&quot;: 39, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.33218415595869, 35.93822583107635, -77.98657016102852, 36.04481979569061], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.33218415595869, 36.04481979569061], [-77.98657016102852, 35.93822583107635]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;65&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 23, &quot;neighbor&quot;: 30, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.61963768303745, 35.793718523235434, -78.33218415595869, 36.04481979569061], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.33218415595869, 36.04481979569061], [-78.61963768303745, 35.793718523235434]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;66&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 23, &quot;neighbor&quot;: 36, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.3703938075336, 35.55111267356497, -78.33218415595869, 36.04481979569061], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.33218415595869, 36.04481979569061], [-78.3703938075336, 35.55111267356497]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;67&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 23, &quot;neighbor&quot;: 53, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.25053372049967, 36.1143389052351, -79.78257703120624, 36.121425443650615], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.25053372049967, 36.1143389052351], [-79.78257703120624, 36.121425443650615]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;68&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 24, &quot;neighbor&quot;: 25, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.53127816956352, 35.91976543237011, -80.25053372049967, 36.1143389052351], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.25053372049967, 36.1143389052351], [-80.53127816956352, 35.91976543237011]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;69&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 24, &quot;neighbor&quot;: 39, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.25600741309485, 35.7744010641556, -80.25053372049967, 36.1143389052351], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.25053372049967, 36.1143389052351], [-80.25600741309485, 35.7744010641556]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;70&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 24, &quot;neighbor&quot;: 41, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.78257703120624, 35.97812907941472, -79.40062842768751, 36.121425443650615], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.78257703120624, 36.121425443650615], [-79.40062842768751, 35.97812907941472]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;71&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 25, &quot;neighbor&quot;: 26, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.25600741309485, 35.7744010641556, -79.78257703120624, 36.121425443650615], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.78257703120624, 36.121425443650615], [-80.25600741309485, 35.7744010641556]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;72&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 25, &quot;neighbor&quot;: 41, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.80167663908625, 35.67781301100719, -79.78257703120624, 36.121425443650615], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.78257703120624, 36.121425443650615], [-79.80167663908625, 35.67781301100719]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;73&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 25, &quot;neighbor&quot;: 46, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.40062842768751, 35.974239868231855, -79.13156582724993, 35.97812907941472], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.40062842768751, 35.97812907941472], [-79.13156582724993, 35.974239868231855]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;74&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 26, &quot;neighbor&quot;: 28, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.80167663908625, 35.67781301100719, -79.40062842768751, 35.97812907941472], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.40062842768751, 35.97812907941472], [-79.80167663908625, 35.67781301100719]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;75&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 26, &quot;neighbor&quot;: 46, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.40062842768751, 35.69646335850461, -79.25597874115246, 35.97812907941472], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.40062842768751, 35.97812907941472], [-79.25597874115246, 35.69646335850461]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;76&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 26, &quot;neighbor&quot;: 47, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.1263213146242, 35.85241144553857, -77.00034832803134, 36.02838211402072], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.00034832803134, 36.02838211402072], [-77.1263213146242, 35.85241144553857]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;77&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 27, &quot;neighbor&quot;: 35, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.00034832803134, 35.82771455327548, -76.59090273018614, 36.02838211402072], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.00034832803134, 36.02838211402072], [-76.59090273018614, 35.82771455327548]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;78&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 27, &quot;neighbor&quot;: 43, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.13156582724993, 35.974239868231855, -78.86743923985517, 36.046624468880886], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.13156582724993, 35.974239868231855], [-78.86743923985517, 36.046624468880886]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;79&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 28, &quot;neighbor&quot;: 29, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.25597874115246, 35.69646335850461, -79.13156582724993, 35.974239868231855], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.13156582724993, 35.974239868231855], [-79.25597874115246, 35.69646335850461]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;80&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 28, &quot;neighbor&quot;: 47, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.86743923985517, 35.793718523235434, -78.61963768303745, 36.046624468880886], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.86743923985517, 36.046624468880886], [-78.61963768303745, 35.793718523235434]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;81&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 29, &quot;neighbor&quot;: 36, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.25597874115246, 35.69646335850461, -78.86743923985517, 36.046624468880886], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.86743923985517, 36.046624468880886], [-79.25597874115246, 35.69646335850461]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;82&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 29, &quot;neighbor&quot;: 47, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.98657016102852, 35.88136990275862, -77.5816426130457, 35.93822583107635], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.98657016102852, 35.93822583107635], [-77.5816426130457, 35.88136990275862]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;83&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 30, &quot;neighbor&quot;: 32, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.61963768303745, 35.793718523235434, -77.98657016102852, 35.93822583107635], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.98657016102852, 35.93822583107635], [-78.61963768303745, 35.793718523235434]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;84&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 30, &quot;neighbor&quot;: 36, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.98657016102852, 35.711426153089995, -77.93835602935111, 35.93822583107635], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.98657016102852, 35.93822583107635], [-77.93835602935111, 35.711426153089995]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;85&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 30, &quot;neighbor&quot;: 48, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.3703938075336, 35.55111267356497, -77.98657016102852, 35.93822583107635], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.98657016102852, 35.93822583107635], [-78.3703938075336, 35.55111267356497]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;86&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 30, &quot;neighbor&quot;: 53, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.29878534140809, 35.891263191643226, -82.12248353999284, 35.975969205859286], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.12248353999284, 35.975969205859286], [-82.29878534140809, 35.891263191643226]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;87&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 31, &quot;neighbor&quot;: 34, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.12248353999284, 35.74009996280318, -82.04339606088747, 35.975969205859286], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.12248353999284, 35.975969205859286], [-82.04339606088747, 35.74009996280318]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;88&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 31, &quot;neighbor&quot;: 45, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.5816426130457, 35.85241144553857, -77.1263213146242, 35.88136990275862], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.5816426130457, 35.88136990275862], [-77.1263213146242, 35.85241144553857]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;89&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 32, &quot;neighbor&quot;: 35, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.93835602935111, 35.711426153089995, -77.5816426130457, 35.88136990275862], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.5816426130457, 35.88136990275862], [-77.93835602935111, 35.711426153089995]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;90&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 32, &quot;neighbor&quot;: 48, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.5816426130457, 35.56915865033354, -77.3643519229068, 35.88136990275862], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.5816426130457, 35.88136990275862], [-77.3643519229068, 35.56915865033354]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;91&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 32, &quot;neighbor&quot;: 50, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.5564902506844, 35.90285493694586, -81.17936093491355, 35.93679745767059], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.5564902506844, 35.93679745767059], [-81.17936093491355, 35.90285493694586]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;92&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 33, &quot;neighbor&quot;: 40, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.6825329190607, 35.764754813596575, -81.5564902506844, 35.93679745767059], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.5564902506844, 35.93679745767059], [-81.6825329190607, 35.764754813596575]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;93&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 33, &quot;neighbor&quot;: 42, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.5564902506844, 35.65815642455532, -81.20636795501596, 35.93679745767059], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.5564902506844, 35.93679745767059], [-81.20636795501596, 35.65815642455532]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;94&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 33, &quot;neighbor&quot;: 51, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.67626610534305, 35.84307981796387, -82.29878534140809, 35.891263191643226], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.29878534140809, 35.891263191643226], [-82.67626610534305, 35.84307981796387]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;95&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 34, &quot;neighbor&quot;: 37, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.29878534140809, 35.74009996280318, -82.04339606088747, 35.891263191643226], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.29878534140809, 35.891263191643226], [-82.04339606088747, 35.74009996280318]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;96&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 34, &quot;neighbor&quot;: 45, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.54208536355003, 35.61935866399454, -82.29878534140809, 35.891263191643226], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.29878534140809, 35.891263191643226], [-82.54208536355003, 35.61935866399454]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;97&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 34, &quot;neighbor&quot;: 52, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.1263213146242, 35.82771455327548, -76.59090273018614, 35.85241144553857], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.1263213146242, 35.85241144553857], [-76.59090273018614, 35.82771455327548]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;98&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 35, &quot;neighbor&quot;: 43, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.3643519229068, 35.56915865033354, -77.1263213146242, 35.85241144553857], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.1263213146242, 35.85241144553857], [-77.3643519229068, 35.56915865033354]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;99&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 35, &quot;neighbor&quot;: 50, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.1263213146242, 35.56410582410714, -76.80756743037757, 35.85241144553857], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.1263213146242, 35.85241144553857], [-76.80756743037757, 35.56410582410714]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;100&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 35, &quot;neighbor&quot;: 56, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.25597874115246, 35.69646335850461, -78.61963768303745, 35.793718523235434], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.61963768303745, 35.793718523235434], [-79.25597874115246, 35.69646335850461]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;101&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 36, &quot;neighbor&quot;: 47, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.61963768303745, 35.55111267356497, -78.3703938075336, 35.793718523235434], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.61963768303745, 35.793718523235434], [-78.3703938075336, 35.55111267356497]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;102&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 36, &quot;neighbor&quot;: 53, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.83973208503795, 35.37487380360481, -78.61963768303745, 35.793718523235434], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.61963768303745, 35.793718523235434], [-78.83973208503795, 35.37487380360481]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;103&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 36, &quot;neighbor&quot;: 62, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.67626610534305, 35.61935866399454, -82.54208536355003, 35.84307981796387], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.67626610534305, 35.84307981796387], [-82.54208536355003, 35.61935866399454]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;104&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 37, &quot;neighbor&quot;: 52, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.96803136678908, 35.54228494433707, -82.67626610534305, 35.84307981796387], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.67626610534305, 35.84307981796387], [-82.96803136678908, 35.54228494433707]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;105&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 37, &quot;neighbor&quot;: 54, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.90101493959926, 35.803923095003206, -80.53127816956352, 35.91976543237011], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.90101493959926, 35.803923095003206], [-80.53127816956352, 35.91976543237011]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;106&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 38, &quot;neighbor&quot;: 39, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.17936093491355, 35.803923095003206, -80.90101493959926, 35.90285493694586], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.90101493959926, 35.803923095003206], [-81.17936093491355, 35.90285493694586]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;107&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 38, &quot;neighbor&quot;: 40, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.90101493959926, 35.659772053128975, -80.53283827506755, 35.803923095003206], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.90101493959926, 35.803923095003206], [-80.53283827506755, 35.659772053128975]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;108&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 38, &quot;neighbor&quot;: 49, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.20636795501596, 35.65815642455532, -80.90101493959926, 35.803923095003206], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.90101493959926, 35.803923095003206], [-81.20636795501596, 35.65815642455532]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;109&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 38, &quot;neighbor&quot;: 51, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.21835056524885, 35.479939019175795, -80.90101493959926, 35.803923095003206], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.90101493959926, 35.803923095003206], [-81.21835056524885, 35.479939019175795]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;110&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 38, &quot;neighbor&quot;: 64, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.90101493959926, 35.25740486354764, -80.82735715242157, 35.803923095003206], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.90101493959926, 35.803923095003206], [-80.82735715242157, 35.25740486354764]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;111&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 38, &quot;neighbor&quot;: 67, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.90101493959926, 35.36297645265597, -80.5547048031675, 35.803923095003206], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.90101493959926, 35.803923095003206], [-80.5547048031675, 35.36297645265597]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;112&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 38, &quot;neighbor&quot;: 68, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.53127816956352, 35.7744010641556, -80.25600741309485, 35.91976543237011], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.53127816956352, 35.91976543237011], [-80.25600741309485, 35.7744010641556]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;113&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 39, &quot;neighbor&quot;: 41, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.53283827506755, 35.659772053128975, -80.53127816956352, 35.91976543237011], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.53127816956352, 35.91976543237011], [-80.53283827506755, 35.659772053128975]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;114&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 39, &quot;neighbor&quot;: 49, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.20636795501596, 35.65815642455532, -81.17936093491355, 35.90285493694586], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.17936093491355, 35.90285493694586], [-81.20636795501596, 35.65815642455532]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;115&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 40, &quot;neighbor&quot;: 51, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.25600741309485, 35.67781301100719, -79.80167663908625, 35.7744010641556], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.25600741309485, 35.7744010641556], [-79.80167663908625, 35.67781301100719]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;116&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 41, &quot;neighbor&quot;: 46, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.53283827506755, 35.659772053128975, -80.25600741309485, 35.7744010641556], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.25600741309485, 35.7744010641556], [-80.53283827506755, 35.659772053128975]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;117&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 41, &quot;neighbor&quot;: 49, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.25600741309485, 35.327431460158316, -79.89606682644703, 35.7744010641556], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.25600741309485, 35.7744010641556], [-79.89606682644703, 35.327431460158316]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;118&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 41, &quot;neighbor&quot;: 69, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.25600741309485, 35.33009083353577, -80.24127152466903, 35.7744010641556], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.25600741309485, 35.7744010641556], [-80.24127152466903, 35.33009083353577]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;119&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 41, &quot;neighbor&quot;: 70, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.04339606088747, 35.74009996280318, -81.6825329190607, 35.764754813596575], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.6825329190607, 35.764754813596575], [-82.04339606088747, 35.74009996280318]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;120&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 42, &quot;neighbor&quot;: 45, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.6825329190607, 35.65815642455532, -81.20636795501596, 35.764754813596575], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.6825329190607, 35.764754813596575], [-81.20636795501596, 35.65815642455532]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;121&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 42, &quot;neighbor&quot;: 51, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.91432326401467, 35.39340997905669, -81.6825329190607, 35.764754813596575], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.6825329190607, 35.764754813596575], [-81.91432326401467, 35.39340997905669]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;122&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 42, &quot;neighbor&quot;: 60, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.6825329190607, 35.38603832932577, -81.56095654230508, 35.764754813596575], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.6825329190607, 35.764754813596575], [-81.56095654230508, 35.38603832932577]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;123&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 42, &quot;neighbor&quot;: 63, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.6825329190607, 35.479939019175795, -81.21835056524885, 35.764754813596575], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.6825329190607, 35.764754813596575], [-81.21835056524885, 35.479939019175795]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;124&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 42, &quot;neighbor&quot;: 64, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.59090273018614, 35.81868673514218, -76.22124491320736, 35.82771455327548], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.59090273018614, 35.82771455327548], [-76.22124491320736, 35.81868673514218]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;125&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 43, &quot;neighbor&quot;: 44, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.80756743037757, 35.56410582410714, -76.59090273018614, 35.82771455327548], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.59090273018614, 35.82771455327548], [-76.80756743037757, 35.56410582410714]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;126&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 43, &quot;neighbor&quot;: 56, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.59090273018614, 35.51854028682398, -76.21757613206822, 35.82771455327548], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.59090273018614, 35.82771455327548], [-76.21757613206822, 35.51854028682398]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;127&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 43, &quot;neighbor&quot;: 86, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.22124491320736, 35.51854028682398, -76.21757613206822, 35.81868673514218], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.22124491320736, 35.81868673514218], [-76.21757613206822, 35.51854028682398]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;128&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 44, &quot;neighbor&quot;: 86, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.54208536355003, 35.61935866399454, -82.04339606088747, 35.74009996280318], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.04339606088747, 35.74009996280318], [-82.54208536355003, 35.61935866399454]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;129&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 45, &quot;neighbor&quot;: 52, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.04339606088747, 35.39340997905669, -81.91432326401467, 35.74009996280318], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.04339606088747, 35.74009996280318], [-81.91432326401467, 35.39340997905669]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;130&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 45, &quot;neighbor&quot;: 60, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.80167663908625, 35.67781301100719, -79.25597874115246, 35.69646335850461], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.80167663908625, 35.67781301100719], [-79.25597874115246, 35.69646335850461]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;131&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 46, &quot;neighbor&quot;: 47, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.80167663908625, 35.27206243636648, -79.45977217261137, 35.67781301100719], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.80167663908625, 35.67781301100719], [-79.45977217261137, 35.27206243636648]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;132&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 46, &quot;neighbor&quot;: 66, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.89606682644703, 35.327431460158316, -79.80167663908625, 35.67781301100719], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.80167663908625, 35.67781301100719], [-79.89606682644703, 35.327431460158316]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;133&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 46, &quot;neighbor&quot;: 69, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.25597874115246, 35.45539941067479, -79.19208992681638, 35.69646335850461], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.25597874115246, 35.69646335850461], [-79.19208992681638, 35.45539941067479]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;134&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 47, &quot;neighbor&quot;: 59, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.25597874115246, 35.37487380360481, -78.83973208503795, 35.69646335850461], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.25597874115246, 35.69646335850461], [-78.83973208503795, 35.37487380360481]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;135&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 47, &quot;neighbor&quot;: 62, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.45977217261137, 35.27206243636648, -79.25597874115246, 35.69646335850461], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.25597874115246, 35.69646335850461], [-79.45977217261137, 35.27206243636648]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;136&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 47, &quot;neighbor&quot;: 66, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.93835602935111, 35.56915865033354, -77.3643519229068, 35.711426153089995], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.93835602935111, 35.711426153089995], [-77.3643519229068, 35.56915865033354]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;137&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 48, &quot;neighbor&quot;: 50, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.3703938075336, 35.55111267356497, -77.93835602935111, 35.711426153089995], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.93835602935111, 35.711426153089995], [-78.3703938075336, 35.55111267356497]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;138&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 48, &quot;neighbor&quot;: 53, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.93835602935111, 35.498952507618, -77.66626580682512, 35.711426153089995], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.93835602935111, 35.711426153089995], [-77.66626580682512, 35.498952507618]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;139&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 48, &quot;neighbor&quot;: 58, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.97787880182456, 35.38765571678414, -77.93835602935111, 35.711426153089995], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.93835602935111, 35.711426153089995], [-77.97787880182456, 35.38765571678414]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;140&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 48, &quot;neighbor&quot;: 61, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.5547048031675, 35.36297645265597, -80.53283827506755, 35.659772053128975], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.53283827506755, 35.659772053128975], [-80.5547048031675, 35.36297645265597]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;141&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 49, &quot;neighbor&quot;: 68, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.53283827506755, 35.327431460158316, -79.89606682644703, 35.659772053128975], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.53283827506755, 35.659772053128975], [-79.89606682644703, 35.327431460158316]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;142&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 49, &quot;neighbor&quot;: 69, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.53283827506755, 35.33009083353577, -80.24127152466903, 35.659772053128975], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.53283827506755, 35.659772053128975], [-80.24127152466903, 35.33009083353577]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;143&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 49, &quot;neighbor&quot;: 70, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.3643519229068, 35.56410582410714, -76.80756743037757, 35.56915865033354], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.3643519229068, 35.56915865033354], [-76.80756743037757, 35.56410582410714]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;144&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 50, &quot;neighbor&quot;: 56, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.66626580682512, 35.498952507618, -77.3643519229068, 35.56915865033354], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.3643519229068, 35.56915865033354], [-77.66626580682512, 35.498952507618]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;145&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 50, &quot;neighbor&quot;: 58, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.67721341139872, 35.20020763197254, -77.3643519229068, 35.56915865033354], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.3643519229068, 35.56915865033354], [-77.67721341139872, 35.20020763197254]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;146&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 50, &quot;neighbor&quot;: 73, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.3643519229068, 35.238638759898045, -77.18804707266813, 35.56915865033354], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.3643519229068, 35.56915865033354], [-77.18804707266813, 35.238638759898045]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;147&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 50, &quot;neighbor&quot;: 90, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.56095654230508, 35.38603832932577, -81.20636795501596, 35.65815642455532], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.20636795501596, 35.65815642455532], [-81.56095654230508, 35.38603832932577]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;148&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 51, &quot;neighbor&quot;: 63, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.21835056524885, 35.479939019175795, -81.20636795501596, 35.65815642455532], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.20636795501596, 35.65815642455532], [-81.21835056524885, 35.479939019175795]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;149&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 51, &quot;neighbor&quot;: 64, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.96803136678908, 35.54228494433707, -82.54208536355003, 35.61935866399454], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.54208536355003, 35.61935866399454], [-82.96803136678908, 35.54228494433707]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;150&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 52, &quot;neighbor&quot;: 54, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.54208536355003, 35.39340997905669, -81.91432326401467, 35.61935866399454], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.54208536355003, 35.61935866399454], [-81.91432326401467, 35.39340997905669]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;151&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 52, &quot;neighbor&quot;: 60, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.54208536355003, 35.34931942462325, -82.47671294559912, 35.61935866399454], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.54208536355003, 35.61935866399454], [-82.47671294559912, 35.34931942462325]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;152&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 52, &quot;neighbor&quot;: 71, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.77267464488618, 35.20959213861049, -82.54208536355003, 35.61935866399454], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.54208536355003, 35.61935866399454], [-82.77267464488618, 35.20959213861049]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;153&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 52, &quot;neighbor&quot;: 74, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.3703938075336, 35.38765571678414, -77.97787880182456, 35.55111267356497], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.3703938075336, 35.55111267356497], [-77.97787880182456, 35.38765571678414]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;154&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 53, &quot;neighbor&quot;: 61, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.83973208503795, 35.37487380360481, -78.3703938075336, 35.55111267356497], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.3703938075336, 35.55111267356497], [-78.83973208503795, 35.37487380360481]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;155&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 53, &quot;neighbor&quot;: 62, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.3703938075336, 34.922356132333654, -78.35673975816896, 35.55111267356497], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.3703938075336, 35.55111267356497], [-78.35673975816896, 34.922356132333654]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;156&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 53, &quot;neighbor&quot;: 78, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.60490348252915, 35.47586812816397, -82.96803136678908, 35.54228494433707], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.96803136678908, 35.54228494433707], [-83.60490348252915, 35.47586812816397]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;157&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 54, &quot;neighbor&quot;: 57, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.11150471676939, 35.24830652006442, -82.96803136678908, 35.54228494433707], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.96803136678908, 35.54228494433707], [-83.11150471676939, 35.24830652006442]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;158&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 54, &quot;neighbor&quot;: 65, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.96803136678908, 35.34931942462325, -82.47671294559912, 35.54228494433707], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.96803136678908, 35.54228494433707], [-82.47671294559912, 35.34931942462325]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;159&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 54, &quot;neighbor&quot;: 71, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.96803136678908, 35.20959213861049, -82.77267464488618, 35.54228494433707], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.96803136678908, 35.54228494433707], [-82.77267464488618, 35.20959213861049]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;160&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 54, &quot;neighbor&quot;: 74, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.21757613206822, 35.51854028682398, -75.87201533024219, 35.773009234143785], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-75.87201533024219, 35.773009234143785], [-76.21757613206822, 35.51854028682398]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;161&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 55, &quot;neighbor&quot;: 86, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.80756743037757, 35.14908744570476, -76.79515102455096, 35.56410582410714], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.80756743037757, 35.56410582410714], [-76.79515102455096, 35.14908744570476]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;162&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 56, &quot;neighbor&quot;: 79, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.80756743037757, 35.51854028682398, -76.21757613206822, 35.56410582410714], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.80756743037757, 35.56410582410714], [-76.21757613206822, 35.51854028682398]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;163&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 56, &quot;neighbor&quot;: 86, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.18804707266813, 35.238638759898045, -76.80756743037757, 35.56410582410714], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.80756743037757, 35.56410582410714], [-77.18804707266813, 35.238638759898045]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;164&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 56, &quot;neighbor&quot;: 90, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.60490348252915, 35.24830652006442, -83.11150471676939, 35.47586812816397], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-83.60490348252915, 35.47586812816397], [-83.11150471676939, 35.24830652006442]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;165&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 57, &quot;neighbor&quot;: 65, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.81944500863986, 35.34389325773047, -83.60490348252915, 35.47586812816397], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-83.60490348252915, 35.47586812816397], [-83.81944500863986, 35.34389325773047]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;166&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 57, &quot;neighbor&quot;: 72, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.60490348252915, 35.169995453707, -83.47193852539337, 35.47586812816397], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-83.60490348252915, 35.47586812816397], [-83.47193852539337, 35.169995453707]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;167&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 57, &quot;neighbor&quot;: 77, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.97787880182456, 35.38765571678414, -77.66626580682512, 35.498952507618], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.66626580682512, 35.498952507618], [-77.97787880182456, 35.38765571678414]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;168&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 58, &quot;neighbor&quot;: 61, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.67721341139872, 35.20020763197254, -77.66626580682512, 35.498952507618], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.66626580682512, 35.498952507618], [-77.67721341139872, 35.20020763197254]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;169&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 58, &quot;neighbor&quot;: 73, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.19208992681638, 35.37487380360481, -78.83973208503795, 35.45539941067479], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.19208992681638, 35.45539941067479], [-78.83973208503795, 35.37487380360481]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;170&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 59, &quot;neighbor&quot;: 62, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.45977217261137, 35.27206243636648, -79.19208992681638, 35.45539941067479], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.19208992681638, 35.45539941067479], [-79.45977217261137, 35.27206243636648]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;171&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 59, &quot;neighbor&quot;: 66, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.91432326401467, 35.38603832932577, -81.56095654230508, 35.39340997905669], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.91432326401467, 35.39340997905669], [-81.56095654230508, 35.38603832932577]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;172&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 60, &quot;neighbor&quot;: 63, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.47671294559912, 35.34931942462325, -81.91432326401467, 35.39340997905669], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.91432326401467, 35.39340997905669], [-82.47671294559912, 35.34931942462325]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;173&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 60, &quot;neighbor&quot;: 71, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.17699252199117, 35.2991253887554, -81.91432326401467, 35.39340997905669], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.91432326401467, 35.39340997905669], [-82.17699252199117, 35.2991253887554]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;174&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 60, &quot;neighbor&quot;: 76, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.97787880182456, 35.20020763197254, -77.67721341139872, 35.38765571678414], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.97787880182456, 35.38765571678414], [-77.67721341139872, 35.20020763197254]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;175&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 61, &quot;neighbor&quot;: 73, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.35673975816896, 34.922356132333654, -77.97787880182456, 35.38765571678414], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.97787880182456, 35.38765571678414], [-78.35673975816896, 34.922356132333654]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;176&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 61, &quot;neighbor&quot;: 78, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.97787880182456, 34.949151043248946, -77.90798830403743, 35.38765571678414], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.97787880182456, 35.38765571678414], [-77.90798830403743, 34.949151043248946]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;177&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 61, &quot;neighbor&quot;: 87, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.45977217261137, 35.27206243636648, -78.83973208503795, 35.37487380360481], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.83973208503795, 35.37487380360481], [-79.45977217261137, 35.27206243636648]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;178&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 62, &quot;neighbor&quot;: 66, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.83973208503795, 34.922356132333654, -78.35673975816896, 35.37487380360481], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.83973208503795, 35.37487380360481], [-78.35673975816896, 34.922356132333654]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;179&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 62, &quot;neighbor&quot;: 78, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.87810448081477, 35.054813025646546, -78.83973208503795, 35.37487380360481], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.83973208503795, 35.37487380360481], [-78.87810448081477, 35.054813025646546]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;180&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 62, &quot;neighbor&quot;: 81, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.56095654230508, 35.38603832932577, -81.21835056524885, 35.479939019175795], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.56095654230508, 35.38603832932577], [-81.21835056524885, 35.479939019175795]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;181&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 63, &quot;neighbor&quot;: 64, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.56095654230508, 35.293139601003844, -81.17736882425847, 35.38603832932577], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.56095654230508, 35.38603832932577], [-81.17736882425847, 35.293139601003844]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;182&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 63, &quot;neighbor&quot;: 75, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.21835056524885, 35.25740486354764, -80.82735715242157, 35.479939019175795], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.21835056524885, 35.479939019175795], [-80.82735715242157, 35.25740486354764]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;183&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 64, &quot;neighbor&quot;: 67, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.21835056524885, 35.293139601003844, -81.17736882425847, 35.479939019175795], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.21835056524885, 35.479939019175795], [-81.17736882425847, 35.293139601003844]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;184&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 64, &quot;neighbor&quot;: 75, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.11150471676939, 35.20959213861049, -82.77267464488618, 35.24830652006442], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-83.11150471676939, 35.24830652006442], [-82.77267464488618, 35.20959213861049]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;185&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 65, &quot;neighbor&quot;: 74, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.47193852539337, 35.169995453707, -83.11150471676939, 35.24830652006442], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-83.11150471676939, 35.24830652006442], [-83.47193852539337, 35.169995453707]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;186&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 65, &quot;neighbor&quot;: 77, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.89606682644703, 35.27206243636648, -79.45977217261137, 35.327431460158316], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.45977217261137, 35.27206243636648], [-79.89606682644703, 35.327431460158316]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;187&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 66, &quot;neighbor&quot;: 69, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.45977217261137, 35.054813025646546, -78.87810448081477, 35.27206243636648], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.45977217261137, 35.27206243636648], [-78.87810448081477, 35.054813025646546]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;188&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 66, &quot;neighbor&quot;: 81, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.45977217261137, 35.01438406556255, -79.25113955330204, 35.27206243636648], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.45977217261137, 35.27206243636648], [-79.25113955330204, 35.01438406556255]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;189&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 66, &quot;neighbor&quot;: 85, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.72202064037224, 34.99102766751888, -79.45977217261137, 35.27206243636648], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.45977217261137, 35.27206243636648], [-79.72202064037224, 34.99102766751888]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;190&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 66, &quot;neighbor&quot;: 88, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.47844550242344, 34.82678725757952, -79.45977217261137, 35.27206243636648], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.45977217261137, 35.27206243636648], [-79.47844550242344, 34.82678725757952]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;191&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 66, &quot;neighbor&quot;: 91, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.82735715242157, 35.25740486354764, -80.5547048031675, 35.36297645265597], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.82735715242157, 35.25740486354764], [-80.5547048031675, 35.36297645265597]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;192&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 67, &quot;neighbor&quot;: 68, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.17736882425847, 35.25740486354764, -80.82735715242157, 35.293139601003844], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.82735715242157, 35.25740486354764], [-81.17736882425847, 35.293139601003844]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;193&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 67, &quot;neighbor&quot;: 75, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.82735715242157, 35.01444375932666, -80.55885768683369, 35.25740486354764], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.82735715242157, 35.25740486354764], [-80.55885768683369, 35.01444375932666]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;194&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 67, &quot;neighbor&quot;: 83, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.5547048031675, 35.33009083353577, -80.24127152466903, 35.36297645265597], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.5547048031675, 35.36297645265597], [-80.24127152466903, 35.33009083353577]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;195&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 68, &quot;neighbor&quot;: 70, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.55885768683369, 35.01444375932666, -80.5547048031675, 35.36297645265597], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.5547048031675, 35.36297645265597], [-80.55885768683369, 35.01444375932666]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;196&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 68, &quot;neighbor&quot;: 83, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.24127152466903, 35.327431460158316, -79.89606682644703, 35.33009083353577], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.89606682644703, 35.327431460158316], [-80.24127152466903, 35.33009083353577]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;197&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 69, &quot;neighbor&quot;: 70, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.09124626604962, 34.989241505841214, -79.89606682644703, 35.327431460158316], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.89606682644703, 35.327431460158316], [-80.09124626604962, 34.989241505841214]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;198&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 69, &quot;neighbor&quot;: 84, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.89606682644703, 34.99102766751888, -79.72202064037224, 35.327431460158316], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.89606682644703, 35.327431460158316], [-79.72202064037224, 34.99102766751888]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;199&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 69, &quot;neighbor&quot;: 88, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.55885768683369, 35.01444375932666, -80.24127152466903, 35.33009083353577], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.24127152466903, 35.33009083353577], [-80.55885768683369, 35.01444375932666]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;200&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 70, &quot;neighbor&quot;: 83, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.24127152466903, 34.989241505841214, -80.09124626604962, 35.33009083353577], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.24127152466903, 35.33009083353577], [-80.09124626604962, 34.989241505841214]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;201&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 70, &quot;neighbor&quot;: 84, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.77267464488618, 35.20959213861049, -82.47671294559912, 35.34931942462325], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.47671294559912, 35.34931942462325], [-82.77267464488618, 35.20959213861049]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;202&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 71, &quot;neighbor&quot;: 74, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.47671294559912, 35.2991253887554, -82.17699252199117, 35.34931942462325], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.47671294559912, 35.34931942462325], [-82.17699252199117, 35.2991253887554]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;203&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 71, &quot;neighbor&quot;: 76, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.81944500863986, 35.169995453707, -83.47193852539337, 35.34389325773047], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-83.81944500863986, 35.34389325773047], [-83.47193852539337, 35.169995453707]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;204&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 72, &quot;neighbor&quot;: 77, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-84.0321893966368, 35.14015600385817, -83.81944500863986, 35.34389325773047], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-83.81944500863986, 35.34389325773047], [-84.0321893966368, 35.14015600385817]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;205&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 72, &quot;neighbor&quot;: 80, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.67721341139872, 35.012407955304155, -77.39905531467014, 35.20020763197254], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.67721341139872, 35.20020763197254], [-77.39905531467014, 35.012407955304155]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;206&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 73, &quot;neighbor&quot;: 82, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.90798830403743, 34.949151043248946, -77.67721341139872, 35.20020763197254], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.67721341139872, 35.20020763197254], [-77.90798830403743, 34.949151043248946]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;207&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 73, &quot;neighbor&quot;: 87, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.67721341139872, 35.20020763197254, -77.18804707266813, 35.238638759898045], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.67721341139872, 35.20020763197254], [-77.18804707266813, 35.238638759898045]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;208&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 73, &quot;neighbor&quot;: 90, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-84.0321893966368, 35.14015600385817, -83.47193852539337, 35.169995453707], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-83.47193852539337, 35.169995453707], [-84.0321893966368, 35.14015600385817]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;209&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 77, &quot;neighbor&quot;: 80, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.75265358254363, 35.06359077255187, -83.47193852539337, 35.169995453707], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-83.47193852539337, 35.169995453707], [-83.75265358254363, 35.06359077255187]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;210&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 77, &quot;neighbor&quot;: 89, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.87810448081477, 34.922356132333654, -78.35673975816896, 35.054813025646546], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.35673975816896, 34.922356132333654], [-78.87810448081477, 35.054813025646546]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;211&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 78, &quot;neighbor&quot;: 81, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.35673975816896, 34.922356132333654, -77.90798830403743, 34.949151043248946], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.35673975816896, 34.922356132333654], [-77.90798830403743, 34.949151043248946]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;212&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 78, &quot;neighbor&quot;: 87, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.56996079307251, 34.62312080120418, -78.35673975816896, 34.922356132333654], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.35673975816896, 34.922356132333654], [-78.56996079307251, 34.62312080120418]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;213&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 78, &quot;neighbor&quot;: 95, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.35673975816896, 34.509697709519855, -77.9245658269991, 34.922356132333654], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.35673975816896, 34.922356132333654], [-77.9245658269991, 34.509697709519855]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;214&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 78, &quot;neighbor&quot;: 96, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.18804707266813, 35.14908744570476, -76.79515102455096, 35.238638759898045], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.79515102455096, 35.14908744570476], [-77.18804707266813, 35.238638759898045]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;215&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 79, &quot;neighbor&quot;: 90, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-84.0321893966368, 35.06359077255187, -83.75265358254363, 35.14015600385817], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-84.0321893966368, 35.14015600385817], [-83.75265358254363, 35.06359077255187]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;216&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 80, &quot;neighbor&quot;: 89, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.25113955330204, 35.01438406556255, -78.87810448081477, 35.054813025646546], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.87810448081477, 35.054813025646546], [-79.25113955330204, 35.01438406556255]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;217&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 81, &quot;neighbor&quot;: 85, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.12198368689681, 34.6599186266382, -78.87810448081477, 35.054813025646546], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.87810448081477, 35.054813025646546], [-79.12198368689681, 34.6599186266382]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;218&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 81, &quot;neighbor&quot;: 93, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.87810448081477, 34.62312080120418, -78.56996079307251, 35.054813025646546], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.87810448081477, 35.054813025646546], [-78.56996079307251, 34.62312080120418]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;219&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 81, &quot;neighbor&quot;: 95, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.90798830403743, 34.949151043248946, -77.39905531467014, 35.012407955304155], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.39905531467014, 35.012407955304155], [-77.90798830403743, 34.949151043248946]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;220&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 82, &quot;neighbor&quot;: 87, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.39905531467014, 35.012407955304155, -77.18804707266813, 35.238638759898045], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.39905531467014, 35.012407955304155], [-77.18804707266813, 35.238638759898045]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;221&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 82, &quot;neighbor&quot;: 90, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.41302012730806, 34.74238011850433, -77.39905531467014, 35.012407955304155], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.39905531467014, 35.012407955304155], [-77.41302012730806, 34.74238011850433]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;222&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 82, &quot;neighbor&quot;: 92, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.39905531467014, 34.86427750937366, -76.54395923944259, 35.012407955304155], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.39905531467014, 35.012407955304155], [-76.54395923944259, 34.86427750937366]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;223&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 82, &quot;neighbor&quot;: 94, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.55885768683369, 34.989241505841214, -80.09124626604962, 35.01444375932666], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.55885768683369, 35.01444375932666], [-80.09124626604962, 34.989241505841214]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;224&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 83, &quot;neighbor&quot;: 84, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.09124626604962, 34.989241505841214, -79.72202064037224, 34.99102766751888], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.09124626604962, 34.989241505841214], [-79.72202064037224, 34.99102766751888]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;225&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 84, &quot;neighbor&quot;: 88, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.72202064037224, 34.99102766751888, -79.25113955330204, 35.01438406556255], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.25113955330204, 35.01438406556255], [-79.72202064037224, 34.99102766751888]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;226&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 85, &quot;neighbor&quot;: 88, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.47844550242344, 34.82678725757952, -79.25113955330204, 35.01438406556255], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.25113955330204, 35.01438406556255], [-79.47844550242344, 34.82678725757952]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;227&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 85, &quot;neighbor&quot;: 91, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.25113955330204, 34.6599186266382, -79.12198368689681, 35.01438406556255], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.25113955330204, 35.01438406556255], [-79.12198368689681, 34.6599186266382]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;228&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 85, &quot;neighbor&quot;: 93, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.90798830403743, 34.74238011850433, -77.41302012730806, 34.949151043248946], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.90798830403743, 34.949151043248946], [-77.41302012730806, 34.74238011850433]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;229&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 87, &quot;neighbor&quot;: 92, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.9245658269991, 34.509697709519855, -77.90798830403743, 34.949151043248946], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.90798830403743, 34.949151043248946], [-77.9245658269991, 34.509697709519855]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;230&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 87, &quot;neighbor&quot;: 96, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.72202064037224, 34.82678725757952, -79.47844550242344, 34.99102766751888], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.72202064037224, 34.99102766751888], [-79.47844550242344, 34.82678725757952]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;231&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 88, &quot;neighbor&quot;: 91, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.18804707266813, 34.86427750937366, -76.54395923944259, 35.238638759898045], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.18804707266813, 35.238638759898045], [-76.54395923944259, 34.86427750937366]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;232&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 90, &quot;neighbor&quot;: 94, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.47844550242344, 34.6599186266382, -79.12198368689681, 34.82678725757952], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.47844550242344, 34.82678725757952], [-79.12198368689681, 34.6599186266382]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;233&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 91, &quot;neighbor&quot;: 93, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.41302012730806, 34.74238011850433, -76.54395923944259, 34.86427750937366], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.41302012730806, 34.74238011850433], [-76.54395923944259, 34.86427750937366]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;234&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 92, &quot;neighbor&quot;: 94, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.9245658269991, 34.509697709519855, -77.41302012730806, 34.74238011850433], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.41302012730806, 34.74238011850433], [-77.9245658269991, 34.509697709519855]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;235&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 92, &quot;neighbor&quot;: 96, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.12198368689681, 34.62312080120418, -78.56996079307251, 34.6599186266382], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.12198368689681, 34.6599186266382], [-78.56996079307251, 34.62312080120418]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;236&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 93, &quot;neighbor&quot;: 95, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.12198368689681, 34.21558682200368, -78.64673911019337, 34.6599186266382], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.12198368689681, 34.6599186266382], [-78.64673911019337, 34.21558682200368]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;237&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 93, &quot;neighbor&quot;: 97, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.56996079307251, 34.509697709519855, -77.9245658269991, 34.62312080120418], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.56996079307251, 34.62312080120418], [-77.9245658269991, 34.509697709519855]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;238&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 95, &quot;neighbor&quot;: 96, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.64673911019337, 34.21558682200368, -78.56996079307251, 34.62312080120418], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.56996079307251, 34.62312080120418], [-78.64673911019337, 34.21558682200368]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;239&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 95, &quot;neighbor&quot;: 97, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.64673911019337, 34.21558682200368, -77.9245658269991, 34.509697709519855], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.9245658269991, 34.509697709519855], [-78.64673911019337, 34.21558682200368]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;240&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 96, &quot;neighbor&quot;: 97, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.9245658269991, 34.2172010123703, -77.90239283469771, 34.509697709519855], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.9245658269991, 34.509697709519855], [-77.90239283469771, 34.2172010123703]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;241&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 96, &quot;neighbor&quot;: 98, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.2566549713068, 34.0902733398776, -77.9245658269991, 34.509697709519855], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.9245658269991, 34.509697709519855], [-78.2566549713068, 34.0902733398776]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;242&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 96, &quot;neighbor&quot;: 99, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.64673911019337, 34.0902733398776, -78.2566549713068, 34.21558682200368], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.64673911019337, 34.21558682200368], [-78.2566549713068, 34.0902733398776]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;243&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 97, &quot;neighbor&quot;: 99, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.2566549713068, 34.0902733398776, -77.90239283469771, 34.2172010123703], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.90239283469771, 34.2172010123703], [-78.2566549713068, 34.0902733398776]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;244&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 98, &quot;neighbor&quot;: 99, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
       "\n",
       "        \n",
       "    \n",
       "    geo_json_73c8dd9784c176f9b04a7afc37345bc3.bindTooltip(\n",
       "    function(layer){\n",
       "    let div = L.DomUtil.create(&#x27;div&#x27;);\n",
       "    \n",
       "    let handleObject = feature=&gt;typeof(feature)==&#x27;object&#x27; ? JSON.stringify(feature) : feature;\n",
       "    let fields = [&quot;focal&quot;, &quot;neighbor&quot;, &quot;weight&quot;];\n",
       "    let aliases = [&quot;focal&quot;, &quot;neighbor&quot;, &quot;weight&quot;];\n",
       "    let table = &#x27;&lt;table&gt;&#x27; +\n",
       "        String(\n",
       "        fields.map(\n",
       "        (v,i)=&gt;\n",
       "        `&lt;tr&gt;\n",
       "            &lt;th&gt;${aliases[i]}&lt;/th&gt;\n",
       "            \n",
       "            &lt;td&gt;${handleObject(layer.feature.properties[v])}&lt;/td&gt;\n",
       "        &lt;/tr&gt;`).join(&#x27;&#x27;))\n",
       "    +&#x27;&lt;/table&gt;&#x27;;\n",
       "    div.innerHTML=table;\n",
       "    \n",
       "    return div\n",
       "    }\n",
       "    ,{&quot;className&quot;: &quot;foliumtooltip&quot;, &quot;sticky&quot;: true});\n",
       "                     \n",
       "    \n",
       "            geo_json_73c8dd9784c176f9b04a7afc37345bc3.addTo(map_4e4cc50555d29d4cafe90d8dcbfd79b9);\n",
       "        \n",
       "    \n",
       "        function geo_json_9321cc9768d36fdf050b22435320978c_styler(feature) {\n",
       "            switch(feature.id) {\n",
       "                default:\n",
       "                    return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;black&quot;, &quot;fillOpacity&quot;: 0.5, &quot;weight&quot;: 2};\n",
       "            }\n",
       "        }\n",
       "        function geo_json_9321cc9768d36fdf050b22435320978c_highlighter(feature) {\n",
       "            switch(feature.id) {\n",
       "                default:\n",
       "                    return {&quot;fillOpacity&quot;: 0.75};\n",
       "            }\n",
       "        }\n",
       "        function geo_json_9321cc9768d36fdf050b22435320978c_pointToLayer(feature, latlng) {\n",
       "            var opts = {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3388ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#3388ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 2, &quot;stroke&quot;: true, &quot;weight&quot;: 3};\n",
       "            \n",
       "            let style = geo_json_9321cc9768d36fdf050b22435320978c_styler(feature)\n",
       "            Object.assign(opts, style)\n",
       "            \n",
       "            return new L.CircleMarker(latlng, opts)\n",
       "        }\n",
       "\n",
       "        function geo_json_9321cc9768d36fdf050b22435320978c_onEachFeature(feature, layer) {\n",
       "            layer.on({\n",
       "                mouseout: function(e) {\n",
       "                    if(typeof e.target.setStyle === &quot;function&quot;){\n",
       "                        geo_json_9321cc9768d36fdf050b22435320978c.resetStyle(e.target);\n",
       "                    }\n",
       "                },\n",
       "                mouseover: function(e) {\n",
       "                    if(typeof e.target.setStyle === &quot;function&quot;){\n",
       "                        const highlightStyle = geo_json_9321cc9768d36fdf050b22435320978c_highlighter(e.target.feature)\n",
       "                        e.target.setStyle(highlightStyle);\n",
       "                    }\n",
       "                },\n",
       "            });\n",
       "        };\n",
       "        var geo_json_9321cc9768d36fdf050b22435320978c = L.geoJson(null, {\n",
       "                onEachFeature: geo_json_9321cc9768d36fdf050b22435320978c_onEachFeature,\n",
       "            \n",
       "                style: geo_json_9321cc9768d36fdf050b22435320978c_styler,\n",
       "                pointToLayer: geo_json_9321cc9768d36fdf050b22435320978c_pointToLayer,\n",
       "        });\n",
       "\n",
       "        function geo_json_9321cc9768d36fdf050b22435320978c_add (data) {\n",
       "            geo_json_9321cc9768d36fdf050b22435320978c\n",
       "                .addData(data);\n",
       "        }\n",
       "            geo_json_9321cc9768d36fdf050b22435320978c_add({&quot;bbox&quot;: [-84.0321893966368, 34.0902733398776, -75.87201533024219, 36.47409386901486], &quot;features&quot;: [{&quot;bbox&quot;: [-81.49548148653162, 36.420388562634756, -81.49548148653162, 36.420388562634756], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.49548148653162, 36.420388562634756], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 0}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.13220542827582, 36.47409386901486, -81.13220542827582, 36.47409386901486], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.13220542827582, 36.47409386901486], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;1&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.69283730965327, 36.38789612168756, -80.69283730965327, 36.38789612168756], &quot;geometry&quot;: {&quot;coordinates&quot;: [-80.69283730965327, 36.38789612168756], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;2&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 2}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-75.93765003734005, 36.305372474455865, -75.93765003734005, 36.305372474455865], &quot;geometry&quot;: {&quot;coordinates&quot;: [-75.93765003734005, 36.305372474455865], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;3&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 3}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.37246171928803, 36.346271292404964, -77.37246171928803, 36.346271292404964], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.37246171928803, 36.346271292404964], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;4&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 4}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.99851152335646, 36.35951639232211, -76.99851152335646, 36.35951639232211], &quot;geometry&quot;: {&quot;coordinates&quot;: [-76.99851152335646, 36.35951639232211], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;5&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 5}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.19502280601716, 36.369675590406956, -76.19502280601716, 36.369675590406956], &quot;geometry&quot;: {&quot;coordinates&quot;: [-76.19502280601716, 36.369675590406956], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;6&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 6}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.71802675073793, 36.43099711652998, -76.71802675073793, 36.43099711652998], &quot;geometry&quot;: {&quot;coordinates&quot;: [-76.71802675073793, 36.43099711652998], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;7&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 7}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.11408945025987, 36.431574192838355, -78.11408945025987, 36.431574192838355], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.11408945025987, 36.431574192838355], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;8&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 8}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.23456192640865, 36.401227370972855, -80.23456192640865, 36.401227370972855], &quot;geometry&quot;: {&quot;coordinates&quot;: [-80.23456192640865, 36.401227370972855], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;9&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 9}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.33606772948953, 36.394472390737356, -79.33606772948953, 36.394472390737356], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.33606772948953, 36.394472390737356], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;10&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 10}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.77276476728454, 36.39578671196982, -79.77276476728454, 36.39578671196982], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.77276476728454, 36.39578671196982], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;11&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 11}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.65955245707339, 36.3465746028161, -78.65955245707339, 36.3465746028161], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.65955245707339, 36.3465746028161], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;12&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 12}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.97676286158412, 36.38895351245035, -78.97676286158412, 36.38895351245035], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.97676286158412, 36.38895351245035], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;13&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 13}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.40588759239012, 36.37686581999349, -78.40588759239012, 36.37686581999349], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.40588759239012, 36.37686581999349], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;14&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 14}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.67958234541625, 36.25616892305704, -77.67958234541625, 36.25616892305704], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.67958234541625, 36.25616892305704], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;15&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 15}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.3082408976784, 36.32482355505354, -76.3082408976784, 36.32482355505354], &quot;geometry&quot;: {&quot;coordinates&quot;: [-76.3082408976784, 36.32482355505354], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;16&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 16}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.1680924257293, 36.212591058235546, -81.1680924257293, 36.212591058235546], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.1680924257293, 36.212591058235546], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;17&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 17}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.70133643506227, 36.250751216087075, -81.70133643506227, 36.250751216087075], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.70133643506227, 36.250751216087075], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;18&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 18}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.45111569351359, 36.22728328016211, -76.45111569351359, 36.22728328016211], &quot;geometry&quot;: {&quot;coordinates&quot;: [-76.45111569351359, 36.22728328016211], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;19&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 19}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.65150188131545, 36.19801271093677, -76.65150188131545, 36.19801271093677], &quot;geometry&quot;: {&quot;coordinates&quot;: [-76.65150188131545, 36.19801271093677], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;20&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 20}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.91995341116828, 36.0793186797884, -81.91995341116828, 36.0793186797884], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.91995341116828, 36.0793186797884], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;21&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 21}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.65910549496982, 36.17220768865046, -80.65910549496982, 36.17220768865046], &quot;geometry&quot;: {&quot;coordinates&quot;: [-80.65910549496982, 36.17220768865046], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;22&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 22}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.33218415595869, 36.04481979569061, -78.33218415595869, 36.04481979569061], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.33218415595869, 36.04481979569061], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;23&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 23}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.25053372049967, 36.1143389052351, -80.25053372049967, 36.1143389052351], &quot;geometry&quot;: {&quot;coordinates&quot;: [-80.25053372049967, 36.1143389052351], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;24&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 24}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.78257703120624, 36.121425443650615, -79.78257703120624, 36.121425443650615], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.78257703120624, 36.121425443650615], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;25&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 25}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.40062842768751, 35.97812907941472, -79.40062842768751, 35.97812907941472], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.40062842768751, 35.97812907941472], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;26&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 26}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.00034832803134, 36.02838211402072, -77.00034832803134, 36.02838211402072], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.00034832803134, 36.02838211402072], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;27&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 27}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.13156582724993, 35.974239868231855, -79.13156582724993, 35.974239868231855], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.13156582724993, 35.974239868231855], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;28&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 28}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.86743923985517, 36.046624468880886, -78.86743923985517, 36.046624468880886], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.86743923985517, 36.046624468880886], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;29&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 29}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.98657016102852, 35.93822583107635, -77.98657016102852, 35.93822583107635], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.98657016102852, 35.93822583107635], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;30&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 30}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.12248353999284, 35.975969205859286, -82.12248353999284, 35.975969205859286], &quot;geometry&quot;: {&quot;coordinates&quot;: [-82.12248353999284, 35.975969205859286], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;31&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 31}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.5816426130457, 35.88136990275862, -77.5816426130457, 35.88136990275862], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.5816426130457, 35.88136990275862], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;32&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 32}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.5564902506844, 35.93679745767059, -81.5564902506844, 35.93679745767059], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.5564902506844, 35.93679745767059], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;33&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 33}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.29878534140809, 35.891263191643226, -82.29878534140809, 35.891263191643226], &quot;geometry&quot;: {&quot;coordinates&quot;: [-82.29878534140809, 35.891263191643226], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;34&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 34}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.1263213146242, 35.85241144553857, -77.1263213146242, 35.85241144553857], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.1263213146242, 35.85241144553857], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;35&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 35}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.61963768303745, 35.793718523235434, -78.61963768303745, 35.793718523235434], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.61963768303745, 35.793718523235434], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;36&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 36}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.67626610534305, 35.84307981796387, -82.67626610534305, 35.84307981796387], &quot;geometry&quot;: {&quot;coordinates&quot;: [-82.67626610534305, 35.84307981796387], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;37&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 37}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.90101493959926, 35.803923095003206, -80.90101493959926, 35.803923095003206], &quot;geometry&quot;: {&quot;coordinates&quot;: [-80.90101493959926, 35.803923095003206], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;38&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 38}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.53127816956352, 35.91976543237011, -80.53127816956352, 35.91976543237011], &quot;geometry&quot;: {&quot;coordinates&quot;: [-80.53127816956352, 35.91976543237011], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;39&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 39}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.17936093491355, 35.90285493694586, -81.17936093491355, 35.90285493694586], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.17936093491355, 35.90285493694586], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;40&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 40}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.25600741309485, 35.7744010641556, -80.25600741309485, 35.7744010641556], &quot;geometry&quot;: {&quot;coordinates&quot;: [-80.25600741309485, 35.7744010641556], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;41&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 41}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.6825329190607, 35.764754813596575, -81.6825329190607, 35.764754813596575], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.6825329190607, 35.764754813596575], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;42&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 42}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.59090273018614, 35.82771455327548, -76.59090273018614, 35.82771455327548], &quot;geometry&quot;: {&quot;coordinates&quot;: [-76.59090273018614, 35.82771455327548], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;43&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 43}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.22124491320736, 35.81868673514218, -76.22124491320736, 35.81868673514218], &quot;geometry&quot;: {&quot;coordinates&quot;: [-76.22124491320736, 35.81868673514218], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;44&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 44}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.04339606088747, 35.74009996280318, -82.04339606088747, 35.74009996280318], &quot;geometry&quot;: {&quot;coordinates&quot;: [-82.04339606088747, 35.74009996280318], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;45&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 45}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.80167663908625, 35.67781301100719, -79.80167663908625, 35.67781301100719], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.80167663908625, 35.67781301100719], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;46&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 46}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.25597874115246, 35.69646335850461, -79.25597874115246, 35.69646335850461], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.25597874115246, 35.69646335850461], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;47&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 47}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.93835602935111, 35.711426153089995, -77.93835602935111, 35.711426153089995], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.93835602935111, 35.711426153089995], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;48&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 48}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.53283827506755, 35.659772053128975, -80.53283827506755, 35.659772053128975], &quot;geometry&quot;: {&quot;coordinates&quot;: [-80.53283827506755, 35.659772053128975], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;49&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 49}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.3643519229068, 35.56915865033354, -77.3643519229068, 35.56915865033354], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.3643519229068, 35.56915865033354], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;50&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 50}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.20636795501596, 35.65815642455532, -81.20636795501596, 35.65815642455532], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.20636795501596, 35.65815642455532], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;51&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 51}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.54208536355003, 35.61935866399454, -82.54208536355003, 35.61935866399454], &quot;geometry&quot;: {&quot;coordinates&quot;: [-82.54208536355003, 35.61935866399454], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;52&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 52}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.3703938075336, 35.55111267356497, -78.3703938075336, 35.55111267356497], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.3703938075336, 35.55111267356497], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;53&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 53}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.96803136678908, 35.54228494433707, -82.96803136678908, 35.54228494433707], &quot;geometry&quot;: {&quot;coordinates&quot;: [-82.96803136678908, 35.54228494433707], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;54&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 54}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-75.87201533024219, 35.773009234143785, -75.87201533024219, 35.773009234143785], &quot;geometry&quot;: {&quot;coordinates&quot;: [-75.87201533024219, 35.773009234143785], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;55&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 55}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.80756743037757, 35.56410582410714, -76.80756743037757, 35.56410582410714], &quot;geometry&quot;: {&quot;coordinates&quot;: [-76.80756743037757, 35.56410582410714], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;56&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 56}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.60490348252915, 35.47586812816397, -83.60490348252915, 35.47586812816397], &quot;geometry&quot;: {&quot;coordinates&quot;: [-83.60490348252915, 35.47586812816397], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;57&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 57}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.66626580682512, 35.498952507618, -77.66626580682512, 35.498952507618], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.66626580682512, 35.498952507618], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;58&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 58}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.19208992681638, 35.45539941067479, -79.19208992681638, 35.45539941067479], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.19208992681638, 35.45539941067479], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;59&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 59}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.91432326401467, 35.39340997905669, -81.91432326401467, 35.39340997905669], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.91432326401467, 35.39340997905669], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;60&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 60}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.97787880182456, 35.38765571678414, -77.97787880182456, 35.38765571678414], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.97787880182456, 35.38765571678414], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;61&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 61}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.83973208503795, 35.37487380360481, -78.83973208503795, 35.37487380360481], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.83973208503795, 35.37487380360481], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;62&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 62}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.56095654230508, 35.38603832932577, -81.56095654230508, 35.38603832932577], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.56095654230508, 35.38603832932577], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;63&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 63}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.21835056524885, 35.479939019175795, -81.21835056524885, 35.479939019175795], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.21835056524885, 35.479939019175795], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;64&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 64}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.11150471676939, 35.24830652006442, -83.11150471676939, 35.24830652006442], &quot;geometry&quot;: {&quot;coordinates&quot;: [-83.11150471676939, 35.24830652006442], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;65&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 65}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.45977217261137, 35.27206243636648, -79.45977217261137, 35.27206243636648], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.45977217261137, 35.27206243636648], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;66&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 66}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.82735715242157, 35.25740486354764, -80.82735715242157, 35.25740486354764], &quot;geometry&quot;: {&quot;coordinates&quot;: [-80.82735715242157, 35.25740486354764], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;67&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 67}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.5547048031675, 35.36297645265597, -80.5547048031675, 35.36297645265597], &quot;geometry&quot;: {&quot;coordinates&quot;: [-80.5547048031675, 35.36297645265597], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;68&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 68}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.89606682644703, 35.327431460158316, -79.89606682644703, 35.327431460158316], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.89606682644703, 35.327431460158316], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;69&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 69}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.24127152466903, 35.33009083353577, -80.24127152466903, 35.33009083353577], &quot;geometry&quot;: {&quot;coordinates&quot;: [-80.24127152466903, 35.33009083353577], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;70&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 70}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.47671294559912, 35.34931942462325, -82.47671294559912, 35.34931942462325], &quot;geometry&quot;: {&quot;coordinates&quot;: [-82.47671294559912, 35.34931942462325], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;71&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 71}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.81944500863986, 35.34389325773047, -83.81944500863986, 35.34389325773047], &quot;geometry&quot;: {&quot;coordinates&quot;: [-83.81944500863986, 35.34389325773047], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;72&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 72}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.67721341139872, 35.20020763197254, -77.67721341139872, 35.20020763197254], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.67721341139872, 35.20020763197254], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;73&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 73}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.77267464488618, 35.20959213861049, -82.77267464488618, 35.20959213861049], &quot;geometry&quot;: {&quot;coordinates&quot;: [-82.77267464488618, 35.20959213861049], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;74&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 74}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.17736882425847, 35.293139601003844, -81.17736882425847, 35.293139601003844], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.17736882425847, 35.293139601003844], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;75&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 75}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.17699252199117, 35.2991253887554, -82.17699252199117, 35.2991253887554], &quot;geometry&quot;: {&quot;coordinates&quot;: [-82.17699252199117, 35.2991253887554], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;76&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 76}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.47193852539337, 35.169995453707, -83.47193852539337, 35.169995453707], &quot;geometry&quot;: {&quot;coordinates&quot;: [-83.47193852539337, 35.169995453707], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;77&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 77}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.35673975816896, 34.922356132333654, -78.35673975816896, 34.922356132333654], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.35673975816896, 34.922356132333654], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;78&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 78}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.79515102455096, 35.14908744570476, -76.79515102455096, 35.14908744570476], &quot;geometry&quot;: {&quot;coordinates&quot;: [-76.79515102455096, 35.14908744570476], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;79&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 79}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-84.0321893966368, 35.14015600385817, -84.0321893966368, 35.14015600385817], &quot;geometry&quot;: {&quot;coordinates&quot;: [-84.0321893966368, 35.14015600385817], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;80&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 80}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.87810448081477, 35.054813025646546, -78.87810448081477, 35.054813025646546], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.87810448081477, 35.054813025646546], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;81&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 81}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.39905531467014, 35.012407955304155, -77.39905531467014, 35.012407955304155], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.39905531467014, 35.012407955304155], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;82&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 82}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.55885768683369, 35.01444375932666, -80.55885768683369, 35.01444375932666], &quot;geometry&quot;: {&quot;coordinates&quot;: [-80.55885768683369, 35.01444375932666], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;83&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 83}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.09124626604962, 34.989241505841214, -80.09124626604962, 34.989241505841214], &quot;geometry&quot;: {&quot;coordinates&quot;: [-80.09124626604962, 34.989241505841214], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;84&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 84}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.25113955330204, 35.01438406556255, -79.25113955330204, 35.01438406556255], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.25113955330204, 35.01438406556255], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;85&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 85}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.21757613206822, 35.51854028682398, -76.21757613206822, 35.51854028682398], &quot;geometry&quot;: {&quot;coordinates&quot;: [-76.21757613206822, 35.51854028682398], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;86&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 86}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.90798830403743, 34.949151043248946, -77.90798830403743, 34.949151043248946], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.90798830403743, 34.949151043248946], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;87&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 87}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.72202064037224, 34.99102766751888, -79.72202064037224, 34.99102766751888], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.72202064037224, 34.99102766751888], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;88&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 88}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.75265358254363, 35.06359077255187, -83.75265358254363, 35.06359077255187], &quot;geometry&quot;: {&quot;coordinates&quot;: [-83.75265358254363, 35.06359077255187], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;89&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 89}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.18804707266813, 35.238638759898045, -77.18804707266813, 35.238638759898045], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.18804707266813, 35.238638759898045], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;90&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 90}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.47844550242344, 34.82678725757952, -79.47844550242344, 34.82678725757952], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.47844550242344, 34.82678725757952], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;91&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 91}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.41302012730806, 34.74238011850433, -77.41302012730806, 34.74238011850433], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.41302012730806, 34.74238011850433], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;92&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 92}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.12198368689681, 34.6599186266382, -79.12198368689681, 34.6599186266382], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.12198368689681, 34.6599186266382], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;93&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 93}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.54395923944259, 34.86427750937366, -76.54395923944259, 34.86427750937366], &quot;geometry&quot;: {&quot;coordinates&quot;: [-76.54395923944259, 34.86427750937366], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;94&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 94}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.56996079307251, 34.62312080120418, -78.56996079307251, 34.62312080120418], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.56996079307251, 34.62312080120418], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;95&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 95}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.9245658269991, 34.509697709519855, -77.9245658269991, 34.509697709519855], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.9245658269991, 34.509697709519855], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;96&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 96}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.64673911019337, 34.21558682200368, -78.64673911019337, 34.21558682200368], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.64673911019337, 34.21558682200368], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;97&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 97}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.90239283469771, 34.2172010123703, -77.90239283469771, 34.2172010123703], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.90239283469771, 34.2172010123703], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;98&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 98}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.2566549713068, 34.0902733398776, -78.2566549713068, 34.0902733398776], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.2566549713068, 34.0902733398776], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;99&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 99}, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
       "\n",
       "        \n",
       "    \n",
       "    geo_json_9321cc9768d36fdf050b22435320978c.bindTooltip(\n",
       "    function(layer){\n",
       "    let div = L.DomUtil.create(&#x27;div&#x27;);\n",
       "    \n",
       "    let handleObject = feature=&gt;typeof(feature)==&#x27;object&#x27; ? JSON.stringify(feature) : feature;\n",
       "    let fields = [&quot;focal&quot;];\n",
       "    let aliases = [&quot;focal&quot;];\n",
       "    let table = &#x27;&lt;table&gt;&#x27; +\n",
       "        String(\n",
       "        fields.map(\n",
       "        (v,i)=&gt;\n",
       "        `&lt;tr&gt;\n",
       "            &lt;th&gt;${aliases[i]}&lt;/th&gt;\n",
       "            \n",
       "            &lt;td&gt;${handleObject(layer.feature.properties[v])}&lt;/td&gt;\n",
       "        &lt;/tr&gt;`).join(&#x27;&#x27;))\n",
       "    +&#x27;&lt;/table&gt;&#x27;;\n",
       "    div.innerHTML=table;\n",
       "    \n",
       "    return div\n",
       "    }\n",
       "    ,{&quot;className&quot;: &quot;foliumtooltip&quot;, &quot;sticky&quot;: true});\n",
       "                     \n",
       "    \n",
       "            geo_json_9321cc9768d36fdf050b22435320978c.addTo(map_4e4cc50555d29d4cafe90d8dcbfd79b9);\n",
       "        \n",
       "&lt;/script&gt;\n",
       "&lt;/html&gt;\" style=\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>"
      ],
      "text/plain": [
       "<folium.folium.Map at 0x7fd868584c80>"
      ]
     },
     "execution_count": 36,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "m = gdf.explore(tiles=\"CartoDB Positron\")\n",
    "g_queen.explore(gdf, m=m)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "b44a171d-d458-4773-859f-00eef92aea6e",
   "metadata": {},
   "source": [
    "This can be leveraged to look at the spatial distribution of the cardinalities, for example:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 37,
   "id": "8cfb4407-c8a3-4e87-a634-e5b993436a74",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "focal\n",
       "0     3\n",
       "1     3\n",
       "2     5\n",
       "3     2\n",
       "4     4\n",
       "     ..\n",
       "95    5\n",
       "96    7\n",
       "97    4\n",
       "98    2\n",
       "99    3\n",
       "Name: cardinalities, Length: 100, dtype: int64"
      ]
     },
     "execution_count": 37,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g_queen.cardinalities"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 38,
   "id": "5ebf7c0d-f74d-4345-b6ab-d71a2cab197b",
   "metadata": {},
   "outputs": [],
   "source": [
    "gdf[\"cardinalities\"] = g_queen.cardinalities"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 39,
   "id": "2359c40d-bb0d-4823-aca5-5a46fba40192",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<div style=\"width:100%;\"><div style=\"position:relative;width:100%;height:0;padding-bottom:60%;\"><span style=\"color:#565656\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\"&lt;!DOCTYPE html&gt;\n",
       "&lt;html&gt;\n",
       "&lt;head&gt;\n",
       "    \n",
       "    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\n",
       "    \n",
       "        &lt;script&gt;\n",
       "            L_NO_TOUCH = false;\n",
       "            L_DISABLE_3D = false;\n",
       "        &lt;/script&gt;\n",
       "    \n",
       "    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\n",
       "    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\n",
       "    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\n",
       "    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\n",
       "    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\n",
       "    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\n",
       "    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\n",
       "    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\n",
       "    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css&quot;/&gt;\n",
       "    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\n",
       "    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\n",
       "    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\n",
       "    \n",
       "            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\n",
       "                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\n",
       "            &lt;style&gt;\n",
       "                #map_ad02ee3d04f42ff062355e0b20b7f04f {\n",
       "                    position: relative;\n",
       "                    width: 100.0%;\n",
       "                    height: 100.0%;\n",
       "                    left: 0.0%;\n",
       "                    top: 0.0%;\n",
       "                }\n",
       "                .leaflet-container { font-size: 1rem; }\n",
       "            &lt;/style&gt;\n",
       "        \n",
       "    \n",
       "                    &lt;style&gt;\n",
       "                        .foliumtooltip {\n",
       "                            \n",
       "                        }\n",
       "                       .foliumtooltip table{\n",
       "                            margin: auto;\n",
       "                        }\n",
       "                        .foliumtooltip tr{\n",
       "                            text-align: left;\n",
       "                        }\n",
       "                        .foliumtooltip th{\n",
       "                            padding: 2px; padding-right: 8px;\n",
       "                        }\n",
       "                    &lt;/style&gt;\n",
       "            \n",
       "    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\n",
       "    \n",
       "                    &lt;style&gt;\n",
       "                        .foliumtooltip {\n",
       "                            \n",
       "                        }\n",
       "                       .foliumtooltip table{\n",
       "                            margin: auto;\n",
       "                        }\n",
       "                        .foliumtooltip tr{\n",
       "                            text-align: left;\n",
       "                        }\n",
       "                        .foliumtooltip th{\n",
       "                            padding: 2px; padding-right: 8px;\n",
       "                        }\n",
       "                    &lt;/style&gt;\n",
       "            \n",
       "    \n",
       "                    &lt;style&gt;\n",
       "                        .foliumtooltip {\n",
       "                            \n",
       "                        }\n",
       "                       .foliumtooltip table{\n",
       "                            margin: auto;\n",
       "                        }\n",
       "                        .foliumtooltip tr{\n",
       "                            text-align: left;\n",
       "                        }\n",
       "                        .foliumtooltip th{\n",
       "                            padding: 2px; padding-right: 8px;\n",
       "                        }\n",
       "                    &lt;/style&gt;\n",
       "            \n",
       "&lt;/head&gt;\n",
       "&lt;body&gt;\n",
       "    \n",
       "    \n",
       "            &lt;div class=&quot;folium-map&quot; id=&quot;map_ad02ee3d04f42ff062355e0b20b7f04f&quot; &gt;&lt;/div&gt;\n",
       "        \n",
       "&lt;/body&gt;\n",
       "&lt;script&gt;\n",
       "    \n",
       "    \n",
       "            var map_ad02ee3d04f42ff062355e0b20b7f04f = L.map(\n",
       "                &quot;map_ad02ee3d04f42ff062355e0b20b7f04f&quot;,\n",
       "                {\n",
       "                    center: [35.235820770263665, -79.89041519165039],\n",
       "                    crs: L.CRS.EPSG3857,\n",
       "                    zoom: 10,\n",
       "                    zoomControl: true,\n",
       "                    preferCanvas: false,\n",
       "                }\n",
       "            );\n",
       "            L.control.scale().addTo(map_ad02ee3d04f42ff062355e0b20b7f04f);\n",
       "\n",
       "            \n",
       "\n",
       "        \n",
       "    \n",
       "            var tile_layer_875ae0bf29a2a8ef75afe39ab0b27bcd = L.tileLayer(\n",
       "                &quot;https://a.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png&quot;,\n",
       "                {&quot;attribution&quot;: &quot;\\u0026copy; \\u003ca href=\\&quot;https://www.openstreetmap.org/copyright\\&quot;\\u003eOpenStreetMap\\u003c/a\\u003e contributors \\u0026copy; \\u003ca href=\\&quot;https://carto.com/attributions\\&quot;\\u003eCARTO\\u003c/a\\u003e&quot;, &quot;detectRetina&quot;: false, &quot;maxNativeZoom&quot;: 20, &quot;maxZoom&quot;: 20, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\n",
       "            );\n",
       "        \n",
       "    \n",
       "            tile_layer_875ae0bf29a2a8ef75afe39ab0b27bcd.addTo(map_ad02ee3d04f42ff062355e0b20b7f04f);\n",
       "        \n",
       "    \n",
       "            map_ad02ee3d04f42ff062355e0b20b7f04f.fitBounds(\n",
       "                [[33.88199234008788, -84.3238525390625], [36.589649200439446, -75.45697784423828]],\n",
       "                {}\n",
       "            );\n",
       "        \n",
       "    \n",
       "        function geo_json_b1775bee21c704ce2c0b465ad749e42b_styler(feature) {\n",
       "            switch(feature.id) {\n",
       "                case &quot;0&quot;: case &quot;1&quot;: case &quot;5&quot;: case &quot;6&quot;: case &quot;14&quot;: case &quot;16&quot;: case &quot;19&quot;: case &quot;31&quot;: case &quot;37&quot;: case &quot;59&quot;: case &quot;72&quot;: case &quot;75&quot;: case &quot;80&quot;: case &quot;94&quot;: case &quot;99&quot;: \n",
       "                    return {&quot;color&quot;: &quot;#46327e&quot;, &quot;fillColor&quot;: &quot;#46327e&quot;, &quot;fillOpacity&quot;: 0.5, &quot;weight&quot;: 2};\n",
       "                case &quot;2&quot;: case &quot;7&quot;: case &quot;8&quot;: case &quot;11&quot;: case &quot;12&quot;: case &quot;21&quot;: case &quot;22&quot;: case &quot;27&quot;: case &quot;28&quot;: case &quot;29&quot;: case &quot;32&quot;: case &quot;39&quot;: case &quot;43&quot;: case &quot;63&quot;: case &quot;67&quot;: case &quot;68&quot;: case &quot;71&quot;: case &quot;77&quot;: case &quot;82&quot;: case &quot;85&quot;: case &quot;88&quot;: case &quot;93&quot;: case &quot;95&quot;: \n",
       "                    return {&quot;color&quot;: &quot;#277f8e&quot;, &quot;fillColor&quot;: &quot;#277f8e&quot;, &quot;fillOpacity&quot;: 0.5, &quot;weight&quot;: 2};\n",
       "                case &quot;3&quot;: case &quot;20&quot;: case &quot;44&quot;: case &quot;55&quot;: case &quot;76&quot;: case &quot;79&quot;: case &quot;89&quot;: case &quot;98&quot;: \n",
       "                    return {&quot;color&quot;: &quot;#440154&quot;, &quot;fillColor&quot;: &quot;#440154&quot;, &quot;fillOpacity&quot;: 0.5, &quot;weight&quot;: 2};\n",
       "                case &quot;15&quot;: case &quot;23&quot;: case &quot;24&quot;: case &quot;30&quot;: case &quot;36&quot;: case &quot;41&quot;: case &quot;42&quot;: case &quot;50&quot;: case &quot;52&quot;: case &quot;53&quot;: case &quot;62&quot;: case &quot;69&quot;: case &quot;78&quot;: case &quot;96&quot;: \n",
       "                    return {&quot;color&quot;: &quot;#4ac16d&quot;, &quot;fillColor&quot;: &quot;#4ac16d&quot;, &quot;fillOpacity&quot;: 0.5, &quot;weight&quot;: 2};\n",
       "                case &quot;17&quot;: case &quot;47&quot;: \n",
       "                    return {&quot;color&quot;: &quot;#a0da39&quot;, &quot;fillColor&quot;: &quot;#a0da39&quot;, &quot;fillOpacity&quot;: 0.5, &quot;weight&quot;: 2};\n",
       "                case &quot;25&quot;: case &quot;26&quot;: case &quot;33&quot;: case &quot;35&quot;: case &quot;45&quot;: case &quot;46&quot;: case &quot;48&quot;: case &quot;49&quot;: case &quot;51&quot;: case &quot;54&quot;: case &quot;56&quot;: case &quot;60&quot;: case &quot;61&quot;: case &quot;64&quot;: case &quot;70&quot;: case &quot;73&quot;: case &quot;81&quot;: case &quot;87&quot;: case &quot;90&quot;: \n",
       "                    return {&quot;color&quot;: &quot;#1fa187&quot;, &quot;fillColor&quot;: &quot;#1fa187&quot;, &quot;fillOpacity&quot;: 0.5, &quot;weight&quot;: 2};\n",
       "                case &quot;38&quot;: case &quot;66&quot;: \n",
       "                    return {&quot;color&quot;: &quot;#fde725&quot;, &quot;fillColor&quot;: &quot;#fde725&quot;, &quot;fillOpacity&quot;: 0.5, &quot;weight&quot;: 2};\n",
       "                default:\n",
       "                    return {&quot;color&quot;: &quot;#365c8d&quot;, &quot;fillColor&quot;: &quot;#365c8d&quot;, &quot;fillOpacity&quot;: 0.5, &quot;weight&quot;: 2};\n",
       "            }\n",
       "        }\n",
       "        function geo_json_b1775bee21c704ce2c0b465ad749e42b_highlighter(feature) {\n",
       "            switch(feature.id) {\n",
       "                default:\n",
       "                    return {&quot;fillOpacity&quot;: 0.75};\n",
       "            }\n",
       "        }\n",
       "        function geo_json_b1775bee21c704ce2c0b465ad749e42b_pointToLayer(feature, latlng) {\n",
       "            var opts = {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3388ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#3388ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 2, &quot;stroke&quot;: true, &quot;weight&quot;: 3};\n",
       "            \n",
       "            let style = geo_json_b1775bee21c704ce2c0b465ad749e42b_styler(feature)\n",
       "            Object.assign(opts, style)\n",
       "            \n",
       "            return new L.CircleMarker(latlng, opts)\n",
       "        }\n",
       "\n",
       "        function geo_json_b1775bee21c704ce2c0b465ad749e42b_onEachFeature(feature, layer) {\n",
       "            layer.on({\n",
       "                mouseout: function(e) {\n",
       "                    if(typeof e.target.setStyle === &quot;function&quot;){\n",
       "                        geo_json_b1775bee21c704ce2c0b465ad749e42b.resetStyle(e.target);\n",
       "                    }\n",
       "                },\n",
       "                mouseover: function(e) {\n",
       "                    if(typeof e.target.setStyle === &quot;function&quot;){\n",
       "                        const highlightStyle = geo_json_b1775bee21c704ce2c0b465ad749e42b_highlighter(e.target.feature)\n",
       "                        e.target.setStyle(highlightStyle);\n",
       "                    }\n",
       "                },\n",
       "            });\n",
       "        };\n",
       "        var geo_json_b1775bee21c704ce2c0b465ad749e42b = L.geoJson(null, {\n",
       "                onEachFeature: geo_json_b1775bee21c704ce2c0b465ad749e42b_onEachFeature,\n",
       "            \n",
       "                style: geo_json_b1775bee21c704ce2c0b465ad749e42b_styler,\n",
       "                pointToLayer: geo_json_b1775bee21c704ce2c0b465ad749e42b_pointToLayer,\n",
       "        });\n",
       "\n",
       "        function geo_json_b1775bee21c704ce2c0b465ad749e42b_add (data) {\n",
       "            geo_json_b1775bee21c704ce2c0b465ad749e42b\n",
       "                .addData(data);\n",
       "        }\n",
       "            geo_json_b1775bee21c704ce2c0b465ad749e42b_add({&quot;bbox&quot;: [-84.3238525390625, 33.88199234008788, -75.45697784423828, 36.589649200439446], &quot;features&quot;: [{&quot;bbox&quot;: [-81.74107360839844, 36.23435592651367, -81.2398910522461, 36.589649200439446], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.4727554321289, 36.23435592651367], [-81.5408401489258, 36.27250671386719], [-81.56198120117188, 36.2735939025879], [-81.63306427001953, 36.3406867980957], [-81.74107360839844, 36.39178466796875], [-81.69828033447266, 36.4717788696289], [-81.70279693603516, 36.51934051513671], [-81.66999816894531, 36.589649200439446], [-81.34529876708984, 36.5728645324707], [-81.34754180908203, 36.53791427612304], [-81.32477569580078, 36.51367950439453], [-81.31332397460938, 36.48069763183594], [-81.2662353515625, 36.43720626831055], [-81.2628402709961, 36.40504074096678], [-81.24069213867188, 36.37941741943359], [-81.2398910522461, 36.36536407470704], [-81.26424407958984, 36.352413177490234], [-81.32899475097656, 36.363502502441406], [-81.36137390136719, 36.353160858154304], [-81.36569213867188, 36.33905029296874], [-81.35413360595703, 36.29971694946288], [-81.3674545288086, 36.2786979675293], [-81.40638732910156, 36.28505325317382], [-81.4123306274414, 36.26729202270508], [-81.43103790283203, 36.260719299316406], [-81.45288848876953, 36.239585876464844], [-81.4727554321289, 36.23435592651367]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.114, &quot;BIR74&quot;: 1091.0, &quot;BIR79&quot;: 1364.0, &quot;CNTY_&quot;: 1825, &quot;CNTY_ID&quot;: 1825, &quot;CRESS_ID&quot;: 5, &quot;FIPS&quot;: &quot;37009&quot;, &quot;FIPSNO&quot;: 37009, &quot;NAME&quot;: &quot;Ashe&quot;, &quot;NWBIR74&quot;: 10.0, &quot;NWBIR79&quot;: 19.0, &quot;NWR74&quot;: 9.165903, &quot;NWR79&quot;: 13.929619, &quot;PERIMETER&quot;: 1.442, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 0.91659, &quot;SIDR79&quot;: 0.0, &quot;__folium_color&quot;: &quot;#46327e&quot;, &quot;cardinalities&quot;: 3}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.34754180908203, 36.36536407470704, -80.9034423828125, 36.5728645324707], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.2398910522461, 36.36536407470704], [-81.24069213867188, 36.37941741943359], [-81.2628402709961, 36.40504074096678], [-81.2662353515625, 36.43720626831055], [-81.31332397460938, 36.48069763183594], [-81.32477569580078, 36.51367950439453], [-81.34754180908203, 36.53791427612304], [-81.34529876708984, 36.5728645324707], [-80.9034423828125, 36.56521224975587], [-80.93354797363283, 36.49831390380859], [-80.96577453613281, 36.467220306396484], [-80.94966888427734, 36.41473388671876], [-80.95639038085938, 36.4037971496582], [-80.97795104980469, 36.39137649536133], [-80.98284149169922, 36.37183380126953], [-81.00277709960938, 36.36668014526367], [-81.02464294433594, 36.37783432006836], [-81.04280090332031, 36.410335540771484], [-81.08425140380861, 36.4299201965332], [-81.09856414794922, 36.43115234375], [-81.11331176757812, 36.42285156249999], [-81.12937927246094, 36.42633056640625], [-81.13839721679688, 36.41762542724609], [-81.15336608886719, 36.424739837646484], [-81.17667388916016, 36.415443420410156], [-81.2398910522461, 36.36536407470704]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;1&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.061, &quot;BIR74&quot;: 487.0, &quot;BIR79&quot;: 542.0, &quot;CNTY_&quot;: 1827, &quot;CNTY_ID&quot;: 1827, &quot;CRESS_ID&quot;: 3, &quot;FIPS&quot;: &quot;37005&quot;, &quot;FIPSNO&quot;: 37005, &quot;NAME&quot;: &quot;Alleghany&quot;, &quot;NWBIR74&quot;: 10.0, &quot;NWBIR79&quot;: 12.0, &quot;NWR74&quot;: 20.533881, &quot;NWR79&quot;: 22.140221, &quot;PERIMETER&quot;: 1.231, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 3.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 5.535055, &quot;__folium_color&quot;: &quot;#46327e&quot;, &quot;cardinalities&quot;: 3}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.96577453613281, 36.23388290405273, -80.43531036376953, 36.56521224975587], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.45634460449219, 36.242557525634766], [-80.47638702392578, 36.25472640991212], [-80.53688049316406, 36.256736755371094], [-80.54501342773438, 36.27665710449219], [-80.55415344238281, 36.2784309387207], [-80.5905990600586, 36.2682762145996], [-80.62431335449219, 36.27309799194336], [-80.66744232177734, 36.24610137939452], [-80.6966552734375, 36.259090423583984], [-80.72403717041017, 36.25847244262694], [-80.73436737060547, 36.26475906372071], [-80.7525634765625, 36.25829696655273], [-80.76629638671876, 36.26183700561523], [-80.78269958496094, 36.24857711791992], [-80.87438201904297, 36.23388290405273], [-80.87086486816406, 36.324623107910156], [-80.88892364501953, 36.35442733764648], [-80.92456817626953, 36.37275314331055], [-80.95639038085938, 36.4037971496582], [-80.94966888427734, 36.41473388671876], [-80.96577453613281, 36.467220306396484], [-80.93354797363283, 36.49831390380859], [-80.9034423828125, 36.56521224975587], [-80.8381576538086, 36.56343841552734], [-80.61105346679688, 36.55729675292969], [-80.43531036376953, 36.55104446411133], [-80.45301055908205, 36.257087707519524], [-80.45634460449219, 36.242557525634766]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;2&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.143, &quot;BIR74&quot;: 3188.0, &quot;BIR79&quot;: 3616.0, &quot;CNTY_&quot;: 1828, &quot;CNTY_ID&quot;: 1828, &quot;CRESS_ID&quot;: 86, &quot;FIPS&quot;: &quot;37171&quot;, &quot;FIPSNO&quot;: 37171, &quot;NAME&quot;: &quot;Surry&quot;, &quot;NWBIR74&quot;: 208.0, &quot;NWBIR79&quot;: 260.0, &quot;NWR74&quot;: 65.244668, &quot;NWR79&quot;: 71.902655, &quot;PERIMETER&quot;: 1.63, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 6.0, &quot;SIDR74&quot;: 1.568381, &quot;SIDR79&quot;: 1.659292, &quot;__folium_color&quot;: &quot;#277f8e&quot;, &quot;cardinalities&quot;: 5}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.33025360107422, 36.072818756103516, -75.77315521240234, 36.55716323852538], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-76.00897216796875, 36.319595336914055], [-76.01734924316406, 36.33773040771483], [-76.03287506103516, 36.335975646972656], [-76.04395294189453, 36.353591918945305], [-76.09508514404297, 36.34891510009766], [-76.16092681884766, 36.39189910888672], [-76.15814971923828, 36.412689208984375], [-76.16828918457031, 36.42708587646483], [-76.33025360107422, 36.55605697631837], [-76.12739562988281, 36.55716323852538], [-76.04595947265625, 36.556953430175774], [-76.03321075439453, 36.51437377929687], [-76.091064453125, 36.50356674194335], [-75.97607421875, 36.436214447021484], [-75.96976470947266, 36.41511917114258], [-76.0016098022461, 36.418914794921875], [-75.95125579833984, 36.36547088623046], [-75.9281234741211, 36.42324447631836], [-75.92459106445312, 36.350948333740234], [-75.80005645751953, 36.112815856933594], [-75.7988510131836, 36.072818756103516], [-75.85516357421875, 36.10566711425782], [-75.91376495361328, 36.24480056762695], [-75.95751190185547, 36.259452819824205], [-75.94193267822266, 36.29433822631836], [-76.00897216796875, 36.319595336914055]]], [[[-76.02716827392578, 36.5567169189453], [-75.99866485595703, 36.55665206909179], [-75.91191864013672, 36.542530059814446], [-75.9248046875, 36.473976135253906], [-75.97727966308594, 36.478015899658196], [-75.97628784179688, 36.51792526245117], [-76.02716827392578, 36.5567169189453]]], [[[-75.90198516845703, 36.55619812011719], [-75.87816619873047, 36.55587387084961], [-75.77315521240234, 36.22925567626953], [-75.78317260742188, 36.225193023681626], [-75.90198516845703, 36.55619812011719]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;3&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.07, &quot;BIR74&quot;: 508.0, &quot;BIR79&quot;: 830.0, &quot;CNTY_&quot;: 1831, &quot;CNTY_ID&quot;: 1831, &quot;CRESS_ID&quot;: 27, &quot;FIPS&quot;: &quot;37053&quot;, &quot;FIPSNO&quot;: 37053, &quot;NAME&quot;: &quot;Currituck&quot;, &quot;NWBIR74&quot;: 123.0, &quot;NWBIR79&quot;: 145.0, &quot;NWR74&quot;: 242.125984, &quot;NWR79&quot;: 174.698795, &quot;PERIMETER&quot;: 2.968, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 1.968504, &quot;SIDR79&quot;: 2.409639, &quot;__folium_color&quot;: &quot;#440154&quot;, &quot;cardinalities&quot;: 2}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.90120697021484, 36.162765502929695, -77.07530975341798, 36.55628585815428], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.21766662597656, 36.240982055664055], [-77.23461151123047, 36.21459960937501], [-77.29861450195312, 36.21152877807615], [-77.29351043701172, 36.16286087036132], [-77.30947875976564, 36.162765502929695], [-77.33499145507812, 36.1828498840332], [-77.38903045654297, 36.2031021118164], [-77.37862396240234, 36.24008560180665], [-77.41346740722656, 36.255817413330064], [-77.41885375976562, 36.281795501708984], [-77.45411682128906, 36.31975555419921], [-77.53807830810547, 36.302459716796875], [-77.55743408203125, 36.30421447753906], [-77.57195281982422, 36.314495086669915], [-77.580078125, 36.32826995849609], [-77.55968475341797, 36.37594604492188], [-77.56041717529297, 36.406356811523445], [-77.63597106933594, 36.44053649902344], [-77.65099334716797, 36.47258758544922], [-77.6988754272461, 36.47895812988282], [-77.74940490722656, 36.47357177734376], [-77.90120697021484, 36.50988769531249], [-77.89885711669922, 36.55294418334961], [-77.76393127441406, 36.55344009399414], [-77.32005310058594, 36.55391693115235], [-77.17735290527344, 36.55628585815428], [-77.1544189453125, 36.526252746582024], [-77.09213256835938, 36.50751876831054], [-77.07530975341798, 36.48351669311524], [-77.0832748413086, 36.470096588134766], [-77.12732696533203, 36.470710754394524], [-77.13932037353516, 36.456478118896484], [-77.14196014404297, 36.41706466674805], [-77.21766662597656, 36.240982055664055]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;4&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.153, &quot;BIR74&quot;: 1421.0, &quot;BIR79&quot;: 1606.0, &quot;CNTY_&quot;: 1832, &quot;CNTY_ID&quot;: 1832, &quot;CRESS_ID&quot;: 66, &quot;FIPS&quot;: &quot;37131&quot;, &quot;FIPSNO&quot;: 37131, &quot;NAME&quot;: &quot;Northampton&quot;, &quot;NWBIR74&quot;: 1066.0, &quot;NWBIR79&quot;: 1197.0, &quot;NWR74&quot;: 750.175932, &quot;NWR79&quot;: 745.330012, &quot;PERIMETER&quot;: 2.206, &quot;SID74&quot;: 9.0, &quot;SID79&quot;: 3.0, &quot;SIDR74&quot;: 6.333568, &quot;SIDR79&quot;: 1.867995, &quot;__folium_color&quot;: &quot;#365c8d&quot;, &quot;cardinalities&quot;: 4}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.21766662597656, 36.23023605346679, -76.7074966430664, 36.55628585815428], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.74506378173828, 36.233917236328125], [-76.9806900024414, 36.23023605346679], [-76.99475097656251, 36.23558044433594], [-77.13007354736328, 36.23346328735351], [-77.21766662597656, 36.240982055664055], [-77.14196014404297, 36.41706466674805], [-77.13932037353516, 36.456478118896484], [-77.12732696533203, 36.470710754394524], [-77.0832748413086, 36.470096588134766], [-77.07530975341798, 36.48351669311524], [-77.09213256835938, 36.50751876831054], [-77.1544189453125, 36.526252746582024], [-77.17735290527344, 36.55628585815428], [-76.92413330078125, 36.554145812988274], [-76.9084243774414, 36.50428390502929], [-76.94577026367188, 36.458961486816406], [-76.95367431640625, 36.419231414794915], [-76.94351196289062, 36.401729583740234], [-76.92407989501953, 36.392444610595696], [-76.74134826660156, 36.315166473388665], [-76.7074966430664, 36.26613235473632], [-76.74506378173828, 36.233917236328125]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;5&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.097, &quot;BIR74&quot;: 1452.0, &quot;BIR79&quot;: 1838.0, &quot;CNTY_&quot;: 1833, &quot;CNTY_ID&quot;: 1833, &quot;CRESS_ID&quot;: 46, &quot;FIPS&quot;: &quot;37091&quot;, &quot;FIPSNO&quot;: 37091, &quot;NAME&quot;: &quot;Hertford&quot;, &quot;NWBIR74&quot;: 954.0, &quot;NWBIR79&quot;: 1237.0, &quot;NWR74&quot;: 657.024793, &quot;NWR79&quot;: 673.014146, &quot;PERIMETER&quot;: 1.67, &quot;SID74&quot;: 7.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 4.820937, &quot;SIDR79&quot;: 2.720348, &quot;__folium_color&quot;: &quot;#46327e&quot;, &quot;cardinalities&quot;: 3}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.56358337402344, 36.169727325439446, -75.95718383789062, 36.55605697631837], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.00897216796875, 36.319595336914055], [-75.95718383789062, 36.19377136230468], [-75.98133850097656, 36.169727325439446], [-76.18316650390625, 36.31523895263672], [-76.1934814453125, 36.3248519897461], [-76.21619415283203, 36.3278465270996], [-76.23853302001953, 36.36122894287108], [-76.26128387451172, 36.363758087158196], [-76.27413177490234, 36.38140869140625], [-76.30335998535156, 36.39184570312499], [-76.32136535644531, 36.4096450805664], [-76.40596771240234, 36.44715881347657], [-76.49834442138672, 36.50390243530274], [-76.56358337402344, 36.55525207519531], [-76.49755859375, 36.55581283569335], [-76.33025360107422, 36.55605697631837], [-76.16828918457031, 36.42708587646483], [-76.15814971923828, 36.412689208984375], [-76.16092681884766, 36.39189910888672], [-76.09508514404297, 36.34891510009766], [-76.04395294189453, 36.353591918945305], [-76.03287506103516, 36.335975646972656], [-76.01734924316406, 36.33773040771483], [-76.00897216796875, 36.319595336914055]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;6&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.062, &quot;BIR74&quot;: 286.0, &quot;BIR79&quot;: 350.0, &quot;CNTY_&quot;: 1834, &quot;CNTY_ID&quot;: 1834, &quot;CRESS_ID&quot;: 15, &quot;FIPS&quot;: &quot;37029&quot;, &quot;FIPSNO&quot;: 37029, &quot;NAME&quot;: &quot;Camden&quot;, &quot;NWBIR74&quot;: 115.0, &quot;NWBIR79&quot;: 139.0, &quot;NWR74&quot;: 402.097902, &quot;NWR79&quot;: 397.142857, &quot;PERIMETER&quot;: 1.547, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 5.714286, &quot;__folium_color&quot;: &quot;#46327e&quot;, &quot;cardinalities&quot;: 3}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.95367431640625, 36.294517517089844, -76.4603500366211, 36.55525207519531], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.56250762939453, 36.34056854248046], [-76.60424041748048, 36.31498336791992], [-76.6482162475586, 36.31531524658204], [-76.68873596191406, 36.294517517089844], [-76.77664184570312, 36.358329772949226], [-76.92407989501953, 36.392444610595696], [-76.94351196289062, 36.401729583740234], [-76.95367431640625, 36.419231414794915], [-76.94577026367188, 36.458961486816406], [-76.9084243774414, 36.50428390502929], [-76.92413330078125, 36.554145812988274], [-76.921630859375, 36.55415725708007], [-76.56358337402344, 36.55525207519531], [-76.49834442138672, 36.50390243530274], [-76.5024642944336, 36.45228576660156], [-76.4603500366211, 36.37389755249023], [-76.56250762939453, 36.34056854248046]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;7&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.091, &quot;BIR74&quot;: 420.0, &quot;BIR79&quot;: 594.0, &quot;CNTY_&quot;: 1835, &quot;CNTY_ID&quot;: 1835, &quot;CRESS_ID&quot;: 37, &quot;FIPS&quot;: &quot;37073&quot;, &quot;FIPSNO&quot;: 37073, &quot;NAME&quot;: &quot;Gates&quot;, &quot;NWBIR74&quot;: 254.0, &quot;NWBIR79&quot;: 371.0, &quot;NWR74&quot;: 604.761905, &quot;NWR79&quot;: 624.579125, &quot;PERIMETER&quot;: 1.284, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 3.367003, &quot;__folium_color&quot;: &quot;#277f8e&quot;, &quot;cardinalities&quot;: 5}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.32125091552734, 36.195945739746094, -77.89885711669922, 36.55294418334961], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.30876159667969, 36.260040283203125], [-78.28292846679688, 36.2918815612793], [-78.32125091552734, 36.5455322265625], [-78.05166625976562, 36.552474975585945], [-77.89885711669922, 36.55294418334961], [-77.90120697021484, 36.50988769531249], [-77.91692352294922, 36.50063705444335], [-77.93013763427734, 36.35298538208006], [-77.95208740234375, 36.28123092651367], [-78.00628662109375, 36.195945739746094], [-78.058349609375, 36.21132278442383], [-78.10962677001953, 36.213508605957024], [-78.13471984863281, 36.23658370971679], [-78.30876159667969, 36.260040283203125]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;8&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.118, &quot;BIR74&quot;: 968.0, &quot;BIR79&quot;: 1190.0, &quot;CNTY_&quot;: 1836, &quot;CNTY_ID&quot;: 1836, &quot;CRESS_ID&quot;: 93, &quot;FIPS&quot;: &quot;37185&quot;, &quot;FIPSNO&quot;: 37185, &quot;NAME&quot;: &quot;Warren&quot;, &quot;NWBIR74&quot;: 748.0, &quot;NWBIR79&quot;: 844.0, &quot;NWR74&quot;: 772.727273, &quot;NWR79&quot;: 709.243697, &quot;PERIMETER&quot;: 1.421, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 4.132231, &quot;SIDR79&quot;: 1.680672, &quot;__folium_color&quot;: &quot;#277f8e&quot;, &quot;cardinalities&quot;: 5}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.45301055908205, 36.2502326965332, -80.02405548095703, 36.55104446411133], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.02567291259766, 36.2502326965332], [-80.45301055908205, 36.257087707519524], [-80.43531036376953, 36.55104446411133], [-80.048095703125, 36.54713439941405], [-80.02405548095703, 36.545024871826165], [-80.02567291259766, 36.2502326965332]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;9&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.124, &quot;BIR74&quot;: 1612.0, &quot;BIR79&quot;: 2038.0, &quot;CNTY_&quot;: 1837, &quot;CNTY_ID&quot;: 1837, &quot;CRESS_ID&quot;: 85, &quot;FIPS&quot;: &quot;37169&quot;, &quot;FIPSNO&quot;: 37169, &quot;NAME&quot;: &quot;Stokes&quot;, &quot;NWBIR74&quot;: 160.0, &quot;NWBIR79&quot;: 176.0, &quot;NWR74&quot;: 99.255583, &quot;NWR79&quot;: 86.359176, &quot;PERIMETER&quot;: 1.428, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 0.620347, &quot;SIDR79&quot;: 2.453386, &quot;__folium_color&quot;: &quot;#365c8d&quot;, &quot;cardinalities&quot;: 4}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.53050994873047, 36.23366928100587, -79.14432525634766, 36.5497817993164], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.53050994873047, 36.246135711669915], [-79.51029968261719, 36.54765701293946], [-79.2170639038086, 36.5497817993164], [-79.14432525634766, 36.546058654785156], [-79.15927124023438, 36.23366928100587], [-79.25849914550781, 36.23568725585937], [-79.53050994873047, 36.246135711669915]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;10&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.114, &quot;BIR74&quot;: 1035.0, &quot;BIR79&quot;: 1253.0, &quot;CNTY_&quot;: 1838, &quot;CNTY_ID&quot;: 1838, &quot;CRESS_ID&quot;: 17, &quot;FIPS&quot;: &quot;37033&quot;, &quot;FIPSNO&quot;: 37033, &quot;NAME&quot;: &quot;Caswell&quot;, &quot;NWBIR74&quot;: 550.0, &quot;NWBIR79&quot;: 597.0, &quot;NWR74&quot;: 531.400966, &quot;NWR79&quot;: 476.456504, &quot;PERIMETER&quot;: 1.352, &quot;SID74&quot;: 2.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 1.932367, &quot;SIDR79&quot;: 1.596169, &quot;__folium_color&quot;: &quot;#365c8d&quot;, &quot;cardinalities&quot;: 4}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.02567291259766, 36.236156463623054, -79.51029968261719, 36.547889709472656], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.53050994873047, 36.246135711669915], [-79.53057861328125, 36.236156463623054], [-80.02567291259766, 36.2502326965332], [-80.02405548095703, 36.545024871826165], [-79.71744537353516, 36.547889709472656], [-79.51029968261719, 36.54765701293946], [-79.53050994873047, 36.246135711669915]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;11&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.153, &quot;BIR74&quot;: 4449.0, &quot;BIR79&quot;: 5386.0, &quot;CNTY_&quot;: 1839, &quot;CNTY_ID&quot;: 1839, &quot;CRESS_ID&quot;: 79, &quot;FIPS&quot;: &quot;37157&quot;, &quot;FIPSNO&quot;: 37157, &quot;NAME&quot;: &quot;Rockingham&quot;, &quot;NWBIR74&quot;: 1243.0, &quot;NWBIR79&quot;: 1369.0, &quot;NWR74&quot;: 279.388627, &quot;NWR79&quot;: 254.177497, &quot;PERIMETER&quot;: 1.616, &quot;SID74&quot;: 16.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 3.596314, &quot;SIDR79&quot;: 0.928333, &quot;__folium_color&quot;: &quot;#277f8e&quot;, &quot;cardinalities&quot;: 5}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.81035614013672, 36.01412582397462, -78.45880889892578, 36.54607391357422], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.7491226196289, 36.06359100341796], [-78.78841400146484, 36.062183380126946], [-78.8040542602539, 36.08094024658203], [-78.81035614013672, 36.11457443237303], [-78.80680084228516, 36.23157501220703], [-78.79669952392578, 36.54353332519531], [-78.73738861083984, 36.54607391357422], [-78.45880889892578, 36.541481018066406], [-78.46375274658205, 36.523857116699205], [-78.50250244140625, 36.504390716552734], [-78.51708984375, 36.461483001708984], [-78.51471710205078, 36.17522430419922], [-78.49252319335938, 36.173587799072266], [-78.54585266113281, 36.06808853149415], [-78.54802703857422, 36.01412582397462], [-78.69557189941406, 36.066646575927734], [-78.7491226196289, 36.06359100341796]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;12&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.143, &quot;BIR74&quot;: 1671.0, &quot;BIR79&quot;: 2074.0, &quot;CNTY_&quot;: 1840, &quot;CNTY_ID&quot;: 1840, &quot;CRESS_ID&quot;: 39, &quot;FIPS&quot;: &quot;37077&quot;, &quot;FIPSNO&quot;: 37077, &quot;NAME&quot;: &quot;Granville&quot;, &quot;NWBIR74&quot;: 930.0, &quot;NWBIR79&quot;: 1058.0, &quot;NWR74&quot;: 556.552962, &quot;NWR79&quot;: 510.125362, &quot;PERIMETER&quot;: 1.663, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 2.393776, &quot;SIDR79&quot;: 1.92864, &quot;__folium_color&quot;: &quot;#277f8e&quot;, &quot;cardinalities&quot;: 5}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.15927124023438, 36.23157501220703, -78.79669952392578, 36.546058654785156], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.80680084228516, 36.23157501220703], [-78.95108032226562, 36.23383712768555], [-79.15927124023438, 36.23366928100587], [-79.14432525634766, 36.546058654785156], [-78.79669952392578, 36.54353332519531], [-78.80680084228516, 36.23157501220703]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;13&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.109, &quot;BIR74&quot;: 1556.0, &quot;BIR79&quot;: 1790.0, &quot;CNTY_&quot;: 1841, &quot;CNTY_ID&quot;: 1841, &quot;CRESS_ID&quot;: 73, &quot;FIPS&quot;: &quot;37145&quot;, &quot;FIPSNO&quot;: 37145, &quot;NAME&quot;: &quot;Person&quot;, &quot;NWBIR74&quot;: 613.0, &quot;NWBIR79&quot;: 650.0, &quot;NWR74&quot;: 393.958869, &quot;NWR79&quot;: 363.128492, &quot;PERIMETER&quot;: 1.325, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 2.570694, &quot;SIDR79&quot;: 2.234637, &quot;__folium_color&quot;: &quot;#365c8d&quot;, &quot;cardinalities&quot;: 4}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.51708984375, 36.16217422485351, -78.28292846679688, 36.5455322265625], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.49252319335938, 36.173587799072266], [-78.51471710205078, 36.17522430419922], [-78.51708984375, 36.461483001708984], [-78.50250244140625, 36.504390716552734], [-78.46375274658205, 36.523857116699205], [-78.45880889892578, 36.541481018066406], [-78.32125091552734, 36.5455322265625], [-78.28292846679688, 36.2918815612793], [-78.30876159667969, 36.260040283203125], [-78.3460464477539, 36.22518157958984], [-78.38085174560547, 36.22475051879883], [-78.41695404052734, 36.16217422485351], [-78.49252319335938, 36.173587799072266]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;14&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.072, &quot;BIR74&quot;: 2180.0, &quot;BIR79&quot;: 2753.0, &quot;CNTY_&quot;: 1842, &quot;CNTY_ID&quot;: 1842, &quot;CRESS_ID&quot;: 91, &quot;FIPS&quot;: &quot;37181&quot;, &quot;FIPSNO&quot;: 37181, &quot;NAME&quot;: &quot;Vance&quot;, &quot;NWBIR74&quot;: 1179.0, &quot;NWBIR79&quot;: 1492.0, &quot;NWR74&quot;: 540.825688, &quot;NWR79&quot;: 541.954232, &quot;PERIMETER&quot;: 1.085, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 6.0, &quot;SIDR74&quot;: 1.834862, &quot;SIDR79&quot;: 2.179441, &quot;__folium_color&quot;: &quot;#46327e&quot;, &quot;cardinalities&quot;: 3}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.00628662109375, 35.99471664428711, -77.24103546142578, 36.50988769531249], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.33220672607422, 36.067981719970696], [-77.40531158447266, 35.99471664428711], [-77.42574310302734, 35.99606323242188], [-77.43821716308594, 36.014034271240234], [-77.46397399902344, 36.026382446289055], [-77.52513122558594, 36.035385131835945], [-77.53585815429689, 36.05557250976563], [-77.53668975830078, 36.08236312866211], [-77.54788208007812, 36.08849334716797], [-77.60625457763672, 36.09739303588867], [-77.6423568725586, 36.12670135498047], [-77.68562316894531, 36.14660263061524], [-77.70050811767578, 36.144168853759766], [-77.72018432617188, 36.13411331176758], [-77.7471694946289, 36.14642333984375], [-77.8013687133789, 36.144256591796875], [-77.8113021850586, 36.135818481445305], [-77.8868408203125, 36.14443969726563], [-77.91783905029297, 36.15678024291992], [-77.92240142822266, 36.17773056030273], [-77.9392318725586, 36.187549591064446], [-77.95586395263672, 36.1837501525879], [-77.97339630126953, 36.18904113769532], [-77.98511505126953, 36.17744445800781], [-78.00628662109375, 36.195945739746094], [-77.95208740234375, 36.28123092651367], [-77.93013763427734, 36.35298538208006], [-77.91692352294922, 36.50063705444335], [-77.90120697021484, 36.50988769531249], [-77.74940490722656, 36.47357177734376], [-77.6988754272461, 36.47895812988282], [-77.65099334716797, 36.47258758544922], [-77.63597106933594, 36.44053649902344], [-77.56041717529297, 36.406356811523445], [-77.55968475341797, 36.37594604492188], [-77.580078125, 36.32826995849609], [-77.57195281982422, 36.314495086669915], [-77.55743408203125, 36.30421447753906], [-77.53807830810547, 36.302459716796875], [-77.45411682128906, 36.31975555419921], [-77.41885375976562, 36.281795501708984], [-77.41346740722656, 36.255817413330064], [-77.37862396240234, 36.24008560180665], [-77.38903045654297, 36.2031021118164], [-77.33499145507812, 36.1828498840332], [-77.30947875976564, 36.162765502929695], [-77.29351043701172, 36.16286087036132], [-77.2704086303711, 36.15552520751953], [-77.25591278076172, 36.130687713623054], [-77.25749969482422, 36.11847305297853], [-77.24103546142578, 36.10130310058594], [-77.30987548828125, 36.087444305419915], [-77.33220672607422, 36.067981719970696]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;15&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.19, &quot;BIR74&quot;: 3608.0, &quot;BIR79&quot;: 4463.0, &quot;CNTY_&quot;: 1846, &quot;CNTY_ID&quot;: 1846, &quot;CRESS_ID&quot;: 42, &quot;FIPS&quot;: &quot;37083&quot;, &quot;FIPSNO&quot;: 37083, &quot;NAME&quot;: &quot;Halifax&quot;, &quot;NWBIR74&quot;: 2365.0, &quot;NWBIR79&quot;: 2980.0, &quot;NWR74&quot;: 655.487805, &quot;NWR79&quot;: 667.712301, &quot;PERIMETER&quot;: 2.204, &quot;SID74&quot;: 18.0, &quot;SID79&quot;: 17.0, &quot;SIDR74&quot;: 4.988914, &quot;SIDR79&quot;: 3.809097, &quot;__folium_color&quot;: &quot;#4ac16d&quot;, &quot;cardinalities&quot;: 7}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.5024642944336, 36.147689819335945, -76.11270904541017, 36.50390243530274], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.2989273071289, 36.21422958374023], [-76.32423400878906, 36.23362350463867], [-76.37242126464844, 36.25234603881836], [-76.4603500366211, 36.37389755249023], [-76.5024642944336, 36.45228576660156], [-76.49834442138672, 36.50390243530274], [-76.40596771240234, 36.44715881347657], [-76.32136535644531, 36.4096450805664], [-76.30335998535156, 36.39184570312499], [-76.27413177490234, 36.38140869140625], [-76.26128387451172, 36.363758087158196], [-76.23853302001953, 36.36122894287108], [-76.21619415283203, 36.3278465270996], [-76.1934814453125, 36.3248519897461], [-76.18316650390625, 36.31523895263672], [-76.21890258789062, 36.29660797119139], [-76.11270904541017, 36.174419403076165], [-76.14193725585938, 36.147689819335945], [-76.23497772216797, 36.163360595703125], [-76.2989273071289, 36.21422958374023]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;16&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.053, &quot;BIR74&quot;: 1638.0, &quot;BIR79&quot;: 2275.0, &quot;CNTY_&quot;: 1848, &quot;CNTY_ID&quot;: 1848, &quot;CRESS_ID&quot;: 70, &quot;FIPS&quot;: &quot;37139&quot;, &quot;FIPSNO&quot;: 37139, &quot;NAME&quot;: &quot;Pasquotank&quot;, &quot;NWBIR74&quot;: 622.0, &quot;NWBIR79&quot;: 933.0, &quot;NWR74&quot;: 379.73138, &quot;NWR79&quot;: 410.10989, &quot;PERIMETER&quot;: 1.171, &quot;SID74&quot;: 3.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 1.831502, &quot;SIDR79&quot;: 1.758242, &quot;__folium_color&quot;: &quot;#46327e&quot;, &quot;cardinalities&quot;: 3}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.54610443115234, 35.98932647705078, -80.87086486816406, 36.43115234375], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.02056884765625, 36.0349349975586], [-81.0840835571289, 36.02076721191407], [-81.12406158447266, 36.03128433227538], [-81.15746307373047, 36.02098083496094], [-81.23600769042969, 36.02382278442382], [-81.32186889648438, 35.98932647705078], [-81.34735107421875, 36.015357971191406], [-81.38871002197266, 36.03756713867187], [-81.39814758300781, 36.05605697631835], [-81.42963409423828, 36.06566238403319], [-81.45443725585938, 36.083057403564446], [-81.5173110961914, 36.09543228149414], [-81.54610443115234, 36.11139297485351], [-81.49932098388672, 36.13603591918946], [-81.4508056640625, 36.19062042236328], [-81.4727554321289, 36.23435592651367], [-81.45288848876953, 36.239585876464844], [-81.43103790283203, 36.260719299316406], [-81.4123306274414, 36.26729202270508], [-81.40638732910156, 36.28505325317382], [-81.3674545288086, 36.2786979675293], [-81.35413360595703, 36.29971694946288], [-81.36569213867188, 36.33905029296874], [-81.36137390136719, 36.353160858154304], [-81.32899475097656, 36.363502502441406], [-81.26424407958984, 36.352413177490234], [-81.2398910522461, 36.36536407470704], [-81.17667388916016, 36.415443420410156], [-81.15336608886719, 36.424739837646484], [-81.13839721679688, 36.41762542724609], [-81.12937927246094, 36.42633056640625], [-81.11331176757812, 36.42285156249999], [-81.09856414794922, 36.43115234375], [-81.08425140380861, 36.4299201965332], [-81.04280090332031, 36.410335540771484], [-81.02464294433594, 36.37783432006836], [-81.00277709960938, 36.36668014526367], [-80.98284149169922, 36.37183380126953], [-80.97795104980469, 36.39137649536133], [-80.95639038085938, 36.4037971496582], [-80.92456817626953, 36.37275314331055], [-80.88892364501953, 36.35442733764648], [-80.87086486816406, 36.324623107910156], [-80.87438201904297, 36.23388290405273], [-80.87741088867188, 36.05240631103516], [-80.98895263671875, 36.05334854125976], [-81.02056884765625, 36.0349349975586]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;17&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.199, &quot;BIR74&quot;: 3146.0, &quot;BIR79&quot;: 3725.0, &quot;CNTY_&quot;: 1874, &quot;CNTY_ID&quot;: 1874, &quot;CRESS_ID&quot;: 97, &quot;FIPS&quot;: &quot;37193&quot;, &quot;FIPSNO&quot;: 37193, &quot;NAME&quot;: &quot;Wilkes&quot;, &quot;NWBIR74&quot;: 200.0, &quot;NWBIR79&quot;: 222.0, &quot;NWR74&quot;: 63.572791, &quot;NWR79&quot;: 59.597315, &quot;PERIMETER&quot;: 1.984, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 7.0, &quot;SIDR74&quot;: 1.271456, &quot;SIDR79&quot;: 1.879195, &quot;__folium_color&quot;: &quot;#a0da39&quot;, &quot;cardinalities&quot;: 8}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.9111557006836, 36.10456085205079, -81.4508056640625, 36.39178466796875], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.80622100830078, 36.10456085205079], [-81.81715393066406, 36.1093864440918], [-81.82231140136719, 36.15785598754883], [-81.8502426147461, 36.181472778320305], [-81.88519287109375, 36.18863677978517], [-81.89856719970703, 36.198856353759766], [-81.9065628051758, 36.221866607666016], [-81.89399719238283, 36.26698303222656], [-81.9111557006836, 36.29075241088867], [-81.83057403564453, 36.33465576171875], [-81.7304916381836, 36.32934188842774], [-81.70945739746094, 36.33372497558593], [-81.7403793334961, 36.36185836791992], [-81.74107360839844, 36.39178466796875], [-81.63306427001953, 36.3406867980957], [-81.56198120117188, 36.2735939025879], [-81.5408401489258, 36.27250671386719], [-81.4727554321289, 36.23435592651367], [-81.4508056640625, 36.19062042236328], [-81.49932098388672, 36.13603591918946], [-81.54610443115234, 36.11139297485351], [-81.65900421142578, 36.117591857910156], [-81.80622100830078, 36.10456085205079]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;18&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.081, &quot;BIR74&quot;: 1323.0, &quot;BIR79&quot;: 1775.0, &quot;CNTY_&quot;: 1880, &quot;CNTY_ID&quot;: 1880, &quot;CRESS_ID&quot;: 95, &quot;FIPS&quot;: &quot;37189&quot;, &quot;FIPSNO&quot;: 37189, &quot;NAME&quot;: &quot;Watauga&quot;, &quot;NWBIR74&quot;: 17.0, &quot;NWBIR79&quot;: 33.0, &quot;NWR74&quot;: 12.849584, &quot;NWR79&quot;: 18.591549, &quot;PERIMETER&quot;: 1.288, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 0.755858, &quot;SIDR79&quot;: 0.56338, &quot;__folium_color&quot;: &quot;#365c8d&quot;, &quot;cardinalities&quot;: 4}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.59449005126953, 36.07979202270508, -76.27550506591797, 36.37389755249023], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.48052978515625, 36.07979202270508], [-76.53695678710938, 36.08792495727539], [-76.57559967041016, 36.102657318115234], [-76.59449005126953, 36.23981857299805], [-76.57108306884767, 36.277729034423835], [-76.56250762939453, 36.34056854248046], [-76.4603500366211, 36.37389755249023], [-76.37242126464844, 36.25234603881836], [-76.32423400878906, 36.23362350463867], [-76.2989273071289, 36.21422958374023], [-76.27550506591797, 36.110370635986314], [-76.48052978515625, 36.07979202270508]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;19&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.063, &quot;BIR74&quot;: 484.0, &quot;BIR79&quot;: 676.0, &quot;CNTY_&quot;: 1881, &quot;CNTY_ID&quot;: 1881, &quot;CRESS_ID&quot;: 72, &quot;FIPS&quot;: &quot;37143&quot;, &quot;FIPSNO&quot;: 37143, &quot;NAME&quot;: &quot;Perquimans&quot;, &quot;NWBIR74&quot;: 230.0, &quot;NWBIR79&quot;: 310.0, &quot;NWR74&quot;: 475.206612, &quot;NWR79&quot;: 458.579882, &quot;PERIMETER&quot;: 1.0, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 2.066116, &quot;SIDR79&quot;: 0.0, &quot;__folium_color&quot;: &quot;#46327e&quot;, &quot;cardinalities&quot;: 3}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.72650909423828, 36.0071678161621, -76.42042541503906, 36.34056854248046], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.68873596191406, 36.294517517089844], [-76.6482162475586, 36.31531524658204], [-76.60424041748048, 36.31498336791992], [-76.56250762939453, 36.34056854248046], [-76.57108306884767, 36.277729034423835], [-76.59449005126953, 36.23981857299805], [-76.57559967041016, 36.102657318115234], [-76.53695678710938, 36.08792495727539], [-76.48052978515625, 36.07979202270508], [-76.42042541503906, 36.058605194091804], [-76.52301025390625, 36.0071678161621], [-76.59400177001953, 36.01013183593749], [-76.64901733398439, 36.06570816040039], [-76.63320922851562, 36.03711700439454], [-76.69015502929688, 36.04961013793945], [-76.72650909423828, 36.156822204589844], [-76.68873596191406, 36.294517517089844]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;20&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.044, &quot;BIR74&quot;: 751.0, &quot;BIR79&quot;: 899.0, &quot;CNTY_&quot;: 1887, &quot;CNTY_ID&quot;: 1887, &quot;CRESS_ID&quot;: 21, &quot;FIPS&quot;: &quot;37041&quot;, &quot;FIPSNO&quot;: 37041, &quot;NAME&quot;: &quot;Chowan&quot;, &quot;NWBIR74&quot;: 368.0, &quot;NWBIR79&quot;: 491.0, &quot;NWR74&quot;: 490.013316, &quot;NWR79&quot;: 546.162403, &quot;PERIMETER&quot;: 1.158, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 1.331558, &quot;SIDR79&quot;: 1.112347, &quot;__folium_color&quot;: &quot;#440154&quot;, &quot;cardinalities&quot;: 2}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.0777587890625, 35.905643463134766, -81.73226928710938, 36.29075241088867], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.94134521484375, 35.95497512817383], [-81.96139526367188, 35.9392204284668], [-81.94495391845703, 35.91861343383789], [-81.947021484375, 35.9104118347168], [-81.98836517333984, 35.905643463134766], [-82.00506591796875, 35.9144401550293], [-82.04910278320312, 35.96723556518555], [-82.042724609375, 36.005008697509766], [-82.06232452392578, 36.03552627563477], [-82.0777587890625, 36.10013961791991], [-82.02045440673828, 36.12971115112305], [-81.93311309814453, 36.263320922851555], [-81.9111557006836, 36.29075241088867], [-81.89399719238283, 36.26698303222656], [-81.9065628051758, 36.221866607666016], [-81.89856719970703, 36.198856353759766], [-81.88519287109375, 36.18863677978517], [-81.8502426147461, 36.181472778320305], [-81.82231140136719, 36.15785598754883], [-81.81715393066406, 36.1093864440918], [-81.80622100830078, 36.10456085205079], [-81.73226928710938, 36.05847549438477], [-81.80278778076172, 35.960330963134766], [-81.85987091064455, 35.97034072875976], [-81.88081359863281, 35.9895248413086], [-81.90084838867188, 35.994651794433594], [-81.92214965820312, 35.98251342773438], [-81.94134521484375, 35.95497512817383]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;21&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.064, &quot;BIR74&quot;: 781.0, &quot;BIR79&quot;: 977.0, &quot;CNTY_&quot;: 1892, &quot;CNTY_ID&quot;: 1892, &quot;CRESS_ID&quot;: 6, &quot;FIPS&quot;: &quot;37011&quot;, &quot;FIPSNO&quot;: 37011, &quot;NAME&quot;: &quot;Avery&quot;, &quot;NWBIR74&quot;: 4.0, &quot;NWBIR79&quot;: 5.0, &quot;NWR74&quot;: 5.121639, &quot;NWR79&quot;: 5.117707, &quot;PERIMETER&quot;: 1.213, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 0.0, &quot;__folium_color&quot;: &quot;#277f8e&quot;, &quot;cardinalities&quot;: 5}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.87741088867188, 36.043266296386726, -80.44081115722658, 36.2784309387207], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.49554443359375, 36.043266296386726], [-80.6895751953125, 36.04547882080079], [-80.87741088867188, 36.05240631103516], [-80.87438201904297, 36.23388290405273], [-80.78269958496094, 36.24857711791992], [-80.76629638671876, 36.26183700561523], [-80.7525634765625, 36.25829696655273], [-80.73436737060547, 36.26475906372071], [-80.72403717041017, 36.25847244262694], [-80.6966552734375, 36.259090423583984], [-80.66744232177734, 36.24610137939452], [-80.62431335449219, 36.27309799194336], [-80.5905990600586, 36.2682762145996], [-80.55415344238281, 36.2784309387207], [-80.54501342773438, 36.27665710449219], [-80.53688049316406, 36.256736755371094], [-80.47638702392578, 36.25472640991212], [-80.45634460449219, 36.242557525634766], [-80.44081115722658, 36.21948623657227], [-80.44480895996094, 36.12330627441407], [-80.49198150634766, 36.107696533203125], [-80.50498962402344, 36.094940185546875], [-80.50824737548828, 36.070884704589844], [-80.49554443359375, 36.043266296386726]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;22&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.086, &quot;BIR74&quot;: 1269.0, &quot;BIR79&quot;: 1568.0, &quot;CNTY_&quot;: 1893, &quot;CNTY_ID&quot;: 1893, &quot;CRESS_ID&quot;: 99, &quot;FIPS&quot;: &quot;37197&quot;, &quot;FIPSNO&quot;: 37197, &quot;NAME&quot;: &quot;Yadkin&quot;, &quot;NWBIR74&quot;: 65.0, &quot;NWBIR79&quot;: 76.0, &quot;NWR74&quot;: 51.221434, &quot;NWR79&quot;: 48.469388, &quot;PERIMETER&quot;: 1.267, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 0.788022, &quot;SIDR79&quot;: 0.637755, &quot;__folium_color&quot;: &quot;#277f8e&quot;, &quot;cardinalities&quot;: 5}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.54802703857422, 35.81552505493163, -78.00628662109375, 36.260040283203125], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.25454711914062, 35.81552505493163], [-78.266845703125, 35.8483772277832], [-78.30841064453125, 35.89344787597656], [-78.32954406738281, 35.887847900390625], [-78.36011505126953, 35.91867446899414], [-78.39447784423828, 35.93230056762695], [-78.43114471435547, 35.97271728515625], [-78.54802703857422, 36.01412582397462], [-78.54585266113281, 36.06808853149415], [-78.49252319335938, 36.173587799072266], [-78.41695404052734, 36.16217422485351], [-78.38085174560547, 36.22475051879883], [-78.3460464477539, 36.22518157958984], [-78.30876159667969, 36.260040283203125], [-78.13471984863281, 36.23658370971679], [-78.10962677001953, 36.213508605957024], [-78.058349609375, 36.21132278442383], [-78.00628662109375, 36.195945739746094], [-78.13091278076172, 36.02146911621094], [-78.25454711914062, 35.81552505493163]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;23&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.128, &quot;BIR74&quot;: 1399.0, &quot;BIR79&quot;: 1863.0, &quot;CNTY_&quot;: 1897, &quot;CNTY_ID&quot;: 1897, &quot;CRESS_ID&quot;: 35, &quot;FIPS&quot;: &quot;37069&quot;, &quot;FIPSNO&quot;: 37069, &quot;NAME&quot;: &quot;Franklin&quot;, &quot;NWBIR74&quot;: 736.0, &quot;NWBIR79&quot;: 950.0, &quot;NWR74&quot;: 526.090064, &quot;NWR79&quot;: 509.93022, &quot;PERIMETER&quot;: 1.554, &quot;SID74&quot;: 2.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 1.429593, &quot;SIDR79&quot;: 0.0, &quot;__folium_color&quot;: &quot;#4ac16d&quot;, &quot;cardinalities&quot;: 7}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.50824737548828, 35.96792984008789, -80.02567291259766, 36.257087707519524], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.03810119628906, 36.00618362426758], [-80.12114715576172, 36.02155303955078], [-80.20987701416016, 36.021427154541016], [-80.21206665039062, 35.99012374877929], [-80.33430480957031, 35.9925651550293], [-80.33028411865234, 35.98123550415039], [-80.38024139404297, 35.96792984008789], [-80.41159057617189, 35.98461151123046], [-80.41797637939453, 36.0086326599121], [-80.449951171875, 36.029838562011726], [-80.46486663818361, 36.0501937866211], [-80.484130859375, 36.03832244873047], [-80.49554443359375, 36.043266296386726], [-80.50824737548828, 36.070884704589844], [-80.50498962402344, 36.094940185546875], [-80.49198150634766, 36.107696533203125], [-80.44480895996094, 36.12330627441407], [-80.44081115722658, 36.21948623657227], [-80.45634460449219, 36.242557525634766], [-80.45301055908205, 36.257087707519524], [-80.02567291259766, 36.2502326965332], [-80.03810119628906, 36.00618362426758]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;24&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.108, &quot;BIR74&quot;: 11858.0, &quot;BIR79&quot;: 15704.0, &quot;CNTY_&quot;: 1900, &quot;CNTY_ID&quot;: 1900, &quot;CRESS_ID&quot;: 34, &quot;FIPS&quot;: &quot;37067&quot;, &quot;FIPSNO&quot;: 37067, &quot;NAME&quot;: &quot;Forsyth&quot;, &quot;NWBIR74&quot;: 3919.0, &quot;NWBIR79&quot;: 5031.0, &quot;NWR74&quot;: 330.494181, &quot;NWR79&quot;: 320.364238, &quot;PERIMETER&quot;: 1.483, &quot;SID74&quot;: 10.0, &quot;SID79&quot;: 18.0, &quot;SIDR74&quot;: 0.843313, &quot;SIDR79&quot;: 1.146205, &quot;__folium_color&quot;: &quot;#4ac16d&quot;, &quot;cardinalities&quot;: 7}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.0426025390625, 35.890968322753906, -79.53057861328125, 36.2502326965332], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.5378189086914, 35.890968322753906], [-80.0426025390625, 35.91681289672851], [-80.03810119628906, 36.00618362426758], [-80.02567291259766, 36.2502326965332], [-79.53057861328125, 36.236156463623054], [-79.5378189086914, 35.890968322753906]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;25&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.17, &quot;BIR74&quot;: 16184.0, &quot;BIR79&quot;: 20543.0, &quot;CNTY_&quot;: 1903, &quot;CNTY_ID&quot;: 1903, &quot;CRESS_ID&quot;: 41, &quot;FIPS&quot;: &quot;37081&quot;, &quot;FIPSNO&quot;: 37081, &quot;NAME&quot;: &quot;Guilford&quot;, &quot;NWBIR74&quot;: 5483.0, &quot;NWBIR79&quot;: 7089.0, &quot;NWR74&quot;: 338.791399, &quot;NWR79&quot;: 345.08105, &quot;PERIMETER&quot;: 1.68, &quot;SID74&quot;: 23.0, &quot;SID79&quot;: 38.0, &quot;SIDR74&quot;: 1.421157, &quot;SIDR79&quot;: 1.849779, &quot;__folium_color&quot;: &quot;#1fa187&quot;, &quot;cardinalities&quot;: 6}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.54098510742188, 35.83699035644531, -79.23799133300781, 36.246135711669915], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.24619293212892, 35.86815261840819], [-79.23799133300781, 35.837245941162095], [-79.54098510742188, 35.83699035644531], [-79.5378189086914, 35.890968322753906], [-79.53057861328125, 36.236156463623054], [-79.53050994873047, 36.246135711669915], [-79.25849914550781, 36.23568725585937], [-79.25977325439453, 36.047893524169915], [-79.27082061767578, 35.90460205078125], [-79.24619293212892, 35.86815261840819]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;26&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.111, &quot;BIR74&quot;: 4672.0, &quot;BIR79&quot;: 5767.0, &quot;CNTY_&quot;: 1904, &quot;CNTY_ID&quot;: 1904, &quot;CRESS_ID&quot;: 1, &quot;FIPS&quot;: &quot;37001&quot;, &quot;FIPSNO&quot;: 37001, &quot;NAME&quot;: &quot;Alamance&quot;, &quot;NWBIR74&quot;: 1243.0, &quot;NWBIR79&quot;: 1397.0, &quot;NWR74&quot;: 266.053082, &quot;NWR79&quot;: 242.240333, &quot;PERIMETER&quot;: 1.392, &quot;SID74&quot;: 13.0, &quot;SID79&quot;: 11.0, &quot;SIDR74&quot;: 2.782534, &quot;SIDR79&quot;: 1.907404, &quot;__folium_color&quot;: &quot;#1fa187&quot;, &quot;cardinalities&quot;: 6}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.33220672607422, 35.81418228149415, -76.69376373291016, 36.240982055664055], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.78306579589844, 35.859233856201165], [-76.81053161621094, 35.88130950927734], [-76.8348388671875, 35.88422775268555], [-76.85672760009766, 35.83578109741212], [-76.87848663330078, 35.817291259765625], [-76.89848327636719, 35.81418228149415], [-76.9048080444336, 35.86791229248047], [-76.93609619140626, 35.894599914550774], [-76.99073028564453, 35.87783813476563], [-77.00442504882812, 35.861839294433594], [-77.0483169555664, 35.85749053955077], [-77.0341796875, 35.91433334350585], [-77.04088592529297, 35.931751251220696], [-77.06629943847656, 35.93600845336914], [-77.09001159667969, 35.92524337768554], [-77.18867492675781, 35.93124771118165], [-77.19589233398438, 35.935955047607415], [-77.19339752197266, 35.988094329833984], [-77.21553802490234, 35.98906707763672], [-77.21380615234375, 36.00536346435547], [-77.27671813964844, 36.0276985168457], [-77.31525421142578, 36.0480842590332], [-77.33220672607422, 36.067981719970696], [-77.30987548828125, 36.087444305419915], [-77.24103546142578, 36.10130310058594], [-77.25749969482422, 36.11847305297853], [-77.25591278076172, 36.130687713623054], [-77.2704086303711, 36.15552520751953], [-77.29351043701172, 36.16286087036132], [-77.29861450195312, 36.21152877807615], [-77.23461151123047, 36.21459960937501], [-77.21766662597656, 36.240982055664055], [-77.13007354736328, 36.23346328735351], [-76.99475097656251, 36.23558044433594], [-76.9806900024414, 36.23023605346679], [-76.74506378173828, 36.233917236328125], [-76.76067352294922, 36.14459228515624], [-76.69376373291016, 35.99296951293945], [-76.74112701416016, 35.936626434326165], [-76.69721984863281, 35.94154357910156], [-76.70832061767578, 35.91983413696289], [-76.72859954833984, 35.910858154296875], [-76.7417221069336, 35.883075714111335], [-76.76126098632812, 35.864543914794915], [-76.78306579589844, 35.859233856201165]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;27&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.18, &quot;BIR74&quot;: 1324.0, &quot;BIR79&quot;: 1616.0, &quot;CNTY_&quot;: 1905, &quot;CNTY_ID&quot;: 1905, &quot;CRESS_ID&quot;: 8, &quot;FIPS&quot;: &quot;37015&quot;, &quot;FIPSNO&quot;: 37015, &quot;NAME&quot;: &quot;Bertie&quot;, &quot;NWBIR74&quot;: 921.0, &quot;NWBIR79&quot;: 1161.0, &quot;NWR74&quot;: 695.619335, &quot;NWR79&quot;: 718.440594, &quot;PERIMETER&quot;: 2.151, &quot;SID74&quot;: 6.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 4.531722, &quot;SIDR79&quot;: 3.094059, &quot;__folium_color&quot;: &quot;#277f8e&quot;, &quot;cardinalities&quot;: 5}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.27082061767578, 35.85394287109375, -78.95108032226562, 36.23568725585937], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.0181350708008, 35.85786437988281], [-79.09536743164062, 35.85394287109375], [-79.24619293212892, 35.86815261840819], [-79.27082061767578, 35.90460205078125], [-79.25977325439453, 36.047893524169915], [-79.25849914550781, 36.23568725585937], [-79.15927124023438, 36.23366928100587], [-78.95108032226562, 36.23383712768555], [-79.0181350708008, 35.85786437988281]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;28&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.104, &quot;BIR74&quot;: 3164.0, &quot;BIR79&quot;: 4478.0, &quot;CNTY_&quot;: 1907, &quot;CNTY_ID&quot;: 1907, &quot;CRESS_ID&quot;: 68, &quot;FIPS&quot;: &quot;37135&quot;, &quot;FIPSNO&quot;: 37135, &quot;NAME&quot;: &quot;Orange&quot;, &quot;NWBIR74&quot;: 776.0, &quot;NWBIR79&quot;: 1086.0, &quot;NWR74&quot;: 245.259166, &quot;NWR79&quot;: 242.518982, &quot;PERIMETER&quot;: 1.294, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 6.0, &quot;SIDR74&quot;: 1.264223, &quot;SIDR79&quot;: 1.339884, &quot;__folium_color&quot;: &quot;#277f8e&quot;, &quot;cardinalities&quot;: 5}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.0181350708008, 35.85786437988281, -78.70415496826172, 36.23383712768555], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.0181350708008, 35.85786437988281], [-78.95108032226562, 36.23383712768555], [-78.80680084228516, 36.23157501220703], [-78.81035614013672, 36.11457443237303], [-78.8040542602539, 36.08094024658203], [-78.78841400146484, 36.062183380126946], [-78.7491226196289, 36.06359100341796], [-78.7533950805664, 36.0114631652832], [-78.72810363769531, 36.02707290649413], [-78.71617126464844, 36.026493072509766], [-78.70415496826172, 35.9973258972168], [-78.70734405517578, 35.97694396972656], [-78.73419952392578, 35.93458557128906], [-78.76350402832033, 35.91447448730469], [-78.80829620361328, 35.91992568969726], [-78.82795715332031, 35.86022949218751], [-78.90571594238281, 35.86051559448241], [-79.0181350708008, 35.85786437988281]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;29&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.077, &quot;BIR74&quot;: 7970.0, &quot;BIR79&quot;: 10432.0, &quot;CNTY_&quot;: 1908, &quot;CNTY_ID&quot;: 1908, &quot;CRESS_ID&quot;: 32, &quot;FIPS&quot;: &quot;37063&quot;, &quot;FIPSNO&quot;: 37063, &quot;NAME&quot;: &quot;Durham&quot;, &quot;NWBIR74&quot;: 3732.0, &quot;NWBIR79&quot;: 4948.0, &quot;NWR74&quot;: 468.25596, &quot;NWR79&quot;: 474.309816, &quot;PERIMETER&quot;: 1.271, &quot;SID74&quot;: 16.0, &quot;SID79&quot;: 22.0, &quot;SIDR74&quot;: 2.007528, &quot;SIDR79&quot;: 2.108896, &quot;__folium_color&quot;: &quot;#277f8e&quot;, &quot;cardinalities&quot;: 5}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.25454711914062, 35.725112915039055, -77.70050811767578, 36.195945739746094], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.18692779541016, 35.725112915039055], [-78.20561981201172, 35.72539520263671], [-78.2115478515625, 35.73819351196289], [-78.23404693603516, 35.745792388916016], [-78.25454711914062, 35.81552505493163], [-78.13091278076172, 36.02146911621094], [-78.00628662109375, 36.195945739746094], [-77.98511505126953, 36.17744445800781], [-77.97339630126953, 36.18904113769532], [-77.95586395263672, 36.1837501525879], [-77.9392318725586, 36.187549591064446], [-77.92240142822266, 36.17773056030273], [-77.91783905029297, 36.15678024291992], [-77.8868408203125, 36.14443969726563], [-77.8113021850586, 36.135818481445305], [-77.8013687133789, 36.144256591796875], [-77.7471694946289, 36.14642333984375], [-77.72018432617188, 36.13411331176758], [-77.70050811767578, 36.144168853759766], [-77.83014678955078, 35.85449600219727], [-77.84492492675781, 35.83557510375976], [-77.873046875, 35.84470748901367], [-78.18692779541016, 35.725112915039055]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;30&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.142, &quot;BIR74&quot;: 4021.0, &quot;BIR79&quot;: 5189.0, &quot;CNTY_&quot;: 1913, &quot;CNTY_ID&quot;: 1913, &quot;CRESS_ID&quot;: 64, &quot;FIPS&quot;: &quot;37127&quot;, &quot;FIPSNO&quot;: 37127, &quot;NAME&quot;: &quot;Nash&quot;, &quot;NWBIR74&quot;: 1851.0, &quot;NWBIR79&quot;: 2274.0, &quot;NWR74&quot;: 460.33325, &quot;NWR79&quot;: 438.234727, &quot;PERIMETER&quot;: 1.64, &quot;SID74&quot;: 8.0, &quot;SID79&quot;: 7.0, &quot;SIDR74&quot;: 1.989555, &quot;SIDR79&quot;: 1.349008, &quot;__folium_color&quot;: &quot;#4ac16d&quot;, &quot;cardinalities&quot;: 7}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.4084243774414, 35.8184814453125, -81.98334503173828, 36.147014617919915], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-82.11885070800781, 35.81853103637696], [-82.14665222167969, 35.8184814453125], [-82.1410140991211, 35.90027236938476], [-82.14956665039062, 35.92144775390625], [-82.18460845947266, 35.93487548828124], [-82.19577026367188, 35.94737625122071], [-82.19905090332031, 36.00177001953125], [-82.23210144042969, 36.00387573242188], [-82.24061584472656, 35.98420333862304], [-82.25885772705078, 35.98567581176758], [-82.30169677734375, 36.029327392578125], [-82.3096923828125, 36.011474609375], [-82.32968139648438, 36.01426315307617], [-82.34026336669922, 36.02539825439454], [-82.34449768066406, 36.07024002075196], [-82.38517761230469, 36.07850646972656], [-82.4084243774414, 36.075317382812486], [-82.37385559082031, 36.098697662353516], [-82.31192779541016, 36.12215042114258], [-82.2623062133789, 36.12037658691406], [-82.20773315429688, 36.147014617919915], [-82.154052734375, 36.13962173461914], [-82.11808013916016, 36.09625625610351], [-82.0777587890625, 36.10013961791991], [-82.06232452392578, 36.03552627563477], [-82.042724609375, 36.005008697509766], [-82.04910278320312, 35.96723556518555], [-82.00506591796875, 35.9144401550293], [-81.98836517333984, 35.905643463134766], [-81.98334503173828, 35.887577056884766], [-81.99089813232422, 35.87247467041016], [-82.03468322753906, 35.853580474853516], [-82.09799194335938, 35.84385681152344], [-82.11885070800781, 35.81853103637696]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;31&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.059, &quot;BIR74&quot;: 671.0, &quot;BIR79&quot;: 919.0, &quot;CNTY_&quot;: 1927, &quot;CNTY_ID&quot;: 1927, &quot;CRESS_ID&quot;: 61, &quot;FIPS&quot;: &quot;37121&quot;, &quot;FIPSNO&quot;: 37121, &quot;NAME&quot;: &quot;Mitchell&quot;, &quot;NWBIR74&quot;: 1.0, &quot;NWBIR79&quot;: 4.0, &quot;NWR74&quot;: 1.490313, &quot;NWR79&quot;: 4.352557, &quot;PERIMETER&quot;: 1.319, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 2.176279, &quot;__folium_color&quot;: &quot;#46327e&quot;, &quot;cardinalities&quot;: 3}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.83014678955078, 35.670265197753906, -77.34236907958984, 36.14660263061524], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.67121887207031, 35.670265197753906], [-77.73314666748048, 35.73954772949217], [-77.75749206542969, 35.79810333251953], [-77.7550048828125, 35.82483673095703], [-77.76713562011719, 35.83686447143555], [-77.83014678955078, 35.85449600219727], [-77.70050811767578, 36.144168853759766], [-77.68562316894531, 36.14660263061524], [-77.6423568725586, 36.12670135498047], [-77.60625457763672, 36.09739303588867], [-77.54788208007812, 36.08849334716797], [-77.53668975830078, 36.08236312866211], [-77.53585815429689, 36.05557250976563], [-77.52513122558594, 36.035385131835945], [-77.46397399902344, 36.026382446289055], [-77.43821716308594, 36.014034271240234], [-77.42574310302734, 35.99606323242188], [-77.40531158447266, 35.99471664428711], [-77.34236907958984, 35.90800476074218], [-77.35810089111328, 35.815311431884766], [-77.39680480957031, 35.82841873168945], [-77.40569305419922, 35.817264556884766], [-77.4185791015625, 35.822086334228516], [-77.42699432373047, 35.808197021484375], [-77.4547119140625, 35.79381561279296], [-77.47323608398438, 35.799659729003906], [-77.5055160522461, 35.766754150390625], [-77.67121887207031, 35.670265197753906]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;32&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.131, &quot;BIR74&quot;: 3657.0, &quot;BIR79&quot;: 4359.0, &quot;CNTY_&quot;: 1928, &quot;CNTY_ID&quot;: 1928, &quot;CRESS_ID&quot;: 33, &quot;FIPS&quot;: &quot;37065&quot;, &quot;FIPSNO&quot;: 37065, &quot;NAME&quot;: &quot;Edgecombe&quot;, &quot;NWBIR74&quot;: 2186.0, &quot;NWBIR79&quot;: 2696.0, &quot;NWR74&quot;: 597.757725, &quot;NWR79&quot;: 618.490479, &quot;PERIMETER&quot;: 1.521, &quot;SID74&quot;: 10.0, &quot;SID79&quot;: 9.0, &quot;SIDR74&quot;: 2.734482, &quot;SIDR79&quot;: 2.064694, &quot;__folium_color&quot;: &quot;#277f8e&quot;, &quot;cardinalities&quot;: 5}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.80622100830078, 35.75003433227539, -81.32186889648438, 36.117591857910156], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.32813262939453, 35.795059204101555], [-81.37665557861328, 35.75003433227539], [-81.41757202148438, 35.75590515136719], [-81.45714569091797, 35.779933929443345], [-81.56025695800781, 35.77544784545898], [-81.59336853027344, 35.81312561035157], [-81.70182800292969, 35.86879730224609], [-81.74844360351562, 35.92075729370118], [-81.77347564697266, 35.92220306396484], [-81.77568817138672, 35.94394683837891], [-81.80278778076172, 35.960330963134766], [-81.73226928710938, 36.05847549438477], [-81.80622100830078, 36.10456085205079], [-81.65900421142578, 36.117591857910156], [-81.54610443115234, 36.11139297485351], [-81.5173110961914, 36.09543228149414], [-81.45443725585938, 36.083057403564446], [-81.42963409423828, 36.06566238403319], [-81.39814758300781, 36.05605697631835], [-81.38871002197266, 36.03756713867187], [-81.34735107421875, 36.015357971191406], [-81.32186889648438, 35.98932647705078], [-81.32926177978516, 35.989246368408196], [-81.33956909179688, 35.92924118041992], [-81.33068084716797, 35.87580108642578], [-81.33721160888672, 35.82762908935547], [-81.32813262939453, 35.795059204101555]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;33&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.122, &quot;BIR74&quot;: 3609.0, &quot;BIR79&quot;: 4249.0, &quot;CNTY_&quot;: 1932, &quot;CNTY_ID&quot;: 1932, &quot;CRESS_ID&quot;: 14, &quot;FIPS&quot;: &quot;37027&quot;, &quot;FIPSNO&quot;: 37027, &quot;NAME&quot;: &quot;Caldwell&quot;, &quot;NWBIR74&quot;: 309.0, &quot;NWBIR79&quot;: 360.0, &quot;NWR74&quot;: 85.619285, &quot;NWR79&quot;: 84.725818, &quot;PERIMETER&quot;: 1.516, &quot;SID74&quot;: 6.0, &quot;SID79&quot;: 9.0, &quot;SIDR74&quot;: 1.66251, &quot;SIDR79&quot;: 2.118145, &quot;__folium_color&quot;: &quot;#1fa187&quot;, &quot;cardinalities&quot;: 6}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.5069351196289, 35.69755554199219, -82.11885070800781, 36.07850646972656], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-82.27920532226562, 35.69755554199219], [-82.28157806396484, 35.7202033996582], [-82.32184600830078, 35.73984909057618], [-82.34185028076173, 35.76350784301758], [-82.34539794921875, 35.80519485473633], [-82.37525177001953, 35.816402435302734], [-82.40581512451172, 35.81397247314453], [-82.44148254394531, 35.88222885131837], [-82.48709106445312, 35.904884338378906], [-82.48394775390626, 35.9476089477539], [-82.5069351196289, 35.97254180908204], [-82.4751968383789, 35.993175506591804], [-82.4084243774414, 36.075317382812486], [-82.38517761230469, 36.07850646972656], [-82.34449768066406, 36.07024002075196], [-82.34026336669922, 36.02539825439454], [-82.32968139648438, 36.01426315307617], [-82.3096923828125, 36.011474609375], [-82.30169677734375, 36.029327392578125], [-82.25885772705078, 35.98567581176758], [-82.24061584472656, 35.98420333862304], [-82.23210144042969, 36.00387573242188], [-82.19905090332031, 36.00177001953125], [-82.19577026367188, 35.94737625122071], [-82.18460845947266, 35.93487548828124], [-82.14956665039062, 35.92144775390625], [-82.1410140991211, 35.90027236938476], [-82.14665222167969, 35.8184814453125], [-82.11885070800781, 35.81853103637696], [-82.15459442138672, 35.79837036132813], [-82.16429138183594, 35.76052474975587], [-82.21178436279297, 35.71698760986328], [-82.27920532226562, 35.69755554199219]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;34&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.08, &quot;BIR74&quot;: 770.0, &quot;BIR79&quot;: 869.0, &quot;CNTY_&quot;: 1936, &quot;CNTY_ID&quot;: 1936, &quot;CRESS_ID&quot;: 100, &quot;FIPS&quot;: &quot;37199&quot;, &quot;FIPSNO&quot;: 37199, &quot;NAME&quot;: &quot;Yancey&quot;, &quot;NWBIR74&quot;: 12.0, &quot;NWBIR79&quot;: 10.0, &quot;NWR74&quot;: 15.584416, &quot;NWR79&quot;: 11.50748, &quot;PERIMETER&quot;: 1.307, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 1.150748, &quot;__folium_color&quot;: &quot;#365c8d&quot;, &quot;cardinalities&quot;: 4}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.40531158447266, 35.65012741088867, -76.78306579589844, 36.067981719970696], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.17845916748047, 35.73219299316406], [-77.2076644897461, 35.755126953125], [-77.26081848144531, 35.75909042358398], [-77.2645034790039, 35.78277969360351], [-77.35810089111328, 35.815311431884766], [-77.34236907958984, 35.90800476074218], [-77.40531158447266, 35.99471664428711], [-77.33220672607422, 36.067981719970696], [-77.31525421142578, 36.0480842590332], [-77.27671813964844, 36.0276985168457], [-77.21380615234375, 36.00536346435547], [-77.21553802490234, 35.98906707763672], [-77.19339752197266, 35.988094329833984], [-77.19589233398438, 35.935955047607415], [-77.18867492675781, 35.93124771118165], [-77.09001159667969, 35.92524337768554], [-77.06629943847656, 35.93600845336914], [-77.04088592529297, 35.931751251220696], [-77.0341796875, 35.91433334350585], [-77.0483169555664, 35.85749053955077], [-77.00442504882812, 35.861839294433594], [-76.99073028564453, 35.87783813476563], [-76.93609619140626, 35.894599914550774], [-76.9048080444336, 35.86791229248047], [-76.89848327636719, 35.81418228149415], [-76.87848663330078, 35.817291259765625], [-76.85672760009766, 35.83578109741212], [-76.8348388671875, 35.88422775268555], [-76.81053161621094, 35.88130950927734], [-76.78306579589844, 35.859233856201165], [-76.80667877197266, 35.81084060668946], [-76.8052749633789, 35.790374755859375], [-76.82595825195312, 35.75688171386718], [-76.83831024169922, 35.70545578002929], [-76.97991180419922, 35.65012741088867], [-77.16128540039062, 35.736778259277344], [-77.17845916748047, 35.73219299316406]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;35&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.118, &quot;BIR74&quot;: 1549.0, &quot;BIR79&quot;: 1849.0, &quot;CNTY_&quot;: 1937, &quot;CNTY_ID&quot;: 1937, &quot;CRESS_ID&quot;: 59, &quot;FIPS&quot;: &quot;37117&quot;, &quot;FIPSNO&quot;: 37117, &quot;NAME&quot;: &quot;Martin&quot;, &quot;NWBIR74&quot;: 883.0, &quot;NWBIR79&quot;: 1033.0, &quot;NWR74&quot;: 570.04519, &quot;NWR79&quot;: 558.680368, &quot;PERIMETER&quot;: 1.899, &quot;SID74&quot;: 2.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 1.291156, &quot;SIDR79&quot;: 0.540833, &quot;__folium_color&quot;: &quot;#1fa187&quot;, &quot;cardinalities&quot;: 6}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.99880981445312, 35.51993942260741, -78.25454711914062, 36.066646575927734], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.92107391357422, 35.57885742187499], [-78.99880981445312, 35.60132217407225], [-78.9388885498047, 35.76144409179687], [-78.9444351196289, 35.77011489868164], [-78.90571594238281, 35.86051559448241], [-78.82795715332031, 35.86022949218751], [-78.80829620361328, 35.91992568969726], [-78.76350402832033, 35.91447448730469], [-78.73419952392578, 35.93458557128906], [-78.70734405517578, 35.97694396972656], [-78.70415496826172, 35.9973258972168], [-78.71617126464844, 36.026493072509766], [-78.72810363769531, 36.02707290649413], [-78.7533950805664, 36.0114631652832], [-78.7491226196289, 36.06359100341796], [-78.69557189941406, 36.066646575927734], [-78.54802703857422, 36.01412582397462], [-78.43114471435547, 35.97271728515625], [-78.39447784423828, 35.93230056762695], [-78.36011505126953, 35.91867446899414], [-78.32954406738281, 35.887847900390625], [-78.30841064453125, 35.89344787597656], [-78.266845703125, 35.8483772277832], [-78.25454711914062, 35.81552505493163], [-78.4776382446289, 35.69561386108399], [-78.70321655273438, 35.51993942260741], [-78.92107391357422, 35.57885742187499]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;36&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.219, &quot;BIR74&quot;: 14484.0, &quot;BIR79&quot;: 20857.0, &quot;CNTY_&quot;: 1938, &quot;CNTY_ID&quot;: 1938, &quot;CRESS_ID&quot;: 92, &quot;FIPS&quot;: &quot;37183&quot;, &quot;FIPSNO&quot;: 37183, &quot;NAME&quot;: &quot;Wake&quot;, &quot;NWBIR74&quot;: 4397.0, &quot;NWBIR79&quot;: 6221.0, &quot;NWR74&quot;: 303.57636, &quot;NWR79&quot;: 298.269166, &quot;PERIMETER&quot;: 2.13, &quot;SID74&quot;: 16.0, &quot;SID79&quot;: 31.0, &quot;SIDR74&quot;: 1.104667, &quot;SIDR79&quot;: 1.486312, &quot;__folium_color&quot;: &quot;#4ac16d&quot;, &quot;cardinalities&quot;: 7}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.96275329589844, 35.6735610961914, -82.40581512451172, 36.05434036254882], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-82.8959732055664, 35.948360443115234], [-82.85626983642578, 35.94742584228515], [-82.80867004394531, 35.920871734619126], [-82.77644348144531, 35.956573486328125], [-82.77359771728516, 35.987503051757805], [-82.76322937011719, 35.99954605102539], [-82.64389038085938, 36.0517234802246], [-82.62804412841797, 36.05434036254882], [-82.60440063476562, 36.04298782348632], [-82.59223175048828, 36.0224494934082], [-82.60580444335938, 36.00354766845703], [-82.59930419921875, 35.96329879760743], [-82.55414581298828, 35.95610809326172], [-82.5069351196289, 35.97254180908204], [-82.48394775390626, 35.9476089477539], [-82.48709106445312, 35.904884338378906], [-82.44148254394531, 35.88222885131837], [-82.40581512451172, 35.81397247314453], [-82.50054931640625, 35.79612731933594], [-82.76630401611328, 35.694000244140625], [-82.80562591552734, 35.68490600585937], [-82.84326934814453, 35.69172668457032], [-82.88111114501953, 35.6735610961914], [-82.90753936767578, 35.727848052978516], [-82.95218658447266, 35.73899841308594], [-82.94304656982422, 35.76646423339843], [-82.96275329589844, 35.79185104370117], [-82.90682220458984, 35.872215270996094], [-82.91407012939455, 35.9278678894043], [-82.8959732055664, 35.948360443115234]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;37&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.118, &quot;BIR74&quot;: 765.0, &quot;BIR79&quot;: 926.0, &quot;CNTY_&quot;: 1946, &quot;CNTY_ID&quot;: 1946, &quot;CRESS_ID&quot;: 58, &quot;FIPS&quot;: &quot;37115&quot;, &quot;FIPSNO&quot;: 37115, &quot;NAME&quot;: &quot;Madison&quot;, &quot;NWBIR74&quot;: 5.0, &quot;NWBIR79&quot;: 3.0, &quot;NWR74&quot;: 6.535948, &quot;NWR79&quot;: 3.239741, &quot;PERIMETER&quot;: 1.601, &quot;SID74&quot;: 2.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 2.614379, &quot;SIDR79&quot;: 2.159827, &quot;__folium_color&quot;: &quot;#46327e&quot;, &quot;cardinalities&quot;: 3}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.10888671875, 35.50680923461913, -80.6895751953125, 36.05334854125976], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.72651672363281, 35.50756835937499], [-80.77622985839844, 35.50680923461913], [-80.9553451538086, 35.50912094116211], [-80.9510726928711, 35.52866744995117], [-80.96143341064455, 35.543563842773445], [-80.9312744140625, 35.619590759277344], [-81.00357818603516, 35.69705581665038], [-81.05477905273438, 35.71340179443359], [-81.07220458984375, 35.743648529052734], [-81.10888671875, 35.77190017700196], [-81.04910278320312, 35.835968017578125], [-80.99534606933594, 35.97707748413087], [-81.02056884765625, 36.0349349975586], [-80.98895263671875, 36.05334854125976], [-80.87741088867188, 36.05240631103516], [-80.6895751953125, 36.04547882080079], [-80.70597076416016, 35.85165786743164], [-80.76612091064453, 35.682037353515625], [-80.72651672363281, 35.50756835937499]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;38&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.155, &quot;BIR74&quot;: 4139.0, &quot;BIR79&quot;: 5400.0, &quot;CNTY_&quot;: 1947, &quot;CNTY_ID&quot;: 1947, &quot;CRESS_ID&quot;: 49, &quot;FIPS&quot;: &quot;37097&quot;, &quot;FIPSNO&quot;: 37097, &quot;NAME&quot;: &quot;Iredell&quot;, &quot;NWBIR74&quot;: 1144.0, &quot;NWBIR79&quot;: 1305.0, &quot;NWR74&quot;: 276.395265, &quot;NWR79&quot;: 241.666667, &quot;PERIMETER&quot;: 1.781, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 0.966417, &quot;SIDR79&quot;: 0.925926, &quot;__folium_color&quot;: &quot;#fde725&quot;, &quot;cardinalities&quot;: 9}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.70597076416016, 35.74579620361329, -80.36170959472656, 36.0501937866211], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.45677185058594, 35.74579620361329], [-80.48869323730469, 35.775615692138665], [-80.52672576904297, 35.78180694580078], [-80.57232666015625, 35.813812255859375], [-80.60755920410156, 35.82225799560546], [-80.63494110107422, 35.840259552001946], [-80.70597076416016, 35.85165786743164], [-80.6895751953125, 36.04547882080079], [-80.49554443359375, 36.043266296386726], [-80.484130859375, 36.03832244873047], [-80.46486663818361, 36.0501937866211], [-80.449951171875, 36.029838562011726], [-80.41797637939453, 36.0086326599121], [-80.41159057617189, 35.98461151123046], [-80.38024139404297, 35.96792984008789], [-80.36306762695312, 35.94212341308594], [-80.36170959472656, 35.895851135253906], [-80.40593719482422, 35.884368896484375], [-80.38650512695312, 35.858570098876946], [-80.38643646240234, 35.845413208007805], [-80.3954849243164, 35.83948516845702], [-80.41480255126953, 35.84486389160155], [-80.4260711669922, 35.83030700683594], [-80.44650268554688, 35.830684661865234], [-80.45779418945312, 35.822475433349595], [-80.47942352294922, 35.83327865600586], [-80.47288513183594, 35.78611755371094], [-80.45064544677734, 35.76487731933595], [-80.45677185058594, 35.74579620361329]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;39&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.069, &quot;BIR74&quot;: 1207.0, &quot;BIR79&quot;: 1438.0, &quot;CNTY_&quot;: 1948, &quot;CNTY_ID&quot;: 1948, &quot;CRESS_ID&quot;: 30, &quot;FIPS&quot;: &quot;37059&quot;, &quot;FIPSNO&quot;: 37059, &quot;NAME&quot;: &quot;Davie&quot;, &quot;NWBIR74&quot;: 148.0, &quot;NWBIR79&quot;: 177.0, &quot;NWR74&quot;: 122.618061, &quot;NWR79&quot;: 123.087622, &quot;PERIMETER&quot;: 1.201, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 3.0, &quot;SIDR74&quot;: 0.8285, &quot;SIDR79&quot;: 2.086231, &quot;__folium_color&quot;: &quot;#277f8e&quot;, &quot;cardinalities&quot;: 5}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.33956909179688, 35.77190017700196, -80.99534606933594, 36.0349349975586], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.10888671875, 35.77190017700196], [-81.12728118896484, 35.78896713256835], [-81.14140319824219, 35.82331848144531], [-81.32813262939453, 35.795059204101555], [-81.33721160888672, 35.82762908935547], [-81.33068084716797, 35.87580108642578], [-81.33956909179688, 35.92924118041992], [-81.32926177978516, 35.989246368408196], [-81.32186889648438, 35.98932647705078], [-81.23600769042969, 36.02382278442382], [-81.15746307373047, 36.02098083496094], [-81.12406158447266, 36.03128433227538], [-81.0840835571289, 36.02076721191407], [-81.02056884765625, 36.0349349975586], [-80.99534606933594, 35.97707748413087], [-81.04910278320312, 35.835968017578125], [-81.10888671875, 35.77190017700196]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;40&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.066, &quot;BIR74&quot;: 1333.0, &quot;BIR79&quot;: 1683.0, &quot;CNTY_&quot;: 1950, &quot;CNTY_ID&quot;: 1950, &quot;CRESS_ID&quot;: 2, &quot;FIPS&quot;: &quot;37003&quot;, &quot;FIPSNO&quot;: 37003, &quot;NAME&quot;: &quot;Alexander&quot;, &quot;NWBIR74&quot;: 128.0, &quot;NWBIR79&quot;: 150.0, &quot;NWR74&quot;: 96.024006, &quot;NWR79&quot;: 89.12656, &quot;PERIMETER&quot;: 1.07, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 1.188354, &quot;__folium_color&quot;: &quot;#365c8d&quot;, &quot;cardinalities&quot;: 4}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.47942352294922, 35.505119323730455, -80.03810119628906, 36.02155303955078], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.06440734863281, 35.505699157714844], [-80.1819076538086, 35.505119323730455], [-80.20921325683594, 35.574512481689446], [-80.251220703125, 35.62480163574219], [-80.28578186035158, 35.6369743347168], [-80.32559204101562, 35.68315505981445], [-80.32628631591797, 35.714012145996094], [-80.37725830078125, 35.71068572998047], [-80.45677185058594, 35.74579620361329], [-80.45064544677734, 35.76487731933595], [-80.47288513183594, 35.78611755371094], [-80.47942352294922, 35.83327865600586], [-80.45779418945312, 35.822475433349595], [-80.44650268554688, 35.830684661865234], [-80.4260711669922, 35.83030700683594], [-80.41480255126953, 35.84486389160155], [-80.3954849243164, 35.83948516845702], [-80.38643646240234, 35.845413208007805], [-80.38650512695312, 35.858570098876946], [-80.40593719482422, 35.884368896484375], [-80.36170959472656, 35.895851135253906], [-80.36306762695312, 35.94212341308594], [-80.38024139404297, 35.96792984008789], [-80.33028411865234, 35.98123550415039], [-80.33430480957031, 35.9925651550293], [-80.21206665039062, 35.99012374877929], [-80.20987701416016, 36.021427154541016], [-80.12114715576172, 36.02155303955078], [-80.03810119628906, 36.00618362426758], [-80.0426025390625, 35.91681289672851], [-80.06440734863281, 35.505699157714844]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;41&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.145, &quot;BIR74&quot;: 5509.0, &quot;BIR79&quot;: 7143.0, &quot;CNTY_&quot;: 1951, &quot;CNTY_ID&quot;: 1951, &quot;CRESS_ID&quot;: 29, &quot;FIPS&quot;: &quot;37057&quot;, &quot;FIPSNO&quot;: 37057, &quot;NAME&quot;: &quot;Davidson&quot;, &quot;NWBIR74&quot;: 736.0, &quot;NWBIR79&quot;: 941.0, &quot;NWR74&quot;: 133.599564, &quot;NWR79&quot;: 131.737365, &quot;PERIMETER&quot;: 1.791, &quot;SID74&quot;: 8.0, &quot;SID79&quot;: 8.0, &quot;SIDR74&quot;: 1.452169, &quot;SIDR79&quot;: 1.119978, &quot;__folium_color&quot;: &quot;#4ac16d&quot;, &quot;cardinalities&quot;: 7}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.985595703125, 35.5532989501953, -81.37665557861328, 35.994651794433594], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.8162841796875, 35.574378967285156], [-81.8656234741211, 35.71885299682617], [-81.985595703125, 35.79995346069335], [-81.97529602050781, 35.818279266357415], [-81.9329833984375, 35.82759857177734], [-81.90625762939453, 35.847995758056626], [-81.9062271118164, 35.89201354980468], [-81.94134521484375, 35.95497512817383], [-81.92214965820312, 35.98251342773438], [-81.90084838867188, 35.994651794433594], [-81.88081359863281, 35.9895248413086], [-81.85987091064455, 35.97034072875976], [-81.80278778076172, 35.960330963134766], [-81.77568817138672, 35.94394683837891], [-81.77347564697266, 35.92220306396484], [-81.74844360351562, 35.92075729370118], [-81.70182800292969, 35.86879730224609], [-81.59336853027344, 35.81312561035157], [-81.56025695800781, 35.77544784545898], [-81.45714569091797, 35.779933929443345], [-81.41757202148438, 35.75590515136719], [-81.37665557861328, 35.75003433227539], [-81.40572357177734, 35.69750976562499], [-81.49569702148438, 35.60654830932617], [-81.52364349365234, 35.56126022338867], [-81.56253814697266, 35.5553092956543], [-81.5881118774414, 35.56177520751953], [-81.64390563964845, 35.5532989501953], [-81.68431854248047, 35.56543731689454], [-81.69519805908203, 35.57163619995117], [-81.70082092285156, 35.595611572265625], [-81.7496109008789, 35.60171127319336], [-81.76560974121094, 35.584224700927734], [-81.8162841796875, 35.574378967285156]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;42&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.134, &quot;BIR74&quot;: 3573.0, &quot;BIR79&quot;: 4314.0, &quot;CNTY_&quot;: 1958, &quot;CNTY_ID&quot;: 1958, &quot;CRESS_ID&quot;: 12, &quot;FIPS&quot;: &quot;37023&quot;, &quot;FIPSNO&quot;: 37023, &quot;NAME&quot;: &quot;Burke&quot;, &quot;NWBIR74&quot;: 326.0, &quot;NWBIR79&quot;: 407.0, &quot;NWR74&quot;: 91.239854, &quot;NWR79&quot;: 94.343996, &quot;PERIMETER&quot;: 1.755, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 15.0, &quot;SIDR74&quot;: 1.399384, &quot;SIDR79&quot;: 3.477051, &quot;__folium_color&quot;: &quot;#4ac16d&quot;, &quot;cardinalities&quot;: 7}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.83831024169922, 35.69911575317382, -76.35819244384766, 35.97746658325195], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.40843200683594, 35.69911575317382], [-76.63381958007812, 35.70300292968751], [-76.83831024169922, 35.70545578002929], [-76.82595825195312, 35.75688171386718], [-76.8052749633789, 35.790374755859375], [-76.80667877197266, 35.81084060668946], [-76.78306579589844, 35.859233856201165], [-76.76126098632812, 35.864543914794915], [-76.7417221069336, 35.883075714111335], [-76.72859954833984, 35.910858154296875], [-76.70832061767578, 35.91983413696289], [-76.69721984863281, 35.94154357910156], [-76.4094696044922, 35.97746658325195], [-76.3714828491211, 35.93234252929687], [-76.38356018066406, 35.900413513183594], [-76.35819244384766, 35.860591888427734], [-76.40869903564453, 35.78948211669921], [-76.40843200683594, 35.69911575317382]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;43&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.1, &quot;BIR74&quot;: 990.0, &quot;BIR79&quot;: 1141.0, &quot;CNTY_&quot;: 1962, &quot;CNTY_ID&quot;: 1962, &quot;CRESS_ID&quot;: 94, &quot;FIPS&quot;: &quot;37187&quot;, &quot;FIPSNO&quot;: 37187, &quot;NAME&quot;: &quot;Washington&quot;, &quot;NWBIR74&quot;: 521.0, &quot;NWBIR79&quot;: 651.0, &quot;NWR74&quot;: 526.262626, &quot;NWR79&quot;: 570.552147, &quot;PERIMETER&quot;: 1.331, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 5.050505, &quot;SIDR79&quot;: 0.0, &quot;__folium_color&quot;: &quot;#277f8e&quot;, &quot;cardinalities&quot;: 5}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.40869903564453, 35.59466552734375, -76.02604675292969, 35.97687530517578], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.16730499267578, 35.696842193603516], [-76.21023559570312, 35.604389190673835], [-76.23279571533203, 35.59466552734375], [-76.2976303100586, 35.61169433593749], [-76.27344512939453, 35.689498901367195], [-76.40843200683594, 35.69911575317382], [-76.40869903564453, 35.78948211669921], [-76.35819244384766, 35.860591888427734], [-76.38356018066406, 35.900413513183594], [-76.3714828491211, 35.93234252929687], [-76.2137680053711, 35.97687530517578], [-76.08963775634766, 35.96291351318359], [-76.02604675292969, 35.92042541503906], [-76.07591247558594, 35.756801605224595], [-76.0430679321289, 35.6838493347168], [-76.16730499267578, 35.696842193603516]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;44&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.099, &quot;BIR74&quot;: 248.0, &quot;BIR79&quot;: 319.0, &quot;CNTY_&quot;: 1963, &quot;CNTY_ID&quot;: 1963, &quot;CRESS_ID&quot;: 89, &quot;FIPS&quot;: &quot;37177&quot;, &quot;FIPSNO&quot;: 37177, &quot;NAME&quot;: &quot;Tyrrell&quot;, &quot;NWBIR74&quot;: 116.0, &quot;NWBIR79&quot;: 141.0, &quot;NWR74&quot;: 467.741935, &quot;NWR79&quot;: 442.00627, &quot;PERIMETER&quot;: 1.411, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 0.0, &quot;__folium_color&quot;: &quot;#440154&quot;, &quot;cardinalities&quot;: 2}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.2906723022461, 35.51900482177735, -81.8162841796875, 35.95497512817383], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.8162841796875, 35.574378967285156], [-81.83189392089844, 35.56506347656249], [-81.84027099609375, 35.537242889404304], [-81.86215209960939, 35.53054809570312], [-81.96704864501953, 35.52158737182617], [-82.00160217285156, 35.545974731445305], [-82.03618621826172, 35.52858734130858], [-82.11675262451172, 35.51900482177735], [-82.17070770263672, 35.52846527099609], [-82.26800537109375, 35.56885910034179], [-82.2906723022461, 35.58930206298828], [-82.26534271240234, 35.61248779296876], [-82.28424072265625, 35.638904571533196], [-82.2891845703125, 35.67148971557617], [-82.27920532226562, 35.69755554199219], [-82.21178436279297, 35.71698760986328], [-82.16429138183594, 35.76052474975587], [-82.15459442138672, 35.79837036132813], [-82.11885070800781, 35.81853103637696], [-82.09799194335938, 35.84385681152344], [-82.03468322753906, 35.853580474853516], [-81.99089813232422, 35.87247467041016], [-81.98334503173828, 35.887577056884766], [-81.98836517333984, 35.905643463134766], [-81.947021484375, 35.9104118347168], [-81.94495391845703, 35.91861343383789], [-81.96139526367188, 35.9392204284668], [-81.94134521484375, 35.95497512817383], [-81.9062271118164, 35.89201354980468], [-81.90625762939453, 35.847995758056626], [-81.9329833984375, 35.82759857177734], [-81.97529602050781, 35.818279266357415], [-81.985595703125, 35.79995346069335], [-81.8656234741211, 35.71885299682617], [-81.8162841796875, 35.574378967285156]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;45&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.116, &quot;BIR74&quot;: 1946.0, &quot;BIR79&quot;: 2215.0, &quot;CNTY_&quot;: 1964, &quot;CNTY_ID&quot;: 1964, &quot;CRESS_ID&quot;: 56, &quot;FIPS&quot;: &quot;37111&quot;, &quot;FIPSNO&quot;: 37111, &quot;NAME&quot;: &quot;McDowell&quot;, &quot;NWBIR74&quot;: 134.0, &quot;NWBIR79&quot;: 128.0, &quot;NWR74&quot;: 68.859198, &quot;NWR79&quot;: 57.78781, &quot;PERIMETER&quot;: 1.664, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 2.569373, &quot;SIDR79&quot;: 2.257336, &quot;__folium_color&quot;: &quot;#1fa187&quot;, &quot;cardinalities&quot;: 6}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.06440734863281, 35.505699157714844, -79.5378189086914, 35.91681289672851], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.7649917602539, 35.50593566894532], [-80.06440734863281, 35.505699157714844], [-80.0426025390625, 35.91681289672851], [-79.5378189086914, 35.890968322753906], [-79.54098510742188, 35.83699035644531], [-79.55535888671875, 35.5130500793457], [-79.7649917602539, 35.50593566894532]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;46&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.201, &quot;BIR74&quot;: 4456.0, &quot;BIR79&quot;: 5711.0, &quot;CNTY_&quot;: 1968, &quot;CNTY_ID&quot;: 1968, &quot;CRESS_ID&quot;: 76, &quot;FIPS&quot;: &quot;37151&quot;, &quot;FIPSNO&quot;: 37151, &quot;NAME&quot;: &quot;Randolph&quot;, &quot;NWBIR74&quot;: 384.0, &quot;NWBIR79&quot;: 483.0, &quot;NWR74&quot;: 86.175943, &quot;NWR79&quot;: 84.57363, &quot;PERIMETER&quot;: 1.805, &quot;SID74&quot;: 7.0, &quot;SID79&quot;: 12.0, &quot;SIDR74&quot;: 1.570916, &quot;SIDR79&quot;: 2.101208, &quot;__folium_color&quot;: &quot;#1fa187&quot;, &quot;cardinalities&quot;: 6}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.55535888671875, 35.5102424621582, -78.90571594238281, 35.86815261840819], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.55535888671875, 35.5130500793457], [-79.54098510742188, 35.83699035644531], [-79.23799133300781, 35.837245941162095], [-79.24619293212892, 35.86815261840819], [-79.09536743164062, 35.85394287109375], [-79.0181350708008, 35.85786437988281], [-78.90571594238281, 35.86051559448241], [-78.9444351196289, 35.77011489868164], [-78.9388885498047, 35.76144409179687], [-78.99880981445312, 35.60132217407225], [-78.92107391357422, 35.57885742187499], [-78.9744873046875, 35.51715469360351], [-79.03849792480469, 35.54946136474609], [-79.06729125976562, 35.59870529174805], [-79.13260650634766, 35.62461471557617], [-79.19424438476562, 35.575130462646484], [-79.20973205566406, 35.55345153808594], [-79.22050476074219, 35.55080032348633], [-79.22713470458984, 35.565364837646484], [-79.27609252929688, 35.53027725219726], [-79.2861328125, 35.54440689086914], [-79.30536651611328, 35.542705535888665], [-79.31501007080078, 35.53913116455078], [-79.31285858154297, 35.5268669128418], [-79.33155059814455, 35.521980285644524], [-79.34294891357422, 35.5102424621582], [-79.55535888671875, 35.5130500793457]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;47&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.18, &quot;BIR74&quot;: 1646.0, &quot;BIR79&quot;: 2398.0, &quot;CNTY_&quot;: 1973, &quot;CNTY_ID&quot;: 1973, &quot;CRESS_ID&quot;: 19, &quot;FIPS&quot;: &quot;37037&quot;, &quot;FIPSNO&quot;: 37037, &quot;NAME&quot;: &quot;Chatham&quot;, &quot;NWBIR74&quot;: 591.0, &quot;NWBIR79&quot;: 687.0, &quot;NWR74&quot;: 359.052248, &quot;NWR79&quot;: 286.488741, &quot;PERIMETER&quot;: 2.142, &quot;SID74&quot;: 2.0, &quot;SID79&quot;: 3.0, &quot;SIDR74&quot;: 1.215067, &quot;SIDR79&quot;: 1.251043, &quot;__folium_color&quot;: &quot;#a0da39&quot;, &quot;cardinalities&quot;: 8}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.18692779541016, 35.574256896972656, -77.67121887207031, 35.85449600219727], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.0653305053711, 35.58203887939453], [-78.1249008178711, 35.59751892089843], [-78.16244506835938, 35.6829833984375], [-78.16180419921875, 35.70929336547852], [-78.18692779541016, 35.725112915039055], [-77.873046875, 35.84470748901367], [-77.84492492675781, 35.83557510375976], [-77.83014678955078, 35.85449600219727], [-77.76713562011719, 35.83686447143555], [-77.7550048828125, 35.82483673095703], [-77.75749206542969, 35.79810333251953], [-77.73314666748048, 35.73954772949217], [-77.67121887207031, 35.670265197753906], [-77.69832611083984, 35.65399932861328], [-77.8262939453125, 35.574256896972656], [-77.82717895507812, 35.58290100097656], [-78.00213623046875, 35.575996398925774], [-78.06048583984375, 35.594669342041016], [-78.0653305053711, 35.58203887939453]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;48&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.094, &quot;BIR74&quot;: 3702.0, &quot;BIR79&quot;: 4706.0, &quot;CNTY_&quot;: 1979, &quot;CNTY_ID&quot;: 1979, &quot;CRESS_ID&quot;: 98, &quot;FIPS&quot;: &quot;37195&quot;, &quot;FIPSNO&quot;: 37195, &quot;NAME&quot;: &quot;Wilson&quot;, &quot;NWBIR74&quot;: 1827.0, &quot;NWBIR79&quot;: 2330.0, &quot;NWR74&quot;: 493.517018, &quot;NWR79&quot;: 495.112622, &quot;PERIMETER&quot;: 1.307, &quot;SID74&quot;: 11.0, &quot;SID79&quot;: 13.0, &quot;SIDR74&quot;: 2.971367, &quot;SIDR79&quot;: 2.762431, &quot;__folium_color&quot;: &quot;#1fa187&quot;, &quot;cardinalities&quot;: 6}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.76612091064453, 35.49489974975585, -80.1819076538086, 35.85165786743164], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.2982406616211, 35.49489974975585], [-80.72651672363281, 35.50756835937499], [-80.76612091064453, 35.682037353515625], [-80.70597076416016, 35.85165786743164], [-80.63494110107422, 35.840259552001946], [-80.60755920410156, 35.82225799560546], [-80.57232666015625, 35.813812255859375], [-80.52672576904297, 35.78180694580078], [-80.48869323730469, 35.775615692138665], [-80.45677185058594, 35.74579620361329], [-80.37725830078125, 35.71068572998047], [-80.32628631591797, 35.714012145996094], [-80.32559204101562, 35.68315505981445], [-80.28578186035158, 35.6369743347168], [-80.251220703125, 35.62480163574219], [-80.20921325683594, 35.574512481689446], [-80.1819076538086, 35.505119323730455], [-80.2982406616211, 35.49489974975585]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;49&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.134, &quot;BIR74&quot;: 4606.0, &quot;BIR79&quot;: 6427.0, &quot;CNTY_&quot;: 1980, &quot;CNTY_ID&quot;: 1980, &quot;CRESS_ID&quot;: 80, &quot;FIPS&quot;: &quot;37159&quot;, &quot;FIPSNO&quot;: 37159, &quot;NAME&quot;: &quot;Rowan&quot;, &quot;NWBIR74&quot;: 1057.0, &quot;NWBIR79&quot;: 1504.0, &quot;NWR74&quot;: 229.483283, &quot;NWR79&quot;: 234.012759, &quot;PERIMETER&quot;: 1.59, &quot;SID74&quot;: 3.0, &quot;SID79&quot;: 8.0, &quot;SIDR74&quot;: 0.651324, &quot;SIDR79&quot;: 1.244749, &quot;__folium_color&quot;: &quot;#1fa187&quot;, &quot;cardinalities&quot;: 6}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.69832611083984, 35.32355499267578, -77.10376739501953, 35.82841873168945], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.47388458251953, 35.42152786254882], [-77.50456237792969, 35.48483276367187], [-77.50393676757812, 35.50389099121094], [-77.52104949951172, 35.51650619506837], [-77.52342987060547, 35.53017807006836], [-77.54957580566406, 35.52572631835937], [-77.56464385986328, 35.531940460205085], [-77.6341323852539, 35.58782577514648], [-77.69832611083984, 35.65399932861328], [-77.67121887207031, 35.670265197753906], [-77.5055160522461, 35.766754150390625], [-77.47323608398438, 35.799659729003906], [-77.4547119140625, 35.79381561279296], [-77.42699432373047, 35.808197021484375], [-77.4185791015625, 35.822086334228516], [-77.40569305419922, 35.817264556884766], [-77.39680480957031, 35.82841873168945], [-77.35810089111328, 35.815311431884766], [-77.2645034790039, 35.78277969360351], [-77.26081848144531, 35.75909042358398], [-77.2076644897461, 35.755126953125], [-77.17845916748047, 35.73219299316406], [-77.17742156982422, 35.714462280273445], [-77.1922378540039, 35.712093353271484], [-77.19551849365234, 35.699913024902344], [-77.1754379272461, 35.67628479003907], [-77.18721008300781, 35.664306640625], [-77.1746826171875, 35.63541030883788], [-77.15205383300781, 35.619884490966804], [-77.14834594726562, 35.59800338745117], [-77.11939239501953, 35.58549880981446], [-77.10376739501953, 35.55018615722657], [-77.14739990234375, 35.547588348388665], [-77.17221069335938, 35.519123077392585], [-77.19496154785156, 35.42295455932617], [-77.2112045288086, 35.3956413269043], [-77.24054718017578, 35.37998580932617], [-77.24430084228516, 35.354190826416016], [-77.26419067382812, 35.350112915039055], [-77.2938003540039, 35.37395095825196], [-77.35421752929688, 35.32355499267578], [-77.38616180419922, 35.32926177978516], [-77.4014892578125, 35.34276962280273], [-77.4439468383789, 35.35459518432617], [-77.47388458251953, 35.42152786254882]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;50&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.168, &quot;BIR74&quot;: 5094.0, &quot;BIR79&quot;: 6635.0, &quot;CNTY_&quot;: 1984, &quot;CNTY_ID&quot;: 1984, &quot;CRESS_ID&quot;: 74, &quot;FIPS&quot;: &quot;37147&quot;, &quot;FIPSNO&quot;: 37147, &quot;NAME&quot;: &quot;Pitt&quot;, &quot;NWBIR74&quot;: 2620.0, &quot;NWBIR79&quot;: 3059.0, &quot;NWR74&quot;: 514.330585, &quot;NWR79&quot;: 461.03994, &quot;PERIMETER&quot;: 1.791, &quot;SID74&quot;: 14.0, &quot;SID79&quot;: 11.0, &quot;SIDR74&quot;: 2.748331, &quot;SIDR79&quot;: 1.657875, &quot;__folium_color&quot;: &quot;#4ac16d&quot;, &quot;cardinalities&quot;: 7}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.52364349365234, 35.543563842773445, -80.9312744140625, 35.82331848144531], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.96143341064455, 35.543563842773445], [-81.52364349365234, 35.56126022338867], [-81.49569702148438, 35.60654830932617], [-81.40572357177734, 35.69750976562499], [-81.37665557861328, 35.75003433227539], [-81.32813262939453, 35.795059204101555], [-81.14140319824219, 35.82331848144531], [-81.12728118896484, 35.78896713256835], [-81.10888671875, 35.77190017700196], [-81.07220458984375, 35.743648529052734], [-81.05477905273438, 35.71340179443359], [-81.00357818603516, 35.69705581665038], [-80.9312744140625, 35.619590759277344], [-80.96143341064455, 35.543563842773445]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;51&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.106, &quot;BIR74&quot;: 5754.0, &quot;BIR79&quot;: 6883.0, &quot;CNTY_&quot;: 1986, &quot;CNTY_ID&quot;: 1986, &quot;CRESS_ID&quot;: 18, &quot;FIPS&quot;: &quot;37035&quot;, &quot;FIPSNO&quot;: 37035, &quot;NAME&quot;: &quot;Catawba&quot;, &quot;NWBIR74&quot;: 790.0, &quot;NWBIR79&quot;: 914.0, &quot;NWR74&quot;: 137.295794, &quot;NWR79&quot;: 132.790934, &quot;PERIMETER&quot;: 1.444, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 21.0, &quot;SIDR74&quot;: 0.868961, &quot;SIDR79&quot;: 3.050995, &quot;__folium_color&quot;: &quot;#1fa187&quot;, &quot;cardinalities&quot;: 6}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.88111114501953, 35.41803359985351, -82.17070770263672, 35.816402435302734], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-82.25810241699219, 35.46372985839844], [-82.3228759765625, 35.49515914916991], [-82.37096405029297, 35.4787712097168], [-82.36483764648438, 35.46345901489258], [-82.37368774414062, 35.45737838745117], [-82.40906524658203, 35.46892166137695], [-82.47492218017578, 35.44440460205078], [-82.51951599121094, 35.44391632080078], [-82.52690124511719, 35.428321838378906], [-82.55113220214844, 35.42689514160156], [-82.56393432617188, 35.438423156738274], [-82.61868286132812, 35.43767547607421], [-82.66898345947266, 35.45516586303711], [-82.7141571044922, 35.43915176391602], [-82.74388885498047, 35.41803359985351], [-82.7808837890625, 35.44168853759765], [-82.79472351074219, 35.464969635009766], [-82.7706298828125, 35.53273391723633], [-82.77203369140625, 35.571292877197266], [-82.81333923339844, 35.61753463745117], [-82.82310485839844, 35.62138748168945], [-82.84486389160156, 35.61314773559569], [-82.86552429199219, 35.63580322265625], [-82.88111114501953, 35.6735610961914], [-82.84326934814453, 35.69172668457032], [-82.80562591552734, 35.68490600585937], [-82.76630401611328, 35.694000244140625], [-82.50054931640625, 35.79612731933594], [-82.40581512451172, 35.81397247314453], [-82.37525177001953, 35.816402435302734], [-82.34539794921875, 35.80519485473633], [-82.34185028076173, 35.76350784301758], [-82.32184600830078, 35.73984909057618], [-82.28157806396484, 35.7202033996582], [-82.27920532226562, 35.69755554199219], [-82.2891845703125, 35.67148971557617], [-82.28424072265625, 35.638904571533196], [-82.26534271240234, 35.61248779296876], [-82.2906723022461, 35.58930206298828], [-82.26800537109375, 35.56885910034179], [-82.17070770263672, 35.52846527099609], [-82.22290802001953, 35.51569366455078], [-82.22760009765625, 35.4829216003418], [-82.24015808105469, 35.468154907226555], [-82.25810241699219, 35.46372985839844]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;52&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.168, &quot;BIR74&quot;: 7515.0, &quot;BIR79&quot;: 9956.0, &quot;CNTY_&quot;: 1988, &quot;CNTY_ID&quot;: 1988, &quot;CRESS_ID&quot;: 11, &quot;FIPS&quot;: &quot;37021&quot;, &quot;FIPSNO&quot;: 37021, &quot;NAME&quot;: &quot;Buncombe&quot;, &quot;NWBIR74&quot;: 930.0, &quot;NWBIR79&quot;: 1206.0, &quot;NWR74&quot;: 123.752495, &quot;NWR79&quot;: 121.132985, &quot;PERIMETER&quot;: 1.995, &quot;SID74&quot;: 9.0, &quot;SID79&quot;: 18.0, &quot;SIDR74&quot;: 1.197605, &quot;SIDR79&quot;: 1.807955, &quot;__folium_color&quot;: &quot;#4ac16d&quot;, &quot;cardinalities&quot;: 7}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.70896911621094, 35.24907684326172, -78.0653305053711, 35.81552505493163], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.53874206542969, 35.31511688232422], [-78.53946685791016, 35.336463928222656], [-78.60082244873047, 35.40303039550781], [-78.62317657470703, 35.44641494750976], [-78.6887435913086, 35.507526397705085], [-78.70896911621094, 35.51410293579101], [-78.70321655273438, 35.51993942260741], [-78.4776382446289, 35.69561386108399], [-78.25454711914062, 35.81552505493163], [-78.23404693603516, 35.745792388916016], [-78.2115478515625, 35.73819351196289], [-78.20561981201172, 35.72539520263671], [-78.18692779541016, 35.725112915039055], [-78.16180419921875, 35.70929336547852], [-78.16244506835938, 35.6829833984375], [-78.1249008178711, 35.59751892089843], [-78.0653305053711, 35.58203887939453], [-78.1459732055664, 35.42899322509765], [-78.15689086914062, 35.35063171386719], [-78.17745971679688, 35.33959960937501], [-78.20903778076172, 35.3391761779785], [-78.23722839355469, 35.314632415771484], [-78.2681655883789, 35.317359924316406], [-78.31012725830078, 35.2802848815918], [-78.41667938232422, 35.24907684326172], [-78.49362182617188, 35.259620666503906], [-78.53874206542969, 35.31511688232422]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;53&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.207, &quot;BIR74&quot;: 3999.0, &quot;BIR79&quot;: 4780.0, &quot;CNTY_&quot;: 1989, &quot;CNTY_ID&quot;: 1989, &quot;CRESS_ID&quot;: 51, &quot;FIPS&quot;: &quot;37101&quot;, &quot;FIPSNO&quot;: 37101, &quot;NAME&quot;: &quot;Johnston&quot;, &quot;NWBIR74&quot;: 1165.0, &quot;NWBIR79&quot;: 1349.0, &quot;NWR74&quot;: 291.322831, &quot;NWR79&quot;: 282.217573, &quot;PERIMETER&quot;: 1.851, &quot;SID74&quot;: 6.0, &quot;SID79&quot;: 13.0, &quot;SIDR74&quot;: 1.500375, &quot;SIDR79&quot;: 2.719665, &quot;__folium_color&quot;: &quot;#4ac16d&quot;, &quot;cardinalities&quot;: 7}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.25912475585938, 35.290767669677734, -82.74388885498047, 35.79185104370117], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-82.74388885498047, 35.41803359985351], [-82.83323669433594, 35.315570831298814], [-82.91911315917969, 35.290767669677734], [-82.95362091064453, 35.308528900146484], [-82.98535919189453, 35.3563232421875], [-83.0385971069336, 35.38993072509765], [-83.0460433959961, 35.4069938659668], [-83.08771514892578, 35.44632720947266], [-83.12823486328125, 35.456615447998054], [-83.14237213134766, 35.48439407348633], [-83.18139648437501, 35.51240921020508], [-83.15702056884766, 35.55166244506836], [-83.18037414550781, 35.58282089233399], [-83.1781005859375, 35.623291015625], [-83.19512939453125, 35.6378173828125], [-83.18429565429688, 35.66307830810547], [-83.21525573730469, 35.68539810180664], [-83.25912475585938, 35.691009521484375], [-83.25330352783203, 35.7007064819336], [-83.24385070800781, 35.718215942382805], [-83.18534851074219, 35.728885650634766], [-83.14366149902344, 35.762683868408196], [-83.1181869506836, 35.763809204101555], [-83.0599594116211, 35.782577514648445], [-82.98700714111328, 35.773990631103516], [-82.96275329589844, 35.79185104370117], [-82.94304656982422, 35.76646423339843], [-82.95218658447266, 35.73899841308594], [-82.90753936767578, 35.727848052978516], [-82.88111114501953, 35.6735610961914], [-82.86552429199219, 35.63580322265625], [-82.84486389160156, 35.61314773559569], [-82.82310485839844, 35.62138748168945], [-82.81333923339844, 35.61753463745117], [-82.77203369140625, 35.571292877197266], [-82.7706298828125, 35.53273391723633], [-82.79472351074219, 35.464969635009766], [-82.7808837890625, 35.44168853759765], [-82.74388885498047, 35.41803359985351]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;54&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.144, &quot;BIR74&quot;: 2110.0, &quot;BIR79&quot;: 2463.0, &quot;CNTY_&quot;: 1996, &quot;CNTY_ID&quot;: 1996, &quot;CRESS_ID&quot;: 44, &quot;FIPS&quot;: &quot;37087&quot;, &quot;FIPSNO&quot;: 37087, &quot;NAME&quot;: &quot;Haywood&quot;, &quot;NWBIR74&quot;: 57.0, &quot;NWBIR79&quot;: 62.0, &quot;NWR74&quot;: 27.014218, &quot;NWR79&quot;: 25.172554, &quot;PERIMETER&quot;: 1.69, &quot;SID74&quot;: 2.0, &quot;SID79&quot;: 8.0, &quot;SIDR74&quot;: 0.947867, &quot;SIDR79&quot;: 3.248071, &quot;__folium_color&quot;: &quot;#1fa187&quot;, &quot;cardinalities&quot;: 6}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.02120971679688, 35.189826965332024, -75.45697784423828, 36.22925567626953], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-75.78317260742188, 36.225193023681626], [-75.77315521240234, 36.22925567626953], [-75.54496765136719, 35.788360595703125], [-75.7027359008789, 36.049861907958984], [-75.7408676147461, 36.050323486328125], [-75.78317260742188, 36.225193023681626]]], [[[-75.89149475097656, 35.63126754760743], [-75.90802764892578, 35.6656379699707], [-76.02120971679688, 35.66909408569335], [-75.98785400390625, 35.89270782470703], [-75.81805419921875, 35.92351913452148], [-75.74896240234375, 35.86933898925781], [-75.7293701171875, 35.66517257690429], [-75.779052734375, 35.57868576049804], [-75.89149475097656, 35.63126754760743]]], [[[-75.49121856689453, 35.6704978942871], [-75.53362274169922, 35.76885604858398], [-75.45697784423828, 35.6173973083496], [-75.52629852294922, 35.227916717529304], [-75.7492904663086, 35.189826965332024], [-75.69156646728516, 35.23498916625976], [-75.521484375, 35.28135681152344], [-75.47541809082031, 35.56449508666993], [-75.49121856689453, 35.6704978942871]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;55&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.094, &quot;BIR74&quot;: 521.0, &quot;BIR79&quot;: 1059.0, &quot;CNTY_&quot;: 2000, &quot;CNTY_ID&quot;: 2000, &quot;CRESS_ID&quot;: 28, &quot;FIPS&quot;: &quot;37055&quot;, &quot;FIPSNO&quot;: 37055, &quot;NAME&quot;: &quot;Dare&quot;, &quot;NWBIR74&quot;: 43.0, &quot;NWBIR79&quot;: 73.0, &quot;NWR74&quot;: 82.533589, &quot;NWR79&quot;: 68.932956, &quot;PERIMETER&quot;: 3.64, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 0.944287, &quot;__folium_color&quot;: &quot;#440154&quot;, &quot;cardinalities&quot;: 2}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.19551849365234, 35.217166900634766, -76.49253845214844, 35.736778259277344], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-77.10376739501953, 35.55018615722657], [-77.11939239501953, 35.58549880981446], [-77.14834594726562, 35.59800338745117], [-77.15205383300781, 35.619884490966804], [-77.1746826171875, 35.63541030883788], [-77.18721008300781, 35.664306640625], [-77.1754379272461, 35.67628479003907], [-77.19551849365234, 35.699913024902344], [-77.1922378540039, 35.712093353271484], [-77.17742156982422, 35.714462280273445], [-77.17845916748047, 35.73219299316406], [-77.16128540039062, 35.736778259277344], [-76.97991180419922, 35.65012741088867], [-76.83831024169922, 35.70545578002929], [-76.63381958007812, 35.70300292968751], [-76.60891723632812, 35.664154052734375], [-76.60794830322266, 35.63506698608398], [-76.58587646484375, 35.60945510864258], [-76.53959655761719, 35.59403610229492], [-76.5189437866211, 35.57764434814453], [-76.49253845214844, 35.541786193847656], [-76.63819885253906, 35.520336151123054], [-76.62876892089844, 35.43789672851562], [-76.70537567138672, 35.411933898925774], [-77.10376739501953, 35.55018615722657]]], [[[-76.61451721191406, 35.272918701171875], [-76.64021301269531, 35.237247467041016], [-76.85057067871094, 35.217166900634766], [-76.8976058959961, 35.25157165527344], [-77.19496154785156, 35.42295455932617], [-77.17221069335938, 35.519123077392585], [-77.14739990234375, 35.547588348388665], [-77.10376739501953, 35.55018615722657], [-76.98318481445312, 35.436500549316406], [-76.69490051269531, 35.350425720214844], [-76.61451721191406, 35.272918701171875]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;56&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.203, &quot;BIR74&quot;: 2692.0, &quot;BIR79&quot;: 2909.0, &quot;CNTY_&quot;: 2004, &quot;CNTY_ID&quot;: 2004, &quot;CRESS_ID&quot;: 7, &quot;FIPS&quot;: &quot;37013&quot;, &quot;FIPSNO&quot;: 37013, &quot;NAME&quot;: &quot;Beaufort&quot;, &quot;NWBIR74&quot;: 1131.0, &quot;NWBIR79&quot;: 1163.0, &quot;NWR74&quot;: 420.13373, &quot;NWR79&quot;: 399.793744, &quot;PERIMETER&quot;: 3.197, &quot;SID74&quot;: 7.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 2.600297, &quot;SIDR79&quot;: 1.375043, &quot;__folium_color&quot;: &quot;#1fa187&quot;, &quot;cardinalities&quot;: 6}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.95470428466797, 35.27222061157226, -83.15702056884766, 35.691009521484375], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-83.33181762695312, 35.319343566894524], [-83.4246826171875, 35.31531906127929], [-83.47322845458984, 35.29164505004883], [-83.67919158935547, 35.27222061157226], [-83.6900863647461, 35.28778076171874], [-83.68938446044922, 35.30824279785156], [-83.63421630859375, 35.334033966064446], [-83.59888458251953, 35.36236572265625], [-83.58038330078126, 35.40108489990235], [-83.58671569824219, 35.42768859863282], [-83.63232421875, 35.43674087524414], [-83.65361022949219, 35.42109680175781], [-83.74495697021484, 35.441402435302734], [-83.85498809814453, 35.45012664794922], [-83.87989044189453, 35.46202850341796], [-83.93007659912111, 35.44901657104492], [-83.95470428466797, 35.45545959472656], [-83.9100112915039, 35.476478576660156], [-83.8812255859375, 35.5105857849121], [-83.8302001953125, 35.51906204223633], [-83.77587890625, 35.55260467529297], [-83.6728744506836, 35.56497192382813], [-83.61386108398438, 35.57173919677735], [-83.56103515625, 35.55517578125], [-83.50579833984375, 35.55955123901367], [-83.45829010009766, 35.597278594970696], [-83.38709259033203, 35.62521743774414], [-83.34302520751953, 35.65325927734374], [-83.29841613769531, 35.65632629394531], [-83.25912475585938, 35.691009521484375], [-83.21525573730469, 35.68539810180664], [-83.18429565429688, 35.66307830810547], [-83.19512939453125, 35.6378173828125], [-83.1781005859375, 35.623291015625], [-83.18037414550781, 35.58282089233399], [-83.15702056884766, 35.55166244506836], [-83.18139648437501, 35.51240921020508], [-83.2266616821289, 35.51345443725586], [-83.24730682373047, 35.506988525390625], [-83.30986022949219, 35.46347427368164], [-83.35302734375, 35.45589828491211], [-83.36471557617188, 35.413330078125], [-83.3298110961914, 35.36391067504883], [-83.33181762695312, 35.319343566894524]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;57&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.141, &quot;BIR74&quot;: 675.0, &quot;BIR79&quot;: 883.0, &quot;CNTY_&quot;: 2013, &quot;CNTY_ID&quot;: 2013, &quot;CRESS_ID&quot;: 87, &quot;FIPS&quot;: &quot;37173&quot;, &quot;FIPSNO&quot;: 37173, &quot;NAME&quot;: &quot;Swain&quot;, &quot;NWBIR74&quot;: 281.0, &quot;NWBIR79&quot;: 406.0, &quot;NWR74&quot;: 416.296296, &quot;NWR79&quot;: 459.796149, &quot;PERIMETER&quot;: 2.316, &quot;SID74&quot;: 3.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 4.444444, &quot;SIDR79&quot;: 2.265006, &quot;__folium_color&quot;: &quot;#365c8d&quot;, &quot;cardinalities&quot;: 4}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.83058166503906, 35.33967208862305, -77.47388458251953, 35.65399932861328], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.80518341064453, 35.36458969116211], [-77.80410766601562, 35.40179824829101], [-77.83058166503906, 35.42362594604492], [-77.8262939453125, 35.574256896972656], [-77.69832611083984, 35.65399932861328], [-77.6341323852539, 35.58782577514648], [-77.56464385986328, 35.531940460205085], [-77.54957580566406, 35.52572631835937], [-77.52342987060547, 35.53017807006836], [-77.52104949951172, 35.51650619506837], [-77.50393676757812, 35.50389099121094], [-77.50456237792969, 35.48483276367187], [-77.47388458251953, 35.42152786254882], [-77.4946746826172, 35.40744400024413], [-77.53497314453125, 35.417823791503906], [-77.53717803955078, 35.401981353759766], [-77.55872344970703, 35.38108825683594], [-77.6218032836914, 35.36648559570312], [-77.66605377197266, 35.33967208862305], [-77.6844711303711, 35.34593963623048], [-77.69841766357423, 35.36981964111328], [-77.76069641113281, 35.3619384765625], [-77.80518341064453, 35.36458969116211]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;58&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.07, &quot;BIR74&quot;: 870.0, &quot;BIR79&quot;: 1178.0, &quot;CNTY_&quot;: 2016, &quot;CNTY_ID&quot;: 2016, &quot;CRESS_ID&quot;: 40, &quot;FIPS&quot;: &quot;37079&quot;, &quot;FIPSNO&quot;: 37079, &quot;NAME&quot;: &quot;Greene&quot;, &quot;NWBIR74&quot;: 534.0, &quot;NWBIR79&quot;: 664.0, &quot;NWR74&quot;: 613.793103, &quot;NWR79&quot;: 563.667233, &quot;PERIMETER&quot;: 1.105, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 4.597701, &quot;SIDR79&quot;: 3.395586, &quot;__folium_color&quot;: &quot;#365c8d&quot;, &quot;cardinalities&quot;: 4}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.36248779296875, 35.30453872680664, -78.9744873046875, 35.62461471557617], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.18244171142578, 35.30453872680664], [-79.26432037353516, 35.34457015991212], [-79.28472900390626, 35.39280700683594], [-79.3031997680664, 35.408805847167976], [-79.3245849609375, 35.41482925415039], [-79.33109283447266, 35.44482040405272], [-79.36248779296875, 35.470413208007805], [-79.34367370605469, 35.491641998291016], [-79.34294891357422, 35.5102424621582], [-79.33155059814455, 35.521980285644524], [-79.31285858154297, 35.5268669128418], [-79.31501007080078, 35.53913116455078], [-79.30536651611328, 35.542705535888665], [-79.2861328125, 35.54440689086914], [-79.27609252929688, 35.53027725219726], [-79.22713470458984, 35.565364837646484], [-79.22050476074219, 35.55080032348633], [-79.20973205566406, 35.55345153808594], [-79.19424438476562, 35.575130462646484], [-79.13260650634766, 35.62461471557617], [-79.06729125976562, 35.59870529174805], [-79.03849792480469, 35.54946136474609], [-78.9744873046875, 35.51715469360351], [-79.18244171142578, 35.30453872680664]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;59&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.065, &quot;BIR74&quot;: 2252.0, &quot;BIR79&quot;: 2949.0, &quot;CNTY_&quot;: 2026, &quot;CNTY_ID&quot;: 2026, &quot;CRESS_ID&quot;: 53, &quot;FIPS&quot;: &quot;37105&quot;, &quot;FIPSNO&quot;: 37105, &quot;NAME&quot;: &quot;Lee&quot;, &quot;NWBIR74&quot;: 736.0, &quot;NWBIR79&quot;: 905.0, &quot;NWR74&quot;: 326.820604, &quot;NWR79&quot;: 306.883689, &quot;PERIMETER&quot;: 1.093, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 6.0, &quot;SIDR74&quot;: 2.220249, &quot;SIDR79&quot;: 2.034588, &quot;__folium_color&quot;: &quot;#46327e&quot;, &quot;cardinalities&quot;: 3}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.27872467041016, 35.182472229003906, -81.68431854248047, 35.60171127319336], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.97144317626953, 35.188282012939446], [-81.96451568603516, 35.2474250793457], [-82.05158233642578, 35.32312774658203], [-82.08415222167969, 35.33935546874999], [-82.1221694946289, 35.38861846923828], [-82.1551284790039, 35.39710235595703], [-82.25827789306642, 35.39335632324217], [-82.27872467041016, 35.43564224243163], [-82.2746810913086, 35.45160675048828], [-82.25810241699219, 35.46372985839844], [-82.24015808105469, 35.468154907226555], [-82.22760009765625, 35.4829216003418], [-82.22290802001953, 35.51569366455078], [-82.17070770263672, 35.52846527099609], [-82.11675262451172, 35.51900482177735], [-82.03618621826172, 35.52858734130858], [-82.00160217285156, 35.545974731445305], [-81.96704864501953, 35.52158737182617], [-81.86215209960939, 35.53054809570312], [-81.84027099609375, 35.537242889404304], [-81.83189392089844, 35.56506347656249], [-81.8162841796875, 35.574378967285156], [-81.76560974121094, 35.584224700927734], [-81.7496109008789, 35.60171127319336], [-81.70082092285156, 35.595611572265625], [-81.69519805908203, 35.57163619995117], [-81.68431854248047, 35.56543731689454], [-81.69768524169922, 35.35326385498047], [-81.73716735839844, 35.25417327880859], [-81.75949096679688, 35.220699310302734], [-81.7653579711914, 35.182472229003906], [-81.87059020996094, 35.18311691284181], [-81.97144317626953, 35.188282012939446]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;60&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.146, &quot;BIR74&quot;: 2992.0, &quot;BIR79&quot;: 3543.0, &quot;CNTY_&quot;: 2027, &quot;CNTY_ID&quot;: 2027, &quot;CRESS_ID&quot;: 81, &quot;FIPS&quot;: &quot;37161&quot;, &quot;FIPSNO&quot;: 37161, &quot;NAME&quot;: &quot;Rutherford&quot;, &quot;NWBIR74&quot;: 495.0, &quot;NWBIR79&quot;: 576.0, &quot;NWR74&quot;: 165.441176, &quot;NWR79&quot;: 162.57409, &quot;PERIMETER&quot;: 1.778, &quot;SID74&quot;: 12.0, &quot;SID79&quot;: 8.0, &quot;SIDR74&quot;: 4.010695, &quot;SIDR79&quot;: 2.257973, &quot;__folium_color&quot;: &quot;#1fa187&quot;, &quot;cardinalities&quot;: 6}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.31012725830078, 35.14418029785156, -77.80410766601562, 35.594669342041016], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.16319274902344, 35.18228912353516], [-78.16517639160156, 35.193218231201165], [-78.25740051269531, 35.220951080322266], [-78.31012725830078, 35.2802848815918], [-78.2681655883789, 35.317359924316406], [-78.23722839355469, 35.314632415771484], [-78.20903778076172, 35.3391761779785], [-78.17745971679688, 35.33959960937501], [-78.15689086914062, 35.35063171386719], [-78.1459732055664, 35.42899322509765], [-78.0653305053711, 35.58203887939453], [-78.06048583984375, 35.594669342041016], [-78.00213623046875, 35.575996398925774], [-77.82717895507812, 35.58290100097656], [-77.8262939453125, 35.574256896972656], [-77.83058166503906, 35.42362594604492], [-77.80410766601562, 35.40179824829101], [-77.80518341064453, 35.36458969116211], [-77.83006286621094, 35.34235000610351], [-77.83657836914064, 35.171741485595696], [-77.8876724243164, 35.15496444702148], [-77.89415740966798, 35.14418029785156], [-77.91397857666016, 35.15997314453125], [-77.94469451904297, 35.16823196411133], [-77.96392822265625, 35.16402435302734], [-78.00215911865234, 35.186477661132805], [-78.03650665283203, 35.18569183349609], [-78.08753204345703, 35.17018508911133], [-78.16319274902344, 35.18228912353516]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;61&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.142, &quot;BIR74&quot;: 6638.0, &quot;BIR79&quot;: 8227.0, &quot;CNTY_&quot;: 2029, &quot;CNTY_ID&quot;: 2029, &quot;CRESS_ID&quot;: 96, &quot;FIPS&quot;: &quot;37191&quot;, &quot;FIPSNO&quot;: 37191, &quot;NAME&quot;: &quot;Wayne&quot;, &quot;NWBIR74&quot;: 2593.0, &quot;NWBIR79&quot;: 3073.0, &quot;NWR74&quot;: 390.629708, &quot;NWR79&quot;: 373.526194, &quot;PERIMETER&quot;: 1.655, &quot;SID74&quot;: 18.0, &quot;SID79&quot;: 23.0, &quot;SIDR74&quot;: 2.71166, &quot;SIDR79&quot;: 2.795673, &quot;__folium_color&quot;: &quot;#1fa187&quot;, &quot;cardinalities&quot;: 6}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.2166519165039, 35.189964294433594, -78.53874206542969, 35.57885742187499], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.61273956298828, 35.243831634521484], [-78.716064453125, 35.259979248046875], [-78.81238555908203, 35.25872039794921], [-78.87457275390625, 35.24253463745117], [-78.88601684570312, 35.229934692382805], [-78.91258239746094, 35.22246551513671], [-79.09589385986328, 35.189964294433594], [-79.14683532714844, 35.21304321289062], [-79.16909790039064, 35.23590087890626], [-79.2166519165039, 35.26527786254882], [-79.18244171142578, 35.30453872680664], [-78.9744873046875, 35.51715469360351], [-78.92107391357422, 35.57885742187499], [-78.70321655273438, 35.51993942260741], [-78.70896911621094, 35.51410293579101], [-78.6887435913086, 35.507526397705085], [-78.62317657470703, 35.44641494750976], [-78.60082244873047, 35.40303039550781], [-78.53946685791016, 35.336463928222656], [-78.53874206542969, 35.31511688232422], [-78.58041381835938, 35.286575317382805], [-78.61273956298828, 35.243831634521484]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;62&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.154, &quot;BIR74&quot;: 3776.0, &quot;BIR79&quot;: 4789.0, &quot;CNTY_&quot;: 2030, &quot;CNTY_ID&quot;: 2030, &quot;CRESS_ID&quot;: 43, &quot;FIPS&quot;: &quot;37085&quot;, &quot;FIPSNO&quot;: 37085, &quot;NAME&quot;: &quot;Harnett&quot;, &quot;NWBIR74&quot;: 1051.0, &quot;NWBIR79&quot;: 1453.0, &quot;NWR74&quot;: 278.336864, &quot;NWR79&quot;: 303.403633, &quot;PERIMETER&quot;: 1.68, &quot;SID74&quot;: 6.0, &quot;SID79&quot;: 10.0, &quot;SIDR74&quot;: 1.588983, &quot;SIDR79&quot;: 2.088119, &quot;__folium_color&quot;: &quot;#4ac16d&quot;, &quot;cardinalities&quot;: 7}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.7653579711914, 35.16285324096679, -81.3114242553711, 35.56543731689454], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.32282257080078, 35.16375732421875], [-81.36217498779297, 35.16285324096679], [-81.7653579711914, 35.182472229003906], [-81.75949096679688, 35.220699310302734], [-81.73716735839844, 35.25417327880859], [-81.69768524169922, 35.35326385498047], [-81.68431854248047, 35.56543731689454], [-81.64390563964845, 35.5532989501953], [-81.5881118774414, 35.56177520751953], [-81.56253814697266, 35.5553092956543], [-81.52364349365234, 35.56126022338867], [-81.5069580078125, 35.54649734497071], [-81.5155029296875, 35.52142333984376], [-81.44507598876953, 35.413368225097656], [-81.40741729736328, 35.359806060791016], [-81.35326385498047, 35.32730102539063], [-81.36479949951172, 35.31037139892578], [-81.35234832763672, 35.275104522705064], [-81.31942749023438, 35.260498046875], [-81.3114242553711, 35.187950134277344], [-81.32282257080078, 35.16375732421875]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;63&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.118, &quot;BIR74&quot;: 4866.0, &quot;BIR79&quot;: 5526.0, &quot;CNTY_&quot;: 2032, &quot;CNTY_ID&quot;: 2032, &quot;CRESS_ID&quot;: 23, &quot;FIPS&quot;: &quot;37045&quot;, &quot;FIPSNO&quot;: 37045, &quot;NAME&quot;: &quot;Cleveland&quot;, &quot;NWBIR74&quot;: 1491.0, &quot;NWBIR79&quot;: 1729.0, &quot;NWR74&quot;: 306.411837, &quot;NWR79&quot;: 312.884546, &quot;PERIMETER&quot;: 1.506, &quot;SID74&quot;: 10.0, &quot;SID79&quot;: 21.0, &quot;SIDR74&quot;: 2.055076, &quot;SIDR79&quot;: 3.800217, &quot;__folium_color&quot;: &quot;#277f8e&quot;, &quot;cardinalities&quot;: 5}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.52364349365234, 35.39745330810547, -80.94219970703125, 35.56126022338867], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.95677185058594, 35.39745330810547], [-81.44507598876953, 35.413368225097656], [-81.5155029296875, 35.52142333984376], [-81.5069580078125, 35.54649734497071], [-81.52364349365234, 35.56126022338867], [-80.96143341064455, 35.543563842773445], [-80.9510726928711, 35.52866744995117], [-80.9553451538086, 35.50912094116211], [-80.94219970703125, 35.451129913330085], [-80.95386505126953, 35.436058044433594], [-80.95677185058594, 35.39745330810547]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;64&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.078, &quot;BIR74&quot;: 2216.0, &quot;BIR79&quot;: 2817.0, &quot;CNTY_&quot;: 2034, &quot;CNTY_ID&quot;: 2034, &quot;CRESS_ID&quot;: 55, &quot;FIPS&quot;: &quot;37109&quot;, &quot;FIPSNO&quot;: 37109, &quot;NAME&quot;: &quot;Lincoln&quot;, &quot;NWBIR74&quot;: 302.0, &quot;NWBIR79&quot;: 350.0, &quot;NWR74&quot;: 136.281588, &quot;NWR79&quot;: 124.245651, &quot;PERIMETER&quot;: 1.384, &quot;SID74&quot;: 8.0, &quot;SID79&quot;: 7.0, &quot;SIDR74&quot;: 3.610108, &quot;SIDR79&quot;: 2.484913, &quot;__folium_color&quot;: &quot;#1fa187&quot;, &quot;cardinalities&quot;: 6}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.36471557617188, 35.00027847290038, -82.91911315917969, 35.51345443725586], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-83.10628509521484, 35.00027847290038], [-83.1614990234375, 35.05922317504883], [-83.14505767822266, 35.08328628540038], [-83.14820098876953, 35.091381072998054], [-83.1771469116211, 35.11149597167969], [-83.1934814453125, 35.13921737670899], [-83.21793365478516, 35.15899276733398], [-83.22003936767578, 35.222526550292976], [-83.23278045654297, 35.23080825805664], [-83.2639389038086, 35.22177124023437], [-83.28498077392578, 35.22663497924805], [-83.31063842773438, 35.259986877441406], [-83.33181762695312, 35.319343566894524], [-83.3298110961914, 35.36391067504883], [-83.36471557617188, 35.413330078125], [-83.35302734375, 35.45589828491211], [-83.30986022949219, 35.46347427368164], [-83.24730682373047, 35.506988525390625], [-83.2266616821289, 35.51345443725586], [-83.18139648437501, 35.51240921020508], [-83.14237213134766, 35.48439407348633], [-83.12823486328125, 35.456615447998054], [-83.08771514892578, 35.44632720947266], [-83.0460433959961, 35.4069938659668], [-83.0385971069336, 35.38993072509765], [-82.98535919189453, 35.3563232421875], [-82.95362091064453, 35.308528900146484], [-82.91911315917969, 35.290767669677734], [-82.9268569946289, 35.22790527343751], [-82.97871398925781, 35.18572998046875], [-82.99058532714844, 35.15817642211913], [-82.9820785522461, 35.12750625610351], [-83.05208587646484, 35.06347656249999], [-83.04385375976562, 35.04006958007812], [-83.00727844238281, 35.02420425415039], [-83.10628509521484, 35.00027847290038]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;65&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.125, &quot;BIR74&quot;: 1143.0, &quot;BIR79&quot;: 1504.0, &quot;CNTY_&quot;: 2039, &quot;CNTY_ID&quot;: 2039, &quot;CRESS_ID&quot;: 50, &quot;FIPS&quot;: &quot;37099&quot;, &quot;FIPSNO&quot;: 37099, &quot;NAME&quot;: &quot;Jackson&quot;, &quot;NWBIR74&quot;: 215.0, &quot;NWBIR79&quot;: 307.0, &quot;NWR74&quot;: 188.101487, &quot;NWR79&quot;: 204.12234, &quot;PERIMETER&quot;: 1.601, &quot;SID74&quot;: 2.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 1.749781, &quot;SIDR79&quot;: 3.324468, &quot;__folium_color&quot;: &quot;#365c8d&quot;, &quot;cardinalities&quot;: 4}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.7649917602539, 35.03735733032227, -79.09589385986328, 35.5130500793457], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.60746765136719, 35.15918731689453], [-79.64837646484375, 35.18973159790038], [-79.70823669433594, 35.27841567993164], [-79.7649917602539, 35.50593566894532], [-79.55535888671875, 35.5130500793457], [-79.34294891357422, 35.5102424621582], [-79.34367370605469, 35.491641998291016], [-79.36248779296875, 35.470413208007805], [-79.33109283447266, 35.44482040405272], [-79.3245849609375, 35.41482925415039], [-79.3031997680664, 35.408805847167976], [-79.28472900390626, 35.39280700683594], [-79.26432037353516, 35.34457015991212], [-79.18244171142578, 35.30453872680664], [-79.2166519165039, 35.26527786254882], [-79.16909790039064, 35.23590087890626], [-79.14683532714844, 35.21304321289062], [-79.09589385986328, 35.189964294433594], [-79.09717559814453, 35.176807403564446], [-79.12200164794922, 35.17018508911133], [-79.14727783203125, 35.1735496520996], [-79.23529052734375, 35.203208923339844], [-79.35005187988281, 35.14079666137695], [-79.45536041259766, 35.03735733032227], [-79.49506378173828, 35.062507629394524], [-79.55290222167969, 35.06410598754882], [-79.57419586181642, 35.073265075683594], [-79.57563018798828, 35.11912536621094], [-79.60746765136719, 35.15918731689453]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;66&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.181, &quot;BIR74&quot;: 2648.0, &quot;BIR79&quot;: 3534.0, &quot;CNTY_&quot;: 2040, &quot;CNTY_ID&quot;: 2040, &quot;CRESS_ID&quot;: 63, &quot;FIPS&quot;: &quot;37125&quot;, &quot;FIPSNO&quot;: 37125, &quot;NAME&quot;: &quot;Moore&quot;, &quot;NWBIR74&quot;: 844.0, &quot;NWBIR79&quot;: 1151.0, &quot;NWR74&quot;: 318.731118, &quot;NWR79&quot;: 325.693265, &quot;PERIMETER&quot;: 1.98, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 1.888218, &quot;SIDR79&quot;: 1.414827, &quot;__folium_color&quot;: &quot;#fde725&quot;, &quot;cardinalities&quot;: 9}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.0655517578125, 35.002017974853516, -80.53964233398438, 35.50912094116211], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.04930114746094, 35.15153121948242], [-81.02396392822266, 35.149032592773445], [-81.00727844238281, 35.16324996948243], [-81.00151824951172, 35.195987701416016], [-81.01405334472656, 35.249900817871094], [-80.97964477539062, 35.33326721191406], [-80.92627716064453, 35.348674774169915], [-80.93775939941406, 35.36492538452149], [-80.98292541503906, 35.369094848632805], [-80.95677185058594, 35.39745330810547], [-80.95386505126953, 35.436058044433594], [-80.94219970703125, 35.451129913330085], [-80.9553451538086, 35.50912094116211], [-80.77622985839844, 35.50680923461913], [-80.77538299560547, 35.47957229614257], [-80.76168823242188, 35.46513748168945], [-80.74543762207031, 35.419857025146484], [-80.76274108886719, 35.40068054199219], [-80.68998718261719, 35.34075927734376], [-80.6594467163086, 35.26467514038087], [-80.53964233398438, 35.205818176269524], [-80.75968170166016, 35.03662109375], [-80.7972183227539, 35.028198242187514], [-80.84016418457033, 35.002017974853516], [-80.89471435546875, 35.05973434448241], [-80.92779541015625, 35.10124969482421], [-81.03988647460938, 35.037200927734375], [-81.0655517578125, 35.06648254394531], [-81.0284423828125, 35.10540771484374], [-81.04904174804688, 35.13201141357422], [-81.04930114746094, 35.15153121948242]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;67&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.143, &quot;BIR74&quot;: 21588.0, &quot;BIR79&quot;: 30757.0, &quot;CNTY_&quot;: 2041, &quot;CNTY_ID&quot;: 2041, &quot;CRESS_ID&quot;: 60, &quot;FIPS&quot;: &quot;37119&quot;, &quot;FIPSNO&quot;: 37119, &quot;NAME&quot;: &quot;Mecklenburg&quot;, &quot;NWBIR74&quot;: 8027.0, &quot;NWBIR79&quot;: 11631.0, &quot;NWR74&quot;: 371.826941, &quot;NWR79&quot;: 378.157818, &quot;PERIMETER&quot;: 1.887, &quot;SID74&quot;: 44.0, &quot;SID79&quot;: 35.0, &quot;SIDR74&quot;: 2.038169, &quot;SIDR79&quot;: 1.137952, &quot;__folium_color&quot;: &quot;#277f8e&quot;, &quot;cardinalities&quot;: 5}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.77622985839844, 35.186912536621094, -80.2982406616211, 35.50756835937499], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.50294494628906, 35.186912536621094], [-80.53964233398438, 35.205818176269524], [-80.6594467163086, 35.26467514038087], [-80.68998718261719, 35.34075927734376], [-80.76274108886719, 35.40068054199219], [-80.74543762207031, 35.419857025146484], [-80.76168823242188, 35.46513748168945], [-80.77538299560547, 35.47957229614257], [-80.77622985839844, 35.50680923461913], [-80.72651672363281, 35.50756835937499], [-80.2982406616211, 35.49489974975585], [-80.37847137451172, 35.38483810424805], [-80.48171997070312, 35.21060943603516], [-80.50294494628906, 35.186912536621094]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;68&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.091, &quot;BIR74&quot;: 4099.0, &quot;BIR79&quot;: 5669.0, &quot;CNTY_&quot;: 2042, &quot;CNTY_ID&quot;: 2042, &quot;CRESS_ID&quot;: 13, &quot;FIPS&quot;: &quot;37025&quot;, &quot;FIPSNO&quot;: 37025, &quot;NAME&quot;: &quot;Cabarrus&quot;, &quot;NWBIR74&quot;: 856.0, &quot;NWBIR79&quot;: 1203.0, &quot;NWR74&quot;: 208.831422, &quot;NWR79&quot;: 212.206738, &quot;PERIMETER&quot;: 1.321, &quot;SID74&quot;: 3.0, &quot;SID79&quot;: 20.0, &quot;SIDR74&quot;: 0.731886, &quot;SIDR79&quot;: 3.527959, &quot;__folium_color&quot;: &quot;#277f8e&quot;, &quot;cardinalities&quot;: 5}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.1819076538086, 35.136581420898445, -79.60746765136719, 35.50593566894532], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.0714111328125, 35.150741577148445], [-80.05906677246094, 35.17707824707031], [-80.06584167480469, 35.207942962646484], [-80.09234619140625, 35.25422668457031], [-80.09351348876953, 35.291446685791016], [-80.05075073242188, 35.36637115478515], [-80.05188751220703, 35.376808166503906], [-80.1163101196289, 35.46435928344726], [-80.16207122802734, 35.47474288940429], [-80.1819076538086, 35.505119323730455], [-80.06440734863281, 35.505699157714844], [-79.7649917602539, 35.50593566894532], [-79.70823669433594, 35.27841567993164], [-79.64837646484375, 35.18973159790038], [-79.60746765136719, 35.15918731689453], [-79.63729858398438, 35.15383529663087], [-79.69795227050781, 35.173072814941406], [-79.75984191894531, 35.16731262207032], [-79.83631896972656, 35.17380142211913], [-79.90946197509766, 35.15571975708007], [-79.97582244873047, 35.1507568359375], [-80.01068115234375, 35.13714218139649], [-80.06517791748047, 35.136581420898445], [-80.0714111328125, 35.150741577148445]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;69&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.13, &quot;BIR74&quot;: 1258.0, &quot;BIR79&quot;: 1598.0, &quot;CNTY_&quot;: 2044, &quot;CNTY_ID&quot;: 2044, &quot;CRESS_ID&quot;: 62, &quot;FIPS&quot;: &quot;37123&quot;, &quot;FIPSNO&quot;: 37123, &quot;NAME&quot;: &quot;Montgomery&quot;, &quot;NWBIR74&quot;: 472.0, &quot;NWBIR79&quot;: 588.0, &quot;NWR74&quot;: 375.198728, &quot;NWR79&quot;: 367.95995, &quot;PERIMETER&quot;: 1.732, &quot;SID74&quot;: 3.0, &quot;SID79&quot;: 8.0, &quot;SIDR74&quot;: 2.384738, &quot;SIDR79&quot;: 5.006258, &quot;__folium_color&quot;: &quot;#4ac16d&quot;, &quot;cardinalities&quot;: 7}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.50294494628906, 35.14973068237305, -80.05075073242188, 35.505119323730455], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.0714111328125, 35.150741577148445], [-80.11027526855469, 35.193836212158196], [-80.1316146850586, 35.17111587524413], [-80.1546859741211, 35.17608261108398], [-80.15914154052734, 35.15473937988281], [-80.16812896728516, 35.14973068237305], [-80.19010162353516, 35.167858123779304], [-80.21988677978516, 35.15918350219726], [-80.24758911132814, 35.204524993896484], [-80.26109313964844, 35.20404052734374], [-80.2751235961914, 35.193111419677734], [-80.32567596435547, 35.173915863037124], [-80.34872436523438, 35.17067337036132], [-80.3729476928711, 35.177864074707024], [-80.39875030517578, 35.16461181640625], [-80.42858123779297, 35.168594360351555], [-80.45328521728516, 35.16078567504883], [-80.48323059082031, 35.182910919189446], [-80.50294494628906, 35.186912536621094], [-80.48171997070312, 35.21060943603516], [-80.37847137451172, 35.38483810424805], [-80.2982406616211, 35.49489974975585], [-80.1819076538086, 35.505119323730455], [-80.16207122802734, 35.47474288940429], [-80.1163101196289, 35.46435928344726], [-80.05188751220703, 35.376808166503906], [-80.05075073242188, 35.36637115478515], [-80.09351348876953, 35.291446685791016], [-80.09234619140625, 35.25422668457031], [-80.06584167480469, 35.207942962646484], [-80.05906677246094, 35.17707824707031], [-80.0714111328125, 35.150741577148445]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;70&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.103, &quot;BIR74&quot;: 2356.0, &quot;BIR79&quot;: 3039.0, &quot;CNTY_&quot;: 2045, &quot;CNTY_ID&quot;: 2045, &quot;CRESS_ID&quot;: 84, &quot;FIPS&quot;: &quot;37167&quot;, &quot;FIPSNO&quot;: 37167, &quot;NAME&quot;: &quot;Stanly&quot;, &quot;NWBIR74&quot;: 370.0, &quot;NWBIR79&quot;: 528.0, &quot;NWR74&quot;: 157.04584, &quot;NWR79&quot;: 173.741362, &quot;PERIMETER&quot;: 1.461, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 7.0, &quot;SIDR74&quot;: 2.122241, &quot;SIDR79&quot;: 2.303389, &quot;__folium_color&quot;: &quot;#1fa187&quot;, &quot;cardinalities&quot;: 6}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.74388885498047, 35.14949035644531, -82.25810241699219, 35.49515914916991], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-82.57003021240234, 35.14949035644531], [-82.58922576904297, 35.18494796752929], [-82.59623718261719, 35.24246597290039], [-82.61061096191406, 35.26757812500001], [-82.60810089111328, 35.29306411743165], [-82.74388885498047, 35.41803359985351], [-82.7141571044922, 35.43915176391602], [-82.66898345947266, 35.45516586303711], [-82.61868286132812, 35.43767547607421], [-82.56393432617188, 35.438423156738274], [-82.55113220214844, 35.42689514160156], [-82.52690124511719, 35.428321838378906], [-82.51951599121094, 35.44391632080078], [-82.47492218017578, 35.44440460205078], [-82.40906524658203, 35.46892166137695], [-82.37368774414062, 35.45737838745117], [-82.36483764648438, 35.46345901489258], [-82.37096405029297, 35.4787712097168], [-82.3228759765625, 35.49515914916991], [-82.25810241699219, 35.46372985839844], [-82.2746810913086, 35.45160675048828], [-82.27872467041016, 35.43564224243163], [-82.25827789306642, 35.39335632324217], [-82.31555938720703, 35.30961608886718], [-82.34130859375, 35.28549575805664], [-82.34508514404297, 35.24319076538086], [-82.3580322265625, 35.2429313659668], [-82.35086059570312, 35.19267272949219], [-82.36012268066406, 35.18294906616211], [-82.37137603759766, 35.182723999023445], [-82.38961029052734, 35.208240509033196], [-82.43791961669922, 35.16955947875977], [-82.46674346923828, 35.173500061035156], [-82.52463531494142, 35.15456008911132], [-82.57003021240234, 35.14949035644531]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;71&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.095, &quot;BIR74&quot;: 2574.0, &quot;BIR79&quot;: 3679.0, &quot;CNTY_&quot;: 2047, &quot;CNTY_ID&quot;: 2047, &quot;CRESS_ID&quot;: 45, &quot;FIPS&quot;: &quot;37089&quot;, &quot;FIPSNO&quot;: 37089, &quot;NAME&quot;: &quot;Henderson&quot;, &quot;NWBIR74&quot;: 158.0, &quot;NWBIR79&quot;: 264.0, &quot;NWR74&quot;: 61.383061, &quot;NWR79&quot;: 71.75863, &quot;PERIMETER&quot;: 1.471, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 8.0, &quot;SIDR74&quot;: 1.942502, &quot;SIDR79&quot;: 2.174504, &quot;__folium_color&quot;: &quot;#277f8e&quot;, &quot;cardinalities&quot;: 5}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-84.03086090087892, 35.21538162231445, -83.58038330078126, 35.46202850341796], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-83.69563293457031, 35.25080871582032], [-83.7535629272461, 35.23716735839844], [-83.79187774658203, 35.24866104125976], [-83.83686065673828, 35.24674987792968], [-83.9216537475586, 35.21896743774413], [-83.96089935302734, 35.21538162231445], [-83.99220275878906, 35.232501983642585], [-84.00389099121094, 35.262088775634766], [-84.03086090087892, 35.29252243041993], [-84.02920532226562, 35.32529067993164], [-84.00630950927734, 35.37285995483398], [-84.01264953613281, 35.40762329101562], [-83.95470428466797, 35.45545959472656], [-83.93007659912111, 35.44901657104492], [-83.87989044189453, 35.46202850341796], [-83.85498809814453, 35.45012664794922], [-83.74495697021484, 35.441402435302734], [-83.65361022949219, 35.42109680175781], [-83.63232421875, 35.43674087524414], [-83.58671569824219, 35.42768859863282], [-83.58038330078126, 35.40108489990235], [-83.59888458251953, 35.36236572265625], [-83.63421630859375, 35.334033966064446], [-83.68938446044922, 35.30824279785156], [-83.6900863647461, 35.28778076171874], [-83.67919158935547, 35.27222061157226], [-83.69563293457031, 35.25080871582032]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;72&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.078, &quot;BIR74&quot;: 415.0, &quot;BIR79&quot;: 488.0, &quot;CNTY_&quot;: 2056, &quot;CNTY_ID&quot;: 2056, &quot;CRESS_ID&quot;: 38, &quot;FIPS&quot;: &quot;37075&quot;, &quot;FIPSNO&quot;: 37075, &quot;NAME&quot;: &quot;Graham&quot;, &quot;NWBIR74&quot;: 40.0, &quot;NWBIR79&quot;: 45.0, &quot;NWR74&quot;: 96.385542, &quot;NWR79&quot;: 92.213115, &quot;PERIMETER&quot;: 1.202, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 2.04918, &quot;__folium_color&quot;: &quot;#46327e&quot;, &quot;cardinalities&quot;: 3}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.83657836914064, 35.00083541870117, -77.38616180419922, 35.42152786254882], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.83657836914064, 35.171741485595696], [-77.83006286621094, 35.34235000610351], [-77.80518341064453, 35.36458969116211], [-77.76069641113281, 35.3619384765625], [-77.69841766357423, 35.36981964111328], [-77.6844711303711, 35.34593963623048], [-77.66605377197266, 35.33967208862305], [-77.6218032836914, 35.36648559570312], [-77.55872344970703, 35.38108825683594], [-77.53717803955078, 35.401981353759766], [-77.53497314453125, 35.417823791503906], [-77.4946746826172, 35.40744400024413], [-77.47388458251953, 35.42152786254882], [-77.4439468383789, 35.35459518432617], [-77.4014892578125, 35.34276962280273], [-77.38616180419922, 35.32926177978516], [-77.41315460205078, 35.33121871948242], [-77.45021057128906, 35.302059173583984], [-77.4485092163086, 35.285675048828125], [-77.42964935302734, 35.259838104248054], [-77.4740982055664, 35.227191925048814], [-77.52831268310547, 35.239696502685554], [-77.51077270507812, 35.15576934814453], [-77.5330581665039, 35.144882202148445], [-77.59949493408203, 35.070869445800774], [-77.73192596435547, 35.00083541870117], [-77.74478912353516, 35.002445220947266], [-77.75499725341797, 35.01808166503906], [-77.75160217285156, 35.09567642211913], [-77.7641372680664, 35.12861251831054], [-77.83657836914064, 35.171741485595696]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;73&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.104, &quot;BIR74&quot;: 3589.0, &quot;BIR79&quot;: 4225.0, &quot;CNTY_&quot;: 2065, &quot;CNTY_ID&quot;: 2065, &quot;CRESS_ID&quot;: 54, &quot;FIPS&quot;: &quot;37107&quot;, &quot;FIPSNO&quot;: 37107, &quot;NAME&quot;: &quot;Lenoir&quot;, &quot;NWBIR74&quot;: 1826.0, &quot;NWBIR79&quot;: 2047.0, &quot;NWR74&quot;: 508.776818, &quot;NWR79&quot;: 484.497041, &quot;PERIMETER&quot;: 1.548, &quot;SID74&quot;: 10.0, &quot;SID79&quot;: 14.0, &quot;SIDR74&quot;: 2.786291, &quot;SIDR79&quot;: 3.313609, &quot;__folium_color&quot;: &quot;#1fa187&quot;, &quot;cardinalities&quot;: 6}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.05208587646484, 35.02420425415039, -82.57003021240234, 35.41803359985351], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-82.8876953125, 35.055370330810554], [-83.00727844238281, 35.02420425415039], [-83.04385375976562, 35.04006958007812], [-83.05208587646484, 35.06347656249999], [-82.9820785522461, 35.12750625610351], [-82.99058532714844, 35.15817642211913], [-82.97871398925781, 35.18572998046875], [-82.9268569946289, 35.22790527343751], [-82.91911315917969, 35.290767669677734], [-82.83323669433594, 35.315570831298814], [-82.74388885498047, 35.41803359985351], [-82.60810089111328, 35.29306411743165], [-82.61061096191406, 35.26757812500001], [-82.59623718261719, 35.24246597290039], [-82.58922576904297, 35.18494796752929], [-82.57003021240234, 35.14949035644531], [-82.65449523925781, 35.11945724487304], [-82.68605041503906, 35.12146377563476], [-82.68803405761719, 35.097801208496094], [-82.69735717773438, 35.091232299804695], [-82.77134704589844, 35.08542251586914], [-82.8876953125, 35.055370330810554]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;74&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.098, &quot;BIR74&quot;: 1173.0, &quot;BIR79&quot;: 1401.0, &quot;CNTY_&quot;: 2067, &quot;CNTY_ID&quot;: 2067, &quot;CRESS_ID&quot;: 88, &quot;FIPS&quot;: &quot;37175&quot;, &quot;FIPSNO&quot;: 37175, &quot;NAME&quot;: &quot;Transylvania&quot;, &quot;NWBIR74&quot;: 92.0, &quot;NWBIR79&quot;: 104.0, &quot;NWR74&quot;: 78.431373, &quot;NWR79&quot;: 74.232691, &quot;PERIMETER&quot;: 1.389, &quot;SID74&quot;: 3.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 2.557545, &quot;SIDR79&quot;: 2.855103, &quot;__folium_color&quot;: &quot;#365c8d&quot;, &quot;cardinalities&quot;: 4}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.44507598876953, 35.149032592773445, -80.92627716064453, 35.413368225097656], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.32282257080078, 35.16375732421875], [-81.3114242553711, 35.187950134277344], [-81.31942749023438, 35.260498046875], [-81.35234832763672, 35.275104522705064], [-81.36479949951172, 35.31037139892578], [-81.35326385498047, 35.32730102539063], [-81.40741729736328, 35.359806060791016], [-81.44507598876953, 35.413368225097656], [-80.95677185058594, 35.39745330810547], [-80.98292541503906, 35.369094848632805], [-80.93775939941406, 35.36492538452149], [-80.92627716064453, 35.348674774169915], [-80.97964477539062, 35.33326721191406], [-81.01405334472656, 35.249900817871094], [-81.00151824951172, 35.195987701416016], [-81.00727844238281, 35.16324996948243], [-81.02396392822266, 35.149032592773445], [-81.04930114746094, 35.15153121948242], [-81.32282257080078, 35.16375732421875]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;75&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.091, &quot;BIR74&quot;: 9014.0, &quot;BIR79&quot;: 11455.0, &quot;CNTY_&quot;: 2068, &quot;CNTY_ID&quot;: 2068, &quot;CRESS_ID&quot;: 36, &quot;FIPS&quot;: &quot;37071&quot;, &quot;FIPSNO&quot;: 37071, &quot;NAME&quot;: &quot;Gaston&quot;, &quot;NWBIR74&quot;: 1523.0, &quot;NWBIR79&quot;: 2194.0, &quot;NWR74&quot;: 168.959396, &quot;NWR79&quot;: 191.532082, &quot;PERIMETER&quot;: 1.47, &quot;SID74&quot;: 11.0, &quot;SID79&quot;: 26.0, &quot;SIDR74&quot;: 1.220324, &quot;SIDR79&quot;: 2.269751, &quot;__folium_color&quot;: &quot;#46327e&quot;, &quot;cardinalities&quot;: 3}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.3580322265625, 35.18418884277343, -81.96451568603516, 35.39710235595703], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-82.21017456054688, 35.193126678466804], [-82.27832794189453, 35.19500732421874], [-82.32077026367188, 35.18418884277343], [-82.35086059570312, 35.19267272949219], [-82.3580322265625, 35.2429313659668], [-82.34508514404297, 35.24319076538086], [-82.34130859375, 35.28549575805664], [-82.31555938720703, 35.30961608886718], [-82.25827789306642, 35.39335632324217], [-82.1551284790039, 35.39710235595703], [-82.1221694946289, 35.38861846923828], [-82.08415222167969, 35.33935546874999], [-82.05158233642578, 35.32312774658203], [-81.96451568603516, 35.2474250793457], [-81.97144317626953, 35.188282012939446], [-82.21017456054688, 35.193126678466804]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;76&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.06, &quot;BIR74&quot;: 533.0, &quot;BIR79&quot;: 673.0, &quot;CNTY_&quot;: 2071, &quot;CNTY_ID&quot;: 2071, &quot;CRESS_ID&quot;: 75, &quot;FIPS&quot;: &quot;37149&quot;, &quot;FIPSNO&quot;: 37149, &quot;NAME&quot;: &quot;Polk&quot;, &quot;NWBIR74&quot;: 95.0, &quot;NWBIR79&quot;: 79.0, &quot;NWR74&quot;: 178.236398, &quot;NWR79&quot;: 117.384844, &quot;PERIMETER&quot;: 1.036, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 1.876173, &quot;SIDR79&quot;: 0.0, &quot;__folium_color&quot;: &quot;#440154&quot;, &quot;cardinalities&quot;: 2}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.7395248413086, 34.99202346801758, -83.10628509521484, 35.319343566894524], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-83.10628509521484, 35.00027847290038], [-83.51300811767578, 34.99202346801758], [-83.5272216796875, 35.019737243652344], [-83.55323791503906, 35.03576278686523], [-83.56204223632812, 35.05594253540038], [-83.64356231689453, 35.127498626708984], [-83.6448745727539, 35.14336013793946], [-83.71780395507812, 35.13880920410156], [-83.7395248413086, 35.14583969116211], [-83.71308135986328, 35.18075180053711], [-83.72232818603516, 35.19727325439453], [-83.69669342041016, 35.214435577392585], [-83.69563293457031, 35.25080871582032], [-83.67919158935547, 35.27222061157226], [-83.47322845458984, 35.29164505004883], [-83.4246826171875, 35.31531906127929], [-83.33181762695312, 35.319343566894524], [-83.31063842773438, 35.259986877441406], [-83.28498077392578, 35.22663497924805], [-83.2639389038086, 35.22177124023437], [-83.23278045654297, 35.23080825805664], [-83.22003936767578, 35.222526550292976], [-83.21793365478516, 35.15899276733398], [-83.1934814453125, 35.13921737670899], [-83.1771469116211, 35.11149597167969], [-83.14820098876953, 35.091381072998054], [-83.14505767822266, 35.08328628540038], [-83.1614990234375, 35.05922317504883], [-83.10628509521484, 35.00027847290038]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;77&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.131, &quot;BIR74&quot;: 797.0, &quot;BIR79&quot;: 1157.0, &quot;CNTY_&quot;: 2082, &quot;CNTY_ID&quot;: 2082, &quot;CRESS_ID&quot;: 57, &quot;FIPS&quot;: &quot;37113&quot;, &quot;FIPSNO&quot;: 37113, &quot;NAME&quot;: &quot;Macon&quot;, &quot;NWBIR74&quot;: 9.0, &quot;NWBIR79&quot;: 22.0, &quot;NWR74&quot;: 11.292346, &quot;NWR79&quot;: 19.014693, &quot;PERIMETER&quot;: 1.677, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 3.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 2.592913, &quot;__folium_color&quot;: &quot;#277f8e&quot;, &quot;cardinalities&quot;: 5}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.66641235351562, 34.553752899169915, -78.11373901367188, 35.31511688232422], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.11376953125, 34.72098541259764], [-78.11373901367188, 34.699180603027344], [-78.1567611694336, 34.67715454101562], [-78.25680541992188, 34.553752899169915], [-78.27461242675781, 34.58127593994141], [-78.30590057373047, 34.60535812377929], [-78.31988525390625, 34.63009262084961], [-78.30970001220703, 34.635852813720696], [-78.32234191894531, 34.64557266235351], [-78.3388671875, 34.6826057434082], [-78.36381530761719, 34.69204330444335], [-78.38667297363281, 34.72188949584961], [-78.4010009765625, 34.75933074951172], [-78.4992904663086, 34.85510635375977], [-78.5419921875, 34.90787124633789], [-78.59347534179688, 34.943470001220696], [-78.6342544555664, 34.98436737060547], [-78.66641235351562, 35.07146835327148], [-78.65815734863283, 35.09362030029296], [-78.64563751220703, 35.10255813598633], [-78.63348388671875, 35.153724670410156], [-78.64522552490236, 35.18972778320312], [-78.6327133178711, 35.1972999572754], [-78.63528442382812, 35.210952758789055], [-78.61273956298828, 35.243831634521484], [-78.58041381835938, 35.286575317382805], [-78.53874206542969, 35.31511688232422], [-78.49362182617188, 35.259620666503906], [-78.41667938232422, 35.24907684326172], [-78.31012725830078, 35.2802848815918], [-78.25740051269531, 35.220951080322266], [-78.16517639160156, 35.193218231201165], [-78.16319274902344, 35.18228912353516], [-78.17028045654297, 35.09748458862305], [-78.15524291992189, 35.06819152832031], [-78.14298248291016, 34.90132522583007], [-78.19544982910156, 34.74362564086913], [-78.15609741210938, 34.728477478027344], [-78.13581848144531, 34.711345672607415], [-78.11376953125, 34.72098541259764]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;78&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.241, &quot;BIR74&quot;: 3025.0, &quot;BIR79&quot;: 3447.0, &quot;CNTY_&quot;: 2083, &quot;CNTY_ID&quot;: 2083, &quot;CRESS_ID&quot;: 82, &quot;FIPS&quot;: &quot;37163&quot;, &quot;FIPSNO&quot;: 37163, &quot;NAME&quot;: &quot;Sampson&quot;, &quot;NWBIR74&quot;: 1396.0, &quot;NWBIR79&quot;: 1524.0, &quot;NWR74&quot;: 461.487603, &quot;NWR79&quot;: 442.123586, &quot;PERIMETER&quot;: 2.214, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 1.322314, &quot;SIDR79&quot;: 1.160429, &quot;__folium_color&quot;: &quot;#4ac16d&quot;, &quot;cardinalities&quot;: 7}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.9898910522461, 34.98221969604491, -76.50712585449219, 35.31208038330078], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-76.94324493408203, 35.0700340270996], [-76.94422912597658, 35.09972381591797], [-76.9898910522461, 35.15404510498046], [-76.97233581542969, 35.15677261352538], [-76.96660614013672, 35.18796539306641], [-76.94743347167969, 35.216991424560554], [-76.8976058959961, 35.25157165527344], [-76.85057067871094, 35.217166900634766], [-76.64021301269531, 35.237247467041016], [-76.61451721191406, 35.272918701171875], [-76.5912094116211, 35.31208038330078], [-76.54097747802734, 35.303688049316406], [-76.50712585449219, 35.248767852783196], [-76.64009094238281, 35.17251968383789], [-76.605224609375, 35.13856124877929], [-76.62422180175781, 35.06435012817383], [-76.67800903320312, 35.024085998535156], [-76.8494644165039, 34.98221969604491], [-76.94149017333984, 35.027427673339844], [-76.94324493408203, 35.0700340270996]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;79&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.082, &quot;BIR74&quot;: 542.0, &quot;BIR79&quot;: 631.0, &quot;CNTY_&quot;: 2085, &quot;CNTY_ID&quot;: 2085, &quot;CRESS_ID&quot;: 69, &quot;FIPS&quot;: &quot;37137&quot;, &quot;FIPSNO&quot;: 37137, &quot;NAME&quot;: &quot;Pamlico&quot;, &quot;NWBIR74&quot;: 222.0, &quot;NWBIR79&quot;: 277.0, &quot;NWR74&quot;: 409.594096, &quot;NWR79&quot;: 438.985737, &quot;PERIMETER&quot;: 1.388, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 1.845018, &quot;SIDR79&quot;: 1.584786, &quot;__folium_color&quot;: &quot;#440154&quot;, &quot;cardinalities&quot;: 2}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-84.3238525390625, 34.988224029541016, -83.69563293457031, 35.29252243041993], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-84.2910385131836, 35.21054458618163], [-84.22594451904297, 35.26160430908203], [-84.17972564697266, 35.24098968505859], [-84.10164642333984, 35.24555206298828], [-84.04277801513672, 35.27257537841797], [-84.03086090087892, 35.29252243041993], [-84.00389099121094, 35.262088775634766], [-83.99220275878906, 35.232501983642585], [-83.96089935302734, 35.21538162231445], [-83.9216537475586, 35.21896743774413], [-83.83686065673828, 35.24674987792968], [-83.79187774658203, 35.24866104125976], [-83.7535629272461, 35.23716735839844], [-83.69563293457031, 35.25080871582032], [-83.69669342041016, 35.214435577392585], [-83.72232818603516, 35.19727325439453], [-83.71308135986328, 35.18075180053711], [-83.7395248413086, 35.14583969116211], [-83.7553939819336, 35.148063659667976], [-83.8538818359375, 35.12579345703126], [-83.90731811523438, 35.07041549682617], [-83.95285034179688, 35.04844284057617], [-83.95977020263672, 35.01912307739258], [-83.9885482788086, 34.98906707763672], [-84.11824035644531, 34.988224029541016], [-84.3238525390625, 34.98900985717773], [-84.2910385131836, 35.21054458618163]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;80&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.12, &quot;BIR74&quot;: 1027.0, &quot;BIR79&quot;: 1173.0, &quot;CNTY_&quot;: 2088, &quot;CNTY_ID&quot;: 2088, &quot;CRESS_ID&quot;: 20, &quot;FIPS&quot;: &quot;37039&quot;, &quot;FIPSNO&quot;: 37039, &quot;NAME&quot;: &quot;Cherokee&quot;, &quot;NWBIR74&quot;: 32.0, &quot;NWBIR79&quot;: 42.0, &quot;NWR74&quot;: 31.158715, &quot;NWR79&quot;: 35.805627, &quot;PERIMETER&quot;: 1.686, &quot;SID74&quot;: 2.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 1.94742, &quot;SIDR79&quot;: 0.852515, &quot;__folium_color&quot;: &quot;#46327e&quot;, &quot;cardinalities&quot;: 3}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.10684204101562, 34.82742309570313, -78.4992904663086, 35.259979248046875], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.4992904663086, 34.85510635375977], [-78.51744079589844, 34.843528747558594], [-78.83165740966797, 34.844356536865234], [-78.89626312255861, 34.830902099609375], [-78.91255187988283, 34.82742309570313], [-78.92862701416016, 34.879798889160156], [-78.948486328125, 34.90268325805663], [-79.03360748291016, 34.9538230895996], [-79.09431457519531, 35.03785705566407], [-79.10684204101562, 35.119224548339844], [-79.09717559814453, 35.176807403564446], [-79.09589385986328, 35.189964294433594], [-78.91258239746094, 35.22246551513671], [-78.88601684570312, 35.229934692382805], [-78.87457275390625, 35.24253463745117], [-78.81238555908203, 35.25872039794921], [-78.716064453125, 35.259979248046875], [-78.61273956298828, 35.243831634521484], [-78.63528442382812, 35.210952758789055], [-78.6327133178711, 35.1972999572754], [-78.64522552490236, 35.18972778320312], [-78.63348388671875, 35.153724670410156], [-78.64563751220703, 35.10255813598633], [-78.65815734863283, 35.09362030029296], [-78.66641235351562, 35.07146835327148], [-78.6342544555664, 34.98436737060547], [-78.59347534179688, 34.943470001220696], [-78.5419921875, 34.90787124633789], [-78.4992904663086, 34.85510635375977]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;81&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.172, &quot;BIR74&quot;: 20366.0, &quot;BIR79&quot;: 26370.0, &quot;CNTY_&quot;: 2090, &quot;CNTY_ID&quot;: 2090, &quot;CRESS_ID&quot;: 26, &quot;FIPS&quot;: &quot;37051&quot;, &quot;FIPSNO&quot;: 37051, &quot;NAME&quot;: &quot;Cumberland&quot;, &quot;NWBIR74&quot;: 7043.0, &quot;NWBIR79&quot;: 10614.0, &quot;NWR74&quot;: 345.821467, &quot;NWR79&quot;: 402.502844, &quot;PERIMETER&quot;: 1.835, &quot;SID74&quot;: 38.0, &quot;SID79&quot;: 57.0, &quot;SIDR74&quot;: 1.865855, &quot;SIDR79&quot;: 2.161547, &quot;__folium_color&quot;: &quot;#1fa187&quot;, &quot;cardinalities&quot;: 6}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.73192596435547, 34.77451705932617, -77.04900360107422, 35.239696502685554], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.04900360107422, 34.83119201660156], [-77.05746459960938, 34.81504821777343], [-77.07313537597656, 34.815441131591804], [-77.10069274902344, 34.7974967956543], [-77.15982055664062, 34.78849792480469], [-77.16426086425783, 34.77451705932617], [-77.19284057617188, 34.80428695678711], [-77.18006134033203, 34.832149505615234], [-77.20626831054688, 34.835502624511726], [-77.22299194335938, 34.884510040283196], [-77.28542327880861, 34.92640304565429], [-77.33513641357422, 34.93254089355468], [-77.3699722290039, 34.914249420166016], [-77.4996337890625, 34.96250534057617], [-77.63925170898438, 34.9840202331543], [-77.68299102783203, 34.966724395751946], [-77.73192596435547, 35.00083541870117], [-77.59949493408203, 35.070869445800774], [-77.5330581665039, 35.144882202148445], [-77.51077270507812, 35.15576934814453], [-77.52831268310547, 35.239696502685554], [-77.4740982055664, 35.227191925048814], [-77.42340850830078, 35.194305419921875], [-77.20551300048828, 35.08805465698242], [-77.17924499511719, 35.05335998535157], [-77.14044952392578, 35.054237365722656], [-77.13111877441406, 35.06928253173829], [-77.11058807373047, 35.066036224365234], [-77.1033706665039, 35.02426147460937], [-77.10953521728516, 34.83042907714844], [-77.04900360107422, 34.83119201660156]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;82&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.121, &quot;BIR74&quot;: 578.0, &quot;BIR79&quot;: 650.0, &quot;CNTY_&quot;: 2091, &quot;CNTY_ID&quot;: 2091, &quot;CRESS_ID&quot;: 52, &quot;FIPS&quot;: &quot;37103&quot;, &quot;FIPSNO&quot;: 37103, &quot;NAME&quot;: &quot;Jones&quot;, &quot;NWBIR74&quot;: 297.0, &quot;NWBIR79&quot;: 305.0, &quot;NWR74&quot;: 513.84083, &quot;NWR79&quot;: 469.230769, &quot;PERIMETER&quot;: 1.978, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 2.0, &quot;SIDR74&quot;: 1.730104, &quot;SIDR79&quot;: 3.076923, &quot;__folium_color&quot;: &quot;#277f8e&quot;, &quot;cardinalities&quot;: 5}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.84016418457033, 34.814762115478516, -80.2751235961914, 35.205818176269524], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-80.84016418457033, 35.002017974853516], [-80.7972183227539, 35.028198242187514], [-80.75968170166016, 35.03662109375], [-80.53964233398438, 35.205818176269524], [-80.50294494628906, 35.186912536621094], [-80.48323059082031, 35.182910919189446], [-80.45328521728516, 35.16078567504883], [-80.42858123779297, 35.168594360351555], [-80.39875030517578, 35.16461181640625], [-80.3729476928711, 35.177864074707024], [-80.34872436523438, 35.17067337036132], [-80.32567596435547, 35.173915863037124], [-80.2751235961914, 35.193111419677734], [-80.32527923583984, 34.814762115478516], [-80.5615463256836, 34.815227508544915], [-80.80006408691406, 34.81611251831054], [-80.78565216064453, 34.94063949584961], [-80.84016418457033, 35.002017974853516]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;83&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.163, &quot;BIR74&quot;: 3915.0, &quot;BIR79&quot;: 5273.0, &quot;CNTY_&quot;: 2095, &quot;CNTY_ID&quot;: 2095, &quot;CRESS_ID&quot;: 90, &quot;FIPS&quot;: &quot;37179&quot;, &quot;FIPSNO&quot;: 37179, &quot;NAME&quot;: &quot;Union&quot;, &quot;NWBIR74&quot;: 1034.0, &quot;NWBIR79&quot;: 1348.0, &quot;NWR74&quot;: 264.112388, &quot;NWR79&quot;: 255.64195, &quot;PERIMETER&quot;: 1.716, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 9.0, &quot;SIDR74&quot;: 1.021711, &quot;SIDR79&quot;: 1.706808, &quot;__folium_color&quot;: &quot;#365c8d&quot;, &quot;cardinalities&quot;: 4}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.32527923583984, 34.807918548583984, -79.85370635986328, 35.204524993896484], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.91995239257812, 34.807918548583984], [-80.32527923583984, 34.814762115478516], [-80.2751235961914, 35.193111419677734], [-80.26109313964844, 35.20404052734374], [-80.24758911132814, 35.204524993896484], [-80.21988677978516, 35.15918350219726], [-80.19010162353516, 35.167858123779304], [-80.16812896728516, 35.14973068237305], [-80.15914154052734, 35.15473937988281], [-80.1546859741211, 35.17608261108398], [-80.1316146850586, 35.17111587524413], [-80.11027526855469, 35.193836212158196], [-80.0714111328125, 35.150741577148445], [-80.06517791748047, 35.136581420898445], [-80.0584487915039, 35.10398483276367], [-80.0028076171875, 35.089927673339844], [-79.97528076171875, 35.09673309326171], [-79.94491577148438, 35.115337371826165], [-79.92749786376953, 35.115779876708984], [-79.9151382446289, 35.10669326782227], [-79.90843200683594, 35.078994750976555], [-79.882080078125, 35.044464111328125], [-79.8939208984375, 35.00724411010742], [-79.86705017089844, 34.96771621704102], [-79.85370635986328, 34.90458297729492], [-79.90142059326172, 34.85240936279296], [-79.91995239257812, 34.807918548583984]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;84&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.138, &quot;BIR74&quot;: 1570.0, &quot;BIR79&quot;: 1875.0, &quot;CNTY_&quot;: 2096, &quot;CNTY_ID&quot;: 2096, &quot;CRESS_ID&quot;: 4, &quot;FIPS&quot;: &quot;37007&quot;, &quot;FIPSNO&quot;: 37007, &quot;NAME&quot;: &quot;Anson&quot;, &quot;NWBIR74&quot;: 952.0, &quot;NWBIR79&quot;: 1161.0, &quot;NWR74&quot;: 606.369427, &quot;NWR79&quot;: 619.2, &quot;PERIMETER&quot;: 1.621, &quot;SID74&quot;: 15.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 9.55414, &quot;SIDR79&quot;: 2.133333, &quot;__folium_color&quot;: &quot;#365c8d&quot;, &quot;cardinalities&quot;: 4}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.45536041259766, 34.83188247680663, -79.03360748291016, 35.203208923339844], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.34030151367188, 34.83560943603514], [-79.36067962646484, 34.94470977783204], [-79.3984146118164, 34.9962158203125], [-79.45536041259766, 35.03735733032227], [-79.35005187988281, 35.14079666137695], [-79.23529052734375, 35.203208923339844], [-79.14727783203125, 35.1735496520996], [-79.12200164794922, 35.17018508911133], [-79.09717559814453, 35.176807403564446], [-79.10684204101562, 35.119224548339844], [-79.09431457519531, 35.03785705566407], [-79.03360748291016, 34.9538230895996], [-79.18185424804688, 34.83188247680663], [-79.34030151367188, 34.83560943603514]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;85&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.098, &quot;BIR74&quot;: 1494.0, &quot;BIR79&quot;: 1706.0, &quot;CNTY_&quot;: 2097, &quot;CNTY_ID&quot;: 2097, &quot;CRESS_ID&quot;: 47, &quot;FIPS&quot;: &quot;37093&quot;, &quot;FIPSNO&quot;: 37093, &quot;NAME&quot;: &quot;Hoke&quot;, &quot;NWBIR74&quot;: 987.0, &quot;NWBIR79&quot;: 1172.0, &quot;NWR74&quot;: 660.64257, &quot;NWR79&quot;: 686.987104, &quot;PERIMETER&quot;: 1.262, &quot;SID74&quot;: 7.0, &quot;SID79&quot;: 6.0, &quot;SIDR74&quot;: 4.685408, &quot;SIDR79&quot;: 3.516999, &quot;__folium_color&quot;: &quot;#277f8e&quot;, &quot;cardinalities&quot;: 5}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.63381958007812, 35.069435119628906, -75.76370239257812, 35.70300292968751], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-76.5189437866211, 35.57764434814453], [-76.53959655761719, 35.59403610229492], [-76.58587646484375, 35.60945510864258], [-76.60794830322266, 35.63506698608398], [-76.60891723632812, 35.664154052734375], [-76.63381958007812, 35.70300292968751], [-76.40843200683594, 35.69911575317382], [-76.27344512939453, 35.689498901367195], [-76.2976303100586, 35.61169433593749], [-76.23279571533203, 35.59466552734375], [-76.21023559570312, 35.604389190673835], [-76.16730499267578, 35.696842193603516], [-76.10474395751953, 35.663639068603516], [-76.02120971679688, 35.66909408569335], [-75.90802764892578, 35.6656379699707], [-75.89149475097656, 35.63126754760743], [-76.05297851562501, 35.41460418701171], [-76.1816177368164, 35.341533660888665], [-76.4988021850586, 35.41621780395508], [-76.53375244140625, 35.45019912719727], [-76.45843505859375, 35.50442504882813], [-76.44652557373047, 35.55086517333984], [-76.5189437866211, 35.57764434814453]]], [[[-76.01700592041016, 35.069435119628906], [-75.97569274902344, 35.11618423461914], [-75.85393524169922, 35.16728210449218], [-75.76370239257812, 35.1922836303711], [-75.81153869628906, 35.16402053833007], [-75.90394592285156, 35.132492065429695], [-76.00287628173828, 35.069435119628906], [-76.01700592041016, 35.069435119628906]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;86&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.167, &quot;BIR74&quot;: 338.0, &quot;BIR79&quot;: 427.0, &quot;CNTY_&quot;: 2099, &quot;CNTY_ID&quot;: 2099, &quot;CRESS_ID&quot;: 48, &quot;FIPS&quot;: &quot;37095&quot;, &quot;FIPSNO&quot;: 37095, &quot;NAME&quot;: &quot;Hyde&quot;, &quot;NWBIR74&quot;: 134.0, &quot;NWBIR79&quot;: 169.0, &quot;NWR74&quot;: 396.449704, &quot;NWR79&quot;: 395.784543, &quot;PERIMETER&quot;: 2.709, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 0.0, &quot;__folium_color&quot;: &quot;#365c8d&quot;, &quot;cardinalities&quot;: 4}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.19544982910156, 34.711006164550774, -77.65526580810547, 35.186477661132805], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.68983459472656, 34.72019577026367], [-77.92667388916016, 34.711006164550774], [-77.9393081665039, 34.719406127929695], [-77.98915100097656, 34.717094421386726], [-78.01736450195312, 34.728931427001946], [-78.11376953125, 34.72098541259764], [-78.13581848144531, 34.711345672607415], [-78.15609741210938, 34.728477478027344], [-78.19544982910156, 34.74362564086913], [-78.14298248291016, 34.90132522583007], [-78.15524291992189, 35.06819152832031], [-78.17028045654297, 35.09748458862305], [-78.16319274902344, 35.18228912353516], [-78.08753204345703, 35.17018508911133], [-78.03650665283203, 35.18569183349609], [-78.00215911865234, 35.186477661132805], [-77.96392822265625, 35.16402435302734], [-77.94469451904297, 35.16823196411133], [-77.91397857666016, 35.15997314453125], [-77.89415740966798, 35.14418029785156], [-77.8876724243164, 35.15496444702148], [-77.83657836914064, 35.171741485595696], [-77.7641372680664, 35.12861251831054], [-77.75160217285156, 35.09567642211913], [-77.75499725341797, 35.01808166503906], [-77.74478912353516, 35.002445220947266], [-77.73192596435547, 35.00083541870117], [-77.68299102783203, 34.966724395751946], [-77.65526580810547, 34.9189338684082], [-77.68983459472656, 34.72019577026367]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;87&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.204, &quot;BIR74&quot;: 2483.0, &quot;BIR79&quot;: 2777.0, &quot;CNTY_&quot;: 2100, &quot;CNTY_ID&quot;: 2100, &quot;CRESS_ID&quot;: 31, &quot;FIPS&quot;: &quot;37061&quot;, &quot;FIPSNO&quot;: 37061, &quot;NAME&quot;: &quot;Duplin&quot;, &quot;NWBIR74&quot;: 1061.0, &quot;NWBIR79&quot;: 1227.0, &quot;NWR74&quot;: 427.305679, &quot;NWR79&quot;: 441.843716, &quot;PERIMETER&quot;: 1.871, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 7.0, &quot;SIDR74&quot;: 1.610954, &quot;SIDR79&quot;: 2.520706, &quot;__folium_color&quot;: &quot;#1fa187&quot;, &quot;cardinalities&quot;: 6}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.06517791748047, 34.805255889892564, -79.45536041259766, 35.17380142211913], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.68595886230469, 34.805255889892564], [-79.91995239257812, 34.807918548583984], [-79.90142059326172, 34.85240936279296], [-79.85370635986328, 34.90458297729492], [-79.86705017089844, 34.96771621704102], [-79.8939208984375, 35.00724411010742], [-79.882080078125, 35.044464111328125], [-79.90843200683594, 35.078994750976555], [-79.9151382446289, 35.10669326782227], [-79.92749786376953, 35.115779876708984], [-79.94491577148438, 35.115337371826165], [-79.97528076171875, 35.09673309326171], [-80.0028076171875, 35.089927673339844], [-80.0584487915039, 35.10398483276367], [-80.06517791748047, 35.136581420898445], [-80.01068115234375, 35.13714218139649], [-79.97582244873047, 35.1507568359375], [-79.90946197509766, 35.15571975708007], [-79.83631896972656, 35.17380142211913], [-79.75984191894531, 35.16731262207032], [-79.69795227050781, 35.173072814941406], [-79.63729858398438, 35.15383529663087], [-79.60746765136719, 35.15918731689453], [-79.57563018798828, 35.11912536621094], [-79.57419586181642, 35.073265075683594], [-79.55290222167969, 35.06410598754882], [-79.49506378173828, 35.062507629394524], [-79.45536041259766, 35.03735733032227], [-79.54710388183594, 35.00006103515624], [-79.57304382324219, 34.97836685180665], [-79.58052062988281, 34.94478988647461], [-79.56558990478517, 34.90750122070313], [-79.6219253540039, 34.84957122802734], [-79.61144256591797, 34.8177490234375], [-79.66014862060547, 34.81789779663085], [-79.68595886230469, 34.805255889892564]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;88&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.121, &quot;BIR74&quot;: 2756.0, &quot;BIR79&quot;: 3108.0, &quot;CNTY_&quot;: 2107, &quot;CNTY_ID&quot;: 2107, &quot;CRESS_ID&quot;: 77, &quot;FIPS&quot;: &quot;37153&quot;, &quot;FIPSNO&quot;: 37153, &quot;NAME&quot;: &quot;Richmond&quot;, &quot;NWBIR74&quot;: 1043.0, &quot;NWBIR79&quot;: 1218.0, &quot;NWR74&quot;: 378.447025, &quot;NWR79&quot;: 391.891892, &quot;PERIMETER&quot;: 1.855, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 7.0, &quot;SIDR74&quot;: 1.451379, &quot;SIDR79&quot;: 2.252252, &quot;__folium_color&quot;: &quot;#277f8e&quot;, &quot;cardinalities&quot;: 5}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.9885482788086, 34.98906707763672, -83.51300811767578, 35.148063659667976], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-83.93799591064453, 34.98939132690429], [-83.9885482788086, 34.98906707763672], [-83.95977020263672, 35.01912307739258], [-83.95285034179688, 35.04844284057617], [-83.90731811523438, 35.07041549682617], [-83.8538818359375, 35.12579345703126], [-83.7553939819336, 35.148063659667976], [-83.7395248413086, 35.14583969116211], [-83.71780395507812, 35.13880920410156], [-83.6448745727539, 35.14336013793946], [-83.64356231689453, 35.127498626708984], [-83.56204223632812, 35.05594253540038], [-83.55323791503906, 35.03576278686523], [-83.5272216796875, 35.019737243652344], [-83.51300811767578, 34.99202346801758], [-83.5494155883789, 34.98953628540039], [-83.93799591064453, 34.98939132690429]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;89&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.051, &quot;BIR74&quot;: 284.0, &quot;BIR79&quot;: 419.0, &quot;CNTY_&quot;: 2109, &quot;CNTY_ID&quot;: 2109, &quot;CRESS_ID&quot;: 22, &quot;FIPS&quot;: &quot;37043&quot;, &quot;FIPSNO&quot;: 37043, &quot;NAME&quot;: &quot;Clay&quot;, &quot;NWBIR74&quot;: 1.0, &quot;NWBIR79&quot;: 5.0, &quot;NWR74&quot;: 3.521127, &quot;NWR79&quot;: 11.933174, &quot;PERIMETER&quot;: 1.096, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 0.0, &quot;__folium_color&quot;: &quot;#440154&quot;, &quot;cardinalities&quot;: 2}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.4740982055664, 34.83042907714844, -76.62561798095703, 35.42295455932617], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-76.8976058959961, 35.25157165527344], [-76.94743347167969, 35.216991424560554], [-76.96660614013672, 35.18796539306641], [-76.97233581542969, 35.15677261352538], [-76.9898910522461, 35.15404510498046], [-76.94422912597658, 35.09972381591797], [-76.94324493408203, 35.0700340270996], [-77.04788208007812, 35.092155456542976], [-77.10467529296875, 35.08798599243163], [-77.11058807373047, 35.066036224365234], [-77.13111877441406, 35.06928253173829], [-77.14044952392578, 35.054237365722656], [-77.17924499511719, 35.05335998535157], [-77.20551300048828, 35.08805465698242], [-77.42340850830078, 35.194305419921875], [-77.4740982055664, 35.227191925048814], [-77.42964935302734, 35.259838104248054], [-77.4485092163086, 35.285675048828125], [-77.45021057128906, 35.302059173583984], [-77.41315460205078, 35.33121871948242], [-77.38616180419922, 35.32926177978516], [-77.35421752929688, 35.32355499267578], [-77.2938003540039, 35.37395095825196], [-77.26419067382812, 35.350112915039055], [-77.24430084228516, 35.354190826416016], [-77.24054718017578, 35.37998580932617], [-77.2112045288086, 35.3956413269043], [-77.19496154785156, 35.42295455932617], [-76.8976058959961, 35.25157165527344]]], [[[-76.64704895019531, 34.906333923339844], [-76.62561798095703, 34.890647888183594], [-76.75021362304688, 34.848274230957024], [-77.04900360107422, 34.83119201660156], [-77.10953521728516, 34.83042907714844], [-77.1033706665039, 35.02426147460937], [-77.11058807373047, 35.066036224365234], [-77.00119018554688, 35.05288696289063], [-76.9131088256836, 34.93647003173829], [-76.64704895019531, 34.906333923339844]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;90&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.177, &quot;BIR74&quot;: 5868.0, &quot;BIR79&quot;: 7595.0, &quot;CNTY_&quot;: 2119, &quot;CNTY_ID&quot;: 2119, &quot;CRESS_ID&quot;: 25, &quot;FIPS&quot;: &quot;37049&quot;, &quot;FIPSNO&quot;: 37049, &quot;NAME&quot;: &quot;Craven&quot;, &quot;NWBIR74&quot;: 1744.0, &quot;NWBIR79&quot;: 2342.0, &quot;NWR74&quot;: 297.205181, &quot;NWR79&quot;: 308.360764, &quot;PERIMETER&quot;: 2.916, &quot;SID74&quot;: 13.0, &quot;SID79&quot;: 18.0, &quot;SIDR74&quot;: 2.215406, &quot;SIDR79&quot;: 2.36998, &quot;__folium_color&quot;: &quot;#1fa187&quot;, &quot;cardinalities&quot;: 6}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.68595886230469, 34.634090423583984, -79.32797241210938, 35.03735733032227], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-79.45597076416016, 34.634090423583984], [-79.6675033569336, 34.800662994384766], [-79.68595886230469, 34.805255889892564], [-79.66014862060547, 34.81789779663085], [-79.61144256591797, 34.8177490234375], [-79.6219253540039, 34.84957122802734], [-79.56558990478517, 34.90750122070313], [-79.58052062988281, 34.94478988647461], [-79.57304382324219, 34.97836685180665], [-79.54710388183594, 35.00006103515624], [-79.45536041259766, 35.03735733032227], [-79.3984146118164, 34.9962158203125], [-79.36067962646484, 34.94470977783204], [-79.34030151367188, 34.83560943603514], [-79.34445190429688, 34.80883789062501], [-79.32797241210938, 34.77241134643555], [-79.45597076416016, 34.634090423583984]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;91&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.08, &quot;BIR74&quot;: 2255.0, &quot;BIR79&quot;: 2617.0, &quot;CNTY_&quot;: 2123, &quot;CNTY_ID&quot;: 2123, &quot;CRESS_ID&quot;: 83, &quot;FIPS&quot;: &quot;37165&quot;, &quot;FIPSNO&quot;: 37165, &quot;NAME&quot;: &quot;Scotland&quot;, &quot;NWBIR74&quot;: 1206.0, &quot;NWBIR79&quot;: 1436.0, &quot;NWR74&quot;: 534.81153, &quot;NWR79&quot;: 548.719908, &quot;PERIMETER&quot;: 1.188, &quot;SID74&quot;: 8.0, &quot;SID79&quot;: 16.0, &quot;SIDR74&quot;: 3.547672, &quot;SIDR79&quot;: 6.113871, &quot;__folium_color&quot;: &quot;#365c8d&quot;, &quot;cardinalities&quot;: 4}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.68983459472656, 34.45700836181641, -77.12939453125, 34.9840202331543], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.53863525390625, 34.45700836181641], [-77.57633209228516, 34.469345092773445], [-77.68983459472656, 34.72019577026367], [-77.65526580810547, 34.9189338684082], [-77.68299102783203, 34.966724395751946], [-77.63925170898438, 34.9840202331543], [-77.4996337890625, 34.96250534057617], [-77.3699722290039, 34.914249420166016], [-77.33513641357422, 34.93254089355468], [-77.28542327880861, 34.92640304565429], [-77.22299194335938, 34.884510040283196], [-77.20626831054688, 34.835502624511726], [-77.18006134033203, 34.832149505615234], [-77.19284057617188, 34.80428695678711], [-77.16426086425783, 34.77451705932617], [-77.14895629882812, 34.76433181762695], [-77.12939453125, 34.6849136352539], [-77.15660095214845, 34.660636901855476], [-77.53863525390625, 34.45700836181641]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;92&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.195, &quot;BIR74&quot;: 11158.0, &quot;BIR79&quot;: 14655.0, &quot;CNTY_&quot;: 2146, &quot;CNTY_ID&quot;: 2146, &quot;CRESS_ID&quot;: 67, &quot;FIPS&quot;: &quot;37133&quot;, &quot;FIPSNO&quot;: 37133, &quot;NAME&quot;: &quot;Onslow&quot;, &quot;NWBIR74&quot;: 2217.0, &quot;NWBIR79&quot;: 3568.0, &quot;NWR74&quot;: 198.691522, &quot;NWR79&quot;: 243.466394, &quot;PERIMETER&quot;: 1.783, &quot;SID74&quot;: 29.0, &quot;SID79&quot;: 23.0, &quot;SIDR74&quot;: 2.599032, &quot;SIDR79&quot;: 1.56943, &quot;__folium_color&quot;: &quot;#365c8d&quot;, &quot;cardinalities&quot;: 4}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.45597076416016, 34.30457305908203, -78.8033218383789, 34.9538230895996], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.86450958251953, 34.47719573974609], [-78.91947174072266, 34.45363998413086], [-78.95073699951172, 34.449382781982415], [-78.9753646850586, 34.39916610717773], [-79.00223541259766, 34.38804244995117], [-79.00641632080078, 34.366268157958984], [-79.02947235107422, 34.347373962402344], [-79.04094696044922, 34.319297790527344], [-79.07450103759766, 34.30457305908203], [-79.4471435546875, 34.61906051635743], [-79.45597076416016, 34.634090423583984], [-79.32797241210938, 34.77241134643555], [-79.34445190429688, 34.80883789062501], [-79.34030151367188, 34.83560943603514], [-79.18185424804688, 34.83188247680663], [-79.03360748291016, 34.9538230895996], [-78.948486328125, 34.90268325805663], [-78.92862701416016, 34.879798889160156], [-78.91255187988283, 34.82742309570313], [-78.89626312255861, 34.830902099609375], [-78.84170532226562, 34.735000610351555], [-78.8033218383789, 34.68510437011718], [-78.85260009765625, 34.56658172607421], [-78.84566497802734, 34.50745391845703], [-78.86450958251953, 34.47719573974609]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;93&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.24, &quot;BIR74&quot;: 7889.0, &quot;BIR79&quot;: 9087.0, &quot;CNTY_&quot;: 2150, &quot;CNTY_ID&quot;: 2150, &quot;CRESS_ID&quot;: 78, &quot;FIPS&quot;: &quot;37155&quot;, &quot;FIPSNO&quot;: 37155, &quot;NAME&quot;: &quot;Robeson&quot;, &quot;NWBIR74&quot;: 5904.0, &quot;NWBIR79&quot;: 6899.0, &quot;NWR74&quot;: 748.383826, &quot;NWR79&quot;: 759.216463, &quot;PERIMETER&quot;: 2.004, &quot;SID74&quot;: 31.0, &quot;SID79&quot;: 26.0, &quot;SIDR74&quot;: 3.929522, &quot;SIDR79&quot;: 2.86123, &quot;__folium_color&quot;: &quot;#277f8e&quot;, &quot;cardinalities&quot;: 5}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.16426086425783, 34.58782958984375, -76.28770446777344, 35.016658782958984], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-77.14895629882812, 34.76433181762695], [-77.16426086425783, 34.77451705932617], [-77.15982055664062, 34.78849792480469], [-77.10069274902344, 34.7974967956543], [-77.07313537597656, 34.815441131591804], [-77.05746459960938, 34.81504821777343], [-77.04900360107422, 34.83119201660156], [-76.75021362304688, 34.848274230957024], [-76.62561798095703, 34.890647888183594], [-76.64704895019531, 34.906333923339844], [-76.67005920410156, 34.96999740600585], [-76.52977752685547, 34.97463607788085], [-76.44503021240234, 35.016658782958984], [-76.42405700683594, 34.946247100830085], [-76.364013671875, 34.943111419677734], [-76.32940673828125, 34.97595596313477], [-76.31471252441406, 34.94881439208984], [-76.46990203857422, 34.78506088256836], [-76.62531280517578, 34.71975326538086], [-77.05052947998047, 34.69891738891602], [-77.14895629882812, 34.76433181762695]]], [[[-76.54427337646486, 34.58782958984375], [-76.55514526367188, 34.61066055297852], [-76.53775024414062, 34.61392211914062], [-76.48448181152344, 34.69763183593751], [-76.43229675292969, 34.76068496704101], [-76.37467956542969, 34.81287002563477], [-76.28770446777344, 34.87701034545899], [-76.4692611694336, 34.693283081054695], [-76.54427337646486, 34.58782958984375]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;id&quot;: &quot;94&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.125, &quot;BIR74&quot;: 2414.0, &quot;BIR79&quot;: 3339.0, &quot;CNTY_&quot;: 2156, &quot;CNTY_ID&quot;: 2156, &quot;CRESS_ID&quot;: 16, &quot;FIPS&quot;: &quot;37031&quot;, &quot;FIPSNO&quot;: 37031, &quot;NAME&quot;: &quot;Carteret&quot;, &quot;NWBIR74&quot;: 341.0, &quot;NWBIR79&quot;: 487.0, &quot;NWR74&quot;: 141.259321, &quot;NWR79&quot;: 145.852052, &quot;PERIMETER&quot;: 2.868, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 4.0, &quot;SIDR74&quot;: 2.071251, &quot;SIDR79&quot;: 1.197963, &quot;__folium_color&quot;: &quot;#46327e&quot;, &quot;cardinalities&quot;: 3}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.89626312255861, 34.364421844482415, -78.169677734375, 34.85510635375977], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.2614974975586, 34.3947868347168], [-78.3289794921875, 34.364421844482415], [-78.43794250488281, 34.37184143066406], [-78.6380844116211, 34.45114517211915], [-78.65982055664062, 34.45094299316406], [-78.66849517822266, 34.46512985229493], [-78.8118896484375, 34.455318450927734], [-78.83635711669922, 34.45919799804686], [-78.86450958251953, 34.47719573974609], [-78.84566497802734, 34.50745391845703], [-78.85260009765625, 34.56658172607421], [-78.8033218383789, 34.68510437011718], [-78.84170532226562, 34.735000610351555], [-78.89626312255861, 34.830902099609375], [-78.83165740966797, 34.844356536865234], [-78.51744079589844, 34.843528747558594], [-78.4992904663086, 34.85510635375977], [-78.4010009765625, 34.75933074951172], [-78.38667297363281, 34.72188949584961], [-78.36381530761719, 34.69204330444335], [-78.3388671875, 34.6826057434082], [-78.32234191894531, 34.64557266235351], [-78.30970001220703, 34.635852813720696], [-78.31988525390625, 34.63009262084961], [-78.30590057373047, 34.60535812377929], [-78.27461242675781, 34.58127593994141], [-78.25680541992188, 34.553752899169915], [-78.26240539550781, 34.52793884277344], [-78.25505828857422, 34.507381439208984], [-78.169677734375, 34.46245193481445], [-78.2614974975586, 34.3947868347168]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;95&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.225, &quot;BIR74&quot;: 1782.0, &quot;BIR79&quot;: 2052.0, &quot;CNTY_&quot;: 2162, &quot;CNTY_ID&quot;: 2162, &quot;CRESS_ID&quot;: 9, &quot;FIPS&quot;: &quot;37017&quot;, &quot;FIPSNO&quot;: 37017, &quot;NAME&quot;: &quot;Bladen&quot;, &quot;NWBIR74&quot;: 818.0, &quot;NWBIR79&quot;: 1023.0, &quot;NWR74&quot;: 459.034792, &quot;NWR79&quot;: 498.538012, &quot;PERIMETER&quot;: 2.107, &quot;SID74&quot;: 8.0, &quot;SID79&quot;: 5.0, &quot;SIDR74&quot;: 4.489338, &quot;SIDR79&quot;: 2.436647, &quot;__folium_color&quot;: &quot;#277f8e&quot;, &quot;cardinalities&quot;: 5}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.26240539550781, 34.30504608154297, -77.53863525390625, 34.728931427001946], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.02592468261719, 34.32876968383788], [-78.13024139404297, 34.36412429809569], [-78.15478515625, 34.36224365234376], [-78.18461608886719, 34.34817123413085], [-78.19456481933594, 34.351051330566406], [-78.2614974975586, 34.3947868347168], [-78.169677734375, 34.46245193481445], [-78.25505828857422, 34.507381439208984], [-78.26240539550781, 34.52793884277344], [-78.25680541992188, 34.553752899169915], [-78.1567611694336, 34.67715454101562], [-78.11373901367188, 34.699180603027344], [-78.11376953125, 34.72098541259764], [-78.01736450195312, 34.728931427001946], [-77.98915100097656, 34.717094421386726], [-77.9393081665039, 34.719406127929695], [-77.92667388916016, 34.711006164550774], [-77.68983459472656, 34.72019577026367], [-77.57633209228516, 34.469345092773445], [-77.53863525390625, 34.45700836181641], [-77.58676147460938, 34.420936584472656], [-77.60972595214844, 34.43504333496095], [-77.60261535644531, 34.412628173828125], [-77.75052642822266, 34.30504608154297], [-77.80914306640625, 34.359432220458984], [-77.82838439941406, 34.38796997070313], [-77.88806915283203, 34.364070892333984], [-77.92178344726562, 34.373313903808594], [-77.94393920898438, 34.35643768310547], [-77.94981384277344, 34.366085052490234], [-77.97907257080078, 34.375686645507805], [-77.99445343017578, 34.362316131591804], [-77.98667907714844, 34.33991622924805], [-78.02592468261719, 34.32876968383788]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;96&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.214, &quot;BIR74&quot;: 1228.0, &quot;BIR79&quot;: 1602.0, &quot;CNTY_&quot;: 2185, &quot;CNTY_ID&quot;: 2185, &quot;CRESS_ID&quot;: 71, &quot;FIPS&quot;: &quot;37141&quot;, &quot;FIPSNO&quot;: 37141, &quot;NAME&quot;: &quot;Pender&quot;, &quot;NWBIR74&quot;: 580.0, &quot;NWBIR79&quot;: 763.0, &quot;NWR74&quot;: 472.312704, &quot;NWR79&quot;: 476.27965, &quot;PERIMETER&quot;: 2.152, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 3.0, &quot;SIDR74&quot;: 3.257329, &quot;SIDR79&quot;: 1.872659, &quot;__folium_color&quot;: &quot;#4ac16d&quot;, &quot;cardinalities&quot;: 7}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.07450103759766, 33.948673248291, -78.15478515625, 34.47719573974609], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.65571594238281, 33.948673248291], [-79.07450103759766, 34.30457305908203], [-79.04094696044922, 34.319297790527344], [-79.02947235107422, 34.347373962402344], [-79.00641632080078, 34.366268157958984], [-79.00223541259766, 34.38804244995117], [-78.9753646850586, 34.39916610717773], [-78.95073699951172, 34.449382781982415], [-78.91947174072266, 34.45363998413086], [-78.86450958251953, 34.47719573974609], [-78.83635711669922, 34.45919799804686], [-78.8118896484375, 34.455318450927734], [-78.66849517822266, 34.46512985229493], [-78.65982055664062, 34.45094299316406], [-78.6380844116211, 34.45114517211915], [-78.43794250488281, 34.37184143066406], [-78.3289794921875, 34.364421844482415], [-78.2614974975586, 34.3947868347168], [-78.19456481933594, 34.351051330566406], [-78.18461608886719, 34.34817123413085], [-78.15478515625, 34.36224365234376], [-78.26106262207031, 34.21526336669921], [-78.37357330322266, 34.20235061645508], [-78.36112213134766, 34.186721801757805], [-78.42543029785158, 34.138065338134766], [-78.49274444580078, 34.15850448608399], [-78.52723693847656, 34.15485763549805], [-78.54428100585938, 34.13416290283203], [-78.56343078613281, 34.05894470214844], [-78.58778381347656, 34.0306053161621], [-78.63027191162111, 34.01020050048828], [-78.63471984863281, 33.977977752685554], [-78.65571594238281, 33.948673248291]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;97&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.24, &quot;BIR74&quot;: 3350.0, &quot;BIR79&quot;: 4144.0, &quot;CNTY_&quot;: 2232, &quot;CNTY_ID&quot;: 2232, &quot;CRESS_ID&quot;: 24, &quot;FIPS&quot;: &quot;37047&quot;, &quot;FIPSNO&quot;: 37047, &quot;NAME&quot;: &quot;Columbus&quot;, &quot;NWBIR74&quot;: 1431.0, &quot;NWBIR79&quot;: 1832.0, &quot;NWR74&quot;: 427.164179, &quot;NWR79&quot;: 442.084942, &quot;PERIMETER&quot;: 2.365, &quot;SID74&quot;: 15.0, &quot;SID79&quot;: 17.0, &quot;SIDR74&quot;: 4.477612, &quot;SIDR79&quot;: 4.102317, &quot;__folium_color&quot;: &quot;#365c8d&quot;, &quot;cardinalities&quot;: 4}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.02592468261719, 34.062034606933594, -77.75052642822266, 34.38796997070313], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-77.96073150634766, 34.18924331665039], [-77.96586608886719, 34.242286682128906], [-77.97528076171875, 34.24336242675782], [-77.98314666748047, 34.26168060302734], [-78.0002212524414, 34.26788330078124], [-77.99539184570312, 34.282798767089844], [-78.00701904296875, 34.28481674194336], [-78.01130676269531, 34.31261444091797], [-78.02592468261719, 34.32876968383788], [-77.98667907714844, 34.33991622924805], [-77.99445343017578, 34.362316131591804], [-77.97907257080078, 34.375686645507805], [-77.94981384277344, 34.366085052490234], [-77.94393920898438, 34.35643768310547], [-77.92178344726562, 34.373313903808594], [-77.88806915283203, 34.364070892333984], [-77.82838439941406, 34.38796997070313], [-77.80914306640625, 34.359432220458984], [-77.75052642822266, 34.30504608154297], [-77.86438751220703, 34.1927375793457], [-77.89440155029297, 34.0691795349121], [-77.9267578125, 34.062034606933594], [-77.96073150634766, 34.18924331665039]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;98&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.042, &quot;BIR74&quot;: 5526.0, &quot;BIR79&quot;: 6917.0, &quot;CNTY_&quot;: 2238, &quot;CNTY_ID&quot;: 2238, &quot;CRESS_ID&quot;: 65, &quot;FIPS&quot;: &quot;37129&quot;, &quot;FIPSNO&quot;: 37129, &quot;NAME&quot;: &quot;New Hanover&quot;, &quot;NWBIR74&quot;: 1633.0, &quot;NWBIR79&quot;: 2100.0, &quot;NWR74&quot;: 295.512125, &quot;NWR79&quot;: 303.599827, &quot;PERIMETER&quot;: 0.999, &quot;SID74&quot;: 12.0, &quot;SID79&quot;: 9.0, &quot;SIDR74&quot;: 2.171553, &quot;SIDR79&quot;: 1.301142, &quot;__folium_color&quot;: &quot;#440154&quot;, &quot;cardinalities&quot;: 2}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.65571594238281, 33.88199234008788, -77.95852661132812, 34.36412429809569], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-78.65571594238281, 33.948673248291], [-78.63471984863281, 33.977977752685554], [-78.63027191162111, 34.01020050048828], [-78.58778381347656, 34.0306053161621], [-78.56343078613281, 34.05894470214844], [-78.54428100585938, 34.13416290283203], [-78.52723693847656, 34.15485763549805], [-78.49274444580078, 34.15850448608399], [-78.42543029785158, 34.138065338134766], [-78.36112213134766, 34.186721801757805], [-78.37357330322266, 34.20235061645508], [-78.26106262207031, 34.21526336669921], [-78.15478515625, 34.36224365234376], [-78.13024139404297, 34.36412429809569], [-78.02592468261719, 34.32876968383788], [-78.01130676269531, 34.31261444091797], [-78.00701904296875, 34.28481674194336], [-77.99539184570312, 34.282798767089844], [-78.0002212524414, 34.26788330078124], [-77.98314666748047, 34.26168060302734], [-77.97528076171875, 34.24336242675782], [-77.96586608886719, 34.242286682128906], [-77.96073150634766, 34.18924331665039], [-77.95852661132812, 33.99258041381836], [-78.03480529785156, 33.914291381835945], [-78.57971954345703, 33.88199234008788], [-78.65571594238281, 33.948673248291]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;99&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.212, &quot;BIR74&quot;: 2181.0, &quot;BIR79&quot;: 2655.0, &quot;CNTY_&quot;: 2241, &quot;CNTY_ID&quot;: 2241, &quot;CRESS_ID&quot;: 10, &quot;FIPS&quot;: &quot;37019&quot;, &quot;FIPSNO&quot;: 37019, &quot;NAME&quot;: &quot;Brunswick&quot;, &quot;NWBIR74&quot;: 659.0, &quot;NWBIR79&quot;: 841.0, &quot;NWR74&quot;: 302.154975, &quot;NWR79&quot;: 316.760829, &quot;PERIMETER&quot;: 2.024, &quot;SID74&quot;: 5.0, &quot;SID79&quot;: 6.0, &quot;SIDR74&quot;: 2.292526, &quot;SIDR79&quot;: 2.259887, &quot;__folium_color&quot;: &quot;#46327e&quot;, &quot;cardinalities&quot;: 3}, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
       "\n",
       "        \n",
       "    \n",
       "    geo_json_b1775bee21c704ce2c0b465ad749e42b.bindTooltip(\n",
       "    function(layer){\n",
       "    let div = L.DomUtil.create(&#x27;div&#x27;);\n",
       "    \n",
       "    let handleObject = feature=&gt;typeof(feature)==&#x27;object&#x27; ? JSON.stringify(feature) : feature;\n",
       "    let fields = [&quot;AREA&quot;, &quot;PERIMETER&quot;, &quot;CNTY_&quot;, &quot;CNTY_ID&quot;, &quot;NAME&quot;, &quot;FIPS&quot;, &quot;FIPSNO&quot;, &quot;CRESS_ID&quot;, &quot;BIR74&quot;, &quot;SID74&quot;, &quot;NWBIR74&quot;, &quot;BIR79&quot;, &quot;SID79&quot;, &quot;NWBIR79&quot;, &quot;SIDR74&quot;, &quot;SIDR79&quot;, &quot;NWR74&quot;, &quot;NWR79&quot;, &quot;cardinalities&quot;];\n",
       "    let aliases = [&quot;AREA&quot;, &quot;PERIMETER&quot;, &quot;CNTY_&quot;, &quot;CNTY_ID&quot;, &quot;NAME&quot;, &quot;FIPS&quot;, &quot;FIPSNO&quot;, &quot;CRESS_ID&quot;, &quot;BIR74&quot;, &quot;SID74&quot;, &quot;NWBIR74&quot;, &quot;BIR79&quot;, &quot;SID79&quot;, &quot;NWBIR79&quot;, &quot;SIDR74&quot;, &quot;SIDR79&quot;, &quot;NWR74&quot;, &quot;NWR79&quot;, &quot;cardinalities&quot;];\n",
       "    let table = &#x27;&lt;table&gt;&#x27; +\n",
       "        String(\n",
       "        fields.map(\n",
       "        (v,i)=&gt;\n",
       "        `&lt;tr&gt;\n",
       "            &lt;th&gt;${aliases[i]}&lt;/th&gt;\n",
       "            \n",
       "            &lt;td&gt;${handleObject(layer.feature.properties[v])}&lt;/td&gt;\n",
       "        &lt;/tr&gt;`).join(&#x27;&#x27;))\n",
       "    +&#x27;&lt;/table&gt;&#x27;;\n",
       "    div.innerHTML=table;\n",
       "    \n",
       "    return div\n",
       "    }\n",
       "    ,{&quot;className&quot;: &quot;foliumtooltip&quot;, &quot;sticky&quot;: true});\n",
       "                     \n",
       "    \n",
       "            geo_json_b1775bee21c704ce2c0b465ad749e42b.addTo(map_ad02ee3d04f42ff062355e0b20b7f04f);\n",
       "        \n",
       "    \n",
       "    var color_map_78f3c3977978f718a5e4a66c790169ac = {};\n",
       "\n",
       "    \n",
       "    color_map_78f3c3977978f718a5e4a66c790169ac.color = d3.scale.threshold()\n",
       "              .domain([2.0, 2.0140280561122244, 2.0280561122244487, 2.0420841683366735, 2.056112224448898, 2.070140280561122, 2.0841683366733466, 2.0981963927855714, 2.1122244488977957, 2.12625250501002, 2.1402805611222444, 2.1543086172344688, 2.1683366733466936, 2.182364729458918, 2.1963927855711423, 2.2104208416833666, 2.2244488977955914, 2.2384769539078158, 2.25250501002004, 2.2665330661322645, 2.280561122244489, 2.2945891783567136, 2.308617234468938, 2.3226452905811623, 2.3366733466933867, 2.350701402805611, 2.364729458917836, 2.37875751503006, 2.3927855711422845, 2.406813627254509, 2.420841683366733, 2.434869739478958, 2.4488977955911824, 2.4629258517034067, 2.476953907815631, 2.490981963927856, 2.50501002004008, 2.5190380761523046, 2.533066132264529, 2.5470941883767537, 2.561122244488978, 2.5751503006012024, 2.5891783567134268, 2.603206412825651, 2.617234468937876, 2.6312625250501003, 2.6452905811623246, 2.659318637274549, 2.6733466933867733, 2.687374749498998, 2.7014028056112225, 2.715430861723447, 2.729458917835671, 2.7434869739478955, 2.7575150300601203, 2.7715430861723447, 2.785571142284569, 2.799599198396794, 2.813627254509018, 2.8276553106212425, 2.841683366733467, 2.8557114228456912, 2.869739478957916, 2.8837675350701404, 2.8977955911823647, 2.911823647294589, 2.9258517034068134, 2.9398797595190382, 2.9539078156312626, 2.967935871743487, 2.9819639278557113, 2.9959919839679356, 3.0100200400801604, 3.024048096192385, 3.038076152304609, 3.052104208416834, 3.066132264529058, 3.0801603206412826, 3.094188376753507, 3.1082164328657313, 3.122244488977956, 3.13627254509018, 3.150300601202405, 3.164328657314629, 3.1783567134268536, 3.1923847695390783, 3.2064128256513027, 3.220440881763527, 3.2344689378757514, 3.2484969939879758, 3.2625250501002006, 3.276553106212425, 3.2905811623246493, 3.304609218436874, 3.318637274549098, 3.3326653306613228, 3.346693386773547, 3.3607214428857715, 3.3747494989979963, 3.38877755511022, 3.402805611222445, 3.4168336673346693, 3.4308617234468937, 3.4448897795591185, 3.4589178356713424, 3.472945891783567, 3.4869739478957915, 3.501002004008016, 3.5150300601202407, 3.529058116232465, 3.5430861723446894, 3.5571142284569137, 3.571142284569138, 3.585170340681363, 3.599198396793587, 3.6132264529058116, 3.6272545090180364, 3.6412825651302603, 3.655310621242485, 3.6693386773547094, 3.6833667334669338, 3.6973947895791586, 3.7114228456913825, 3.7254509018036073, 3.7394789579158316, 3.753507014028056, 3.7675350701402808, 3.7815631262525047, 3.7955911823647295, 3.809619238476954, 3.823647294589178, 3.837675350701403, 3.8517034068136273, 3.8657314629258517, 3.8797595190380765, 3.8937875751503004, 3.907815631262525, 3.9218436873747495, 3.935871743486974, 3.9498997995991987, 3.9639278557114226, 3.9779559118236474, 3.9919839679358717, 4.006012024048096, 4.020040080160321, 4.034068136272545, 4.04809619238477, 4.062124248496994, 4.076152304609218, 4.090180360721443, 4.104208416833668, 4.118236472945892, 4.132264529058116, 4.1462925851703405, 4.160320641282565, 4.174348697394789, 4.188376753507014, 4.202404809619239, 4.216432865731463, 4.2304609218436875, 4.244488977955912, 4.258517034068136, 4.27254509018036, 4.286573146292586, 4.30060120240481, 4.314629258517034, 4.328657314629258, 4.342685370741483, 4.356713426853707, 4.370741482965932, 4.384769539078157, 4.398797595190381, 4.412825651302605, 4.42685370741483, 4.440881763527054, 4.454909819639278, 4.468937875751503, 4.482965931863728, 4.4969939879759515, 4.511022044088176, 4.525050100200401, 4.539078156312625, 4.55310621242485, 4.567134268537075, 4.5811623246492985, 4.595190380761522, 4.609218436873748, 4.623246492985972, 4.637274549098196, 4.651302605210421, 4.6653306613226455, 4.679358717434869, 4.693386773547094, 4.707414829659319, 4.721442885771543, 4.735470941883768, 4.7494989979959925, 4.763527054108216, 4.77755511022044, 4.791583166332665, 4.80561122244489, 4.819639278557114, 4.833667334669339, 4.847695390781563, 4.861723446893787, 4.875751503006012, 4.889779559118237, 4.903807615230461, 4.917835671342685, 4.93186372745491, 4.945891783567134, 4.959919839679358, 4.973947895791583, 4.987975951903808, 5.002004008016032, 5.0160320641282565, 5.030060120240481, 5.044088176352705, 5.05811623246493, 5.072144288577155, 5.086172344689379, 5.100200400801603, 5.114228456913827, 5.128256513026052, 5.142284569138276, 5.156312625250501, 5.170340681362726, 5.18436873747495, 5.198396793587174, 5.212424849699399, 5.226452905811623, 5.240480961923847, 5.254509018036073, 5.268537074148297, 5.2825651302605205, 5.296593186372745, 5.31062124248497, 5.324649298597194, 5.338677354709419, 5.352705410821644, 5.3667334669338675, 5.380761523046092, 5.394789579158317, 5.408817635270541, 5.422845691382765, 5.436873747494991, 5.4509018036072145, 5.4649298597194385, 5.478957915831663, 5.492985971943888, 5.507014028056112, 5.521042084168337, 5.5350701402805615, 5.5490981963927855, 5.563126252505009, 5.577154308617235, 5.591182364729459, 5.605210420841683, 5.619238476953908, 5.6332665330661325, 5.647294589178356, 5.661322645290581, 5.675350701402806, 5.68937875751503, 5.703406813627255, 5.7174348697394795, 5.731462925851703, 5.745490981963927, 5.759519038076153, 5.773547094188377, 5.787575150300601, 5.801603206412826, 5.81563126252505, 5.829659318637274, 5.843687374749499, 5.857715430861724, 5.871743486973948, 5.885771543086173, 5.899799599198397, 5.913827655310621, 5.927855711422845, 5.94188376753507, 5.955911823647295, 5.969939879759519, 5.9839679358717435, 5.997995991983968, 6.012024048096192, 6.026052104208417, 6.040080160320641, 6.054108216432866, 6.0681362725450905, 6.082164328657314, 6.096192384769539, 6.110220440881764, 6.124248496993988, 6.138276553106213, 6.152304609218437, 6.166332665330661, 6.180360721442886, 6.19438877755511, 6.208416833667335, 6.222444889779559, 6.236472945891784, 6.250501002004008, 6.264529058116232, 6.278557114228457, 6.292585170340681, 6.306613226452906, 6.320641282565131, 6.3346693386773545, 6.348697394789579, 6.362725450901803, 6.376753507014028, 6.390781563126253, 6.404809619238477, 6.4188376753507015, 6.432865731462926, 6.44689378757515, 6.460921843687375, 6.474949899799599, 6.488977955911824, 6.5030060120240485, 6.517034068136272, 6.531062124248497, 6.545090180360721, 6.559118236472946, 6.573146292585171, 6.587174348697395, 6.601202404809619, 6.615230460921843, 6.629258517034068, 6.643286573146293, 6.657314629258517, 6.671342685370742, 6.6853707414829655, 6.69939879759519, 6.713426853707415, 6.727454909819639, 6.741482965931864, 6.755511022044089, 6.7695390781563125, 6.783567134268537, 6.797595190380761, 6.811623246492986, 6.825651302605211, 6.839679358717435, 6.8537074148296595, 6.867735470941883, 6.881763527054108, 6.895791583166333, 6.909819639278557, 6.923847695390782, 6.937875751503006, 6.95190380761523, 6.965931863727455, 6.979959919839679, 6.993987975951904, 7.008016032064128, 7.022044088176353, 7.036072144288577, 7.050100200400801, 7.064128256513026, 7.078156312625251, 7.092184368737475, 7.1062124248497, 7.1202404809619235, 7.134268537074148, 7.148296593186373, 7.162324649298597, 7.176352705410822, 7.190380761523046, 7.2044088176352705, 7.218436873747495, 7.232464929859719, 7.246492985971944, 7.260521042084168, 7.274549098196393, 7.2885771543086175, 7.302605210420841, 7.316633266533066, 7.330661322645291, 7.344689378757515, 7.35871743486974, 7.372745490981964, 7.386773547094188, 7.400801603206413, 7.414829659318637, 7.428857715430862, 7.442885771543086, 7.456913827655311, 7.470941883767535, 7.484969939879759, 7.498997995991984, 7.513026052104208, 7.527054108216433, 7.541082164328658, 7.5551102204408815, 7.569138276553106, 7.58316633266533, 7.597194388777555, 7.61122244488978, 7.625250501002004, 7.6392785571142285, 7.653306613226453, 7.667334669338677, 7.681362725450902, 7.695390781563126, 7.709418837675351, 7.7234468937875755, 7.7374749498997994, 7.751503006012024, 7.765531062124248, 7.779559118236473, 7.793587174348698, 7.807615230460922, 7.8216432865731464, 7.83567134268537, 7.849699398797595, 7.86372745490982, 7.877755511022044, 7.891783567134269, 7.905811623246493, 7.919839679358717, 7.933867735470942, 7.947895791583166, 7.961923847695391, 7.975951903807616, 7.98997995991984, 8.004008016032063, 8.018036072144287, 8.032064128256513, 8.046092184368739, 8.060120240480963, 8.074148296593187, 8.08817635270541, 8.102204408817634, 8.11623246492986, 8.130260521042084, 8.14428857715431, 8.158316633266534, 8.172344689378757, 8.186372745490981, 8.200400801603205, 8.214428857715431, 8.228456913827655, 8.24248496993988, 8.256513026052104, 8.270541082164328, 8.284569138276552, 8.298597194388778, 8.312625250501002, 8.326653306613228, 8.340681362725451, 8.354709418837675, 8.3687374749499, 8.382765531062123, 8.396793587174349, 8.410821643286573, 8.424849699398798, 8.438877755511022, 8.452905811623246, 8.46693386773547, 8.480961923847694, 8.49498997995992, 8.509018036072145, 8.52304609218437, 8.537074148296593, 8.551102204408817, 8.565130260521041, 8.579158316633267, 8.59318637274549, 8.607214428857716, 8.62124248496994, 8.635270541082164, 8.649298597194388, 8.663326653306612, 8.677354709418838, 8.691382765531063, 8.705410821643287, 8.719438877755511, 8.733466933867735, 8.747494989979959, 8.761523046092185, 8.775551102204409, 8.789579158316634, 8.803607214428858, 8.817635270541082, 8.831663326653306, 8.84569138276553, 8.859719438877756, 8.873747494989981, 8.887775551102205, 8.901803607214429, 8.915831663326653, 8.929859719438877, 8.943887775551103, 8.957915831663327, 8.971943887775552, 8.985971943887776, 9.0])\n",
       "              .range([&#x27;#440154ff&#x27;, &#x27;#440155ff&#x27;, &#x27;#440256ff&#x27;, &#x27;#440356ff&#x27;, &#x27;#450457ff&#x27;, &#x27;#450458ff&#x27;, &#x27;#450559ff&#x27;, &#x27;#450659ff&#x27;, &#x27;#46075aff&#x27;, &#x27;#46075bff&#x27;, &#x27;#46085cff&#x27;, &#x27;#46095cff&#x27;, &#x27;#460a5dff&#x27;, &#x27;#460a5eff&#x27;, &#x27;#460b5eff&#x27;, &#x27;#460c5fff&#x27;, &#x27;#470d60ff&#x27;, &#x27;#470d61ff&#x27;, &#x27;#470e61ff&#x27;, &#x27;#470f62ff&#x27;, &#x27;#471063ff&#x27;, &#x27;#471064ff&#x27;, &#x27;#471164ff&#x27;, &#x27;#471265ff&#x27;, &#x27;#471365ff&#x27;, &#x27;#481366ff&#x27;, &#x27;#481467ff&#x27;, &#x27;#481568ff&#x27;, &#x27;#481668ff&#x27;, &#x27;#481669ff&#x27;, &#x27;#481769ff&#x27;, &#x27;#48176aff&#x27;, &#x27;#48186bff&#x27;, &#x27;#48196cff&#x27;, &#x27;#481a6cff&#x27;, &#x27;#481a6dff&#x27;, &#x27;#481b6dff&#x27;, &#x27;#481c6eff&#x27;, &#x27;#481c6eff&#x27;, &#x27;#481d6fff&#x27;, &#x27;#481d6fff&#x27;, &#x27;#481f70ff&#x27;, &#x27;#481f70ff&#x27;, &#x27;#482071ff&#x27;, &#x27;#482072ff&#x27;, &#x27;#482173ff&#x27;, &#x27;#482273ff&#x27;, &#x27;#482374ff&#x27;, &#x27;#482374ff&#x27;, &#x27;#482475ff&#x27;, &#x27;#482476ff&#x27;, &#x27;#482576ff&#x27;, &#x27;#482577ff&#x27;, &#x27;#482677ff&#x27;, &#x27;#482778ff&#x27;, &#x27;#482878ff&#x27;, &#x27;#482879ff&#x27;, &#x27;#482979ff&#x27;, &#x27;#47297aff&#x27;, &#x27;#472a7aff&#x27;, &#x27;#472b7aff&#x27;, &#x27;#472c7aff&#x27;, &#x27;#472c7bff&#x27;, &#x27;#472d7bff&#x27;, &#x27;#472d7cff&#x27;, &#x27;#472e7cff&#x27;, &#x27;#472e7dff&#x27;, &#x27;#472f7dff&#x27;, &#x27;#462f7eff&#x27;, &#x27;#46307eff&#x27;, &#x27;#46317eff&#x27;, &#x27;#46327eff&#x27;, &#x27;#46327fff&#x27;, &#x27;#46337fff&#x27;, &#x27;#463480ff&#x27;, &#x27;#453480ff&#x27;, &#x27;#453581ff&#x27;, &#x27;#453581ff&#x27;, &#x27;#453681ff&#x27;, &#x27;#453781ff&#x27;, &#x27;#453882ff&#x27;, &#x27;#443882ff&#x27;, &#x27;#443983ff&#x27;, &#x27;#443983ff&#x27;, &#x27;#443a83ff&#x27;, &#x27;#443a83ff&#x27;, &#x27;#443b84ff&#x27;, &#x27;#433c84ff&#x27;, &#x27;#433d84ff&#x27;, &#x27;#433d85ff&#x27;, &#x27;#433e85ff&#x27;, &#x27;#423e85ff&#x27;, &#x27;#423f85ff&#x27;, &#x27;#423f86ff&#x27;, &#x27;#424086ff&#x27;, &#x27;#424086ff&#x27;, &#x27;#424186ff&#x27;, &#x27;#414187ff&#x27;, &#x27;#414287ff&#x27;, &#x27;#414387ff&#x27;, &#x27;#414487ff&#x27;, &#x27;#404488ff&#x27;, &#x27;#404588ff&#x27;, &#x27;#404588ff&#x27;, &#x27;#404688ff&#x27;, &#x27;#3f4688ff&#x27;, &#x27;#3f4788ff&#x27;, &#x27;#3f4789ff&#x27;, &#x27;#3f4889ff&#x27;, &#x27;#3e4889ff&#x27;, &#x27;#3e4989ff&#x27;, &#x27;#3e4a89ff&#x27;, &#x27;#3e4a89ff&#x27;, &#x27;#3e4b8aff&#x27;, &#x27;#3d4c8aff&#x27;, &#x27;#3d4d8aff&#x27;, &#x27;#3d4d8aff&#x27;, &#x27;#3d4e8aff&#x27;, &#x27;#3c4e8aff&#x27;, &#x27;#3c4f8aff&#x27;, &#x27;#3c4f8aff&#x27;, &#x27;#3c508bff&#x27;, &#x27;#3b508bff&#x27;, &#x27;#3b518bff&#x27;, &#x27;#3b518bff&#x27;, &#x27;#3b528bff&#x27;, &#x27;#3a528bff&#x27;, &#x27;#3a538bff&#x27;, &#x27;#3a538bff&#x27;, &#x27;#3a548cff&#x27;, &#x27;#39548cff&#x27;, &#x27;#39558cff&#x27;, &#x27;#39558cff&#x27;, &#x27;#39568cff&#x27;, &#x27;#38578cff&#x27;, &#x27;#38588cff&#x27;, &#x27;#38588cff&#x27;, &#x27;#38598cff&#x27;, &#x27;#37598cff&#x27;, &#x27;#375a8cff&#x27;, &#x27;#375a8dff&#x27;, &#x27;#375b8dff&#x27;, &#x27;#365b8dff&#x27;, &#x27;#365c8dff&#x27;, &#x27;#365c8dff&#x27;, &#x27;#365d8dff&#x27;, &#x27;#355d8dff&#x27;, &#x27;#355e8dff&#x27;, &#x27;#355f8dff&#x27;, &#x27;#355f8dff&#x27;, &#x27;#34608dff&#x27;, &#x27;#34608dff&#x27;, &#x27;#34618dff&#x27;, &#x27;#34618dff&#x27;, &#x27;#33628dff&#x27;, &#x27;#33628dff&#x27;, &#x27;#33638dff&#x27;, &#x27;#32638dff&#x27;, &#x27;#32648eff&#x27;, &#x27;#32648eff&#x27;, &#x27;#32658eff&#x27;, &#x27;#31658eff&#x27;, &#x27;#31668eff&#x27;, &#x27;#31668eff&#x27;, &#x27;#31678eff&#x27;, &#x27;#31678eff&#x27;, &#x27;#31688eff&#x27;, &#x27;#30688eff&#x27;, &#x27;#30698eff&#x27;, &#x27;#30698eff&#x27;, &#x27;#306a8eff&#x27;, &#x27;#2f6a8eff&#x27;, &#x27;#2f6b8eff&#x27;, &#x27;#2f6b8eff&#x27;, &#x27;#2f6c8eff&#x27;, &#x27;#2e6c8eff&#x27;, &#x27;#2e6d8eff&#x27;, &#x27;#2e6d8eff&#x27;, &#x27;#2e6e8eff&#x27;, &#x27;#2e6e8eff&#x27;, &#x27;#2e6f8eff&#x27;, &#x27;#2d6f8eff&#x27;, &#x27;#2d708eff&#x27;, &#x27;#2d708eff&#x27;, &#x27;#2d718eff&#x27;, &#x27;#2c718eff&#x27;, &#x27;#2c718eff&#x27;, &#x27;#2c728eff&#x27;, &#x27;#2c728eff&#x27;, &#x27;#2c738eff&#x27;, &#x27;#2c738eff&#x27;, &#x27;#2b748eff&#x27;, &#x27;#2b748eff&#x27;, &#x27;#2b758eff&#x27;, &#x27;#2b758eff&#x27;, &#x27;#2a768eff&#x27;, &#x27;#2a768eff&#x27;, &#x27;#2a778eff&#x27;, &#x27;#2a778eff&#x27;, &#x27;#2a788eff&#x27;, &#x27;#29788eff&#x27;, &#x27;#29798eff&#x27;, &#x27;#29798eff&#x27;, &#x27;#297a8eff&#x27;, &#x27;#297a8eff&#x27;, &#x27;#297b8eff&#x27;, &#x27;#287b8eff&#x27;, &#x27;#287c8eff&#x27;, &#x27;#287c8eff&#x27;, &#x27;#287d8eff&#x27;, &#x27;#277d8eff&#x27;, &#x27;#277e8eff&#x27;, &#x27;#277e8eff&#x27;, &#x27;#277f8eff&#x27;, &#x27;#277f8eff&#x27;, &#x27;#27808eff&#x27;, &#x27;#26808eff&#x27;, &#x27;#26818eff&#x27;, &#x27;#26818eff&#x27;, &#x27;#26828eff&#x27;, &#x27;#26828eff&#x27;, &#x27;#26828eff&#x27;, &#x27;#25828eff&#x27;, &#x27;#25838eff&#x27;, &#x27;#25838eff&#x27;, &#x27;#25848eff&#x27;, &#x27;#25858eff&#x27;, &#x27;#25858eff&#x27;, &#x27;#24868eff&#x27;, &#x27;#24868eff&#x27;, &#x27;#24878eff&#x27;, &#x27;#24878eff&#x27;, &#x27;#23888eff&#x27;, &#x27;#23888eff&#x27;, &#x27;#23898eff&#x27;, &#x27;#23898eff&#x27;, &#x27;#238a8dff&#x27;, &#x27;#238a8dff&#x27;, &#x27;#228b8dff&#x27;, &#x27;#228b8dff&#x27;, &#x27;#228c8dff&#x27;, &#x27;#228c8dff&#x27;, &#x27;#228d8dff&#x27;, &#x27;#218d8dff&#x27;, &#x27;#218e8dff&#x27;, &#x27;#218e8dff&#x27;, &#x27;#218f8dff&#x27;, &#x27;#218f8dff&#x27;, &#x27;#21908dff&#x27;, &#x27;#21908dff&#x27;, &#x27;#21918cff&#x27;, &#x27;#20918cff&#x27;, &#x27;#20928cff&#x27;, &#x27;#20928cff&#x27;, &#x27;#20928cff&#x27;, &#x27;#20928cff&#x27;, &#x27;#20938cff&#x27;, &#x27;#1f938cff&#x27;, &#x27;#1f948cff&#x27;, &#x27;#1f948cff&#x27;, &#x27;#1f958bff&#x27;, &#x27;#1f958bff&#x27;, &#x27;#1f968bff&#x27;, &#x27;#1f968bff&#x27;, &#x27;#1f978bff&#x27;, &#x27;#1f988bff&#x27;, &#x27;#1f988bff&#x27;, &#x27;#1f998bff&#x27;, &#x27;#1f998aff&#x27;, &#x27;#1f9a8aff&#x27;, &#x27;#1f9a8aff&#x27;, &#x27;#1e9b8aff&#x27;, &#x27;#1e9b8aff&#x27;, &#x27;#1e9c8aff&#x27;, &#x27;#1e9c89ff&#x27;, &#x27;#1e9d89ff&#x27;, &#x27;#1e9d89ff&#x27;, &#x27;#1e9e89ff&#x27;, &#x27;#1f9e89ff&#x27;, &#x27;#1f9f88ff&#x27;, &#x27;#1f9f88ff&#x27;, &#x27;#1fa088ff&#x27;, &#x27;#1fa088ff&#x27;, &#x27;#1fa188ff&#x27;, &#x27;#1fa188ff&#x27;, &#x27;#1fa187ff&#x27;, &#x27;#1fa187ff&#x27;, &#x27;#1fa287ff&#x27;, &#x27;#1fa287ff&#x27;, &#x27;#1fa386ff&#x27;, &#x27;#20a386ff&#x27;, &#x27;#20a486ff&#x27;, &#x27;#20a486ff&#x27;, &#x27;#20a585ff&#x27;, &#x27;#21a585ff&#x27;, &#x27;#21a685ff&#x27;, &#x27;#21a685ff&#x27;, &#x27;#21a785ff&#x27;, &#x27;#22a785ff&#x27;, &#x27;#22a884ff&#x27;, &#x27;#22a884ff&#x27;, &#x27;#22a983ff&#x27;, &#x27;#23a983ff&#x27;, &#x27;#23aa83ff&#x27;, &#x27;#24ab83ff&#x27;, &#x27;#25ab82ff&#x27;, &#x27;#25ac82ff&#x27;, &#x27;#25ac82ff&#x27;, &#x27;#25ad82ff&#x27;, &#x27;#26ad81ff&#x27;, &#x27;#26ad81ff&#x27;, &#x27;#27ad81ff&#x27;, &#x27;#27ae81ff&#x27;, &#x27;#28ae80ff&#x27;, &#x27;#28af80ff&#x27;, &#x27;#29af7fff&#x27;, &#x27;#29b07fff&#x27;, &#x27;#2ab07fff&#x27;, &#x27;#2bb17eff&#x27;, &#x27;#2cb17eff&#x27;, &#x27;#2cb27dff&#x27;, &#x27;#2db27dff&#x27;, &#x27;#2db37cff&#x27;, &#x27;#2eb37cff&#x27;, &#x27;#2eb47cff&#x27;, &#x27;#2fb47cff&#x27;, &#x27;#30b57bff&#x27;, &#x27;#31b57bff&#x27;, &#x27;#31b67aff&#x27;, &#x27;#32b67aff&#x27;, &#x27;#33b679ff&#x27;, &#x27;#34b679ff&#x27;, &#x27;#34b779ff&#x27;, &#x27;#35b779ff&#x27;, &#x27;#36b878ff&#x27;, &#x27;#37b878ff&#x27;, &#x27;#37b977ff&#x27;, &#x27;#38b977ff&#x27;, &#x27;#39ba76ff&#x27;, &#x27;#3aba76ff&#x27;, &#x27;#3abb75ff&#x27;, &#x27;#3bbb75ff&#x27;, &#x27;#3cbc74ff&#x27;, &#x27;#3dbc74ff&#x27;, &#x27;#3ebc73ff&#x27;, &#x27;#3fbd73ff&#x27;, &#x27;#40bd72ff&#x27;, &#x27;#40be72ff&#x27;, &#x27;#41be71ff&#x27;, &#x27;#42bf71ff&#x27;, &#x27;#43bf70ff&#x27;, &#x27;#45c070ff&#x27;, &#x27;#46c06fff&#x27;, &#x27;#47c16fff&#x27;, &#x27;#48c16eff&#x27;, &#x27;#49c16eff&#x27;, &#x27;#4ac16dff&#x27;, &#x27;#4bc26cff&#x27;, &#x27;#4cc26cff&#x27;, &#x27;#4dc36bff&#x27;, &#x27;#4ec36bff&#x27;, &#x27;#4fc46aff&#x27;, &#x27;#50c46aff&#x27;, &#x27;#51c569ff&#x27;, &#x27;#52c569ff&#x27;, &#x27;#53c568ff&#x27;, &#x27;#54c568ff&#x27;, &#x27;#55c667ff&#x27;, &#x27;#56c667ff&#x27;, &#x27;#57c766ff&#x27;, &#x27;#58c765ff&#x27;, &#x27;#59c864ff&#x27;, &#x27;#5ac864ff&#x27;, &#x27;#5bc863ff&#x27;, &#x27;#5cc863ff&#x27;, &#x27;#5dc962ff&#x27;, &#x27;#5ec962ff&#x27;, &#x27;#5fca61ff&#x27;, &#x27;#60ca60ff&#x27;, &#x27;#62cb5fff&#x27;, &#x27;#63cb5fff&#x27;, &#x27;#64cb5eff&#x27;, &#x27;#65cc5dff&#x27;, &#x27;#66cc5cff&#x27;, &#x27;#67cd5cff&#x27;, &#x27;#68cd5bff&#x27;, &#x27;#6acd5bff&#x27;, &#x27;#6bcd5aff&#x27;, &#x27;#6cce59ff&#x27;, &#x27;#6ece58ff&#x27;, &#x27;#6fcf58ff&#x27;, &#x27;#70cf57ff&#x27;, &#x27;#71d057ff&#x27;, &#x27;#72d056ff&#x27;, &#x27;#74d055ff&#x27;, &#x27;#75d054ff&#x27;, &#x27;#76d153ff&#x27;, &#x27;#77d153ff&#x27;, &#x27;#78d152ff&#x27;, &#x27;#7ad151ff&#x27;, &#x27;#7bd250ff&#x27;, &#x27;#7cd250ff&#x27;, &#x27;#7dd34fff&#x27;, &#x27;#7fd34eff&#x27;, &#x27;#80d34dff&#x27;, &#x27;#81d34dff&#x27;, &#x27;#82d44cff&#x27;, &#x27;#84d44bff&#x27;, &#x27;#85d54aff&#x27;, &#x27;#86d549ff&#x27;, &#x27;#88d548ff&#x27;, &#x27;#89d548ff&#x27;, &#x27;#8ad647ff&#x27;, &#x27;#8bd646ff&#x27;, &#x27;#8dd645ff&#x27;, &#x27;#8ed645ff&#x27;, &#x27;#8fd744ff&#x27;, &#x27;#90d743ff&#x27;, &#x27;#92d742ff&#x27;, &#x27;#93d741ff&#x27;, &#x27;#94d840ff&#x27;, &#x27;#96d83fff&#x27;, &#x27;#97d83eff&#x27;, &#x27;#99d93dff&#x27;, &#x27;#9ad93cff&#x27;, &#x27;#9bd93cff&#x27;, &#x27;#9dd93bff&#x27;, &#x27;#9eda3aff&#x27;, &#x27;#9fda39ff&#x27;, &#x27;#a1da38ff&#x27;, &#x27;#a2da37ff&#x27;, &#x27;#a3db36ff&#x27;, &#x27;#a4db36ff&#x27;, &#x27;#a6db35ff&#x27;, &#x27;#a8db34ff&#x27;, &#x27;#a9dc33ff&#x27;, &#x27;#aadc32ff&#x27;, &#x27;#abdc31ff&#x27;, &#x27;#addc30ff&#x27;, &#x27;#aedd2fff&#x27;, &#x27;#b0dd2fff&#x27;, &#x27;#b1dd2eff&#x27;, &#x27;#b2dd2dff&#x27;, &#x27;#b3de2cff&#x27;, &#x27;#b5de2bff&#x27;, &#x27;#b6de2aff&#x27;, &#x27;#b8de29ff&#x27;, &#x27;#b9de28ff&#x27;, &#x27;#bade28ff&#x27;, &#x27;#bcdf27ff&#x27;, &#x27;#bddf26ff&#x27;, &#x27;#bfdf25ff&#x27;, &#x27;#c0df25ff&#x27;, &#x27;#c1df24ff&#x27;, &#x27;#c2df23ff&#x27;, &#x27;#c4e022ff&#x27;, &#x27;#c5e021ff&#x27;, &#x27;#c7e020ff&#x27;, &#x27;#c8e020ff&#x27;, &#x27;#c9e11fff&#x27;, &#x27;#cbe11eff&#x27;, &#x27;#cce11dff&#x27;, &#x27;#cee11dff&#x27;, &#x27;#cfe11cff&#x27;, &#x27;#d1e11bff&#x27;, &#x27;#d2e21bff&#x27;, &#x27;#d3e21aff&#x27;, &#x27;#d4e21aff&#x27;, &#x27;#d6e219ff&#x27;, &#x27;#d7e219ff&#x27;, &#x27;#d9e319ff&#x27;, &#x27;#dae319ff&#x27;, &#x27;#dbe318ff&#x27;, &#x27;#dde318ff&#x27;, &#x27;#dee318ff&#x27;, &#x27;#dfe318ff&#x27;, &#x27;#e0e418ff&#x27;, &#x27;#e2e418ff&#x27;, &#x27;#e3e418ff&#x27;, &#x27;#e5e418ff&#x27;, &#x27;#e6e419ff&#x27;, &#x27;#e7e419ff&#x27;, &#x27;#e8e519ff&#x27;, &#x27;#eae519ff&#x27;, &#x27;#ebe51aff&#x27;, &#x27;#ece51aff&#x27;, &#x27;#ede51bff&#x27;, &#x27;#efe51bff&#x27;, &#x27;#f0e51cff&#x27;, &#x27;#f1e51dff&#x27;, &#x27;#f3e61dff&#x27;, &#x27;#f4e61eff&#x27;, &#x27;#f5e61eff&#x27;, &#x27;#f6e61fff&#x27;, &#x27;#f7e620ff&#x27;, &#x27;#f8e621ff&#x27;, &#x27;#fae722ff&#x27;, &#x27;#fbe723ff&#x27;, &#x27;#fce724ff&#x27;, &#x27;#fde725ff&#x27;]);\n",
       "    \n",
       "\n",
       "    color_map_78f3c3977978f718a5e4a66c790169ac.x = d3.scale.linear()\n",
       "              .domain([2.0, 9.0])\n",
       "              .range([0, 450 - 50]);\n",
       "\n",
       "    color_map_78f3c3977978f718a5e4a66c790169ac.legend = L.control({position: &#x27;topright&#x27;});\n",
       "    color_map_78f3c3977978f718a5e4a66c790169ac.legend.onAdd = function (map) {var div = L.DomUtil.create(&#x27;div&#x27;, &#x27;legend&#x27;); return div};\n",
       "    color_map_78f3c3977978f718a5e4a66c790169ac.legend.addTo(map_ad02ee3d04f42ff062355e0b20b7f04f);\n",
       "\n",
       "    color_map_78f3c3977978f718a5e4a66c790169ac.xAxis = d3.svg.axis()\n",
       "        .scale(color_map_78f3c3977978f718a5e4a66c790169ac.x)\n",
       "        .orient(&quot;top&quot;)\n",
       "        .tickSize(1)\n",
       "        .tickValues([2.0, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, 2.7137254901960786, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, 3.427450980392157, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, 4.141176470588235, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, 4.854901960784314, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, 5.568627450980392, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, 6.2823529411764705, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, 6.996078431372549, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, 7.709803921568628, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, 8.423529411764706, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;, &#x27;&#x27;]);\n",
       "\n",
       "    color_map_78f3c3977978f718a5e4a66c790169ac.svg = d3.select(&quot;.legend.leaflet-control&quot;).append(&quot;svg&quot;)\n",
       "        .attr(&quot;id&quot;, &#x27;legend&#x27;)\n",
       "        .attr(&quot;width&quot;, 450)\n",
       "        .attr(&quot;height&quot;, 40);\n",
       "\n",
       "    color_map_78f3c3977978f718a5e4a66c790169ac.g = color_map_78f3c3977978f718a5e4a66c790169ac.svg.append(&quot;g&quot;)\n",
       "        .attr(&quot;class&quot;, &quot;key&quot;)\n",
       "        .attr(&quot;transform&quot;, &quot;translate(25,16)&quot;);\n",
       "\n",
       "    color_map_78f3c3977978f718a5e4a66c790169ac.g.selectAll(&quot;rect&quot;)\n",
       "        .data(color_map_78f3c3977978f718a5e4a66c790169ac.color.range().map(function(d, i) {\n",
       "          return {\n",
       "            x0: i ? color_map_78f3c3977978f718a5e4a66c790169ac.x(color_map_78f3c3977978f718a5e4a66c790169ac.color.domain()[i - 1]) : color_map_78f3c3977978f718a5e4a66c790169ac.x.range()[0],\n",
       "            x1: i &lt; color_map_78f3c3977978f718a5e4a66c790169ac.color.domain().length ? color_map_78f3c3977978f718a5e4a66c790169ac.x(color_map_78f3c3977978f718a5e4a66c790169ac.color.domain()[i]) : color_map_78f3c3977978f718a5e4a66c790169ac.x.range()[1],\n",
       "            z: d\n",
       "          };\n",
       "        }))\n",
       "      .enter().append(&quot;rect&quot;)\n",
       "        .attr(&quot;height&quot;, 40 - 30)\n",
       "        .attr(&quot;x&quot;, function(d) { return d.x0; })\n",
       "        .attr(&quot;width&quot;, function(d) { return d.x1 - d.x0; })\n",
       "        .style(&quot;fill&quot;, function(d) { return d.z; });\n",
       "\n",
       "    color_map_78f3c3977978f718a5e4a66c790169ac.g.call(color_map_78f3c3977978f718a5e4a66c790169ac.xAxis).append(&quot;text&quot;)\n",
       "        .attr(&quot;class&quot;, &quot;caption&quot;)\n",
       "        .attr(&quot;y&quot;, 21)\n",
       "        .text(&quot;cardinalities&quot;);\n",
       "    \n",
       "        function geo_json_54869514a936bdabb3389a5a34008c74_styler(feature) {\n",
       "            switch(feature.id) {\n",
       "                default:\n",
       "                    return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;black&quot;, &quot;fillOpacity&quot;: 0.5, &quot;weight&quot;: 2};\n",
       "            }\n",
       "        }\n",
       "        function geo_json_54869514a936bdabb3389a5a34008c74_highlighter(feature) {\n",
       "            switch(feature.id) {\n",
       "                default:\n",
       "                    return {&quot;fillOpacity&quot;: 0.75};\n",
       "            }\n",
       "        }\n",
       "        function geo_json_54869514a936bdabb3389a5a34008c74_pointToLayer(feature, latlng) {\n",
       "            var opts = {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3388ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#3388ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 2, &quot;stroke&quot;: true, &quot;weight&quot;: 3};\n",
       "            \n",
       "            let style = geo_json_54869514a936bdabb3389a5a34008c74_styler(feature)\n",
       "            Object.assign(opts, style)\n",
       "            \n",
       "            return new L.CircleMarker(latlng, opts)\n",
       "        }\n",
       "\n",
       "        function geo_json_54869514a936bdabb3389a5a34008c74_onEachFeature(feature, layer) {\n",
       "            layer.on({\n",
       "                mouseout: function(e) {\n",
       "                    if(typeof e.target.setStyle === &quot;function&quot;){\n",
       "                        geo_json_54869514a936bdabb3389a5a34008c74.resetStyle(e.target);\n",
       "                    }\n",
       "                },\n",
       "                mouseover: function(e) {\n",
       "                    if(typeof e.target.setStyle === &quot;function&quot;){\n",
       "                        const highlightStyle = geo_json_54869514a936bdabb3389a5a34008c74_highlighter(e.target.feature)\n",
       "                        e.target.setStyle(highlightStyle);\n",
       "                    }\n",
       "                },\n",
       "            });\n",
       "        };\n",
       "        var geo_json_54869514a936bdabb3389a5a34008c74 = L.geoJson(null, {\n",
       "                onEachFeature: geo_json_54869514a936bdabb3389a5a34008c74_onEachFeature,\n",
       "            \n",
       "                style: geo_json_54869514a936bdabb3389a5a34008c74_styler,\n",
       "                pointToLayer: geo_json_54869514a936bdabb3389a5a34008c74_pointToLayer,\n",
       "        });\n",
       "\n",
       "        function geo_json_54869514a936bdabb3389a5a34008c74_add (data) {\n",
       "            geo_json_54869514a936bdabb3389a5a34008c74\n",
       "                .addData(data);\n",
       "        }\n",
       "            geo_json_54869514a936bdabb3389a5a34008c74_add({&quot;bbox&quot;: [-84.0321893966368, 34.0902733398776, -75.87201533024219, 36.47409386901486], &quot;features&quot;: [{&quot;bbox&quot;: [-81.49548148653162, 36.420388562634756, -81.13220542827582, 36.47409386901486], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.49548148653162, 36.420388562634756], [-81.13220542827582, 36.47409386901486]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 0, &quot;neighbor&quot;: 1, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.49548148653162, 36.212591058235546, -81.1680924257293, 36.420388562634756], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.49548148653162, 36.420388562634756], [-81.1680924257293, 36.212591058235546]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;1&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 0, &quot;neighbor&quot;: 17, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.70133643506227, 36.250751216087075, -81.49548148653162, 36.420388562634756], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.49548148653162, 36.420388562634756], [-81.70133643506227, 36.250751216087075]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;2&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 0, &quot;neighbor&quot;: 18, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.13220542827582, 36.38789612168756, -80.69283730965327, 36.47409386901486], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.13220542827582, 36.47409386901486], [-80.69283730965327, 36.38789612168756]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;3&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 1, &quot;neighbor&quot;: 2, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.1680924257293, 36.212591058235546, -81.13220542827582, 36.47409386901486], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.13220542827582, 36.47409386901486], [-81.1680924257293, 36.212591058235546]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;4&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 1, &quot;neighbor&quot;: 17, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.69283730965327, 36.38789612168756, -80.23456192640865, 36.401227370972855], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.69283730965327, 36.38789612168756], [-80.23456192640865, 36.401227370972855]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;5&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 2, &quot;neighbor&quot;: 9, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.1680924257293, 36.212591058235546, -80.69283730965327, 36.38789612168756], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.69283730965327, 36.38789612168756], [-81.1680924257293, 36.212591058235546]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;6&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 2, &quot;neighbor&quot;: 17, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.69283730965327, 36.17220768865046, -80.65910549496982, 36.38789612168756], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.69283730965327, 36.38789612168756], [-80.65910549496982, 36.17220768865046]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;7&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 2, &quot;neighbor&quot;: 22, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.69283730965327, 36.1143389052351, -80.25053372049967, 36.38789612168756], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.69283730965327, 36.38789612168756], [-80.25053372049967, 36.1143389052351]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;8&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 2, &quot;neighbor&quot;: 24, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.19502280601716, 36.305372474455865, -75.93765003734005, 36.369675590406956], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-75.93765003734005, 36.305372474455865], [-76.19502280601716, 36.369675590406956]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;9&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 3, &quot;neighbor&quot;: 6, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-75.93765003734005, 35.773009234143785, -75.87201533024219, 36.305372474455865], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-75.93765003734005, 36.305372474455865], [-75.87201533024219, 35.773009234143785]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;10&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 3, &quot;neighbor&quot;: 55, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.37246171928803, 36.346271292404964, -76.99851152335646, 36.35951639232211], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.37246171928803, 36.346271292404964], [-76.99851152335646, 36.35951639232211]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;11&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 4, &quot;neighbor&quot;: 5, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.11408945025987, 36.346271292404964, -77.37246171928803, 36.431574192838355], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.37246171928803, 36.346271292404964], [-78.11408945025987, 36.431574192838355]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;12&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 4, &quot;neighbor&quot;: 8, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.67958234541625, 36.25616892305704, -77.37246171928803, 36.346271292404964], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.37246171928803, 36.346271292404964], [-77.67958234541625, 36.25616892305704]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;13&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 4, &quot;neighbor&quot;: 15, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.37246171928803, 36.02838211402072, -77.00034832803134, 36.346271292404964], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.37246171928803, 36.346271292404964], [-77.00034832803134, 36.02838211402072]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;14&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 4, &quot;neighbor&quot;: 27, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.99851152335646, 36.35951639232211, -76.71802675073793, 36.43099711652998], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.99851152335646, 36.35951639232211], [-76.71802675073793, 36.43099711652998]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;15&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 5, &quot;neighbor&quot;: 7, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.00034832803134, 36.02838211402072, -76.99851152335646, 36.35951639232211], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.99851152335646, 36.35951639232211], [-77.00034832803134, 36.02838211402072]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;16&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 5, &quot;neighbor&quot;: 27, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.71802675073793, 36.369675590406956, -76.19502280601716, 36.43099711652998], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.19502280601716, 36.369675590406956], [-76.71802675073793, 36.43099711652998]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;17&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 6, &quot;neighbor&quot;: 7, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.3082408976784, 36.32482355505354, -76.19502280601716, 36.369675590406956], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.19502280601716, 36.369675590406956], [-76.3082408976784, 36.32482355505354]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;18&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 6, &quot;neighbor&quot;: 16, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.71802675073793, 36.32482355505354, -76.3082408976784, 36.43099711652998], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.71802675073793, 36.43099711652998], [-76.3082408976784, 36.32482355505354]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;19&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 7, &quot;neighbor&quot;: 16, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.71802675073793, 36.22728328016211, -76.45111569351359, 36.43099711652998], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.71802675073793, 36.43099711652998], [-76.45111569351359, 36.22728328016211]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;20&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 7, &quot;neighbor&quot;: 19, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.71802675073793, 36.19801271093677, -76.65150188131545, 36.43099711652998], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.71802675073793, 36.43099711652998], [-76.65150188131545, 36.19801271093677]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;21&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 7, &quot;neighbor&quot;: 20, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.40588759239012, 36.37686581999349, -78.11408945025987, 36.431574192838355], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.11408945025987, 36.431574192838355], [-78.40588759239012, 36.37686581999349]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;22&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 8, &quot;neighbor&quot;: 14, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.11408945025987, 36.25616892305704, -77.67958234541625, 36.431574192838355], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.11408945025987, 36.431574192838355], [-77.67958234541625, 36.25616892305704]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;23&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 8, &quot;neighbor&quot;: 15, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.33218415595869, 36.04481979569061, -78.11408945025987, 36.431574192838355], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.11408945025987, 36.431574192838355], [-78.33218415595869, 36.04481979569061]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;24&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 8, &quot;neighbor&quot;: 23, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.11408945025987, 35.93822583107635, -77.98657016102852, 36.431574192838355], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.11408945025987, 36.431574192838355], [-77.98657016102852, 35.93822583107635]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;25&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 8, &quot;neighbor&quot;: 30, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.23456192640865, 36.39578671196982, -79.77276476728454, 36.401227370972855], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.23456192640865, 36.401227370972855], [-79.77276476728454, 36.39578671196982]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;26&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 9, &quot;neighbor&quot;: 11, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.25053372049967, 36.1143389052351, -80.23456192640865, 36.401227370972855], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.23456192640865, 36.401227370972855], [-80.25053372049967, 36.1143389052351]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;27&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 9, &quot;neighbor&quot;: 24, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.23456192640865, 36.121425443650615, -79.78257703120624, 36.401227370972855], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.23456192640865, 36.401227370972855], [-79.78257703120624, 36.121425443650615]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;28&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 9, &quot;neighbor&quot;: 25, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.77276476728454, 36.394472390737356, -79.33606772948953, 36.39578671196982], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.33606772948953, 36.394472390737356], [-79.77276476728454, 36.39578671196982]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;29&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 10, &quot;neighbor&quot;: 11, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.33606772948953, 36.38895351245035, -78.97676286158412, 36.394472390737356], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.33606772948953, 36.394472390737356], [-78.97676286158412, 36.38895351245035]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;30&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 10, &quot;neighbor&quot;: 13, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.40062842768751, 35.97812907941472, -79.33606772948953, 36.394472390737356], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.33606772948953, 36.394472390737356], [-79.40062842768751, 35.97812907941472]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;31&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 10, &quot;neighbor&quot;: 26, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.33606772948953, 35.974239868231855, -79.13156582724993, 36.394472390737356], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.33606772948953, 36.394472390737356], [-79.13156582724993, 35.974239868231855]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;32&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 10, &quot;neighbor&quot;: 28, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.25053372049967, 36.1143389052351, -79.77276476728454, 36.39578671196982], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.77276476728454, 36.39578671196982], [-80.25053372049967, 36.1143389052351]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;33&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 11, &quot;neighbor&quot;: 24, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.78257703120624, 36.121425443650615, -79.77276476728454, 36.39578671196982], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.77276476728454, 36.39578671196982], [-79.78257703120624, 36.121425443650615]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;34&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 11, &quot;neighbor&quot;: 25, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.77276476728454, 35.97812907941472, -79.40062842768751, 36.39578671196982], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.77276476728454, 36.39578671196982], [-79.40062842768751, 35.97812907941472]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;35&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 11, &quot;neighbor&quot;: 26, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.97676286158412, 36.3465746028161, -78.65955245707339, 36.38895351245035], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.65955245707339, 36.3465746028161], [-78.97676286158412, 36.38895351245035]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;36&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 12, &quot;neighbor&quot;: 13, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.65955245707339, 36.3465746028161, -78.40588759239012, 36.37686581999349], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.65955245707339, 36.3465746028161], [-78.40588759239012, 36.37686581999349]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;37&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 12, &quot;neighbor&quot;: 14, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.65955245707339, 36.04481979569061, -78.33218415595869, 36.3465746028161], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.65955245707339, 36.3465746028161], [-78.33218415595869, 36.04481979569061]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;38&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 12, &quot;neighbor&quot;: 23, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.86743923985517, 36.046624468880886, -78.65955245707339, 36.3465746028161], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.65955245707339, 36.3465746028161], [-78.86743923985517, 36.046624468880886]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;39&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 12, &quot;neighbor&quot;: 29, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.65955245707339, 35.793718523235434, -78.61963768303745, 36.3465746028161], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.65955245707339, 36.3465746028161], [-78.61963768303745, 35.793718523235434]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;40&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 12, &quot;neighbor&quot;: 36, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.13156582724993, 35.974239868231855, -78.97676286158412, 36.38895351245035], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.97676286158412, 36.38895351245035], [-79.13156582724993, 35.974239868231855]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;41&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 13, &quot;neighbor&quot;: 28, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.97676286158412, 36.046624468880886, -78.86743923985517, 36.38895351245035], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.97676286158412, 36.38895351245035], [-78.86743923985517, 36.046624468880886]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;42&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 13, &quot;neighbor&quot;: 29, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.40588759239012, 36.04481979569061, -78.33218415595869, 36.37686581999349], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.40588759239012, 36.37686581999349], [-78.33218415595869, 36.04481979569061]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;43&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 14, &quot;neighbor&quot;: 23, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.33218415595869, 36.04481979569061, -77.67958234541625, 36.25616892305704], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.67958234541625, 36.25616892305704], [-78.33218415595869, 36.04481979569061]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;44&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 15, &quot;neighbor&quot;: 23, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.67958234541625, 36.02838211402072, -77.00034832803134, 36.25616892305704], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.67958234541625, 36.25616892305704], [-77.00034832803134, 36.02838211402072]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;45&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 15, &quot;neighbor&quot;: 27, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.98657016102852, 35.93822583107635, -77.67958234541625, 36.25616892305704], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.67958234541625, 36.25616892305704], [-77.98657016102852, 35.93822583107635]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;46&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 15, &quot;neighbor&quot;: 30, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.67958234541625, 35.88136990275862, -77.5816426130457, 36.25616892305704], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.67958234541625, 36.25616892305704], [-77.5816426130457, 35.88136990275862]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;47&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 15, &quot;neighbor&quot;: 32, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.67958234541625, 35.85241144553857, -77.1263213146242, 36.25616892305704], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.67958234541625, 36.25616892305704], [-77.1263213146242, 35.85241144553857]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;48&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 15, &quot;neighbor&quot;: 35, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.45111569351359, 36.22728328016211, -76.3082408976784, 36.32482355505354], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.3082408976784, 36.32482355505354], [-76.45111569351359, 36.22728328016211]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;49&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 16, &quot;neighbor&quot;: 19, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.70133643506227, 36.212591058235546, -81.1680924257293, 36.250751216087075], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.1680924257293, 36.212591058235546], [-81.70133643506227, 36.250751216087075]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;50&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 17, &quot;neighbor&quot;: 18, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.1680924257293, 36.17220768865046, -80.65910549496982, 36.212591058235546], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.1680924257293, 36.212591058235546], [-80.65910549496982, 36.17220768865046]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;51&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 17, &quot;neighbor&quot;: 22, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.5564902506844, 35.93679745767059, -81.1680924257293, 36.212591058235546], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.1680924257293, 36.212591058235546], [-81.5564902506844, 35.93679745767059]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;52&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 17, &quot;neighbor&quot;: 33, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.1680924257293, 35.803923095003206, -80.90101493959926, 36.212591058235546], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.1680924257293, 36.212591058235546], [-80.90101493959926, 35.803923095003206]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;53&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 17, &quot;neighbor&quot;: 38, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.17936093491355, 35.90285493694586, -81.1680924257293, 36.212591058235546], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.1680924257293, 36.212591058235546], [-81.17936093491355, 35.90285493694586]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;54&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 17, &quot;neighbor&quot;: 40, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.91995341116828, 36.0793186797884, -81.70133643506227, 36.250751216087075], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.70133643506227, 36.250751216087075], [-81.91995341116828, 36.0793186797884]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;55&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 18, &quot;neighbor&quot;: 21, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.70133643506227, 35.93679745767059, -81.5564902506844, 36.250751216087075], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.70133643506227, 36.250751216087075], [-81.5564902506844, 35.93679745767059]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;56&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 18, &quot;neighbor&quot;: 33, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.65150188131545, 36.19801271093677, -76.45111569351359, 36.22728328016211], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.45111569351359, 36.22728328016211], [-76.65150188131545, 36.19801271093677]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;57&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 19, &quot;neighbor&quot;: 20, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.12248353999284, 35.975969205859286, -81.91995341116828, 36.0793186797884], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.91995341116828, 36.0793186797884], [-82.12248353999284, 35.975969205859286]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;58&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 21, &quot;neighbor&quot;: 31, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.91995341116828, 35.93679745767059, -81.5564902506844, 36.0793186797884], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.91995341116828, 36.0793186797884], [-81.5564902506844, 35.93679745767059]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;59&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 21, &quot;neighbor&quot;: 33, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.91995341116828, 35.764754813596575, -81.6825329190607, 36.0793186797884], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.91995341116828, 36.0793186797884], [-81.6825329190607, 35.764754813596575]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;60&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 21, &quot;neighbor&quot;: 42, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.04339606088747, 35.74009996280318, -81.91995341116828, 36.0793186797884], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.91995341116828, 36.0793186797884], [-82.04339606088747, 35.74009996280318]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;61&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 21, &quot;neighbor&quot;: 45, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.65910549496982, 36.1143389052351, -80.25053372049967, 36.17220768865046], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.65910549496982, 36.17220768865046], [-80.25053372049967, 36.1143389052351]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;62&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 22, &quot;neighbor&quot;: 24, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.90101493959926, 35.803923095003206, -80.65910549496982, 36.17220768865046], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.65910549496982, 36.17220768865046], [-80.90101493959926, 35.803923095003206]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;63&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 22, &quot;neighbor&quot;: 38, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.65910549496982, 35.91976543237011, -80.53127816956352, 36.17220768865046], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.65910549496982, 36.17220768865046], [-80.53127816956352, 35.91976543237011]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;64&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 22, &quot;neighbor&quot;: 39, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.33218415595869, 35.93822583107635, -77.98657016102852, 36.04481979569061], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.33218415595869, 36.04481979569061], [-77.98657016102852, 35.93822583107635]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;65&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 23, &quot;neighbor&quot;: 30, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.61963768303745, 35.793718523235434, -78.33218415595869, 36.04481979569061], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.33218415595869, 36.04481979569061], [-78.61963768303745, 35.793718523235434]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;66&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 23, &quot;neighbor&quot;: 36, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.3703938075336, 35.55111267356497, -78.33218415595869, 36.04481979569061], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.33218415595869, 36.04481979569061], [-78.3703938075336, 35.55111267356497]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;67&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 23, &quot;neighbor&quot;: 53, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.25053372049967, 36.1143389052351, -79.78257703120624, 36.121425443650615], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.25053372049967, 36.1143389052351], [-79.78257703120624, 36.121425443650615]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;68&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 24, &quot;neighbor&quot;: 25, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.53127816956352, 35.91976543237011, -80.25053372049967, 36.1143389052351], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.25053372049967, 36.1143389052351], [-80.53127816956352, 35.91976543237011]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;69&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 24, &quot;neighbor&quot;: 39, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.25600741309485, 35.7744010641556, -80.25053372049967, 36.1143389052351], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.25053372049967, 36.1143389052351], [-80.25600741309485, 35.7744010641556]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;70&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 24, &quot;neighbor&quot;: 41, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.78257703120624, 35.97812907941472, -79.40062842768751, 36.121425443650615], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.78257703120624, 36.121425443650615], [-79.40062842768751, 35.97812907941472]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;71&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 25, &quot;neighbor&quot;: 26, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.25600741309485, 35.7744010641556, -79.78257703120624, 36.121425443650615], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.78257703120624, 36.121425443650615], [-80.25600741309485, 35.7744010641556]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;72&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 25, &quot;neighbor&quot;: 41, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.80167663908625, 35.67781301100719, -79.78257703120624, 36.121425443650615], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.78257703120624, 36.121425443650615], [-79.80167663908625, 35.67781301100719]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;73&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 25, &quot;neighbor&quot;: 46, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.40062842768751, 35.974239868231855, -79.13156582724993, 35.97812907941472], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.40062842768751, 35.97812907941472], [-79.13156582724993, 35.974239868231855]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;74&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 26, &quot;neighbor&quot;: 28, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.80167663908625, 35.67781301100719, -79.40062842768751, 35.97812907941472], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.40062842768751, 35.97812907941472], [-79.80167663908625, 35.67781301100719]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;75&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 26, &quot;neighbor&quot;: 46, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.40062842768751, 35.69646335850461, -79.25597874115246, 35.97812907941472], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.40062842768751, 35.97812907941472], [-79.25597874115246, 35.69646335850461]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;76&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 26, &quot;neighbor&quot;: 47, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.1263213146242, 35.85241144553857, -77.00034832803134, 36.02838211402072], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.00034832803134, 36.02838211402072], [-77.1263213146242, 35.85241144553857]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;77&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 27, &quot;neighbor&quot;: 35, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.00034832803134, 35.82771455327548, -76.59090273018614, 36.02838211402072], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.00034832803134, 36.02838211402072], [-76.59090273018614, 35.82771455327548]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;78&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 27, &quot;neighbor&quot;: 43, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.13156582724993, 35.974239868231855, -78.86743923985517, 36.046624468880886], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.13156582724993, 35.974239868231855], [-78.86743923985517, 36.046624468880886]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;79&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 28, &quot;neighbor&quot;: 29, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.25597874115246, 35.69646335850461, -79.13156582724993, 35.974239868231855], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.13156582724993, 35.974239868231855], [-79.25597874115246, 35.69646335850461]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;80&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 28, &quot;neighbor&quot;: 47, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.86743923985517, 35.793718523235434, -78.61963768303745, 36.046624468880886], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.86743923985517, 36.046624468880886], [-78.61963768303745, 35.793718523235434]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;81&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 29, &quot;neighbor&quot;: 36, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.25597874115246, 35.69646335850461, -78.86743923985517, 36.046624468880886], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.86743923985517, 36.046624468880886], [-79.25597874115246, 35.69646335850461]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;82&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 29, &quot;neighbor&quot;: 47, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.98657016102852, 35.88136990275862, -77.5816426130457, 35.93822583107635], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.98657016102852, 35.93822583107635], [-77.5816426130457, 35.88136990275862]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;83&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 30, &quot;neighbor&quot;: 32, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.61963768303745, 35.793718523235434, -77.98657016102852, 35.93822583107635], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.98657016102852, 35.93822583107635], [-78.61963768303745, 35.793718523235434]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;84&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 30, &quot;neighbor&quot;: 36, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.98657016102852, 35.711426153089995, -77.93835602935111, 35.93822583107635], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.98657016102852, 35.93822583107635], [-77.93835602935111, 35.711426153089995]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;85&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 30, &quot;neighbor&quot;: 48, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.3703938075336, 35.55111267356497, -77.98657016102852, 35.93822583107635], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.98657016102852, 35.93822583107635], [-78.3703938075336, 35.55111267356497]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;86&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 30, &quot;neighbor&quot;: 53, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.29878534140809, 35.891263191643226, -82.12248353999284, 35.975969205859286], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.12248353999284, 35.975969205859286], [-82.29878534140809, 35.891263191643226]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;87&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 31, &quot;neighbor&quot;: 34, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.12248353999284, 35.74009996280318, -82.04339606088747, 35.975969205859286], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.12248353999284, 35.975969205859286], [-82.04339606088747, 35.74009996280318]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;88&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 31, &quot;neighbor&quot;: 45, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.5816426130457, 35.85241144553857, -77.1263213146242, 35.88136990275862], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.5816426130457, 35.88136990275862], [-77.1263213146242, 35.85241144553857]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;89&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 32, &quot;neighbor&quot;: 35, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.93835602935111, 35.711426153089995, -77.5816426130457, 35.88136990275862], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.5816426130457, 35.88136990275862], [-77.93835602935111, 35.711426153089995]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;90&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 32, &quot;neighbor&quot;: 48, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.5816426130457, 35.56915865033354, -77.3643519229068, 35.88136990275862], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.5816426130457, 35.88136990275862], [-77.3643519229068, 35.56915865033354]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;91&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 32, &quot;neighbor&quot;: 50, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.5564902506844, 35.90285493694586, -81.17936093491355, 35.93679745767059], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.5564902506844, 35.93679745767059], [-81.17936093491355, 35.90285493694586]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;92&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 33, &quot;neighbor&quot;: 40, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.6825329190607, 35.764754813596575, -81.5564902506844, 35.93679745767059], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.5564902506844, 35.93679745767059], [-81.6825329190607, 35.764754813596575]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;93&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 33, &quot;neighbor&quot;: 42, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.5564902506844, 35.65815642455532, -81.20636795501596, 35.93679745767059], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.5564902506844, 35.93679745767059], [-81.20636795501596, 35.65815642455532]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;94&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 33, &quot;neighbor&quot;: 51, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.67626610534305, 35.84307981796387, -82.29878534140809, 35.891263191643226], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.29878534140809, 35.891263191643226], [-82.67626610534305, 35.84307981796387]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;95&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 34, &quot;neighbor&quot;: 37, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.29878534140809, 35.74009996280318, -82.04339606088747, 35.891263191643226], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.29878534140809, 35.891263191643226], [-82.04339606088747, 35.74009996280318]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;96&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 34, &quot;neighbor&quot;: 45, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.54208536355003, 35.61935866399454, -82.29878534140809, 35.891263191643226], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.29878534140809, 35.891263191643226], [-82.54208536355003, 35.61935866399454]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;97&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 34, &quot;neighbor&quot;: 52, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.1263213146242, 35.82771455327548, -76.59090273018614, 35.85241144553857], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.1263213146242, 35.85241144553857], [-76.59090273018614, 35.82771455327548]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;98&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 35, &quot;neighbor&quot;: 43, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.3643519229068, 35.56915865033354, -77.1263213146242, 35.85241144553857], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.1263213146242, 35.85241144553857], [-77.3643519229068, 35.56915865033354]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;99&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 35, &quot;neighbor&quot;: 50, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.1263213146242, 35.56410582410714, -76.80756743037757, 35.85241144553857], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.1263213146242, 35.85241144553857], [-76.80756743037757, 35.56410582410714]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;100&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 35, &quot;neighbor&quot;: 56, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.25597874115246, 35.69646335850461, -78.61963768303745, 35.793718523235434], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.61963768303745, 35.793718523235434], [-79.25597874115246, 35.69646335850461]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;101&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 36, &quot;neighbor&quot;: 47, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.61963768303745, 35.55111267356497, -78.3703938075336, 35.793718523235434], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.61963768303745, 35.793718523235434], [-78.3703938075336, 35.55111267356497]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;102&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 36, &quot;neighbor&quot;: 53, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.83973208503795, 35.37487380360481, -78.61963768303745, 35.793718523235434], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.61963768303745, 35.793718523235434], [-78.83973208503795, 35.37487380360481]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;103&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 36, &quot;neighbor&quot;: 62, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.67626610534305, 35.61935866399454, -82.54208536355003, 35.84307981796387], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.67626610534305, 35.84307981796387], [-82.54208536355003, 35.61935866399454]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;104&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 37, &quot;neighbor&quot;: 52, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.96803136678908, 35.54228494433707, -82.67626610534305, 35.84307981796387], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.67626610534305, 35.84307981796387], [-82.96803136678908, 35.54228494433707]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;105&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 37, &quot;neighbor&quot;: 54, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.90101493959926, 35.803923095003206, -80.53127816956352, 35.91976543237011], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.90101493959926, 35.803923095003206], [-80.53127816956352, 35.91976543237011]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;106&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 38, &quot;neighbor&quot;: 39, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.17936093491355, 35.803923095003206, -80.90101493959926, 35.90285493694586], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.90101493959926, 35.803923095003206], [-81.17936093491355, 35.90285493694586]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;107&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 38, &quot;neighbor&quot;: 40, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.90101493959926, 35.659772053128975, -80.53283827506755, 35.803923095003206], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.90101493959926, 35.803923095003206], [-80.53283827506755, 35.659772053128975]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;108&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 38, &quot;neighbor&quot;: 49, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.20636795501596, 35.65815642455532, -80.90101493959926, 35.803923095003206], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.90101493959926, 35.803923095003206], [-81.20636795501596, 35.65815642455532]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;109&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 38, &quot;neighbor&quot;: 51, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.21835056524885, 35.479939019175795, -80.90101493959926, 35.803923095003206], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.90101493959926, 35.803923095003206], [-81.21835056524885, 35.479939019175795]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;110&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 38, &quot;neighbor&quot;: 64, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.90101493959926, 35.25740486354764, -80.82735715242157, 35.803923095003206], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.90101493959926, 35.803923095003206], [-80.82735715242157, 35.25740486354764]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;111&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 38, &quot;neighbor&quot;: 67, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.90101493959926, 35.36297645265597, -80.5547048031675, 35.803923095003206], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.90101493959926, 35.803923095003206], [-80.5547048031675, 35.36297645265597]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;112&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 38, &quot;neighbor&quot;: 68, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.53127816956352, 35.7744010641556, -80.25600741309485, 35.91976543237011], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.53127816956352, 35.91976543237011], [-80.25600741309485, 35.7744010641556]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;113&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 39, &quot;neighbor&quot;: 41, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.53283827506755, 35.659772053128975, -80.53127816956352, 35.91976543237011], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.53127816956352, 35.91976543237011], [-80.53283827506755, 35.659772053128975]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;114&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 39, &quot;neighbor&quot;: 49, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.20636795501596, 35.65815642455532, -81.17936093491355, 35.90285493694586], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.17936093491355, 35.90285493694586], [-81.20636795501596, 35.65815642455532]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;115&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 40, &quot;neighbor&quot;: 51, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.25600741309485, 35.67781301100719, -79.80167663908625, 35.7744010641556], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.25600741309485, 35.7744010641556], [-79.80167663908625, 35.67781301100719]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;116&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 41, &quot;neighbor&quot;: 46, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.53283827506755, 35.659772053128975, -80.25600741309485, 35.7744010641556], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.25600741309485, 35.7744010641556], [-80.53283827506755, 35.659772053128975]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;117&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 41, &quot;neighbor&quot;: 49, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.25600741309485, 35.327431460158316, -79.89606682644703, 35.7744010641556], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.25600741309485, 35.7744010641556], [-79.89606682644703, 35.327431460158316]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;118&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 41, &quot;neighbor&quot;: 69, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.25600741309485, 35.33009083353577, -80.24127152466903, 35.7744010641556], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.25600741309485, 35.7744010641556], [-80.24127152466903, 35.33009083353577]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;119&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 41, &quot;neighbor&quot;: 70, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.04339606088747, 35.74009996280318, -81.6825329190607, 35.764754813596575], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.6825329190607, 35.764754813596575], [-82.04339606088747, 35.74009996280318]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;120&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 42, &quot;neighbor&quot;: 45, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.6825329190607, 35.65815642455532, -81.20636795501596, 35.764754813596575], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.6825329190607, 35.764754813596575], [-81.20636795501596, 35.65815642455532]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;121&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 42, &quot;neighbor&quot;: 51, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.91432326401467, 35.39340997905669, -81.6825329190607, 35.764754813596575], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.6825329190607, 35.764754813596575], [-81.91432326401467, 35.39340997905669]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;122&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 42, &quot;neighbor&quot;: 60, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.6825329190607, 35.38603832932577, -81.56095654230508, 35.764754813596575], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.6825329190607, 35.764754813596575], [-81.56095654230508, 35.38603832932577]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;123&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 42, &quot;neighbor&quot;: 63, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.6825329190607, 35.479939019175795, -81.21835056524885, 35.764754813596575], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.6825329190607, 35.764754813596575], [-81.21835056524885, 35.479939019175795]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;124&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 42, &quot;neighbor&quot;: 64, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.59090273018614, 35.81868673514218, -76.22124491320736, 35.82771455327548], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.59090273018614, 35.82771455327548], [-76.22124491320736, 35.81868673514218]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;125&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 43, &quot;neighbor&quot;: 44, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.80756743037757, 35.56410582410714, -76.59090273018614, 35.82771455327548], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.59090273018614, 35.82771455327548], [-76.80756743037757, 35.56410582410714]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;126&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 43, &quot;neighbor&quot;: 56, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.59090273018614, 35.51854028682398, -76.21757613206822, 35.82771455327548], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.59090273018614, 35.82771455327548], [-76.21757613206822, 35.51854028682398]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;127&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 43, &quot;neighbor&quot;: 86, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.22124491320736, 35.51854028682398, -76.21757613206822, 35.81868673514218], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.22124491320736, 35.81868673514218], [-76.21757613206822, 35.51854028682398]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;128&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 44, &quot;neighbor&quot;: 86, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.54208536355003, 35.61935866399454, -82.04339606088747, 35.74009996280318], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.04339606088747, 35.74009996280318], [-82.54208536355003, 35.61935866399454]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;129&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 45, &quot;neighbor&quot;: 52, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.04339606088747, 35.39340997905669, -81.91432326401467, 35.74009996280318], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.04339606088747, 35.74009996280318], [-81.91432326401467, 35.39340997905669]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;130&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 45, &quot;neighbor&quot;: 60, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.80167663908625, 35.67781301100719, -79.25597874115246, 35.69646335850461], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.80167663908625, 35.67781301100719], [-79.25597874115246, 35.69646335850461]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;131&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 46, &quot;neighbor&quot;: 47, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.80167663908625, 35.27206243636648, -79.45977217261137, 35.67781301100719], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.80167663908625, 35.67781301100719], [-79.45977217261137, 35.27206243636648]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;132&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 46, &quot;neighbor&quot;: 66, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.89606682644703, 35.327431460158316, -79.80167663908625, 35.67781301100719], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.80167663908625, 35.67781301100719], [-79.89606682644703, 35.327431460158316]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;133&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 46, &quot;neighbor&quot;: 69, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.25597874115246, 35.45539941067479, -79.19208992681638, 35.69646335850461], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.25597874115246, 35.69646335850461], [-79.19208992681638, 35.45539941067479]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;134&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 47, &quot;neighbor&quot;: 59, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.25597874115246, 35.37487380360481, -78.83973208503795, 35.69646335850461], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.25597874115246, 35.69646335850461], [-78.83973208503795, 35.37487380360481]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;135&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 47, &quot;neighbor&quot;: 62, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.45977217261137, 35.27206243636648, -79.25597874115246, 35.69646335850461], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.25597874115246, 35.69646335850461], [-79.45977217261137, 35.27206243636648]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;136&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 47, &quot;neighbor&quot;: 66, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.93835602935111, 35.56915865033354, -77.3643519229068, 35.711426153089995], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.93835602935111, 35.711426153089995], [-77.3643519229068, 35.56915865033354]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;137&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 48, &quot;neighbor&quot;: 50, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.3703938075336, 35.55111267356497, -77.93835602935111, 35.711426153089995], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.93835602935111, 35.711426153089995], [-78.3703938075336, 35.55111267356497]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;138&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 48, &quot;neighbor&quot;: 53, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.93835602935111, 35.498952507618, -77.66626580682512, 35.711426153089995], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.93835602935111, 35.711426153089995], [-77.66626580682512, 35.498952507618]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;139&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 48, &quot;neighbor&quot;: 58, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.97787880182456, 35.38765571678414, -77.93835602935111, 35.711426153089995], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.93835602935111, 35.711426153089995], [-77.97787880182456, 35.38765571678414]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;140&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 48, &quot;neighbor&quot;: 61, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.5547048031675, 35.36297645265597, -80.53283827506755, 35.659772053128975], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.53283827506755, 35.659772053128975], [-80.5547048031675, 35.36297645265597]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;141&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 49, &quot;neighbor&quot;: 68, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.53283827506755, 35.327431460158316, -79.89606682644703, 35.659772053128975], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.53283827506755, 35.659772053128975], [-79.89606682644703, 35.327431460158316]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;142&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 49, &quot;neighbor&quot;: 69, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.53283827506755, 35.33009083353577, -80.24127152466903, 35.659772053128975], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.53283827506755, 35.659772053128975], [-80.24127152466903, 35.33009083353577]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;143&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 49, &quot;neighbor&quot;: 70, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.3643519229068, 35.56410582410714, -76.80756743037757, 35.56915865033354], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.3643519229068, 35.56915865033354], [-76.80756743037757, 35.56410582410714]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;144&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 50, &quot;neighbor&quot;: 56, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.66626580682512, 35.498952507618, -77.3643519229068, 35.56915865033354], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.3643519229068, 35.56915865033354], [-77.66626580682512, 35.498952507618]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;145&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 50, &quot;neighbor&quot;: 58, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.67721341139872, 35.20020763197254, -77.3643519229068, 35.56915865033354], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.3643519229068, 35.56915865033354], [-77.67721341139872, 35.20020763197254]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;146&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 50, &quot;neighbor&quot;: 73, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.3643519229068, 35.238638759898045, -77.18804707266813, 35.56915865033354], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.3643519229068, 35.56915865033354], [-77.18804707266813, 35.238638759898045]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;147&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 50, &quot;neighbor&quot;: 90, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.56095654230508, 35.38603832932577, -81.20636795501596, 35.65815642455532], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.20636795501596, 35.65815642455532], [-81.56095654230508, 35.38603832932577]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;148&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 51, &quot;neighbor&quot;: 63, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.21835056524885, 35.479939019175795, -81.20636795501596, 35.65815642455532], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.20636795501596, 35.65815642455532], [-81.21835056524885, 35.479939019175795]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;149&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 51, &quot;neighbor&quot;: 64, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.96803136678908, 35.54228494433707, -82.54208536355003, 35.61935866399454], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.54208536355003, 35.61935866399454], [-82.96803136678908, 35.54228494433707]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;150&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 52, &quot;neighbor&quot;: 54, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.54208536355003, 35.39340997905669, -81.91432326401467, 35.61935866399454], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.54208536355003, 35.61935866399454], [-81.91432326401467, 35.39340997905669]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;151&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 52, &quot;neighbor&quot;: 60, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.54208536355003, 35.34931942462325, -82.47671294559912, 35.61935866399454], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.54208536355003, 35.61935866399454], [-82.47671294559912, 35.34931942462325]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;152&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 52, &quot;neighbor&quot;: 71, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.77267464488618, 35.20959213861049, -82.54208536355003, 35.61935866399454], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.54208536355003, 35.61935866399454], [-82.77267464488618, 35.20959213861049]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;153&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 52, &quot;neighbor&quot;: 74, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.3703938075336, 35.38765571678414, -77.97787880182456, 35.55111267356497], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.3703938075336, 35.55111267356497], [-77.97787880182456, 35.38765571678414]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;154&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 53, &quot;neighbor&quot;: 61, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.83973208503795, 35.37487380360481, -78.3703938075336, 35.55111267356497], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.3703938075336, 35.55111267356497], [-78.83973208503795, 35.37487380360481]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;155&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 53, &quot;neighbor&quot;: 62, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.3703938075336, 34.922356132333654, -78.35673975816896, 35.55111267356497], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.3703938075336, 35.55111267356497], [-78.35673975816896, 34.922356132333654]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;156&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 53, &quot;neighbor&quot;: 78, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.60490348252915, 35.47586812816397, -82.96803136678908, 35.54228494433707], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.96803136678908, 35.54228494433707], [-83.60490348252915, 35.47586812816397]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;157&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 54, &quot;neighbor&quot;: 57, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.11150471676939, 35.24830652006442, -82.96803136678908, 35.54228494433707], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.96803136678908, 35.54228494433707], [-83.11150471676939, 35.24830652006442]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;158&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 54, &quot;neighbor&quot;: 65, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.96803136678908, 35.34931942462325, -82.47671294559912, 35.54228494433707], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.96803136678908, 35.54228494433707], [-82.47671294559912, 35.34931942462325]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;159&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 54, &quot;neighbor&quot;: 71, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.96803136678908, 35.20959213861049, -82.77267464488618, 35.54228494433707], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.96803136678908, 35.54228494433707], [-82.77267464488618, 35.20959213861049]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;160&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 54, &quot;neighbor&quot;: 74, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.21757613206822, 35.51854028682398, -75.87201533024219, 35.773009234143785], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-75.87201533024219, 35.773009234143785], [-76.21757613206822, 35.51854028682398]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;161&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 55, &quot;neighbor&quot;: 86, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.80756743037757, 35.14908744570476, -76.79515102455096, 35.56410582410714], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.80756743037757, 35.56410582410714], [-76.79515102455096, 35.14908744570476]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;162&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 56, &quot;neighbor&quot;: 79, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.80756743037757, 35.51854028682398, -76.21757613206822, 35.56410582410714], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.80756743037757, 35.56410582410714], [-76.21757613206822, 35.51854028682398]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;163&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 56, &quot;neighbor&quot;: 86, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.18804707266813, 35.238638759898045, -76.80756743037757, 35.56410582410714], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.80756743037757, 35.56410582410714], [-77.18804707266813, 35.238638759898045]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;164&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 56, &quot;neighbor&quot;: 90, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.60490348252915, 35.24830652006442, -83.11150471676939, 35.47586812816397], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-83.60490348252915, 35.47586812816397], [-83.11150471676939, 35.24830652006442]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;165&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 57, &quot;neighbor&quot;: 65, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.81944500863986, 35.34389325773047, -83.60490348252915, 35.47586812816397], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-83.60490348252915, 35.47586812816397], [-83.81944500863986, 35.34389325773047]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;166&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 57, &quot;neighbor&quot;: 72, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.60490348252915, 35.169995453707, -83.47193852539337, 35.47586812816397], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-83.60490348252915, 35.47586812816397], [-83.47193852539337, 35.169995453707]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;167&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 57, &quot;neighbor&quot;: 77, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.97787880182456, 35.38765571678414, -77.66626580682512, 35.498952507618], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.66626580682512, 35.498952507618], [-77.97787880182456, 35.38765571678414]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;168&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 58, &quot;neighbor&quot;: 61, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.67721341139872, 35.20020763197254, -77.66626580682512, 35.498952507618], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.66626580682512, 35.498952507618], [-77.67721341139872, 35.20020763197254]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;169&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 58, &quot;neighbor&quot;: 73, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.19208992681638, 35.37487380360481, -78.83973208503795, 35.45539941067479], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.19208992681638, 35.45539941067479], [-78.83973208503795, 35.37487380360481]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;170&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 59, &quot;neighbor&quot;: 62, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.45977217261137, 35.27206243636648, -79.19208992681638, 35.45539941067479], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.19208992681638, 35.45539941067479], [-79.45977217261137, 35.27206243636648]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;171&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 59, &quot;neighbor&quot;: 66, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.91432326401467, 35.38603832932577, -81.56095654230508, 35.39340997905669], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.91432326401467, 35.39340997905669], [-81.56095654230508, 35.38603832932577]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;172&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 60, &quot;neighbor&quot;: 63, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.47671294559912, 35.34931942462325, -81.91432326401467, 35.39340997905669], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.91432326401467, 35.39340997905669], [-82.47671294559912, 35.34931942462325]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;173&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 60, &quot;neighbor&quot;: 71, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.17699252199117, 35.2991253887554, -81.91432326401467, 35.39340997905669], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.91432326401467, 35.39340997905669], [-82.17699252199117, 35.2991253887554]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;174&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 60, &quot;neighbor&quot;: 76, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.97787880182456, 35.20020763197254, -77.67721341139872, 35.38765571678414], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.97787880182456, 35.38765571678414], [-77.67721341139872, 35.20020763197254]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;175&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 61, &quot;neighbor&quot;: 73, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.35673975816896, 34.922356132333654, -77.97787880182456, 35.38765571678414], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.97787880182456, 35.38765571678414], [-78.35673975816896, 34.922356132333654]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;176&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 61, &quot;neighbor&quot;: 78, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.97787880182456, 34.949151043248946, -77.90798830403743, 35.38765571678414], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.97787880182456, 35.38765571678414], [-77.90798830403743, 34.949151043248946]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;177&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 61, &quot;neighbor&quot;: 87, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.45977217261137, 35.27206243636648, -78.83973208503795, 35.37487380360481], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.83973208503795, 35.37487380360481], [-79.45977217261137, 35.27206243636648]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;178&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 62, &quot;neighbor&quot;: 66, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.83973208503795, 34.922356132333654, -78.35673975816896, 35.37487380360481], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.83973208503795, 35.37487380360481], [-78.35673975816896, 34.922356132333654]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;179&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 62, &quot;neighbor&quot;: 78, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.87810448081477, 35.054813025646546, -78.83973208503795, 35.37487380360481], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.83973208503795, 35.37487380360481], [-78.87810448081477, 35.054813025646546]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;180&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 62, &quot;neighbor&quot;: 81, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.56095654230508, 35.38603832932577, -81.21835056524885, 35.479939019175795], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.56095654230508, 35.38603832932577], [-81.21835056524885, 35.479939019175795]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;181&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 63, &quot;neighbor&quot;: 64, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.56095654230508, 35.293139601003844, -81.17736882425847, 35.38603832932577], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.56095654230508, 35.38603832932577], [-81.17736882425847, 35.293139601003844]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;182&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 63, &quot;neighbor&quot;: 75, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.21835056524885, 35.25740486354764, -80.82735715242157, 35.479939019175795], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.21835056524885, 35.479939019175795], [-80.82735715242157, 35.25740486354764]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;183&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 64, &quot;neighbor&quot;: 67, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.21835056524885, 35.293139601003844, -81.17736882425847, 35.479939019175795], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.21835056524885, 35.479939019175795], [-81.17736882425847, 35.293139601003844]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;184&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 64, &quot;neighbor&quot;: 75, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.11150471676939, 35.20959213861049, -82.77267464488618, 35.24830652006442], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-83.11150471676939, 35.24830652006442], [-82.77267464488618, 35.20959213861049]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;185&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 65, &quot;neighbor&quot;: 74, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.47193852539337, 35.169995453707, -83.11150471676939, 35.24830652006442], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-83.11150471676939, 35.24830652006442], [-83.47193852539337, 35.169995453707]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;186&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 65, &quot;neighbor&quot;: 77, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.89606682644703, 35.27206243636648, -79.45977217261137, 35.327431460158316], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.45977217261137, 35.27206243636648], [-79.89606682644703, 35.327431460158316]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;187&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 66, &quot;neighbor&quot;: 69, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.45977217261137, 35.054813025646546, -78.87810448081477, 35.27206243636648], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.45977217261137, 35.27206243636648], [-78.87810448081477, 35.054813025646546]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;188&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 66, &quot;neighbor&quot;: 81, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.45977217261137, 35.01438406556255, -79.25113955330204, 35.27206243636648], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.45977217261137, 35.27206243636648], [-79.25113955330204, 35.01438406556255]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;189&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 66, &quot;neighbor&quot;: 85, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.72202064037224, 34.99102766751888, -79.45977217261137, 35.27206243636648], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.45977217261137, 35.27206243636648], [-79.72202064037224, 34.99102766751888]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;190&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 66, &quot;neighbor&quot;: 88, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.47844550242344, 34.82678725757952, -79.45977217261137, 35.27206243636648], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.45977217261137, 35.27206243636648], [-79.47844550242344, 34.82678725757952]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;191&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 66, &quot;neighbor&quot;: 91, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.82735715242157, 35.25740486354764, -80.5547048031675, 35.36297645265597], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.82735715242157, 35.25740486354764], [-80.5547048031675, 35.36297645265597]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;192&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 67, &quot;neighbor&quot;: 68, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.17736882425847, 35.25740486354764, -80.82735715242157, 35.293139601003844], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.82735715242157, 35.25740486354764], [-81.17736882425847, 35.293139601003844]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;193&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 67, &quot;neighbor&quot;: 75, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.82735715242157, 35.01444375932666, -80.55885768683369, 35.25740486354764], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.82735715242157, 35.25740486354764], [-80.55885768683369, 35.01444375932666]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;194&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 67, &quot;neighbor&quot;: 83, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.5547048031675, 35.33009083353577, -80.24127152466903, 35.36297645265597], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.5547048031675, 35.36297645265597], [-80.24127152466903, 35.33009083353577]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;195&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 68, &quot;neighbor&quot;: 70, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.55885768683369, 35.01444375932666, -80.5547048031675, 35.36297645265597], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.5547048031675, 35.36297645265597], [-80.55885768683369, 35.01444375932666]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;196&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 68, &quot;neighbor&quot;: 83, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.24127152466903, 35.327431460158316, -79.89606682644703, 35.33009083353577], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.89606682644703, 35.327431460158316], [-80.24127152466903, 35.33009083353577]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;197&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 69, &quot;neighbor&quot;: 70, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.09124626604962, 34.989241505841214, -79.89606682644703, 35.327431460158316], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.89606682644703, 35.327431460158316], [-80.09124626604962, 34.989241505841214]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;198&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 69, &quot;neighbor&quot;: 84, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.89606682644703, 34.99102766751888, -79.72202064037224, 35.327431460158316], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.89606682644703, 35.327431460158316], [-79.72202064037224, 34.99102766751888]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;199&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 69, &quot;neighbor&quot;: 88, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.55885768683369, 35.01444375932666, -80.24127152466903, 35.33009083353577], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.24127152466903, 35.33009083353577], [-80.55885768683369, 35.01444375932666]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;200&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 70, &quot;neighbor&quot;: 83, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.24127152466903, 34.989241505841214, -80.09124626604962, 35.33009083353577], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.24127152466903, 35.33009083353577], [-80.09124626604962, 34.989241505841214]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;201&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 70, &quot;neighbor&quot;: 84, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.77267464488618, 35.20959213861049, -82.47671294559912, 35.34931942462325], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.47671294559912, 35.34931942462325], [-82.77267464488618, 35.20959213861049]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;202&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 71, &quot;neighbor&quot;: 74, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.47671294559912, 35.2991253887554, -82.17699252199117, 35.34931942462325], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-82.47671294559912, 35.34931942462325], [-82.17699252199117, 35.2991253887554]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;203&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 71, &quot;neighbor&quot;: 76, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.81944500863986, 35.169995453707, -83.47193852539337, 35.34389325773047], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-83.81944500863986, 35.34389325773047], [-83.47193852539337, 35.169995453707]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;204&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 72, &quot;neighbor&quot;: 77, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-84.0321893966368, 35.14015600385817, -83.81944500863986, 35.34389325773047], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-83.81944500863986, 35.34389325773047], [-84.0321893966368, 35.14015600385817]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;205&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 72, &quot;neighbor&quot;: 80, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.67721341139872, 35.012407955304155, -77.39905531467014, 35.20020763197254], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.67721341139872, 35.20020763197254], [-77.39905531467014, 35.012407955304155]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;206&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 73, &quot;neighbor&quot;: 82, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.90798830403743, 34.949151043248946, -77.67721341139872, 35.20020763197254], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.67721341139872, 35.20020763197254], [-77.90798830403743, 34.949151043248946]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;207&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 73, &quot;neighbor&quot;: 87, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.67721341139872, 35.20020763197254, -77.18804707266813, 35.238638759898045], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.67721341139872, 35.20020763197254], [-77.18804707266813, 35.238638759898045]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;208&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 73, &quot;neighbor&quot;: 90, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-84.0321893966368, 35.14015600385817, -83.47193852539337, 35.169995453707], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-83.47193852539337, 35.169995453707], [-84.0321893966368, 35.14015600385817]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;209&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 77, &quot;neighbor&quot;: 80, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.75265358254363, 35.06359077255187, -83.47193852539337, 35.169995453707], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-83.47193852539337, 35.169995453707], [-83.75265358254363, 35.06359077255187]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;210&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 77, &quot;neighbor&quot;: 89, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.87810448081477, 34.922356132333654, -78.35673975816896, 35.054813025646546], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.35673975816896, 34.922356132333654], [-78.87810448081477, 35.054813025646546]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;211&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 78, &quot;neighbor&quot;: 81, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.35673975816896, 34.922356132333654, -77.90798830403743, 34.949151043248946], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.35673975816896, 34.922356132333654], [-77.90798830403743, 34.949151043248946]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;212&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 78, &quot;neighbor&quot;: 87, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.56996079307251, 34.62312080120418, -78.35673975816896, 34.922356132333654], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.35673975816896, 34.922356132333654], [-78.56996079307251, 34.62312080120418]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;213&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 78, &quot;neighbor&quot;: 95, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.35673975816896, 34.509697709519855, -77.9245658269991, 34.922356132333654], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.35673975816896, 34.922356132333654], [-77.9245658269991, 34.509697709519855]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;214&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 78, &quot;neighbor&quot;: 96, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.18804707266813, 35.14908744570476, -76.79515102455096, 35.238638759898045], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-76.79515102455096, 35.14908744570476], [-77.18804707266813, 35.238638759898045]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;215&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 79, &quot;neighbor&quot;: 90, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-84.0321893966368, 35.06359077255187, -83.75265358254363, 35.14015600385817], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-84.0321893966368, 35.14015600385817], [-83.75265358254363, 35.06359077255187]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;216&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 80, &quot;neighbor&quot;: 89, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.25113955330204, 35.01438406556255, -78.87810448081477, 35.054813025646546], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.87810448081477, 35.054813025646546], [-79.25113955330204, 35.01438406556255]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;217&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 81, &quot;neighbor&quot;: 85, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.12198368689681, 34.6599186266382, -78.87810448081477, 35.054813025646546], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.87810448081477, 35.054813025646546], [-79.12198368689681, 34.6599186266382]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;218&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 81, &quot;neighbor&quot;: 93, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.87810448081477, 34.62312080120418, -78.56996079307251, 35.054813025646546], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.87810448081477, 35.054813025646546], [-78.56996079307251, 34.62312080120418]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;219&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 81, &quot;neighbor&quot;: 95, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.90798830403743, 34.949151043248946, -77.39905531467014, 35.012407955304155], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.39905531467014, 35.012407955304155], [-77.90798830403743, 34.949151043248946]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;220&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 82, &quot;neighbor&quot;: 87, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.39905531467014, 35.012407955304155, -77.18804707266813, 35.238638759898045], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.39905531467014, 35.012407955304155], [-77.18804707266813, 35.238638759898045]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;221&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 82, &quot;neighbor&quot;: 90, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.41302012730806, 34.74238011850433, -77.39905531467014, 35.012407955304155], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.39905531467014, 35.012407955304155], [-77.41302012730806, 34.74238011850433]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;222&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 82, &quot;neighbor&quot;: 92, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.39905531467014, 34.86427750937366, -76.54395923944259, 35.012407955304155], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.39905531467014, 35.012407955304155], [-76.54395923944259, 34.86427750937366]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;223&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 82, &quot;neighbor&quot;: 94, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.55885768683369, 34.989241505841214, -80.09124626604962, 35.01444375932666], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.55885768683369, 35.01444375932666], [-80.09124626604962, 34.989241505841214]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;224&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 83, &quot;neighbor&quot;: 84, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.09124626604962, 34.989241505841214, -79.72202064037224, 34.99102766751888], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-80.09124626604962, 34.989241505841214], [-79.72202064037224, 34.99102766751888]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;225&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 84, &quot;neighbor&quot;: 88, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.72202064037224, 34.99102766751888, -79.25113955330204, 35.01438406556255], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.25113955330204, 35.01438406556255], [-79.72202064037224, 34.99102766751888]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;226&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 85, &quot;neighbor&quot;: 88, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.47844550242344, 34.82678725757952, -79.25113955330204, 35.01438406556255], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.25113955330204, 35.01438406556255], [-79.47844550242344, 34.82678725757952]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;227&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 85, &quot;neighbor&quot;: 91, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.25113955330204, 34.6599186266382, -79.12198368689681, 35.01438406556255], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.25113955330204, 35.01438406556255], [-79.12198368689681, 34.6599186266382]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;228&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 85, &quot;neighbor&quot;: 93, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.90798830403743, 34.74238011850433, -77.41302012730806, 34.949151043248946], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.90798830403743, 34.949151043248946], [-77.41302012730806, 34.74238011850433]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;229&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 87, &quot;neighbor&quot;: 92, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.9245658269991, 34.509697709519855, -77.90798830403743, 34.949151043248946], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.90798830403743, 34.949151043248946], [-77.9245658269991, 34.509697709519855]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;230&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 87, &quot;neighbor&quot;: 96, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.72202064037224, 34.82678725757952, -79.47844550242344, 34.99102766751888], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.72202064037224, 34.99102766751888], [-79.47844550242344, 34.82678725757952]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;231&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 88, &quot;neighbor&quot;: 91, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.18804707266813, 34.86427750937366, -76.54395923944259, 35.238638759898045], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.18804707266813, 35.238638759898045], [-76.54395923944259, 34.86427750937366]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;232&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 90, &quot;neighbor&quot;: 94, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.47844550242344, 34.6599186266382, -79.12198368689681, 34.82678725757952], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.47844550242344, 34.82678725757952], [-79.12198368689681, 34.6599186266382]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;233&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 91, &quot;neighbor&quot;: 93, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.41302012730806, 34.74238011850433, -76.54395923944259, 34.86427750937366], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.41302012730806, 34.74238011850433], [-76.54395923944259, 34.86427750937366]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;234&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 92, &quot;neighbor&quot;: 94, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.9245658269991, 34.509697709519855, -77.41302012730806, 34.74238011850433], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.41302012730806, 34.74238011850433], [-77.9245658269991, 34.509697709519855]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;235&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 92, &quot;neighbor&quot;: 96, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.12198368689681, 34.62312080120418, -78.56996079307251, 34.6599186266382], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.12198368689681, 34.6599186266382], [-78.56996079307251, 34.62312080120418]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;236&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 93, &quot;neighbor&quot;: 95, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.12198368689681, 34.21558682200368, -78.64673911019337, 34.6599186266382], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-79.12198368689681, 34.6599186266382], [-78.64673911019337, 34.21558682200368]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;237&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 93, &quot;neighbor&quot;: 97, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.56996079307251, 34.509697709519855, -77.9245658269991, 34.62312080120418], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.56996079307251, 34.62312080120418], [-77.9245658269991, 34.509697709519855]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;238&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 95, &quot;neighbor&quot;: 96, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.64673911019337, 34.21558682200368, -78.56996079307251, 34.62312080120418], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.56996079307251, 34.62312080120418], [-78.64673911019337, 34.21558682200368]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;239&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 95, &quot;neighbor&quot;: 97, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.64673911019337, 34.21558682200368, -77.9245658269991, 34.509697709519855], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.9245658269991, 34.509697709519855], [-78.64673911019337, 34.21558682200368]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;240&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 96, &quot;neighbor&quot;: 97, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.9245658269991, 34.2172010123703, -77.90239283469771, 34.509697709519855], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.9245658269991, 34.509697709519855], [-77.90239283469771, 34.2172010123703]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;241&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 96, &quot;neighbor&quot;: 98, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.2566549713068, 34.0902733398776, -77.9245658269991, 34.509697709519855], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.9245658269991, 34.509697709519855], [-78.2566549713068, 34.0902733398776]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;242&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 96, &quot;neighbor&quot;: 99, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.64673911019337, 34.0902733398776, -78.2566549713068, 34.21558682200368], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-78.64673911019337, 34.21558682200368], [-78.2566549713068, 34.0902733398776]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;243&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 97, &quot;neighbor&quot;: 99, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.2566549713068, 34.0902733398776, -77.90239283469771, 34.2172010123703], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-77.90239283469771, 34.2172010123703], [-78.2566549713068, 34.0902733398776]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;244&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 98, &quot;neighbor&quot;: 99, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
       "\n",
       "        \n",
       "    \n",
       "    geo_json_54869514a936bdabb3389a5a34008c74.bindTooltip(\n",
       "    function(layer){\n",
       "    let div = L.DomUtil.create(&#x27;div&#x27;);\n",
       "    \n",
       "    let handleObject = feature=&gt;typeof(feature)==&#x27;object&#x27; ? JSON.stringify(feature) : feature;\n",
       "    let fields = [&quot;focal&quot;, &quot;neighbor&quot;, &quot;weight&quot;];\n",
       "    let aliases = [&quot;focal&quot;, &quot;neighbor&quot;, &quot;weight&quot;];\n",
       "    let table = &#x27;&lt;table&gt;&#x27; +\n",
       "        String(\n",
       "        fields.map(\n",
       "        (v,i)=&gt;\n",
       "        `&lt;tr&gt;\n",
       "            &lt;th&gt;${aliases[i]}&lt;/th&gt;\n",
       "            \n",
       "            &lt;td&gt;${handleObject(layer.feature.properties[v])}&lt;/td&gt;\n",
       "        &lt;/tr&gt;`).join(&#x27;&#x27;))\n",
       "    +&#x27;&lt;/table&gt;&#x27;;\n",
       "    div.innerHTML=table;\n",
       "    \n",
       "    return div\n",
       "    }\n",
       "    ,{&quot;className&quot;: &quot;foliumtooltip&quot;, &quot;sticky&quot;: true});\n",
       "                     \n",
       "    \n",
       "            geo_json_54869514a936bdabb3389a5a34008c74.addTo(map_ad02ee3d04f42ff062355e0b20b7f04f);\n",
       "        \n",
       "    \n",
       "        function geo_json_dab94ef587e18a19e4be487260cee229_styler(feature) {\n",
       "            switch(feature.id) {\n",
       "                default:\n",
       "                    return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;black&quot;, &quot;fillOpacity&quot;: 0.5, &quot;weight&quot;: 2};\n",
       "            }\n",
       "        }\n",
       "        function geo_json_dab94ef587e18a19e4be487260cee229_highlighter(feature) {\n",
       "            switch(feature.id) {\n",
       "                default:\n",
       "                    return {&quot;fillOpacity&quot;: 0.75};\n",
       "            }\n",
       "        }\n",
       "        function geo_json_dab94ef587e18a19e4be487260cee229_pointToLayer(feature, latlng) {\n",
       "            var opts = {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3388ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#3388ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 2, &quot;stroke&quot;: true, &quot;weight&quot;: 3};\n",
       "            \n",
       "            let style = geo_json_dab94ef587e18a19e4be487260cee229_styler(feature)\n",
       "            Object.assign(opts, style)\n",
       "            \n",
       "            return new L.CircleMarker(latlng, opts)\n",
       "        }\n",
       "\n",
       "        function geo_json_dab94ef587e18a19e4be487260cee229_onEachFeature(feature, layer) {\n",
       "            layer.on({\n",
       "                mouseout: function(e) {\n",
       "                    if(typeof e.target.setStyle === &quot;function&quot;){\n",
       "                        geo_json_dab94ef587e18a19e4be487260cee229.resetStyle(e.target);\n",
       "                    }\n",
       "                },\n",
       "                mouseover: function(e) {\n",
       "                    if(typeof e.target.setStyle === &quot;function&quot;){\n",
       "                        const highlightStyle = geo_json_dab94ef587e18a19e4be487260cee229_highlighter(e.target.feature)\n",
       "                        e.target.setStyle(highlightStyle);\n",
       "                    }\n",
       "                },\n",
       "            });\n",
       "        };\n",
       "        var geo_json_dab94ef587e18a19e4be487260cee229 = L.geoJson(null, {\n",
       "                onEachFeature: geo_json_dab94ef587e18a19e4be487260cee229_onEachFeature,\n",
       "            \n",
       "                style: geo_json_dab94ef587e18a19e4be487260cee229_styler,\n",
       "                pointToLayer: geo_json_dab94ef587e18a19e4be487260cee229_pointToLayer,\n",
       "        });\n",
       "\n",
       "        function geo_json_dab94ef587e18a19e4be487260cee229_add (data) {\n",
       "            geo_json_dab94ef587e18a19e4be487260cee229\n",
       "                .addData(data);\n",
       "        }\n",
       "            geo_json_dab94ef587e18a19e4be487260cee229_add({&quot;bbox&quot;: [-84.0321893966368, 34.0902733398776, -75.87201533024219, 36.47409386901486], &quot;features&quot;: [{&quot;bbox&quot;: [-81.49548148653162, 36.420388562634756, -81.49548148653162, 36.420388562634756], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.49548148653162, 36.420388562634756], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 0}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.13220542827582, 36.47409386901486, -81.13220542827582, 36.47409386901486], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.13220542827582, 36.47409386901486], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;1&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.69283730965327, 36.38789612168756, -80.69283730965327, 36.38789612168756], &quot;geometry&quot;: {&quot;coordinates&quot;: [-80.69283730965327, 36.38789612168756], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;2&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 2}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-75.93765003734005, 36.305372474455865, -75.93765003734005, 36.305372474455865], &quot;geometry&quot;: {&quot;coordinates&quot;: [-75.93765003734005, 36.305372474455865], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;3&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 3}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.37246171928803, 36.346271292404964, -77.37246171928803, 36.346271292404964], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.37246171928803, 36.346271292404964], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;4&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 4}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.99851152335646, 36.35951639232211, -76.99851152335646, 36.35951639232211], &quot;geometry&quot;: {&quot;coordinates&quot;: [-76.99851152335646, 36.35951639232211], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;5&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 5}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.19502280601716, 36.369675590406956, -76.19502280601716, 36.369675590406956], &quot;geometry&quot;: {&quot;coordinates&quot;: [-76.19502280601716, 36.369675590406956], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;6&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 6}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.71802675073793, 36.43099711652998, -76.71802675073793, 36.43099711652998], &quot;geometry&quot;: {&quot;coordinates&quot;: [-76.71802675073793, 36.43099711652998], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;7&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 7}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.11408945025987, 36.431574192838355, -78.11408945025987, 36.431574192838355], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.11408945025987, 36.431574192838355], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;8&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 8}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.23456192640865, 36.401227370972855, -80.23456192640865, 36.401227370972855], &quot;geometry&quot;: {&quot;coordinates&quot;: [-80.23456192640865, 36.401227370972855], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;9&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 9}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.33606772948953, 36.394472390737356, -79.33606772948953, 36.394472390737356], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.33606772948953, 36.394472390737356], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;10&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 10}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.77276476728454, 36.39578671196982, -79.77276476728454, 36.39578671196982], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.77276476728454, 36.39578671196982], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;11&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 11}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.65955245707339, 36.3465746028161, -78.65955245707339, 36.3465746028161], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.65955245707339, 36.3465746028161], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;12&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 12}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.97676286158412, 36.38895351245035, -78.97676286158412, 36.38895351245035], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.97676286158412, 36.38895351245035], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;13&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 13}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.40588759239012, 36.37686581999349, -78.40588759239012, 36.37686581999349], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.40588759239012, 36.37686581999349], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;14&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 14}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.67958234541625, 36.25616892305704, -77.67958234541625, 36.25616892305704], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.67958234541625, 36.25616892305704], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;15&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 15}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.3082408976784, 36.32482355505354, -76.3082408976784, 36.32482355505354], &quot;geometry&quot;: {&quot;coordinates&quot;: [-76.3082408976784, 36.32482355505354], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;16&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 16}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.1680924257293, 36.212591058235546, -81.1680924257293, 36.212591058235546], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.1680924257293, 36.212591058235546], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;17&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 17}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.70133643506227, 36.250751216087075, -81.70133643506227, 36.250751216087075], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.70133643506227, 36.250751216087075], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;18&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 18}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.45111569351359, 36.22728328016211, -76.45111569351359, 36.22728328016211], &quot;geometry&quot;: {&quot;coordinates&quot;: [-76.45111569351359, 36.22728328016211], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;19&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 19}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.65150188131545, 36.19801271093677, -76.65150188131545, 36.19801271093677], &quot;geometry&quot;: {&quot;coordinates&quot;: [-76.65150188131545, 36.19801271093677], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;20&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 20}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.91995341116828, 36.0793186797884, -81.91995341116828, 36.0793186797884], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.91995341116828, 36.0793186797884], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;21&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 21}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.65910549496982, 36.17220768865046, -80.65910549496982, 36.17220768865046], &quot;geometry&quot;: {&quot;coordinates&quot;: [-80.65910549496982, 36.17220768865046], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;22&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 22}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.33218415595869, 36.04481979569061, -78.33218415595869, 36.04481979569061], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.33218415595869, 36.04481979569061], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;23&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 23}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.25053372049967, 36.1143389052351, -80.25053372049967, 36.1143389052351], &quot;geometry&quot;: {&quot;coordinates&quot;: [-80.25053372049967, 36.1143389052351], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;24&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 24}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.78257703120624, 36.121425443650615, -79.78257703120624, 36.121425443650615], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.78257703120624, 36.121425443650615], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;25&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 25}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.40062842768751, 35.97812907941472, -79.40062842768751, 35.97812907941472], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.40062842768751, 35.97812907941472], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;26&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 26}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.00034832803134, 36.02838211402072, -77.00034832803134, 36.02838211402072], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.00034832803134, 36.02838211402072], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;27&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 27}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.13156582724993, 35.974239868231855, -79.13156582724993, 35.974239868231855], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.13156582724993, 35.974239868231855], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;28&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 28}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.86743923985517, 36.046624468880886, -78.86743923985517, 36.046624468880886], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.86743923985517, 36.046624468880886], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;29&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 29}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.98657016102852, 35.93822583107635, -77.98657016102852, 35.93822583107635], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.98657016102852, 35.93822583107635], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;30&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 30}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.12248353999284, 35.975969205859286, -82.12248353999284, 35.975969205859286], &quot;geometry&quot;: {&quot;coordinates&quot;: [-82.12248353999284, 35.975969205859286], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;31&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 31}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.5816426130457, 35.88136990275862, -77.5816426130457, 35.88136990275862], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.5816426130457, 35.88136990275862], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;32&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 32}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.5564902506844, 35.93679745767059, -81.5564902506844, 35.93679745767059], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.5564902506844, 35.93679745767059], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;33&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 33}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.29878534140809, 35.891263191643226, -82.29878534140809, 35.891263191643226], &quot;geometry&quot;: {&quot;coordinates&quot;: [-82.29878534140809, 35.891263191643226], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;34&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 34}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.1263213146242, 35.85241144553857, -77.1263213146242, 35.85241144553857], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.1263213146242, 35.85241144553857], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;35&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 35}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.61963768303745, 35.793718523235434, -78.61963768303745, 35.793718523235434], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.61963768303745, 35.793718523235434], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;36&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 36}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.67626610534305, 35.84307981796387, -82.67626610534305, 35.84307981796387], &quot;geometry&quot;: {&quot;coordinates&quot;: [-82.67626610534305, 35.84307981796387], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;37&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 37}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.90101493959926, 35.803923095003206, -80.90101493959926, 35.803923095003206], &quot;geometry&quot;: {&quot;coordinates&quot;: [-80.90101493959926, 35.803923095003206], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;38&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 38}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.53127816956352, 35.91976543237011, -80.53127816956352, 35.91976543237011], &quot;geometry&quot;: {&quot;coordinates&quot;: [-80.53127816956352, 35.91976543237011], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;39&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 39}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.17936093491355, 35.90285493694586, -81.17936093491355, 35.90285493694586], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.17936093491355, 35.90285493694586], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;40&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 40}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.25600741309485, 35.7744010641556, -80.25600741309485, 35.7744010641556], &quot;geometry&quot;: {&quot;coordinates&quot;: [-80.25600741309485, 35.7744010641556], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;41&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 41}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.6825329190607, 35.764754813596575, -81.6825329190607, 35.764754813596575], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.6825329190607, 35.764754813596575], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;42&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 42}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.59090273018614, 35.82771455327548, -76.59090273018614, 35.82771455327548], &quot;geometry&quot;: {&quot;coordinates&quot;: [-76.59090273018614, 35.82771455327548], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;43&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 43}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.22124491320736, 35.81868673514218, -76.22124491320736, 35.81868673514218], &quot;geometry&quot;: {&quot;coordinates&quot;: [-76.22124491320736, 35.81868673514218], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;44&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 44}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.04339606088747, 35.74009996280318, -82.04339606088747, 35.74009996280318], &quot;geometry&quot;: {&quot;coordinates&quot;: [-82.04339606088747, 35.74009996280318], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;45&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 45}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.80167663908625, 35.67781301100719, -79.80167663908625, 35.67781301100719], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.80167663908625, 35.67781301100719], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;46&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 46}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.25597874115246, 35.69646335850461, -79.25597874115246, 35.69646335850461], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.25597874115246, 35.69646335850461], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;47&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 47}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.93835602935111, 35.711426153089995, -77.93835602935111, 35.711426153089995], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.93835602935111, 35.711426153089995], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;48&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 48}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.53283827506755, 35.659772053128975, -80.53283827506755, 35.659772053128975], &quot;geometry&quot;: {&quot;coordinates&quot;: [-80.53283827506755, 35.659772053128975], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;49&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 49}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.3643519229068, 35.56915865033354, -77.3643519229068, 35.56915865033354], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.3643519229068, 35.56915865033354], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;50&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 50}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.20636795501596, 35.65815642455532, -81.20636795501596, 35.65815642455532], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.20636795501596, 35.65815642455532], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;51&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 51}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.54208536355003, 35.61935866399454, -82.54208536355003, 35.61935866399454], &quot;geometry&quot;: {&quot;coordinates&quot;: [-82.54208536355003, 35.61935866399454], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;52&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 52}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.3703938075336, 35.55111267356497, -78.3703938075336, 35.55111267356497], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.3703938075336, 35.55111267356497], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;53&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 53}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.96803136678908, 35.54228494433707, -82.96803136678908, 35.54228494433707], &quot;geometry&quot;: {&quot;coordinates&quot;: [-82.96803136678908, 35.54228494433707], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;54&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 54}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-75.87201533024219, 35.773009234143785, -75.87201533024219, 35.773009234143785], &quot;geometry&quot;: {&quot;coordinates&quot;: [-75.87201533024219, 35.773009234143785], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;55&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 55}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.80756743037757, 35.56410582410714, -76.80756743037757, 35.56410582410714], &quot;geometry&quot;: {&quot;coordinates&quot;: [-76.80756743037757, 35.56410582410714], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;56&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 56}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.60490348252915, 35.47586812816397, -83.60490348252915, 35.47586812816397], &quot;geometry&quot;: {&quot;coordinates&quot;: [-83.60490348252915, 35.47586812816397], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;57&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 57}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.66626580682512, 35.498952507618, -77.66626580682512, 35.498952507618], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.66626580682512, 35.498952507618], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;58&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 58}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.19208992681638, 35.45539941067479, -79.19208992681638, 35.45539941067479], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.19208992681638, 35.45539941067479], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;59&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 59}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.91432326401467, 35.39340997905669, -81.91432326401467, 35.39340997905669], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.91432326401467, 35.39340997905669], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;60&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 60}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.97787880182456, 35.38765571678414, -77.97787880182456, 35.38765571678414], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.97787880182456, 35.38765571678414], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;61&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 61}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.83973208503795, 35.37487380360481, -78.83973208503795, 35.37487380360481], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.83973208503795, 35.37487380360481], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;62&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 62}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.56095654230508, 35.38603832932577, -81.56095654230508, 35.38603832932577], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.56095654230508, 35.38603832932577], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;63&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 63}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.21835056524885, 35.479939019175795, -81.21835056524885, 35.479939019175795], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.21835056524885, 35.479939019175795], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;64&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 64}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.11150471676939, 35.24830652006442, -83.11150471676939, 35.24830652006442], &quot;geometry&quot;: {&quot;coordinates&quot;: [-83.11150471676939, 35.24830652006442], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;65&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 65}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.45977217261137, 35.27206243636648, -79.45977217261137, 35.27206243636648], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.45977217261137, 35.27206243636648], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;66&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 66}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.82735715242157, 35.25740486354764, -80.82735715242157, 35.25740486354764], &quot;geometry&quot;: {&quot;coordinates&quot;: [-80.82735715242157, 35.25740486354764], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;67&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 67}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.5547048031675, 35.36297645265597, -80.5547048031675, 35.36297645265597], &quot;geometry&quot;: {&quot;coordinates&quot;: [-80.5547048031675, 35.36297645265597], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;68&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 68}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.89606682644703, 35.327431460158316, -79.89606682644703, 35.327431460158316], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.89606682644703, 35.327431460158316], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;69&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 69}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.24127152466903, 35.33009083353577, -80.24127152466903, 35.33009083353577], &quot;geometry&quot;: {&quot;coordinates&quot;: [-80.24127152466903, 35.33009083353577], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;70&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 70}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.47671294559912, 35.34931942462325, -82.47671294559912, 35.34931942462325], &quot;geometry&quot;: {&quot;coordinates&quot;: [-82.47671294559912, 35.34931942462325], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;71&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 71}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.81944500863986, 35.34389325773047, -83.81944500863986, 35.34389325773047], &quot;geometry&quot;: {&quot;coordinates&quot;: [-83.81944500863986, 35.34389325773047], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;72&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 72}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.67721341139872, 35.20020763197254, -77.67721341139872, 35.20020763197254], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.67721341139872, 35.20020763197254], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;73&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 73}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.77267464488618, 35.20959213861049, -82.77267464488618, 35.20959213861049], &quot;geometry&quot;: {&quot;coordinates&quot;: [-82.77267464488618, 35.20959213861049], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;74&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 74}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.17736882425847, 35.293139601003844, -81.17736882425847, 35.293139601003844], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.17736882425847, 35.293139601003844], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;75&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 75}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-82.17699252199117, 35.2991253887554, -82.17699252199117, 35.2991253887554], &quot;geometry&quot;: {&quot;coordinates&quot;: [-82.17699252199117, 35.2991253887554], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;76&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 76}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.47193852539337, 35.169995453707, -83.47193852539337, 35.169995453707], &quot;geometry&quot;: {&quot;coordinates&quot;: [-83.47193852539337, 35.169995453707], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;77&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 77}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.35673975816896, 34.922356132333654, -78.35673975816896, 34.922356132333654], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.35673975816896, 34.922356132333654], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;78&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 78}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.79515102455096, 35.14908744570476, -76.79515102455096, 35.14908744570476], &quot;geometry&quot;: {&quot;coordinates&quot;: [-76.79515102455096, 35.14908744570476], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;79&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 79}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-84.0321893966368, 35.14015600385817, -84.0321893966368, 35.14015600385817], &quot;geometry&quot;: {&quot;coordinates&quot;: [-84.0321893966368, 35.14015600385817], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;80&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 80}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.87810448081477, 35.054813025646546, -78.87810448081477, 35.054813025646546], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.87810448081477, 35.054813025646546], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;81&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 81}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.39905531467014, 35.012407955304155, -77.39905531467014, 35.012407955304155], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.39905531467014, 35.012407955304155], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;82&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 82}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.55885768683369, 35.01444375932666, -80.55885768683369, 35.01444375932666], &quot;geometry&quot;: {&quot;coordinates&quot;: [-80.55885768683369, 35.01444375932666], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;83&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 83}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-80.09124626604962, 34.989241505841214, -80.09124626604962, 34.989241505841214], &quot;geometry&quot;: {&quot;coordinates&quot;: [-80.09124626604962, 34.989241505841214], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;84&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 84}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.25113955330204, 35.01438406556255, -79.25113955330204, 35.01438406556255], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.25113955330204, 35.01438406556255], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;85&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 85}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.21757613206822, 35.51854028682398, -76.21757613206822, 35.51854028682398], &quot;geometry&quot;: {&quot;coordinates&quot;: [-76.21757613206822, 35.51854028682398], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;86&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 86}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.90798830403743, 34.949151043248946, -77.90798830403743, 34.949151043248946], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.90798830403743, 34.949151043248946], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;87&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 87}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.72202064037224, 34.99102766751888, -79.72202064037224, 34.99102766751888], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.72202064037224, 34.99102766751888], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;88&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 88}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-83.75265358254363, 35.06359077255187, -83.75265358254363, 35.06359077255187], &quot;geometry&quot;: {&quot;coordinates&quot;: [-83.75265358254363, 35.06359077255187], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;89&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 89}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.18804707266813, 35.238638759898045, -77.18804707266813, 35.238638759898045], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.18804707266813, 35.238638759898045], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;90&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 90}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.47844550242344, 34.82678725757952, -79.47844550242344, 34.82678725757952], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.47844550242344, 34.82678725757952], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;91&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 91}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.41302012730806, 34.74238011850433, -77.41302012730806, 34.74238011850433], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.41302012730806, 34.74238011850433], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;92&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 92}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-79.12198368689681, 34.6599186266382, -79.12198368689681, 34.6599186266382], &quot;geometry&quot;: {&quot;coordinates&quot;: [-79.12198368689681, 34.6599186266382], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;93&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 93}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-76.54395923944259, 34.86427750937366, -76.54395923944259, 34.86427750937366], &quot;geometry&quot;: {&quot;coordinates&quot;: [-76.54395923944259, 34.86427750937366], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;94&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 94}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.56996079307251, 34.62312080120418, -78.56996079307251, 34.62312080120418], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.56996079307251, 34.62312080120418], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;95&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 95}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.9245658269991, 34.509697709519855, -77.9245658269991, 34.509697709519855], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.9245658269991, 34.509697709519855], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;96&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 96}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.64673911019337, 34.21558682200368, -78.64673911019337, 34.21558682200368], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.64673911019337, 34.21558682200368], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;97&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 97}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-77.90239283469771, 34.2172010123703, -77.90239283469771, 34.2172010123703], &quot;geometry&quot;: {&quot;coordinates&quot;: [-77.90239283469771, 34.2172010123703], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;98&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 98}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-78.2566549713068, 34.0902733398776, -78.2566549713068, 34.0902733398776], &quot;geometry&quot;: {&quot;coordinates&quot;: [-78.2566549713068, 34.0902733398776], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;99&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: 99}, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
       "\n",
       "        \n",
       "    \n",
       "    geo_json_dab94ef587e18a19e4be487260cee229.bindTooltip(\n",
       "    function(layer){\n",
       "    let div = L.DomUtil.create(&#x27;div&#x27;);\n",
       "    \n",
       "    let handleObject = feature=&gt;typeof(feature)==&#x27;object&#x27; ? JSON.stringify(feature) : feature;\n",
       "    let fields = [&quot;focal&quot;];\n",
       "    let aliases = [&quot;focal&quot;];\n",
       "    let table = &#x27;&lt;table&gt;&#x27; +\n",
       "        String(\n",
       "        fields.map(\n",
       "        (v,i)=&gt;\n",
       "        `&lt;tr&gt;\n",
       "            &lt;th&gt;${aliases[i]}&lt;/th&gt;\n",
       "            \n",
       "            &lt;td&gt;${handleObject(layer.feature.properties[v])}&lt;/td&gt;\n",
       "        &lt;/tr&gt;`).join(&#x27;&#x27;))\n",
       "    +&#x27;&lt;/table&gt;&#x27;;\n",
       "    div.innerHTML=table;\n",
       "    \n",
       "    return div\n",
       "    }\n",
       "    ,{&quot;className&quot;: &quot;foliumtooltip&quot;, &quot;sticky&quot;: true});\n",
       "                     \n",
       "    \n",
       "            geo_json_dab94ef587e18a19e4be487260cee229.addTo(map_ad02ee3d04f42ff062355e0b20b7f04f);\n",
       "        \n",
       "&lt;/script&gt;\n",
       "&lt;/html&gt;\" style=\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>"
      ],
      "text/plain": [
       "<folium.folium.Map at 0x7fd86a2b06e0>"
      ]
     },
     "execution_count": 39,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "m = gdf.explore(tiles=\"CartoDB Positron\", column=\"cardinalities\", legend=True)\n",
    "g_queen.explore(gdf, m=m)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "ca807531-72df-4027-a946-0f65f847c0b2",
   "metadata": {},
   "source": [
    "## Transformations\n",
    "\n",
    "Transformation of the weight values is often required in various spatial statistics and operations. How these are handled is a major change between the `W` and `Graph` classes.\n",
    "\n",
    "PySAL currently supports the following transformations:\n",
    "\n",
    "- O: original, returning the object to the initial state.\n",
    "- B: binary, with every neighbor having assigned a weight of one.\n",
    "- R: row, with all the neighbors of a given observation adding up to one.\n",
    "- V: variance stabilizing, with the sum of all the weights being constrained to the number of observations.\n",
    "- D: double, with all the weights across all observations adding up to one.\n",
    "\n",
    "\n",
    "For the `W`, the `transform` property stores the type of transformation that is associated with the weight values:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 40,
   "id": "c4a0cb0a-76f2-41e5-b439-d99a24e7c280",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "'O'"
      ]
     },
     "execution_count": 40,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "w_queen.transform"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "394d8a97-1496-449b-bc46-3b3c815c1ff8",
   "metadata": {},
   "source": [
    "An 'O' here means the weight values are set to the original transformation upon construction. In this case they are binary:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 41,
   "id": "7fdba8fd-8520-40e2-bc3c-b839f0e14bad",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "{96: 1.0, 99: 1.0}"
      ]
     },
     "execution_count": 41,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "w_queen[98]"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "66ae843c-9563-45c3-8239-40d802e1ddd9",
   "metadata": {},
   "source": [
    "In some cases, rather than using the binary weights, we may need to row-standardize the weights, so that in the full $n \\times n$ weights matrix, the row sums would all be equal to unity. The relevant transform in this case is 'r':"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 42,
   "id": "8827dd89-b78f-46bc-b3bf-cc7762af0f4b",
   "metadata": {},
   "outputs": [],
   "source": [
    "w_queen.transform = \"r\""
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 43,
   "id": "bb868961-6809-4812-99f1-e5c225e9cc7c",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "{96: 0.5, 99: 0.5}"
      ]
     },
     "execution_count": 43,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "w_queen[98]"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "126d3420-97f9-4682-babf-ff0e61268821",
   "metadata": {},
   "source": [
    "Since `transform` is a property of `W`, setting the `transform` will update the values of the weights.\n",
    "\n",
    "For the `Graph` class, things have changed in terms of these standardizations."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 44,
   "id": "c6bb10a2-e4d2-49f2-a67e-6d57e923d058",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "neighbor\n",
       "96    1\n",
       "99    1\n",
       "Name: weight, dtype: int64"
      ]
     },
     "execution_count": 44,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g_queen[98]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 45,
   "id": "9c161b95-9cdc-479c-a449-e33d9a584ffc",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "<bound method Graph.transform of <Graph of 100 nodes and 490 nonzero edges indexed by\n",
       " [0, 1, 2, 3, 4, ...]>>"
      ]
     },
     "execution_count": 45,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g_queen.transform"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "35ad4391-6829-48d2-a7c0-403b1b1688cc",
   "metadata": {},
   "source": [
    "This tells us that the `transform` member is now a method of the `Graph`.\n",
    "\n",
    "The related change is the addition of a `transformation` property:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 46,
   "id": "ed78f5f3-d306-4b32-b159-3b2fb3aad0b8",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "'O'"
      ]
     },
     "execution_count": 46,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g_queen.transformation"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "c94993a4-8c24-497d-a803-25b9a7343e2e",
   "metadata": {},
   "source": [
    "which plays a similar role to the `W.transform` property, in the sense it informs us as to what standardization is associated with the value of the spatial weights.\n",
    "\n",
    "However, `Graph.transformation` is not a setter in the sense that if the user changes its value, the weight values will not be affected. It is an information-only property.\n",
    "\n",
    "This is because, by design,   the weights for the `Graph` are **immutable**.\n",
    "In other words, once the `Graph` instance is created, its state cannot be changed.\n",
    "\n",
    "If transformed spatial weights are required, the `Graph` method `transform` can be called with the type of transformation required:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 47,
   "id": "a18cb028-c9a3-4bd3-86c7-dd28f8bf52eb",
   "metadata": {},
   "outputs": [],
   "source": [
    "g1 = g_queen.transform(\"r\")"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 48,
   "id": "86f2ed73-49c0-493e-a41a-55915ac402cf",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "neighbor\n",
       "96    0.5\n",
       "99    0.5\n",
       "Name: weight, dtype: float64"
      ]
     },
     "execution_count": 48,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g1[98]"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "3f2f5116-4ba1-4619-aaea-0d262d3d11cd",
   "metadata": {},
   "source": [
    "This will return a new `Graph` instance with the weight values suitably transformed:\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 49,
   "id": "30a3a8eb-c917-4093-9e8d-d88477fe55b5",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "'R'"
      ]
     },
     "execution_count": 49,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g1.transformation"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "a8e3b89a-5e0b-4ffc-a0bd-68b0fd9b9358",
   "metadata": {},
   "source": [
    "## Spatial Lag"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "00295e4f-283d-4b34-be43-087749b7ba5e",
   "metadata": {},
   "source": [
    "The spatial lag of a variable is a weight sum, or weighted average, of the neighboring values for that variable:\n",
    "\n",
    "$$[Wy]_i = \\sum_j w_{i,j} y_j$$"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "5766e374-e416-4595-a71d-456dcb468076",
   "metadata": {},
   "source": [
    "The implementation of the spatial lag has changed between the `W` and `Graph` classes.\n",
    "\n",
    "To illustrate, we will pull out the Sudden Infant Death Rate in 1979 for the counties into the variable `y`:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 50,
   "id": "34f5d317-00bb-4d79-9f49-1ec6b02b45a6",
   "metadata": {},
   "outputs": [],
   "source": [
    "y = gdf.SID79"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "ec106df5-4899-4113-b8aa-7f6013c6e8b1",
   "metadata": {},
   "source": [
    "To calculate the spatial lag as a weighted average, we need to use the weights that have been row-standardized. For the `W` class, the calculation of the spatial lag is done with a function that takes the `W` as an argument together with the variable of interest:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 51,
   "id": "7b499f38-3e54-4aa6-b70a-ac237b4d3cf9",
   "metadata": {},
   "outputs": [],
   "source": [
    "from libpysal.weights import lag_spatial"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 52,
   "id": "47159a15-996d-455d-bf65-74cb2a6234fe",
   "metadata": {},
   "outputs": [],
   "source": [
    "w_queen.transform = \"r\"\n",
    "wlag = lag_spatial(w_queen, y)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 53,
   "id": "3f20b6ee-702c-46e0-9d6e-dacba84b0831",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "array([ 3.66666667,  4.33333333,  6.8       ,  1.5       ,  7.25      ,\n",
       "        3.33333333,  2.66666667,  2.4       ,  6.6       , 16.75      ,\n",
       "        6.5       , 14.8       , 12.6       ,  8.5       ,  2.        ,\n",
       "        3.85714286,  1.33333333,  3.375     ,  4.        ,  2.33333333,\n",
       "        1.        ,  6.4       ,  7.8       , 11.42857143,  9.42857143,\n",
       "        9.83333333, 11.        ,  5.2       ,  8.4       ,  9.6       ,\n",
       "       12.14285714,  2.        ,  9.8       ,  7.66666667,  6.75      ,\n",
       "        7.66666667,  8.42857143,  9.        , 11.55555556,  8.        ,\n",
       "       10.5       , 13.42857143, 10.14285714,  2.        ,  0.        ,\n",
       "        7.33333333, 12.16666667, 12.875     , 11.16666667,  8.5       ,\n",
       "        9.        ,  9.83333333,  5.14285714, 12.57142857,  6.5       ,\n",
       "        1.        ,  5.16666667,  4.25      , 15.25      ,  6.        ,\n",
       "       11.16666667,  9.16666667, 17.        , 15.4       , 20.5       ,\n",
       "        4.25      , 13.88888889, 13.4       , 12.8       ,  7.28571429,\n",
       "        9.5       ,  7.6       ,  2.        , 10.83333333,  9.75      ,\n",
       "       21.        ,  8.        ,  1.8       , 16.85714286, 11.        ,\n",
       "        1.33333333,  9.33333333, 13.2       , 16.5       ,  7.75      ,\n",
       "       22.2       ,  1.25      , 11.5       ,  7.8       ,  2.        ,\n",
       "        6.        , 11.        ,  4.        , 20.2       , 14.33333333,\n",
       "       21.4       , 10.14285714, 10.        ,  4.5       ,  9.66666667])"
      ]
     },
     "execution_count": 53,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "wlag"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "4874f241-ae96-4296-a941-e21c311a807b",
   "metadata": {},
   "source": [
    "For the `Graph`, the `lag` is now a method:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 54,
   "id": "25c264fd-55fd-440c-b4f4-bb3c6b1aa1d2",
   "metadata": {},
   "outputs": [],
   "source": [
    "glag = g1.lag(y)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 55,
   "id": "d4aec77e-b453-444f-ae8e-ba5c18aa2c63",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "array([ 3.66666667,  4.33333333,  6.8       ,  1.5       ,  7.25      ,\n",
       "        3.33333333,  2.66666667,  2.4       ,  6.6       , 16.75      ,\n",
       "        6.5       , 14.8       , 12.6       ,  8.5       ,  2.        ,\n",
       "        3.85714286,  1.33333333,  3.375     ,  4.        ,  2.33333333,\n",
       "        1.        ,  6.4       ,  7.8       , 11.42857143,  9.42857143,\n",
       "        9.83333333, 11.        ,  5.2       ,  8.4       ,  9.6       ,\n",
       "       12.14285714,  2.        ,  9.8       ,  7.66666667,  6.75      ,\n",
       "        7.66666667,  8.42857143,  9.        , 11.55555556,  8.        ,\n",
       "       10.5       , 13.42857143, 10.14285714,  2.        ,  0.        ,\n",
       "        7.33333333, 12.16666667, 12.875     , 11.16666667,  8.5       ,\n",
       "        9.        ,  9.83333333,  5.14285714, 12.57142857,  6.5       ,\n",
       "        1.        ,  5.16666667,  4.25      , 15.25      ,  6.        ,\n",
       "       11.16666667,  9.16666667, 17.        , 15.4       , 20.5       ,\n",
       "        4.25      , 13.88888889, 13.4       , 12.8       ,  7.28571429,\n",
       "        9.5       ,  7.6       ,  2.        , 10.83333333,  9.75      ,\n",
       "       21.        ,  8.        ,  1.8       , 16.85714286, 11.        ,\n",
       "        1.33333333,  9.33333333, 13.2       , 16.5       ,  7.75      ,\n",
       "       22.2       ,  1.25      , 11.5       ,  7.8       ,  2.        ,\n",
       "        6.        , 11.        ,  4.        , 20.2       , 14.33333333,\n",
       "       21.4       , 10.14285714, 10.        ,  4.5       ,  9.66666667])"
      ]
     },
     "execution_count": 55,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "glag"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "891ae30f-34ff-4240-8205-aaf8288aaf81",
   "metadata": {},
   "source": [
    "## Pandas operations\n",
    "\n",
    "As mentioned above, gains in efficiency and scope have been the main motivating forces behind the development of the new `Graph` class. Here we highlight a few additional gains."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "4e649b10-e9e7-490f-b42f-e30418a7bca6",
   "metadata": {},
   "source": [
    "The `adjacency` attribute for the `Graph` lets users leverage the power of pandas series. For example, the operation:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 56,
   "id": "9921c8c7-e2f8-4bd8-8c94-1b1cdd11b49d",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "neighbor\n",
       "96    1\n",
       "97    1\n",
       "98    1\n",
       "Name: weight, dtype: int64"
      ]
     },
     "execution_count": 56,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g_queen[99]"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "4798679f-ad54-4488-9b45-afd2fd978b4a",
   "metadata": {},
   "source": [
    "is actually a [slice](https://pandas.pydata.org/docs/user_guide/indexing.html) of the `Graph`  that returns another pandas series where the index is  the id of the neighboring unit and the value is the weight of that neighbor relationship.\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 57,
   "id": "ea8dca41-4b87-40aa-a6eb-caa425c18a96",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "MultiIndex([( 0,  1),\n",
       "            ( 0, 17),\n",
       "            ( 0, 18),\n",
       "            ( 1,  0),\n",
       "            ( 1,  2),\n",
       "            ( 1, 17),\n",
       "            ( 2,  1),\n",
       "            ( 2,  9),\n",
       "            ( 2, 17),\n",
       "            ( 2, 22),\n",
       "            ...\n",
       "            (96, 99),\n",
       "            (97, 93),\n",
       "            (97, 95),\n",
       "            (97, 96),\n",
       "            (97, 99),\n",
       "            (98, 96),\n",
       "            (98, 99),\n",
       "            (99, 96),\n",
       "            (99, 97),\n",
       "            (99, 98)],\n",
       "           names=['focal', 'neighbor'], length=490)"
      ]
     },
     "execution_count": 57,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g_queen.adjacency.index"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 58,
   "id": "c2128226-0976-49ea-8adf-133b8dabc9ae",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Index([96, 97, 98], dtype='int64', name='neighbor')"
      ]
     },
     "execution_count": 58,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g_queen[99].index"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 59,
   "id": "406c3323-2d58-42ca-9ebc-a362de2046cb",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "focal  neighbor\n",
       "96     78          1\n",
       "       87          1\n",
       "       92          1\n",
       "       95          1\n",
       "       97          1\n",
       "       98          1\n",
       "       99          1\n",
       "97     93          1\n",
       "       95          1\n",
       "       96          1\n",
       "       99          1\n",
       "98     96          1\n",
       "       99          1\n",
       "Name: weight, dtype: int64"
      ]
     },
     "execution_count": 59,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g_queen.adjacency.loc[[96, 97, 98]]"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "4cfe70cb-18f2-432d-95e0-cbe2c7fe7b4f",
   "metadata": {},
   "source": [
    "Another way the `Graph` makes use of the powerful indexing afforded by pandas is seen it the method `subgraph`:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 60,
   "id": "760dc3be-6c4d-4e58-bbff-a2907f99f502",
   "metadata": {},
   "outputs": [],
   "source": [
    "g1 = g_queen.subgraph([96, 97, 98])"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 61,
   "id": "fc216581-a49a-4205-b5c0-688bd200eb3d",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "focal  neighbor\n",
       "96     97          1\n",
       "       98          1\n",
       "97     96          1\n",
       "98     96          1\n",
       "Name: weight, dtype: int64"
      ]
     },
     "execution_count": 61,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g1.adjacency"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 62,
   "id": "1ecf948a-3b0c-4e03-8044-fde8621dae6e",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "3"
      ]
     },
     "execution_count": 62,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g1.n"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "abf50253-917a-48ce-ba84-979f9fd04126",
   "metadata": {},
   "source": [
    "This allows more efficient extraction of subgraphs from the weights graph, relative to the way this is done with the `W` class:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 63,
   "id": "d145dc1b-aa21-4b67-b3d3-fe324e2bec2f",
   "metadata": {},
   "outputs": [],
   "source": [
    "from libpysal.weights import w_subset"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 64,
   "id": "15d60171-3229-497e-9ed3-55812b0abdb3",
   "metadata": {},
   "outputs": [],
   "source": [
    "w1 = w_subset(w_queen, [96, 97, 98])"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 65,
   "id": "9b7dabec-f7ce-49d5-9f41-91ea51245302",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "{96: [1.0, 1.0], 97: [1.0], 98: [1.0]}"
      ]
     },
     "execution_count": 65,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "w1.weights"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 66,
   "id": "50fda366-2a8e-494b-a1c7-9926fef979c3",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "3"
      ]
     },
     "execution_count": 66,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "w1.n"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "9a723115-c894-4bc2-8e12-d2668cfbec18",
   "metadata": {},
   "source": [
    "The index of the dataframe can also be set to a more informative attribute than simple integers:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 67,
   "id": "0a88d13f-0573-4680-ba61-e33735fa4d97",
   "metadata": {},
   "outputs": [],
   "source": [
    "ngdf = gdf.set_index(\"NAME\")"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "7fb4873d-ed96-46f7-8d89-26c6a6e9bd98",
   "metadata": {},
   "source": [
    "Once this is done, the new `NAME` based index will propagate to any `Graph` built on this dataframe:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 68,
   "id": "80c5aec6-9640-4793-80e4-6171d32e9c73",
   "metadata": {},
   "outputs": [],
   "source": [
    "g = graph.Graph.build_contiguity(ngdf, rook=False)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "823c2b51-1dd0-4dee-90cf-7c3d7a1c8736",
   "metadata": {},
   "source": [
    "This facilities more user-friendly queries. For example, we can ask who are the neighbors for Ashe county:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 69,
   "id": "8466eb37-cb73-4bd4-aab0-86d83230dc18",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "neighbor\n",
       "Alleghany    1\n",
       "Wilkes       1\n",
       "Watauga      1\n",
       "Name: weight, dtype: int64"
      ]
     },
     "execution_count": 69,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "g[\"Ashe\"]"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "c28a39d5-50d2-415b-98be-ec265663daa7",
   "metadata": {},
   "source": [
    "We encountered the `explore` method of the `Graph` above. This can also make handy use of the name-based indexing:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 70,
   "id": "726d4da2-52e0-4817-b91d-8782d7b4646e",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<div style=\"width:100%;\"><div style=\"position:relative;width:100%;height:0;padding-bottom:60%;\"><span style=\"color:#565656\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\"&lt;!DOCTYPE html&gt;\n",
       "&lt;html&gt;\n",
       "&lt;head&gt;\n",
       "    \n",
       "    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\n",
       "    \n",
       "        &lt;script&gt;\n",
       "            L_NO_TOUCH = false;\n",
       "            L_DISABLE_3D = false;\n",
       "        &lt;/script&gt;\n",
       "    \n",
       "    &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\n",
       "    &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\n",
       "    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.js&quot;&gt;&lt;/script&gt;\n",
       "    &lt;script src=&quot;https://code.jquery.com/jquery-3.7.1.min.js&quot;&gt;&lt;/script&gt;\n",
       "    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\n",
       "    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\n",
       "    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/leaflet@1.9.3/dist/leaflet.css&quot;/&gt;\n",
       "    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css&quot;/&gt;\n",
       "    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css&quot;/&gt;\n",
       "    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.0/css/all.min.css&quot;/&gt;\n",
       "    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\n",
       "    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\n",
       "    \n",
       "            &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\n",
       "                initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\n",
       "            &lt;style&gt;\n",
       "                #map_56283e7a370b43ffb76bd82068d08537 {\n",
       "                    position: relative;\n",
       "                    width: 100.0%;\n",
       "                    height: 100.0%;\n",
       "                    left: 0.0%;\n",
       "                    top: 0.0%;\n",
       "                }\n",
       "                .leaflet-container { font-size: 1rem; }\n",
       "            &lt;/style&gt;\n",
       "        \n",
       "    \n",
       "                    &lt;style&gt;\n",
       "                        .foliumtooltip {\n",
       "                            \n",
       "                        }\n",
       "                       .foliumtooltip table{\n",
       "                            margin: auto;\n",
       "                        }\n",
       "                        .foliumtooltip tr{\n",
       "                            text-align: left;\n",
       "                        }\n",
       "                        .foliumtooltip th{\n",
       "                            padding: 2px; padding-right: 8px;\n",
       "                        }\n",
       "                    &lt;/style&gt;\n",
       "            \n",
       "    \n",
       "                    &lt;style&gt;\n",
       "                        .foliumtooltip {\n",
       "                            \n",
       "                        }\n",
       "                       .foliumtooltip table{\n",
       "                            margin: auto;\n",
       "                        }\n",
       "                        .foliumtooltip tr{\n",
       "                            text-align: left;\n",
       "                        }\n",
       "                        .foliumtooltip th{\n",
       "                            padding: 2px; padding-right: 8px;\n",
       "                        }\n",
       "                    &lt;/style&gt;\n",
       "            \n",
       "    \n",
       "                    &lt;style&gt;\n",
       "                        .foliumtooltip {\n",
       "                            \n",
       "                        }\n",
       "                       .foliumtooltip table{\n",
       "                            margin: auto;\n",
       "                        }\n",
       "                        .foliumtooltip tr{\n",
       "                            text-align: left;\n",
       "                        }\n",
       "                        .foliumtooltip th{\n",
       "                            padding: 2px; padding-right: 8px;\n",
       "                        }\n",
       "                    &lt;/style&gt;\n",
       "            \n",
       "    \n",
       "                    &lt;style&gt;\n",
       "                        .foliumtooltip {\n",
       "                            \n",
       "                        }\n",
       "                       .foliumtooltip table{\n",
       "                            margin: auto;\n",
       "                        }\n",
       "                        .foliumtooltip tr{\n",
       "                            text-align: left;\n",
       "                        }\n",
       "                        .foliumtooltip th{\n",
       "                            padding: 2px; padding-right: 8px;\n",
       "                        }\n",
       "                    &lt;/style&gt;\n",
       "            \n",
       "    \n",
       "                    &lt;style&gt;\n",
       "                        .foliumtooltip {\n",
       "                            \n",
       "                        }\n",
       "                       .foliumtooltip table{\n",
       "                            margin: auto;\n",
       "                        }\n",
       "                        .foliumtooltip tr{\n",
       "                            text-align: left;\n",
       "                        }\n",
       "                        .foliumtooltip th{\n",
       "                            padding: 2px; padding-right: 8px;\n",
       "                        }\n",
       "                    &lt;/style&gt;\n",
       "            \n",
       "&lt;/head&gt;\n",
       "&lt;body&gt;\n",
       "    \n",
       "    \n",
       "            &lt;div class=&quot;folium-map&quot; id=&quot;map_56283e7a370b43ffb76bd82068d08537&quot; &gt;&lt;/div&gt;\n",
       "        \n",
       "&lt;/body&gt;\n",
       "&lt;script&gt;\n",
       "    \n",
       "    \n",
       "            var map_56283e7a370b43ffb76bd82068d08537 = L.map(\n",
       "                &quot;map_56283e7a370b43ffb76bd82068d08537&quot;,\n",
       "                {\n",
       "                    center: [36.28109550476074, -81.39101028442383],\n",
       "                    crs: L.CRS.EPSG3857,\n",
       "                    zoom: 10,\n",
       "                    zoomControl: true,\n",
       "                    preferCanvas: false,\n",
       "                }\n",
       "            );\n",
       "            L.control.scale().addTo(map_56283e7a370b43ffb76bd82068d08537);\n",
       "\n",
       "            \n",
       "\n",
       "        \n",
       "    \n",
       "            var tile_layer_b3c2d82fac355e5470a8e2844b981b15 = L.tileLayer(\n",
       "                &quot;https://tile.openstreetmap.org/{z}/{x}/{y}.png&quot;,\n",
       "                {&quot;attribution&quot;: &quot;\\u0026copy; \\u003ca href=\\&quot;https://www.openstreetmap.org/copyright\\&quot;\\u003eOpenStreetMap\\u003c/a\\u003e contributors&quot;, &quot;detectRetina&quot;: false, &quot;maxNativeZoom&quot;: 19, &quot;maxZoom&quot;: 19, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\n",
       "            );\n",
       "        \n",
       "    \n",
       "            tile_layer_b3c2d82fac355e5470a8e2844b981b15.addTo(map_56283e7a370b43ffb76bd82068d08537);\n",
       "        \n",
       "    \n",
       "            map_56283e7a370b43ffb76bd82068d08537.fitBounds(\n",
       "                [[35.98932647705078, -81.9111557006836], [36.5728645324707, -80.87086486816406]],\n",
       "                {}\n",
       "            );\n",
       "        \n",
       "    \n",
       "        function geo_json_1220eddc974ebe22a776f9dcf676cfc0_styler(feature) {\n",
       "            switch(feature.id) {\n",
       "                default:\n",
       "                    return {&quot;color&quot;: &quot;#25b497&quot;, &quot;fillColor&quot;: &quot;#25b497&quot;, &quot;fillOpacity&quot;: 0.5, &quot;weight&quot;: 2};\n",
       "            }\n",
       "        }\n",
       "        function geo_json_1220eddc974ebe22a776f9dcf676cfc0_highlighter(feature) {\n",
       "            switch(feature.id) {\n",
       "                default:\n",
       "                    return {&quot;fillOpacity&quot;: 0.75};\n",
       "            }\n",
       "        }\n",
       "        function geo_json_1220eddc974ebe22a776f9dcf676cfc0_pointToLayer(feature, latlng) {\n",
       "            var opts = {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3388ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#3388ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 2, &quot;stroke&quot;: true, &quot;weight&quot;: 3};\n",
       "            \n",
       "            let style = geo_json_1220eddc974ebe22a776f9dcf676cfc0_styler(feature)\n",
       "            Object.assign(opts, style)\n",
       "            \n",
       "            return new L.CircleMarker(latlng, opts)\n",
       "        }\n",
       "\n",
       "        function geo_json_1220eddc974ebe22a776f9dcf676cfc0_onEachFeature(feature, layer) {\n",
       "            layer.on({\n",
       "                mouseout: function(e) {\n",
       "                    if(typeof e.target.setStyle === &quot;function&quot;){\n",
       "                        geo_json_1220eddc974ebe22a776f9dcf676cfc0.resetStyle(e.target);\n",
       "                    }\n",
       "                },\n",
       "                mouseover: function(e) {\n",
       "                    if(typeof e.target.setStyle === &quot;function&quot;){\n",
       "                        const highlightStyle = geo_json_1220eddc974ebe22a776f9dcf676cfc0_highlighter(e.target.feature)\n",
       "                        e.target.setStyle(highlightStyle);\n",
       "                    }\n",
       "                },\n",
       "            });\n",
       "        };\n",
       "        var geo_json_1220eddc974ebe22a776f9dcf676cfc0 = L.geoJson(null, {\n",
       "                onEachFeature: geo_json_1220eddc974ebe22a776f9dcf676cfc0_onEachFeature,\n",
       "            \n",
       "                style: geo_json_1220eddc974ebe22a776f9dcf676cfc0_styler,\n",
       "                pointToLayer: geo_json_1220eddc974ebe22a776f9dcf676cfc0_pointToLayer,\n",
       "        });\n",
       "\n",
       "        function geo_json_1220eddc974ebe22a776f9dcf676cfc0_add (data) {\n",
       "            geo_json_1220eddc974ebe22a776f9dcf676cfc0\n",
       "                .addData(data);\n",
       "        }\n",
       "            geo_json_1220eddc974ebe22a776f9dcf676cfc0_add({&quot;bbox&quot;: [-81.9111557006836, 35.98932647705078, -80.87086486816406, 36.5728645324707], &quot;features&quot;: [{&quot;bbox&quot;: [-81.34754180908203, 36.36536407470704, -80.9034423828125, 36.5728645324707], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.2398910522461, 36.36536407470704], [-81.24069213867188, 36.37941741943359], [-81.2628402709961, 36.40504074096678], [-81.2662353515625, 36.43720626831055], [-81.31332397460938, 36.48069763183594], [-81.32477569580078, 36.51367950439453], [-81.34754180908203, 36.53791427612304], [-81.34529876708984, 36.5728645324707], [-80.9034423828125, 36.56521224975587], [-80.93354797363283, 36.49831390380859], [-80.96577453613281, 36.467220306396484], [-80.94966888427734, 36.41473388671876], [-80.95639038085938, 36.4037971496582], [-80.97795104980469, 36.39137649536133], [-80.98284149169922, 36.37183380126953], [-81.00277709960938, 36.36668014526367], [-81.02464294433594, 36.37783432006836], [-81.04280090332031, 36.410335540771484], [-81.08425140380861, 36.4299201965332], [-81.09856414794922, 36.43115234375], [-81.11331176757812, 36.42285156249999], [-81.12937927246094, 36.42633056640625], [-81.13839721679688, 36.41762542724609], [-81.15336608886719, 36.424739837646484], [-81.17667388916016, 36.415443420410156], [-81.2398910522461, 36.36536407470704]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.061, &quot;BIR74&quot;: 487.0, &quot;BIR79&quot;: 542.0, &quot;CNTY_&quot;: 1827, &quot;CNTY_ID&quot;: 1827, &quot;CRESS_ID&quot;: 3, &quot;FIPS&quot;: &quot;37005&quot;, &quot;FIPSNO&quot;: 37005, &quot;NWBIR74&quot;: 10.0, &quot;NWBIR79&quot;: 12.0, &quot;NWR74&quot;: 20.533881, &quot;NWR79&quot;: 22.140221, &quot;PERIMETER&quot;: 1.231, &quot;SID74&quot;: 0.0, &quot;SID79&quot;: 3.0, &quot;SIDR74&quot;: 0.0, &quot;SIDR79&quot;: 5.535055, &quot;__folium_color&quot;: &quot;#25b497&quot;, &quot;cardinalities&quot;: 3, &quot;neighbor&quot;: &quot;Alleghany&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.54610443115234, 35.98932647705078, -80.87086486816406, 36.43115234375], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.02056884765625, 36.0349349975586], [-81.0840835571289, 36.02076721191407], [-81.12406158447266, 36.03128433227538], [-81.15746307373047, 36.02098083496094], [-81.23600769042969, 36.02382278442382], [-81.32186889648438, 35.98932647705078], [-81.34735107421875, 36.015357971191406], [-81.38871002197266, 36.03756713867187], [-81.39814758300781, 36.05605697631835], [-81.42963409423828, 36.06566238403319], [-81.45443725585938, 36.083057403564446], [-81.5173110961914, 36.09543228149414], [-81.54610443115234, 36.11139297485351], [-81.49932098388672, 36.13603591918946], [-81.4508056640625, 36.19062042236328], [-81.4727554321289, 36.23435592651367], [-81.45288848876953, 36.239585876464844], [-81.43103790283203, 36.260719299316406], [-81.4123306274414, 36.26729202270508], [-81.40638732910156, 36.28505325317382], [-81.3674545288086, 36.2786979675293], [-81.35413360595703, 36.29971694946288], [-81.36569213867188, 36.33905029296874], [-81.36137390136719, 36.353160858154304], [-81.32899475097656, 36.363502502441406], [-81.26424407958984, 36.352413177490234], [-81.2398910522461, 36.36536407470704], [-81.17667388916016, 36.415443420410156], [-81.15336608886719, 36.424739837646484], [-81.13839721679688, 36.41762542724609], [-81.12937927246094, 36.42633056640625], [-81.11331176757812, 36.42285156249999], [-81.09856414794922, 36.43115234375], [-81.08425140380861, 36.4299201965332], [-81.04280090332031, 36.410335540771484], [-81.02464294433594, 36.37783432006836], [-81.00277709960938, 36.36668014526367], [-80.98284149169922, 36.37183380126953], [-80.97795104980469, 36.39137649536133], [-80.95639038085938, 36.4037971496582], [-80.92456817626953, 36.37275314331055], [-80.88892364501953, 36.35442733764648], [-80.87086486816406, 36.324623107910156], [-80.87438201904297, 36.23388290405273], [-80.87741088867188, 36.05240631103516], [-80.98895263671875, 36.05334854125976], [-81.02056884765625, 36.0349349975586]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;1&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.199, &quot;BIR74&quot;: 3146.0, &quot;BIR79&quot;: 3725.0, &quot;CNTY_&quot;: 1874, &quot;CNTY_ID&quot;: 1874, &quot;CRESS_ID&quot;: 97, &quot;FIPS&quot;: &quot;37193&quot;, &quot;FIPSNO&quot;: 37193, &quot;NWBIR74&quot;: 200.0, &quot;NWBIR79&quot;: 222.0, &quot;NWR74&quot;: 63.572791, &quot;NWR79&quot;: 59.597315, &quot;PERIMETER&quot;: 1.984, &quot;SID74&quot;: 4.0, &quot;SID79&quot;: 7.0, &quot;SIDR74&quot;: 1.271456, &quot;SIDR79&quot;: 1.879195, &quot;__folium_color&quot;: &quot;#25b497&quot;, &quot;cardinalities&quot;: 8, &quot;neighbor&quot;: &quot;Wilkes&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.9111557006836, 36.10456085205079, -81.4508056640625, 36.39178466796875], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.80622100830078, 36.10456085205079], [-81.81715393066406, 36.1093864440918], [-81.82231140136719, 36.15785598754883], [-81.8502426147461, 36.181472778320305], [-81.88519287109375, 36.18863677978517], [-81.89856719970703, 36.198856353759766], [-81.9065628051758, 36.221866607666016], [-81.89399719238283, 36.26698303222656], [-81.9111557006836, 36.29075241088867], [-81.83057403564453, 36.33465576171875], [-81.7304916381836, 36.32934188842774], [-81.70945739746094, 36.33372497558593], [-81.7403793334961, 36.36185836791992], [-81.74107360839844, 36.39178466796875], [-81.63306427001953, 36.3406867980957], [-81.56198120117188, 36.2735939025879], [-81.5408401489258, 36.27250671386719], [-81.4727554321289, 36.23435592651367], [-81.4508056640625, 36.19062042236328], [-81.49932098388672, 36.13603591918946], [-81.54610443115234, 36.11139297485351], [-81.65900421142578, 36.117591857910156], [-81.80622100830078, 36.10456085205079]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;2&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.081, &quot;BIR74&quot;: 1323.0, &quot;BIR79&quot;: 1775.0, &quot;CNTY_&quot;: 1880, &quot;CNTY_ID&quot;: 1880, &quot;CRESS_ID&quot;: 95, &quot;FIPS&quot;: &quot;37189&quot;, &quot;FIPSNO&quot;: 37189, &quot;NWBIR74&quot;: 17.0, &quot;NWBIR79&quot;: 33.0, &quot;NWR74&quot;: 12.849584, &quot;NWR79&quot;: 18.591549, &quot;PERIMETER&quot;: 1.288, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 1.0, &quot;SIDR74&quot;: 0.755858, &quot;SIDR79&quot;: 0.56338, &quot;__folium_color&quot;: &quot;#25b497&quot;, &quot;cardinalities&quot;: 4, &quot;neighbor&quot;: &quot;Watauga&quot;}, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
       "\n",
       "        \n",
       "    \n",
       "    geo_json_1220eddc974ebe22a776f9dcf676cfc0.bindTooltip(\n",
       "    function(layer){\n",
       "    let div = L.DomUtil.create(&#x27;div&#x27;);\n",
       "    \n",
       "    let handleObject = feature=&gt;typeof(feature)==&#x27;object&#x27; ? JSON.stringify(feature) : feature;\n",
       "    let fields = [&quot;neighbor&quot;, &quot;AREA&quot;, &quot;PERIMETER&quot;, &quot;CNTY_&quot;, &quot;CNTY_ID&quot;, &quot;FIPS&quot;, &quot;FIPSNO&quot;, &quot;CRESS_ID&quot;, &quot;BIR74&quot;, &quot;SID74&quot;, &quot;NWBIR74&quot;, &quot;BIR79&quot;, &quot;SID79&quot;, &quot;NWBIR79&quot;, &quot;SIDR74&quot;, &quot;SIDR79&quot;, &quot;NWR74&quot;, &quot;NWR79&quot;, &quot;cardinalities&quot;];\n",
       "    let aliases = [&quot;neighbor&quot;, &quot;AREA&quot;, &quot;PERIMETER&quot;, &quot;CNTY_&quot;, &quot;CNTY_ID&quot;, &quot;FIPS&quot;, &quot;FIPSNO&quot;, &quot;CRESS_ID&quot;, &quot;BIR74&quot;, &quot;SID74&quot;, &quot;NWBIR74&quot;, &quot;BIR79&quot;, &quot;SID79&quot;, &quot;NWBIR79&quot;, &quot;SIDR74&quot;, &quot;SIDR79&quot;, &quot;NWR74&quot;, &quot;NWR79&quot;, &quot;cardinalities&quot;];\n",
       "    let table = &#x27;&lt;table&gt;&#x27; +\n",
       "        String(\n",
       "        fields.map(\n",
       "        (v,i)=&gt;\n",
       "        `&lt;tr&gt;\n",
       "            &lt;th&gt;${aliases[i]}&lt;/th&gt;\n",
       "            \n",
       "            &lt;td&gt;${handleObject(layer.feature.properties[v])}&lt;/td&gt;\n",
       "        &lt;/tr&gt;`).join(&#x27;&#x27;))\n",
       "    +&#x27;&lt;/table&gt;&#x27;;\n",
       "    div.innerHTML=table;\n",
       "    \n",
       "    return div\n",
       "    }\n",
       "    ,{&quot;className&quot;: &quot;foliumtooltip&quot;, &quot;sticky&quot;: true});\n",
       "                     \n",
       "    \n",
       "            geo_json_1220eddc974ebe22a776f9dcf676cfc0.addTo(map_56283e7a370b43ffb76bd82068d08537);\n",
       "        \n",
       "    \n",
       "        function geo_json_abdb224422af6ef3a2afe057219a893b_styler(feature) {\n",
       "            switch(feature.id) {\n",
       "                default:\n",
       "                    return {&quot;color&quot;: &quot;#fa94a5&quot;, &quot;fillColor&quot;: &quot;#fa94a5&quot;, &quot;fillOpacity&quot;: 0.5, &quot;weight&quot;: 2};\n",
       "            }\n",
       "        }\n",
       "        function geo_json_abdb224422af6ef3a2afe057219a893b_highlighter(feature) {\n",
       "            switch(feature.id) {\n",
       "                default:\n",
       "                    return {&quot;fillOpacity&quot;: 0.75};\n",
       "            }\n",
       "        }\n",
       "        function geo_json_abdb224422af6ef3a2afe057219a893b_pointToLayer(feature, latlng) {\n",
       "            var opts = {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3388ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#3388ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 2, &quot;stroke&quot;: true, &quot;weight&quot;: 3};\n",
       "            \n",
       "            let style = geo_json_abdb224422af6ef3a2afe057219a893b_styler(feature)\n",
       "            Object.assign(opts, style)\n",
       "            \n",
       "            return new L.CircleMarker(latlng, opts)\n",
       "        }\n",
       "\n",
       "        function geo_json_abdb224422af6ef3a2afe057219a893b_onEachFeature(feature, layer) {\n",
       "            layer.on({\n",
       "                mouseout: function(e) {\n",
       "                    if(typeof e.target.setStyle === &quot;function&quot;){\n",
       "                        geo_json_abdb224422af6ef3a2afe057219a893b.resetStyle(e.target);\n",
       "                    }\n",
       "                },\n",
       "                mouseover: function(e) {\n",
       "                    if(typeof e.target.setStyle === &quot;function&quot;){\n",
       "                        const highlightStyle = geo_json_abdb224422af6ef3a2afe057219a893b_highlighter(e.target.feature)\n",
       "                        e.target.setStyle(highlightStyle);\n",
       "                    }\n",
       "                },\n",
       "            });\n",
       "        };\n",
       "        var geo_json_abdb224422af6ef3a2afe057219a893b = L.geoJson(null, {\n",
       "                onEachFeature: geo_json_abdb224422af6ef3a2afe057219a893b_onEachFeature,\n",
       "            \n",
       "                style: geo_json_abdb224422af6ef3a2afe057219a893b_styler,\n",
       "                pointToLayer: geo_json_abdb224422af6ef3a2afe057219a893b_pointToLayer,\n",
       "        });\n",
       "\n",
       "        function geo_json_abdb224422af6ef3a2afe057219a893b_add (data) {\n",
       "            geo_json_abdb224422af6ef3a2afe057219a893b\n",
       "                .addData(data);\n",
       "        }\n",
       "            geo_json_abdb224422af6ef3a2afe057219a893b_add({&quot;bbox&quot;: [-81.74107360839844, 36.23435592651367, -81.2398910522461, 36.589649200439446], &quot;features&quot;: [{&quot;bbox&quot;: [-81.74107360839844, 36.23435592651367, -81.2398910522461, 36.589649200439446], &quot;geometry&quot;: {&quot;coordinates&quot;: [[[-81.4727554321289, 36.23435592651367], [-81.5408401489258, 36.27250671386719], [-81.56198120117188, 36.2735939025879], [-81.63306427001953, 36.3406867980957], [-81.74107360839844, 36.39178466796875], [-81.69828033447266, 36.4717788696289], [-81.70279693603516, 36.51934051513671], [-81.66999816894531, 36.589649200439446], [-81.34529876708984, 36.5728645324707], [-81.34754180908203, 36.53791427612304], [-81.32477569580078, 36.51367950439453], [-81.31332397460938, 36.48069763183594], [-81.2662353515625, 36.43720626831055], [-81.2628402709961, 36.40504074096678], [-81.24069213867188, 36.37941741943359], [-81.2398910522461, 36.36536407470704], [-81.26424407958984, 36.352413177490234], [-81.32899475097656, 36.363502502441406], [-81.36137390136719, 36.353160858154304], [-81.36569213867188, 36.33905029296874], [-81.35413360595703, 36.29971694946288], [-81.3674545288086, 36.2786979675293], [-81.40638732910156, 36.28505325317382], [-81.4123306274414, 36.26729202270508], [-81.43103790283203, 36.260719299316406], [-81.45288848876953, 36.239585876464844], [-81.4727554321289, 36.23435592651367]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;properties&quot;: {&quot;AREA&quot;: 0.114, &quot;BIR74&quot;: 1091.0, &quot;BIR79&quot;: 1364.0, &quot;CNTY_&quot;: 1825, &quot;CNTY_ID&quot;: 1825, &quot;CRESS_ID&quot;: 5, &quot;FIPS&quot;: &quot;37009&quot;, &quot;FIPSNO&quot;: 37009, &quot;NAME&quot;: &quot;Ashe&quot;, &quot;NWBIR74&quot;: 10.0, &quot;NWBIR79&quot;: 19.0, &quot;NWR74&quot;: 9.165903, &quot;NWR79&quot;: 13.929619, &quot;PERIMETER&quot;: 1.442, &quot;SID74&quot;: 1.0, &quot;SID79&quot;: 0.0, &quot;SIDR74&quot;: 0.91659, &quot;SIDR79&quot;: 0.0, &quot;__folium_color&quot;: &quot;#fa94a5&quot;, &quot;cardinalities&quot;: 3}, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
       "\n",
       "        \n",
       "    \n",
       "    geo_json_abdb224422af6ef3a2afe057219a893b.bindTooltip(\n",
       "    function(layer){\n",
       "    let div = L.DomUtil.create(&#x27;div&#x27;);\n",
       "    \n",
       "    let handleObject = feature=&gt;typeof(feature)==&#x27;object&#x27; ? JSON.stringify(feature) : feature;\n",
       "    let fields = [&quot;NAME&quot;, &quot;AREA&quot;, &quot;PERIMETER&quot;, &quot;CNTY_&quot;, &quot;CNTY_ID&quot;, &quot;FIPS&quot;, &quot;FIPSNO&quot;, &quot;CRESS_ID&quot;, &quot;BIR74&quot;, &quot;SID74&quot;, &quot;NWBIR74&quot;, &quot;BIR79&quot;, &quot;SID79&quot;, &quot;NWBIR79&quot;, &quot;SIDR74&quot;, &quot;SIDR79&quot;, &quot;NWR74&quot;, &quot;NWR79&quot;, &quot;cardinalities&quot;];\n",
       "    let aliases = [&quot;NAME&quot;, &quot;AREA&quot;, &quot;PERIMETER&quot;, &quot;CNTY_&quot;, &quot;CNTY_ID&quot;, &quot;FIPS&quot;, &quot;FIPSNO&quot;, &quot;CRESS_ID&quot;, &quot;BIR74&quot;, &quot;SID74&quot;, &quot;NWBIR74&quot;, &quot;BIR79&quot;, &quot;SID79&quot;, &quot;NWBIR79&quot;, &quot;SIDR74&quot;, &quot;SIDR79&quot;, &quot;NWR74&quot;, &quot;NWR79&quot;, &quot;cardinalities&quot;];\n",
       "    let table = &#x27;&lt;table&gt;&#x27; +\n",
       "        String(\n",
       "        fields.map(\n",
       "        (v,i)=&gt;\n",
       "        `&lt;tr&gt;\n",
       "            &lt;th&gt;${aliases[i]}&lt;/th&gt;\n",
       "            \n",
       "            &lt;td&gt;${handleObject(layer.feature.properties[v])}&lt;/td&gt;\n",
       "        &lt;/tr&gt;`).join(&#x27;&#x27;))\n",
       "    +&#x27;&lt;/table&gt;&#x27;;\n",
       "    div.innerHTML=table;\n",
       "    \n",
       "    return div\n",
       "    }\n",
       "    ,{&quot;className&quot;: &quot;foliumtooltip&quot;, &quot;sticky&quot;: true});\n",
       "                     \n",
       "    \n",
       "            geo_json_abdb224422af6ef3a2afe057219a893b.addTo(map_56283e7a370b43ffb76bd82068d08537);\n",
       "        \n",
       "    \n",
       "        function geo_json_62885597f42d491b62f6b2645108fecb_styler(feature) {\n",
       "            switch(feature.id) {\n",
       "                default:\n",
       "                    return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;black&quot;, &quot;fillOpacity&quot;: 0.5, &quot;weight&quot;: 2};\n",
       "            }\n",
       "        }\n",
       "        function geo_json_62885597f42d491b62f6b2645108fecb_highlighter(feature) {\n",
       "            switch(feature.id) {\n",
       "                default:\n",
       "                    return {&quot;fillOpacity&quot;: 0.75};\n",
       "            }\n",
       "        }\n",
       "        function geo_json_62885597f42d491b62f6b2645108fecb_pointToLayer(feature, latlng) {\n",
       "            var opts = {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3388ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#3388ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 2, &quot;stroke&quot;: true, &quot;weight&quot;: 3};\n",
       "            \n",
       "            let style = geo_json_62885597f42d491b62f6b2645108fecb_styler(feature)\n",
       "            Object.assign(opts, style)\n",
       "            \n",
       "            return new L.CircleMarker(latlng, opts)\n",
       "        }\n",
       "\n",
       "        function geo_json_62885597f42d491b62f6b2645108fecb_onEachFeature(feature, layer) {\n",
       "            layer.on({\n",
       "                mouseout: function(e) {\n",
       "                    if(typeof e.target.setStyle === &quot;function&quot;){\n",
       "                        geo_json_62885597f42d491b62f6b2645108fecb.resetStyle(e.target);\n",
       "                    }\n",
       "                },\n",
       "                mouseover: function(e) {\n",
       "                    if(typeof e.target.setStyle === &quot;function&quot;){\n",
       "                        const highlightStyle = geo_json_62885597f42d491b62f6b2645108fecb_highlighter(e.target.feature)\n",
       "                        e.target.setStyle(highlightStyle);\n",
       "                    }\n",
       "                },\n",
       "            });\n",
       "        };\n",
       "        var geo_json_62885597f42d491b62f6b2645108fecb = L.geoJson(null, {\n",
       "                onEachFeature: geo_json_62885597f42d491b62f6b2645108fecb_onEachFeature,\n",
       "            \n",
       "                style: geo_json_62885597f42d491b62f6b2645108fecb_styler,\n",
       "                pointToLayer: geo_json_62885597f42d491b62f6b2645108fecb_pointToLayer,\n",
       "        });\n",
       "\n",
       "        function geo_json_62885597f42d491b62f6b2645108fecb_add (data) {\n",
       "            geo_json_62885597f42d491b62f6b2645108fecb\n",
       "                .addData(data);\n",
       "        }\n",
       "            geo_json_62885597f42d491b62f6b2645108fecb_add({&quot;bbox&quot;: [-81.70133643506227, 36.212591058235546, -81.13220542827582, 36.47409386901486], &quot;features&quot;: [{&quot;bbox&quot;: [-81.49548148653162, 36.420388562634756, -81.13220542827582, 36.47409386901486], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.49548148653162, 36.420388562634756], [-81.13220542827582, 36.47409386901486]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: &quot;Ashe&quot;, &quot;neighbor&quot;: &quot;Alleghany&quot;, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.49548148653162, 36.212591058235546, -81.1680924257293, 36.420388562634756], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.49548148653162, 36.420388562634756], [-81.1680924257293, 36.212591058235546]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;1&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: &quot;Ashe&quot;, &quot;neighbor&quot;: &quot;Wilkes&quot;, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.70133643506227, 36.250751216087075, -81.49548148653162, 36.420388562634756], &quot;geometry&quot;: {&quot;coordinates&quot;: [[-81.49548148653162, 36.420388562634756], [-81.70133643506227, 36.250751216087075]], &quot;type&quot;: &quot;LineString&quot;}, &quot;id&quot;: &quot;2&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: &quot;Ashe&quot;, &quot;neighbor&quot;: &quot;Watauga&quot;, &quot;weight&quot;: 1}, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
       "\n",
       "        \n",
       "    \n",
       "    geo_json_62885597f42d491b62f6b2645108fecb.bindTooltip(\n",
       "    function(layer){\n",
       "    let div = L.DomUtil.create(&#x27;div&#x27;);\n",
       "    \n",
       "    let handleObject = feature=&gt;typeof(feature)==&#x27;object&#x27; ? JSON.stringify(feature) : feature;\n",
       "    let fields = [&quot;focal&quot;, &quot;neighbor&quot;, &quot;weight&quot;];\n",
       "    let aliases = [&quot;focal&quot;, &quot;neighbor&quot;, &quot;weight&quot;];\n",
       "    let table = &#x27;&lt;table&gt;&#x27; +\n",
       "        String(\n",
       "        fields.map(\n",
       "        (v,i)=&gt;\n",
       "        `&lt;tr&gt;\n",
       "            &lt;th&gt;${aliases[i]}&lt;/th&gt;\n",
       "            \n",
       "            &lt;td&gt;${handleObject(layer.feature.properties[v])}&lt;/td&gt;\n",
       "        &lt;/tr&gt;`).join(&#x27;&#x27;))\n",
       "    +&#x27;&lt;/table&gt;&#x27;;\n",
       "    div.innerHTML=table;\n",
       "    \n",
       "    return div\n",
       "    }\n",
       "    ,{&quot;className&quot;: &quot;foliumtooltip&quot;, &quot;sticky&quot;: true});\n",
       "                     \n",
       "    \n",
       "            geo_json_62885597f42d491b62f6b2645108fecb.addTo(map_56283e7a370b43ffb76bd82068d08537);\n",
       "        \n",
       "    \n",
       "        function geo_json_82099fe19aa0de6bc25759979608b0e6_styler(feature) {\n",
       "            switch(feature.id) {\n",
       "                default:\n",
       "                    return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;black&quot;, &quot;fillOpacity&quot;: 0.5, &quot;weight&quot;: 2};\n",
       "            }\n",
       "        }\n",
       "        function geo_json_82099fe19aa0de6bc25759979608b0e6_highlighter(feature) {\n",
       "            switch(feature.id) {\n",
       "                default:\n",
       "                    return {&quot;fillOpacity&quot;: 0.75};\n",
       "            }\n",
       "        }\n",
       "        function geo_json_82099fe19aa0de6bc25759979608b0e6_pointToLayer(feature, latlng) {\n",
       "            var opts = {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3388ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#3388ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 2, &quot;stroke&quot;: true, &quot;weight&quot;: 3};\n",
       "            \n",
       "            let style = geo_json_82099fe19aa0de6bc25759979608b0e6_styler(feature)\n",
       "            Object.assign(opts, style)\n",
       "            \n",
       "            return new L.CircleMarker(latlng, opts)\n",
       "        }\n",
       "\n",
       "        function geo_json_82099fe19aa0de6bc25759979608b0e6_onEachFeature(feature, layer) {\n",
       "            layer.on({\n",
       "                mouseout: function(e) {\n",
       "                    if(typeof e.target.setStyle === &quot;function&quot;){\n",
       "                        geo_json_82099fe19aa0de6bc25759979608b0e6.resetStyle(e.target);\n",
       "                    }\n",
       "                },\n",
       "                mouseover: function(e) {\n",
       "                    if(typeof e.target.setStyle === &quot;function&quot;){\n",
       "                        const highlightStyle = geo_json_82099fe19aa0de6bc25759979608b0e6_highlighter(e.target.feature)\n",
       "                        e.target.setStyle(highlightStyle);\n",
       "                    }\n",
       "                },\n",
       "            });\n",
       "        };\n",
       "        var geo_json_82099fe19aa0de6bc25759979608b0e6 = L.geoJson(null, {\n",
       "                onEachFeature: geo_json_82099fe19aa0de6bc25759979608b0e6_onEachFeature,\n",
       "            \n",
       "                style: geo_json_82099fe19aa0de6bc25759979608b0e6_styler,\n",
       "                pointToLayer: geo_json_82099fe19aa0de6bc25759979608b0e6_pointToLayer,\n",
       "        });\n",
       "\n",
       "        function geo_json_82099fe19aa0de6bc25759979608b0e6_add (data) {\n",
       "            geo_json_82099fe19aa0de6bc25759979608b0e6\n",
       "                .addData(data);\n",
       "        }\n",
       "            geo_json_82099fe19aa0de6bc25759979608b0e6_add({&quot;bbox&quot;: [-81.70133643506227, 36.212591058235546, -81.13220542827582, 36.47409386901486], &quot;features&quot;: [{&quot;bbox&quot;: [-81.13220542827582, 36.47409386901486, -81.13220542827582, 36.47409386901486], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.13220542827582, 36.47409386901486], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: &quot;Alleghany&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.1680924257293, 36.212591058235546, -81.1680924257293, 36.212591058235546], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.1680924257293, 36.212591058235546], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;1&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: &quot;Wilkes&quot;}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;bbox&quot;: [-81.70133643506227, 36.250751216087075, -81.70133643506227, 36.250751216087075], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.70133643506227, 36.250751216087075], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;2&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: &quot;Watauga&quot;}, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
       "\n",
       "        \n",
       "    \n",
       "    geo_json_82099fe19aa0de6bc25759979608b0e6.bindTooltip(\n",
       "    function(layer){\n",
       "    let div = L.DomUtil.create(&#x27;div&#x27;);\n",
       "    \n",
       "    let handleObject = feature=&gt;typeof(feature)==&#x27;object&#x27; ? JSON.stringify(feature) : feature;\n",
       "    let fields = [&quot;focal&quot;];\n",
       "    let aliases = [&quot;focal&quot;];\n",
       "    let table = &#x27;&lt;table&gt;&#x27; +\n",
       "        String(\n",
       "        fields.map(\n",
       "        (v,i)=&gt;\n",
       "        `&lt;tr&gt;\n",
       "            &lt;th&gt;${aliases[i]}&lt;/th&gt;\n",
       "            \n",
       "            &lt;td&gt;${handleObject(layer.feature.properties[v])}&lt;/td&gt;\n",
       "        &lt;/tr&gt;`).join(&#x27;&#x27;))\n",
       "    +&#x27;&lt;/table&gt;&#x27;;\n",
       "    div.innerHTML=table;\n",
       "    \n",
       "    return div\n",
       "    }\n",
       "    ,{&quot;className&quot;: &quot;foliumtooltip&quot;, &quot;sticky&quot;: true});\n",
       "                     \n",
       "    \n",
       "            geo_json_82099fe19aa0de6bc25759979608b0e6.addTo(map_56283e7a370b43ffb76bd82068d08537);\n",
       "        \n",
       "    \n",
       "        function geo_json_a1cb228099073e22a0d5adafe5af058e_styler(feature) {\n",
       "            switch(feature.id) {\n",
       "                default:\n",
       "                    return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;black&quot;, &quot;fillOpacity&quot;: 0.5, &quot;weight&quot;: 2};\n",
       "            }\n",
       "        }\n",
       "        function geo_json_a1cb228099073e22a0d5adafe5af058e_highlighter(feature) {\n",
       "            switch(feature.id) {\n",
       "                default:\n",
       "                    return {&quot;fillOpacity&quot;: 0.75};\n",
       "            }\n",
       "        }\n",
       "        function geo_json_a1cb228099073e22a0d5adafe5af058e_pointToLayer(feature, latlng) {\n",
       "            var opts = {&quot;bubblingMouseEvents&quot;: true, &quot;color&quot;: &quot;#3388ff&quot;, &quot;dashArray&quot;: null, &quot;dashOffset&quot;: null, &quot;fill&quot;: true, &quot;fillColor&quot;: &quot;#3388ff&quot;, &quot;fillOpacity&quot;: 0.2, &quot;fillRule&quot;: &quot;evenodd&quot;, &quot;lineCap&quot;: &quot;round&quot;, &quot;lineJoin&quot;: &quot;round&quot;, &quot;opacity&quot;: 1.0, &quot;radius&quot;: 2, &quot;stroke&quot;: true, &quot;weight&quot;: 3};\n",
       "            \n",
       "            let style = geo_json_a1cb228099073e22a0d5adafe5af058e_styler(feature)\n",
       "            Object.assign(opts, style)\n",
       "            \n",
       "            return new L.CircleMarker(latlng, opts)\n",
       "        }\n",
       "\n",
       "        function geo_json_a1cb228099073e22a0d5adafe5af058e_onEachFeature(feature, layer) {\n",
       "            layer.on({\n",
       "                mouseout: function(e) {\n",
       "                    if(typeof e.target.setStyle === &quot;function&quot;){\n",
       "                        geo_json_a1cb228099073e22a0d5adafe5af058e.resetStyle(e.target);\n",
       "                    }\n",
       "                },\n",
       "                mouseover: function(e) {\n",
       "                    if(typeof e.target.setStyle === &quot;function&quot;){\n",
       "                        const highlightStyle = geo_json_a1cb228099073e22a0d5adafe5af058e_highlighter(e.target.feature)\n",
       "                        e.target.setStyle(highlightStyle);\n",
       "                    }\n",
       "                },\n",
       "            });\n",
       "        };\n",
       "        var geo_json_a1cb228099073e22a0d5adafe5af058e = L.geoJson(null, {\n",
       "                onEachFeature: geo_json_a1cb228099073e22a0d5adafe5af058e_onEachFeature,\n",
       "            \n",
       "                style: geo_json_a1cb228099073e22a0d5adafe5af058e_styler,\n",
       "                pointToLayer: geo_json_a1cb228099073e22a0d5adafe5af058e_pointToLayer,\n",
       "        });\n",
       "\n",
       "        function geo_json_a1cb228099073e22a0d5adafe5af058e_add (data) {\n",
       "            geo_json_a1cb228099073e22a0d5adafe5af058e\n",
       "                .addData(data);\n",
       "        }\n",
       "            geo_json_a1cb228099073e22a0d5adafe5af058e_add({&quot;bbox&quot;: [-81.49548148653162, 36.420388562634756, -81.49548148653162, 36.420388562634756], &quot;features&quot;: [{&quot;bbox&quot;: [-81.49548148653162, 36.420388562634756, -81.49548148653162, 36.420388562634756], &quot;geometry&quot;: {&quot;coordinates&quot;: [-81.49548148653162, 36.420388562634756], &quot;type&quot;: &quot;Point&quot;}, &quot;id&quot;: &quot;0&quot;, &quot;properties&quot;: {&quot;__folium_color&quot;: &quot;black&quot;, &quot;focal&quot;: &quot;Ashe&quot;}, &quot;type&quot;: &quot;Feature&quot;}], &quot;type&quot;: &quot;FeatureCollection&quot;});\n",
       "\n",
       "        \n",
       "    \n",
       "    geo_json_a1cb228099073e22a0d5adafe5af058e.bindTooltip(\n",
       "    function(layer){\n",
       "    let div = L.DomUtil.create(&#x27;div&#x27;);\n",
       "    \n",
       "    let handleObject = feature=&gt;typeof(feature)==&#x27;object&#x27; ? JSON.stringify(feature) : feature;\n",
       "    let fields = [&quot;focal&quot;];\n",
       "    let aliases = [&quot;focal&quot;];\n",
       "    let table = &#x27;&lt;table&gt;&#x27; +\n",
       "        String(\n",
       "        fields.map(\n",
       "        (v,i)=&gt;\n",
       "        `&lt;tr&gt;\n",
       "            &lt;th&gt;${aliases[i]}&lt;/th&gt;\n",
       "            \n",
       "            &lt;td&gt;${handleObject(layer.feature.properties[v])}&lt;/td&gt;\n",
       "        &lt;/tr&gt;`).join(&#x27;&#x27;))\n",
       "    +&#x27;&lt;/table&gt;&#x27;;\n",
       "    div.innerHTML=table;\n",
       "    \n",
       "    return div\n",
       "    }\n",
       "    ,{&quot;className&quot;: &quot;foliumtooltip&quot;, &quot;sticky&quot;: true});\n",
       "                     \n",
       "    \n",
       "            geo_json_a1cb228099073e22a0d5adafe5af058e.addTo(map_56283e7a370b43ffb76bd82068d08537);\n",
       "        \n",
       "&lt;/script&gt;\n",
       "&lt;/html&gt;\" style=\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\" allowfullscreen webkitallowfullscreen mozallowfullscreen></iframe></div></div>"
      ],
      "text/plain": [
       "<folium.folium.Map at 0x7fd86b592d80>"
      ]
     },
     "execution_count": 70,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "m = ngdf.loc[g[\"Ashe\"].index].explore(color=\"#25b497\")\n",
    "ngdf.loc[[\"Ashe\"]].explore(m=m, color=\"#fa94a5\")\n",
    "g.explore(ngdf, m=m, focal=\"Ashe\")"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "4bd40414-eee6-4efa-8e8c-31648fea1eaf",
   "metadata": {},
   "source": [
    "## Conclusion\n",
    "\n",
    "This notebook highlights the main areas that users need to be aware of when considering porting their code from the `W` class to the new `Graph`.\n",
    "More details on the specifications and differences of the graphs can be found in the [W to Graph Member Comparisions](../../migration.rst).\n",
    "\n",
    "Downstream packages in the pysal family are in the process of supporting the new `Graph` while preserving backwards compatibility with the `W` class."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "10c4e285-977c-408a-9c9e-ffa80e8ffb9e",
   "metadata": {},
   "source": [
    "## Further Reading\n",
    "\n",
    "-  Anselin, L. and S.J. Rey (2014) *[Modern Spatial Econometrics in Practice, Chs 3,4](https://www.amazon.com/Modern-Spatial-Econometrics-Practice-GeoDaSpace/dp/0986342106)*. GeoDa Press.\n",
    "-  Arribas-Bel, D. (2019). *[Geographic Data Science, Lab 4](https://darribas.org/gds_course/content/bE/lab_E.html)*\n",
    "-  Fleischmann, M. (2024). *[Spatial Data Science for Social Geography, Ch 4](https://martinfleischmann.net/sds/chapter_04/hands_on.html)*\n",
    "-  Knaap, E. (2024). *[Urban Analysis & Spatial Science, Ch 9](https://knaaptime.com/urban_analysis/03_esda/spatial_graphs.html)*\n",
    "-  Rey, S.J., D. Arribas-Bel, & L.J. Wolf. (2023) *[Geographic Data Science with Python](https://www.routledge.com/Geographic-Data-Science-with-Python/Rey-Arribas-Bel-Wolf/p/book/9781032445953?gad_source=1&gclid=CjwKCAjw1920BhA3EiwAJT3lScLq-TnzytfU0JRyROH9eOG97U4r7YX3G0ZCs3p5mVGUymqptvNe6hoCkqcQAvD_BwE)*. CRC/Taylor Francis. [Chapter 4](https://geographicdata.science/book/notebooks/04_spatial_weights.html).\n"
   ]
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 3 (ipykernel)",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.12.2"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}
