diff --git a/enhanced_data_center_cluster_map.ipynb b/enhanced_data_center_cluster_map.ipynb new file mode 100644 index 0000000..99f5264 --- /dev/null +++ b/enhanced_data_center_cluster_map.ipynb @@ -0,0 +1,527 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "0", + "metadata": {}, + "source": [ + "# Enhanced Data Center Cluster Map\n", + "\n", + "This notebook starts from the spatial clustering outputs created by `spatial_clustering_master_data_centers.ipynb` and adds contextual layers from the demographic/RUCA/energy analysis.\n", + "\n", + "Current features:\n", + "- Loads point and cluster summary CSVs from `output/`.\n", + "- Recreates the cluster-colored Folium map.\n", + "- Enriches point popups with HUC8 watershed, RUCA, tract demographics, and state energy context where available.\n", + "- Adds separate layers for clustered points, isolated/noise points, cluster centroids, HUC8 watersheds, and state IM3 projected demand.\n", + "- Saves a standalone HTML map to `output/enhanced_master_data_center_spatial_clusters_map.html`.\n", + "\n", + "Notes from `output/data_center_demographic_ruca_energy_summary.md`:\n", + "- HUC8 watershed join is a recommended next step for water-context analysis.\n", + "- `im3_state_projected_moderate_50` is populated and used for state projected demand context.\n", + "- `seds_state_msn_year` is checked through the state context export, but it currently has no rows, so SEDS fields are blank until that table is populated.\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "1", + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import json\n", + "from html import escape\n", + "from pathlib import Path\n", + "\n", + "os.environ.setdefault('MPLCONFIGDIR', '/tmp/matplotlib')\n", + "Path(os.environ['MPLCONFIGDIR']).mkdir(parents=True, exist_ok=True)\n", + "\n", + "import pandas as pd\n", + "import folium\n", + "from folium import plugins\n", + "\n", + "print('pandas:', pd.__version__)\n", + "print('folium:', folium.__version__)\n" + ] + }, + { + "cell_type": "markdown", + "id": "2", + "metadata": {}, + "source": [ + "## Paths And Display Settings" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "3", + "metadata": {}, + "outputs": [], + "source": [ + "OUTPUT_DIR = Path('output')\n", + "POINTS_CSV = OUTPUT_DIR / 'master_data_center_spatial_cluster_points.csv'\n", + "CLUSTERS_CSV = OUTPUT_DIR / 'master_data_center_spatial_cluster_summary.csv'\n", + "POINT_CONTEXT_CSV = OUTPUT_DIR / 'master_data_center_map_context.csv'\n", + "HUC8_GEOJSON = OUTPUT_DIR / 'master_data_center_huc8_watersheds.geojson'\n", + "STATE_ENERGY_CSV = OUTPUT_DIR / 'master_data_center_state_energy_context.csv'\n", + "MAP_HTML = OUTPUT_DIR / 'enhanced_master_data_center_spatial_clusters_map.html'\n", + "\n", + "MAP_CENTER = [39, -98]\n", + "MAP_ZOOM = 4\n", + "BASE_TILES = 'CartoDB positron'\n", + "\n", + "MAX_POINTS = None\n", + "\n", + "CLUSTERED_RADIUS = 5\n", + "NOISE_RADIUS = 3\n", + "CENTROID_RADIUS = 7\n", + "SHOW_CENTROID_P90_CIRCLES = True\n", + "SHOW_HUC8_LAYER = True\n", + "SHOW_STATE_ENERGY_LAYER = True\n", + "\n", + "OUTPUT_DIR.mkdir(exist_ok=True)\n", + "print('points:', POINTS_CSV)\n", + "print('clusters:', CLUSTERS_CSV)\n", + "print('point context:', POINT_CONTEXT_CSV)\n", + "print('HUC8 GeoJSON:', HUC8_GEOJSON)\n", + "print('state energy context:', STATE_ENERGY_CSV)\n", + "print('html output:', MAP_HTML)\n" + ] + }, + { + "cell_type": "markdown", + "id": "4", + "metadata": {}, + "source": [ + "## Load Cluster Outputs" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "5", + "metadata": {}, + "outputs": [], + "source": [ + "required_files = [POINTS_CSV, CLUSTERS_CSV]\n", + "missing = [str(p) for p in required_files if not p.exists()]\n", + "if missing:\n", + " raise FileNotFoundError('Missing required cluster output CSV(s): ' + ', '.join(missing))\n", + "\n", + "points = pd.read_csv(POINTS_CSV)\n", + "clusters = pd.read_csv(CLUSTERS_CSV)\n", + "point_context = pd.read_csv(POINT_CONTEXT_CSV) if POINT_CONTEXT_CSV.exists() else pd.DataFrame()\n", + "state_energy = pd.read_csv(STATE_ENERGY_CSV) if STATE_ENERGY_CSV.exists() else pd.DataFrame()\n", + "\n", + "if MAX_POINTS is not None:\n", + " points = points.head(MAX_POINTS).copy()\n", + "\n", + "points['cluster_id'] = pd.to_numeric(points['cluster_id'], errors='coerce').fillna(-1).astype(int)\n", + "points['is_noise'] = points['cluster_id'].eq(-1)\n", + "points['is_clustered'] = ~points['is_noise']\n", + "points['name'] = points['name'].fillna('')\n", + "points['operator'] = points['operator'].fillna('Unknown').replace('', 'Unknown')\n", + "points['city'] = points['city'].fillna('Unknown').replace('', 'Unknown')\n", + "points['state'] = points['state'].fillna('UNK').replace('', 'UNK')\n", + "points['source'] = points['source'].fillna('unknown').replace('', 'unknown')\n", + "\n", + "if not point_context.empty:\n", + " context_cols = [c for c in point_context.columns if c != 'master_id']\n", + " points = points.merge(point_context[['master_id'] + context_cols], on='master_id', how='left')\n", + "\n", + "if not state_energy.empty:\n", + " state_cols = [c for c in state_energy.columns if c != 'state_code']\n", + " points = points.merge(state_energy[['state_code'] + state_cols], left_on='state', right_on='state_code', how='left')\n", + "\n", + "clusters['cluster_id'] = pd.to_numeric(clusters['cluster_id'], errors='coerce').astype(int)\n", + "clusters = clusters.sort_values(['point_count', 'radius_km_p90'], ascending=[False, True]).reset_index(drop=True)\n", + "clusters['cluster_rank'] = clusters.index + 1\n", + "\n", + "huc8_geojson = None\n", + "if HUC8_GEOJSON.exists():\n", + " huc8_geojson = json.loads(HUC8_GEOJSON.read_text())\n", + "\n", + "n_clusters = points.loc[points['cluster_id'].ne(-1), 'cluster_id'].nunique()\n", + "print(f'Loaded {len(points):,} points and {n_clusters:,} clusters')\n", + "print('point context columns:', 0 if point_context.empty else len(point_context.columns))\n", + "print('HUC8 features:', 0 if huc8_geojson is None else len(huc8_geojson.get('features', [])))\n", + "if not state_energy.empty:\n", + " seds_available = state_energy['seds_series_count'].notna().sum() if 'seds_series_count' in state_energy.columns else 0\n", + " print(f'state energy rows: {len(state_energy):,}; SEDS rows represented: {seds_available:,}')\n", + "else:\n", + " print('state energy context file not found')\n", + "display(points.head())\n", + "display(clusters.head(10))\n", + "if not state_energy.empty:\n", + " display(state_energy.head(10))\n" + ] + }, + { + "cell_type": "markdown", + "id": "6", + "metadata": {}, + "source": [ + "## Map Helpers" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "7", + "metadata": {}, + "outputs": [], + "source": [ + "CLUSTER_COLORS = [\n", + " '#2563eb', '#dc2626', '#16a34a', '#9333ea', '#ea580c', '#0891b2',\n", + " '#be123c', '#4f46e5', '#65a30d', '#c026d3', '#0f766e', '#b45309',\n", + "]\n", + "NOISE_COLOR = '#9ca3af'\n", + "CENTROID_COLOR = '#111827'\n", + "STATE_ENERGY_COLOR = '#f59e0b'\n", + "\n", + "cluster_info = clusters.set_index('cluster_id').to_dict('index')\n", + "\n", + "\n", + "def clean_value(value):\n", + " if pd.isna(value):\n", + " return ''\n", + " return escape(str(value))\n", + "\n", + "\n", + "def fmt_number(value, decimals=0, prefix='', suffix=''):\n", + " if pd.isna(value):\n", + " return ''\n", + " try:\n", + " value = float(value)\n", + " except (TypeError, ValueError):\n", + " return clean_value(value)\n", + " return f\"{prefix}{value:,.{decimals}f}{suffix}\"\n", + "\n", + "\n", + "def cluster_color(cluster_id):\n", + " if cluster_id == -1:\n", + " return NOISE_COLOR\n", + " info = cluster_info.get(cluster_id, {})\n", + " rank = int(info.get('cluster_rank', cluster_id + 1))\n", + " return CLUSTER_COLORS[(rank - 1) % len(CLUSTER_COLORS)]\n", + "\n", + "\n", + "def cluster_label_and_size(cluster_id):\n", + " if cluster_id == -1:\n", + " return 'Noise / isolated', '1', ''\n", + " info = cluster_info.get(cluster_id, {})\n", + " rank = int(info.get('cluster_rank', cluster_id + 1))\n", + " point_count = int(info.get('point_count', 0))\n", + " return f'Cluster ID {cluster_id}', f'{point_count:,}', f'Rank {rank} of {n_clusters} by size'\n", + "\n", + "\n", + "def point_popup(row):\n", + " cluster_label, cluster_size, cluster_rank = cluster_label_and_size(row.cluster_id)\n", + " nearest = row.nearest_neighbor_km\n", + " nearest_text = f'{nearest:.2f} km' if pd.notna(nearest) else ''\n", + " title = clean_value(row.name) or clean_value(row.master_id)\n", + "\n", + " huc8_lines = ''\n", + " if hasattr(row, 'huc8') and pd.notna(row.huc8):\n", + " huc8_lines = f'''\n", + "
\n", + " Watershed
\n", + " HUC8: {clean_value(row.huc8)}
\n", + " Name: {clean_value(row.huc8_name)}
\n", + " States: {clean_value(row.huc8_states)}
\n", + " '''\n", + "\n", + " ruca_lines = ''\n", + " if hasattr(row, 'primary_ruca') and pd.notna(row.primary_ruca):\n", + " ruca_lines = f'''\n", + "
\n", + " RUCA / tract context
\n", + " RUCA band: {clean_value(row.ruca_band)}
\n", + " RUCA code: {fmt_number(row.primary_ruca)}
\n", + " {clean_value(row.primary_ruca_description)}
\n", + " Median HH income: {fmt_number(row.median_household_income, prefix='$')}
\n", + " Bachelor's+: {fmt_number(row.bachelor_or_higher_pct, 1, suffix='%')}
\n", + " Poverty: {fmt_number(row.poverty_rate, 1, suffix='%')}
\n", + " Non-Hispanic white: {fmt_number(row.non_hispanic_white_pct, 1, suffix='%')}
\n", + " '''\n", + "\n", + " energy_lines = ''\n", + " if hasattr(row, 'im3_projected_it_power_mw') and pd.notna(row.im3_projected_it_power_mw):\n", + " if hasattr(row, 'seds_series_count') and pd.notna(row.seds_series_count):\n", + " seds_note = f\"SEDS year: {fmt_number(row.seds_latest_year)}; series: {fmt_number(row.seds_series_count)}
\"\n", + " else:\n", + " seds_note = 'SEDS context: unavailable in seds_state_msn_year
'\n", + " energy_lines = f'''\n", + "
\n", + " State energy demand context
\n", + " IM3 projected IT power: {fmt_number(row.im3_projected_it_power_mw, suffix=' MW')}
\n", + " IM3 cooling water demand: {fmt_number(row.im3_cooling_water_demand_mgy, 1, suffix=' MGY')}
\n", + " IM3 water consumption: {fmt_number(row.im3_cooling_water_consumption_mgy, 1, suffix=' MGY')}
\n", + " IM3 avg siting score: {fmt_number(row.im3_avg_weighted_siting_score, 3)}
\n", + " {seds_note}\n", + " '''\n", + "\n", + " return folium.Popup(f'''\n", + "
\n", + " {title}
\n", + " {clean_value(row.city)}, {clean_value(row.state)}
\n", + "
\n", + " {cluster_label}
\n", + " {cluster_rank}
\n", + " Cluster size: {cluster_size} data center(s)
\n", + " Source: {clean_value(row.source)}
\n", + " Operator: {clean_value(row.operator)}
\n", + " Nearest neighbor: {nearest_text}
\n", + " Master ID: {clean_value(row.master_id)}\n", + " {huc8_lines}\n", + " {ruca_lines}\n", + " {energy_lines}\n", + "
\n", + " ''', max_width=460)\n", + "\n", + "\n", + "def centroid_popup(row):\n", + " return folium.Popup(f'''\n", + "
\n", + " Cluster ID {int(row.cluster_id)}
\n", + " Rank {int(row.cluster_rank)} of {n_clusters} by size
\n", + "
\n", + " Points: {int(row.point_count):,}
\n", + " p50 radius: {row.radius_km_p50:.1f} km
\n", + " p90 radius: {row.radius_km_p90:.1f} km
\n", + " Max radius: {row.radius_km_max:.1f} km
\n", + " States: {clean_value(row.states)}
\n", + " Cities: {clean_value(row.cities)}
\n", + " Operators: {clean_value(row.operators)}\n", + "
\n", + " ''', max_width=420)\n", + "\n", + "\n", + "def huc8_style(feature):\n", + " count = feature['properties'].get('data_center_count') or 0\n", + " if count >= 100:\n", + " fill = '#075985'\n", + " elif count >= 50:\n", + " fill = '#0284c7'\n", + " elif count >= 20:\n", + " fill = '#38bdf8'\n", + " elif count >= 10:\n", + " fill = '#7dd3fc'\n", + " else:\n", + " fill = '#bae6fd'\n", + " return {'fillColor': fill, 'color': '#0369a1', 'weight': 1, 'fillOpacity': 0.22}\n", + "\n", + "\n", + "def huc8_popup(feature):\n", + " p = feature['properties']\n", + " return folium.Popup(f'''\n", + "
\n", + " {clean_value(p.get('name'))}
\n", + " HUC8: {clean_value(p.get('huc8'))}
\n", + " States: {clean_value(p.get('states'))}
\n", + "
\n", + " Data centers: {fmt_number(p.get('data_center_count'))}
\n", + " Clustered DCs: {fmt_number(p.get('clustered_data_center_count'))}
\n", + " Distinct clusters: {fmt_number(p.get('cluster_count'))}
\n", + " Area: {fmt_number(p.get('areasqkm'), 0, suffix=' sq km')}\n", + "
\n", + " ''', max_width=360)\n", + "\n", + "\n", + "def state_energy_popup(row):\n", + " if hasattr(row, 'seds_series_count') and pd.notna(row.seds_series_count):\n", + " seds_note = f\"SEDS latest year: {fmt_number(row.seds_latest_year)}; series: {fmt_number(row.seds_series_count)}\"\n", + " else:\n", + " seds_note = 'SEDS context: unavailable in seds_state_msn_year'\n", + " return folium.Popup(f'''\n", + "
\n", + " {clean_value(row.state_code)} state energy context
\n", + " Current data centers: {fmt_number(row.current_data_center_count)}
\n", + "
\n", + " IM3 projected sites: {fmt_number(row.im3_project_count)}
\n", + " IM3 projected IT power: {fmt_number(row.im3_projected_it_power_mw, suffix=' MW')}
\n", + " IM3 cooling water demand: {fmt_number(row.im3_cooling_water_demand_mgy, 1, suffix=' MGY')}
\n", + " IM3 water consumption: {fmt_number(row.im3_cooling_water_consumption_mgy, 1, suffix=' MGY')}
\n", + " IM3 avg siting score: {fmt_number(row.im3_avg_weighted_siting_score, 3)}
\n", + " {seds_note}\n", + "
\n", + " ''', max_width=380)\n" + ] + }, + { + "cell_type": "markdown", + "id": "8", + "metadata": {}, + "source": [ + "## Build The Map" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "9", + "metadata": {}, + "outputs": [], + "source": [ + "def build_cluster_map(points_df: pd.DataFrame, clusters_df: pd.DataFrame) -> folium.Map:\n", + " m = folium.Map(location=MAP_CENTER, zoom_start=MAP_ZOOM, tiles=BASE_TILES, control_scale=True)\n", + " plugins.Fullscreen(position='topleft').add_to(m)\n", + " plugins.MeasureControl(position='topleft', primary_length_unit='kilometers').add_to(m)\n", + " plugins.MiniMap(toggle_display=True, minimized=True).add_to(m)\n", + "\n", + " huc8_layer = folium.FeatureGroup(name='HUC8 watersheds with data centers', show=False)\n", + " state_energy_layer = folium.FeatureGroup(name='State energy demand context (IM3 / SEDS)', show=False)\n", + " clustered_layer = folium.FeatureGroup(name='Data centers: clustered', show=True)\n", + " noise_layer = folium.FeatureGroup(name='Data centers: noise / isolated', show=True)\n", + " centroid_layer = folium.FeatureGroup(name='Cluster centroids and p90 radius', show=True)\n", + "\n", + " if SHOW_HUC8_LAYER and huc8_geojson is not None:\n", + " folium.GeoJson(\n", + " huc8_geojson,\n", + " name='HUC8 watersheds with data centers',\n", + " style_function=huc8_style,\n", + " highlight_function=lambda feature: {'weight': 3, 'fillOpacity': 0.35},\n", + " tooltip=folium.GeoJsonTooltip(\n", + " fields=['name', 'huc8', 'data_center_count', 'cluster_count'],\n", + " aliases=['HUC8', 'Code', 'Data centers', 'Clusters'],\n", + " localize=True,\n", + " sticky=False,\n", + " ),\n", + " popup=huc8_popup,\n", + " ).add_to(huc8_layer)\n", + "\n", + " if SHOW_STATE_ENERGY_LAYER and not state_energy.empty:\n", + " for row in state_energy.dropna(subset=['map_latitude', 'map_longitude']).itertuples(index=False):\n", + " power = getattr(row, 'im3_projected_it_power_mw')\n", + " radius = 6 if pd.isna(power) else max(6, min(28, 4 + float(power) ** 0.5 / 2.4))\n", + " folium.CircleMarker(\n", + " location=[row.map_latitude, row.map_longitude],\n", + " radius=radius,\n", + " color='#92400e',\n", + " fill=True,\n", + " fill_color=STATE_ENERGY_COLOR,\n", + " fill_opacity=0.55,\n", + " weight=1.5,\n", + " popup=state_energy_popup(row),\n", + " tooltip=f'{row.state_code}: IM3 {fmt_number(power, suffix=\" MW\")}',\n", + " ).add_to(state_energy_layer)\n", + "\n", + " bounds = []\n", + " for row in points_df.itertuples(index=False):\n", + " cluster_label, cluster_size, _ = cluster_label_and_size(row.cluster_id)\n", + " marker = folium.CircleMarker(\n", + " location=[row.latitude, row.longitude],\n", + " radius=NOISE_RADIUS if row.cluster_id == -1 else CLUSTERED_RADIUS,\n", + " color=cluster_color(row.cluster_id),\n", + " fill=True,\n", + " fill_opacity=0.75,\n", + " weight=1,\n", + " popup=point_popup(row),\n", + " tooltip=f'{cluster_label}; size={cluster_size}',\n", + " )\n", + " if row.cluster_id == -1:\n", + " marker.add_to(noise_layer)\n", + " else:\n", + " marker.add_to(clustered_layer)\n", + " bounds.append([row.latitude, row.longitude])\n", + "\n", + " for row in clusters_df.itertuples(index=False):\n", + " color = cluster_color(int(row.cluster_id))\n", + " location = [row.centroid_latitude, row.centroid_longitude]\n", + " if SHOW_CENTROID_P90_CIRCLES and pd.notna(row.radius_km_p90):\n", + " folium.Circle(\n", + " location=location,\n", + " radius=float(row.radius_km_p90) * 1000,\n", + " color=color,\n", + " fill=False,\n", + " weight=1,\n", + " opacity=0.45,\n", + " ).add_to(centroid_layer)\n", + " folium.CircleMarker(\n", + " location=location,\n", + " radius=CENTROID_RADIUS,\n", + " color=CENTROID_COLOR,\n", + " fill=True,\n", + " fill_color=color,\n", + " fill_opacity=0.95,\n", + " weight=2,\n", + " popup=centroid_popup(row),\n", + " tooltip=f'Cluster {int(row.cluster_id)} centroid; {int(row.point_count):,} points',\n", + " ).add_to(centroid_layer)\n", + "\n", + " huc8_layer.add_to(m)\n", + " state_energy_layer.add_to(m)\n", + " clustered_layer.add_to(m)\n", + " noise_layer.add_to(m)\n", + " centroid_layer.add_to(m)\n", + " folium.LayerControl(collapsed=False).add_to(m)\n", + " if bounds:\n", + " m.fit_bounds(bounds, padding=(20, 20))\n", + " return m\n", + "\n", + "\n", + "cluster_map = build_cluster_map(points, clusters)\n", + "cluster_map\n" + ] + }, + { + "cell_type": "markdown", + "id": "10", + "metadata": {}, + "source": [ + "## Export HTML" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "11", + "metadata": {}, + "outputs": [], + "source": [ + "cluster_map.save(MAP_HTML)\n", + "print('Wrote:', MAP_HTML.resolve())" + ] + }, + { + "cell_type": "markdown", + "id": "12", + "metadata": {}, + "source": [ + "## Feature Staging Area\n", + "\n", + "Tell me what you want to add next and I will build it here. Good candidates:\n", + "- filters by source/operator/state/cluster size\n", + "- toggle layers for top-N clusters\n", + "- water-stress overlays on top of the HUC8 layer\n", + "- generator capacity / fuel mix overlays around each DC\n", + "- opposition cases overlay\n", + "- cluster labels or summary panels\n", + "- downloadable GeoJSON exports\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".venv", + "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.14.5" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/output/enhanced_master_data_center_spatial_clusters_map.html b/output/enhanced_master_data_center_spatial_clusters_map.html new file mode 100644 index 0000000..fb56db3 --- /dev/null +++ b/output/enhanced_master_data_center_spatial_clusters_map.html @@ -0,0 +1,64385 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + \ No newline at end of file diff --git a/output/master_data_center_huc8_watersheds.geojson b/output/master_data_center_huc8_watersheds.geojson new file mode 100644 index 0000000..04075a8 --- /dev/null +++ b/output/master_data_center_huc8_watersheds.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-69.860739641, 43.947103118], [-69.85089409, 43.930145891], [-69.855556707, 43.898079585], [-69.835776899, 43.873852302], [-69.846816422, 43.845355378], [-69.825319606, 43.822458599], [-69.840666035, 43.708376163], [-69.818149218, 43.67122517], [-69.833670374, 43.644708868], [-70.150440858, 43.526877555], [-70.245915952, 43.443743559], [-70.355903792, 43.446859543], [-70.441447124, 43.503126896], [-70.468581573, 43.553552893], [-70.506091948, 43.568012078], [-70.517730061, 43.598736836], [-70.5384519, 43.606837993], [-70.542033531, 43.650913516], [-70.572020949, 43.656626749], [-70.552863029, 43.687571957], [-70.5704315, 43.734901484], [-70.563915304, 43.771942524], [-70.587017578, 43.771209825], [-70.625002158, 43.829126035], [-70.665222139, 43.833325072], [-70.649885184, 43.854579983], [-70.657955828, 43.871822113], [-70.710132803, 43.870716489], [-70.737176466, 43.899744306], [-70.737784435, 43.929843301], [-70.719588026, 43.924599271], [-70.705763367, 43.965249652], [-70.71980184, 43.977535695], [-70.752150351, 43.97039897], [-70.766789668, 43.988032509], [-70.785313037, 44.033560099], [-70.755695108, 44.06486769], [-70.82047956, 44.152480021], [-70.784866677, 44.160055815], [-70.76997443, 44.203677749], [-70.788461789, 44.224722442], [-70.840124437, 44.239094257], [-70.848884073, 44.262347287], [-70.87335419, 44.260479794], [-70.88039544, 44.3020576], [-70.827203805, 44.32883666], [-70.820375401, 44.368868135], [-70.834548146, 44.381924957], [-70.817156373, 44.392323805], [-70.730514268, 44.299916835], [-70.650833414, 44.2868589], [-70.626671937, 44.241001684], [-70.629703107, 44.206220218], [-70.573194333, 44.155487696], [-70.581273109, 44.105328705], [-70.528602072, 44.081155439], [-70.491123027, 43.992310125], [-70.456339833, 44.018264813], [-70.402727582, 43.979028735], [-70.376069215, 44.008227669], [-70.353601414, 44.001891348], [-70.337572333, 44.024993794], [-70.317105339, 44.020045647], [-70.321188288, 44.049016364], [-70.263544163, 44.051897078], [-70.230923258, 44.011287566], [-70.174868116, 43.993162118], [-70.160651008, 43.956145501], [-70.12243827, 43.956527298], [-70.101303174, 43.931309084], [-70.117501767, 43.918341506], [-70.066623602, 43.942625927], [-69.998082427, 43.899365054], [-69.914179521, 43.902774911], [-69.871308455, 43.920387775], [-69.860739641, 43.947103118]]]}, "properties": {"huc8": "01060001", "name": "Presumpscot", "states": "ME", "areasqkm": 3688.27, "dc_states": "ME", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-70.333770941, 43.447272412], [-70.245915952, 43.443743559], [-70.31841517, 43.389404741], [-70.369372175, 43.322606379], [-70.488098311, 43.286172551], [-70.511761048, 43.239681494], [-70.521666037, 43.162447115], [-70.479275058, 43.173824336], [-70.435411181, 43.163211065], [-70.407085691, 43.133628583], [-70.411285479, 43.09910439], [-70.443232439, 43.075302903], [-70.488713985, 43.071165493], [-70.52668066, 43.086571337], [-70.55540757, 43.121405773], [-70.598040097, 43.057627662], [-70.533545406, 43.022581589], [-70.540054989, 42.94190827], [-70.60864205, 42.912236034], [-70.663460332, 42.922565538], [-70.695462839, 42.952790362], [-70.747128036, 42.857846704], [-70.738981058, 42.813158155], [-70.809292395, 42.815090365], [-70.817603631, 42.842740454], [-70.854492766, 42.836291113], [-70.903811855, 42.856890537], [-70.889177649, 42.889084218], [-71.052912794, 42.930782523], [-71.051182523, 42.942603014], [-71.123183722, 42.949411264], [-71.136419739, 42.923352544], [-71.152304919, 42.933922733], [-71.172143749, 42.920029622], [-71.174925372, 42.896276403], [-71.209563143, 42.901116745], [-71.221869328, 42.922507138], [-71.261943733, 42.913298731], [-71.280247261, 42.944103184], [-71.268854756, 42.948945171], [-71.289451492, 42.963026482], [-71.26832223, 42.993577142], [-71.282874909, 43.011531939], [-71.273717274, 43.030425201], [-71.334358529, 43.052292934], [-71.363497478, 43.081225146], [-71.349636166, 43.107065104], [-71.312388947, 43.11833503], [-71.310383609, 43.1553787], [-71.287135329, 43.180668574], [-71.254110461, 43.170861853], [-71.230944458, 43.202067102], [-71.172030493, 43.212951994], [-71.228323943, 43.227154329], [-71.211172436, 43.254038385], [-71.230440252, 43.251083345], [-71.250552704, 43.272561287], [-71.212773397, 43.288295727], [-71.175878066, 43.275317129], [-71.169527345, 43.301155835], [-71.116261702, 43.32655207], [-71.17765418, 43.390458207], [-71.155753973, 43.401315032], [-71.169448731, 43.41216949], [-71.157108527, 43.436167464], [-71.166559553, 43.46724486], [-71.142707979, 43.462502827], [-71.137888881, 43.481314355], [-71.103222494, 43.475531534], [-71.11806046, 43.51555486], [-71.108300806, 43.570053399], [-71.077647342, 43.578282155], [-71.102804803, 43.60047646], [-71.092227423, 43.619219431], [-71.031324891, 43.620562159], [-70.937125151, 43.585026819], [-70.898053775, 43.586663605], [-70.815455282, 43.535865195], [-70.783976347, 43.550992357], [-70.78984874, 43.563837045], [-70.744280317, 43.575213497], [-70.737234152, 43.594034583], [-70.708934597, 43.589487502], [-70.695931723, 43.535124748], [-70.648060971, 43.510358204], [-70.603095109, 43.511042671], [-70.609675559, 43.491420281], [-70.58625559, 43.476791791], [-70.587592164, 43.458125618], [-70.543413268, 43.45980006], [-70.532331426, 43.477483298], [-70.50986407, 43.450318464], [-70.394032777, 43.452924854], [-70.389960932, 43.433042712], [-70.374423119, 43.431717837], [-70.333770941, 43.447272412]]]}, "properties": {"huc8": "01060003", "name": "Piscataqua-Salmon Falls", "states": "MA,ME,NH", "areasqkm": 4475.36, "dc_states": "NH", "cluster_count": 0, "data_center_count": 3, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-71.311048878, 42.445449508], [-71.328673315, 42.43749205], [-71.333732589, 42.394529663], [-71.318763299, 42.348436511], [-71.361376001, 42.308946199], [-71.328643425, 42.287097937], [-71.370888127, 42.278527058], [-71.385275764, 42.241319276], [-71.454412622, 42.242375768], [-71.48522274, 42.202388979], [-71.516706063, 42.217484183], [-71.542009724, 42.19841475], [-71.55248393, 42.223518498], [-71.596193952, 42.207830853], [-71.639069272, 42.23843307], [-71.663571071, 42.227760672], [-71.721043213, 42.307891495], [-71.685195221, 42.401207305], [-71.624513133, 42.435100324], [-71.577860965, 42.490920163], [-71.547000868, 42.509837248], [-71.536958946, 42.469145335], [-71.449660225, 42.577270843], [-71.421898378, 42.567825563], [-71.401209308, 42.598811097], [-71.354098898, 42.605420865], [-71.342174482, 42.628725656], [-71.304047657, 42.64674247], [-71.266240133, 42.616148629], [-71.279432847, 42.58020214], [-71.251495374, 42.538899251], [-71.328713699, 42.466902442], [-71.311624629, 42.46607346], [-71.311048878, 42.445449508]]]}, "properties": {"huc8": "01070005", "name": "Concord", "states": "MA", "areasqkm": 1036.63, "dc_states": "MA", "cluster_count": 0, "data_center_count": 3, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-71.175258448, 43.39631572], [-71.116261702, 43.32655207], [-71.169527345, 43.301155835], [-71.175878066, 43.275317129], [-71.212773397, 43.288295727], [-71.250552704, 43.272561287], [-71.230440252, 43.251083345], [-71.211172436, 43.254038385], [-71.228323943, 43.227154329], [-71.172030493, 43.212951994], [-71.230944458, 43.202067102], [-71.254110461, 43.170861853], [-71.287135329, 43.180668574], [-71.310383609, 43.1553787], [-71.312388947, 43.11833503], [-71.349636166, 43.107065104], [-71.363498327, 43.081301703], [-71.334358529, 43.052292934], [-71.273717274, 43.030425201], [-71.282874909, 43.011531939], [-71.26832223, 42.993577142], [-71.289451492, 42.963026482], [-71.268854756, 42.948945171], [-71.280247261, 42.944103184], [-71.26565223, 42.91704842], [-71.221869328, 42.922507138], [-71.209563143, 42.901116745], [-71.174925372, 42.896276403], [-71.172143749, 42.920029622], [-71.152304919, 42.933922733], [-71.136419739, 42.923352544], [-71.123183722, 42.949411264], [-71.051182523, 42.942603014], [-71.052912794, 42.930782523], [-70.889177649, 42.889084218], [-70.903811855, 42.856890537], [-70.854492766, 42.836291113], [-70.817168487, 42.842445381], [-70.806748552, 42.786827065], [-70.85260011, 42.788526364], [-70.914654327, 42.826481678], [-70.926029695, 42.806017317], [-70.901913864, 42.790114976], [-70.907264662, 42.777530648], [-70.956601156, 42.774248012], [-70.995890034, 42.79548759], [-71.017120434, 42.760137715], [-70.994876843, 42.742807694], [-71.091474487, 42.71318651], [-71.07110154, 42.693767881], [-71.114741339, 42.674227126], [-71.129065944, 42.600104131], [-71.166341705, 42.590620197], [-71.170016212, 42.576074816], [-71.193477107, 42.580701746], [-71.219087882, 42.555106677], [-71.219633234, 42.533263035], [-71.189117534, 42.502647317], [-71.200610621, 42.486303128], [-71.188835633, 42.472912706], [-71.221155358, 42.43417085], [-71.248735738, 42.428152807], [-71.266771926, 42.453899302], [-71.304908974, 42.43830604], [-71.311624629, 42.46607346], [-71.328587575, 42.465572275], [-71.282369299, 42.502568878], [-71.277119262, 42.528405853], [-71.251669777, 42.53715346], [-71.279432847, 42.58020214], [-71.266240133, 42.616148629], [-71.302826477, 42.646590419], [-71.342174482, 42.628725656], [-71.354098898, 42.605420865], [-71.401209308, 42.598811097], [-71.421898378, 42.567825563], [-71.449660225, 42.577270843], [-71.473565919, 42.535252459], [-71.524897767, 42.499759324], [-71.517377896, 42.484508283], [-71.543417855, 42.475238122], [-71.545627726, 42.507693089], [-71.569534405, 42.539342679], [-71.542156173, 42.552408136], [-71.532888723, 42.579771496], [-71.557858719, 42.574537195], [-71.550268188, 42.5995209], [-71.564915493, 42.603549517], [-71.564021333, 42.620842584], [-71.511005503, 42.635621972], [-71.53762926, 42.696524779], [-71.505088009, 42.71556777], [-71.505293623, 42.738923986], [-71.447807103, 42.757633499], [-71.482394485, 42.785606232], [-71.595782667, 42.75074151], [-71.625913656, 42.758197956], [-71.630727319, 42.792267453], [-71.665997936, 42.783256476], [-71.680932951, 42.801771015], [-71.705085262, 42.789048301], [-71.73909532, 42.811488596], [-71.78395073, 42.784732274], [-71.793397368, 42.752226022], [-71.827775216, 42.735130437], [-71.84135381, 42.688877627], [-71.888480111, 42.65281219], [-71.903663193, 42.681286275], [-71.898758512, 42.714528484], [-71.919117352, 42.740110429], [-71.916078088, 42.763719262], [-71.882346951, 42.784546478], [-71.893533686, 42.811039741], [-71.865788361, 42.885878443], [-71.873554307, 42.911514252], [-71.840584132, 42.933501638], [-71.873756669, 42.957688608], [-71.870975892, 42.99630323], [-71.885875344, 43.012183334], [-71.866638444, 43.039557054], [-71.880065497, 43.063091466], [-71.853413068, 43.085141413], [-71.865173988, 43.104678846], [-71.821077127, 43.149169903], [-71.791226254, 43.13123325], [-71.781144962, 43.146571619], [-71.756479036, 43.131837574], [-71.737860756, 43.14660548], [-71.725490974, 43.131715246], [-71.697350921, 43.145667712], [-71.665361216, 43.139773649], [-71.673305692, 43.175660107], [-71.644432125, 43.176653134], [-71.656247121, 43.202515953], [-71.608018812, 43.226044604], [-71.592500787, 43.260220301], [-71.591324849, 43.290572788], [-71.622251443, 43.300561778], [-71.64128793, 43.289435939], [-71.645584705, 43.309770823], [-71.687984387, 43.328213137], [-71.703614052, 43.369280396], [-71.741942282, 43.394058926], [-71.745244602, 43.43364281], [-71.708287018, 43.453909201], [-71.546132405, 43.396826373], [-71.472313778, 43.414874076], [-71.455760269, 43.428236016], [-71.456512167, 43.437109667], [-71.44742738, 43.444714554], [-71.392237482, 43.443700785], [-71.388151317, 43.494175063], [-71.368311524, 43.516283929], [-71.306222806, 43.516233299], [-71.289303512, 43.501635307], [-71.29388922, 43.483097798], [-71.262896019, 43.471500111], [-71.275307478, 43.430616136], [-71.253607905, 43.408181409], [-71.175258448, 43.39631572]]]}, "properties": {"huc8": "01070006", "name": "Merrimack River", "states": "MA,NH", "areasqkm": 4662.81, "dc_states": "MA, NH", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-72.11696631, 42.83162634], [-72.150640294, 42.81003048], [-72.152711028, 42.783455704], [-72.188259433, 42.776784087], [-72.198648867, 42.793998847], [-72.229412638, 42.79507624], [-72.242771073, 42.740718426], [-72.269099677, 42.750844843], [-72.262024536, 42.72153369], [-72.287385709, 42.712059624], [-72.315284649, 42.728038894], [-72.323162158, 42.725846103], [-72.337201699, 42.677872338], [-72.355496689, 42.691749252], [-72.366503819, 42.671494849], [-72.409589961, 42.674318858], [-72.423898055, 42.615944512], [-72.513654426, 42.584310509], [-72.514022812, 42.569082029], [-72.479062482, 42.563397177], [-72.451426789, 42.537671425], [-72.401504322, 42.54314623], [-72.415475741, 42.513916053], [-72.409177587, 42.453328318], [-72.427158131, 42.443192608], [-72.407279715, 42.41339577], [-72.401927963, 42.3791214], [-72.422752544, 42.363908924], [-72.400272622, 42.277157046], [-72.4822409, 42.203701473], [-72.521058961, 42.207899756], [-72.566109731, 42.178879506], [-72.621638909, 42.182310171], [-72.621761874, 42.148323274], [-72.557158694, 42.125620789], [-72.575282648, 42.091528005], [-72.63961877, 42.10529173], [-72.659407064, 42.125079131], [-72.651644155, 42.216772056], [-72.670140937, 42.183940357], [-72.694389001, 42.211970486], [-72.713955954, 42.178822643], [-72.72999759, 42.200150258], [-72.734191641, 42.166233666], [-72.804050848, 42.201388127], [-72.829094038, 42.258027769], [-72.826447085, 42.31702233], [-72.782716289, 42.3776832], [-72.786254361, 42.422366537], [-72.811308101, 42.454683758], [-72.803299561, 42.473480917], [-72.777232126, 42.465006925], [-72.730414018, 42.487401076], [-72.703819111, 42.48162923], [-72.679085926, 42.528969861], [-72.618564621, 42.507475681], [-72.593205944, 42.513754107], [-72.584039613, 42.55754108], [-72.574020073, 42.554113157], [-72.588630602, 42.585130401], [-72.555078253, 42.647941835], [-72.57266362, 42.688574143], [-72.644165406, 42.718035828], [-72.650554787, 42.76069736], [-72.600794557, 42.753612636], [-72.585821587, 42.79124737], [-72.505335159, 42.773105482], [-72.485772268, 42.794452136], [-72.490739647, 42.84075093], [-72.439292472, 42.88963225], [-72.374716762, 42.911139521], [-72.37374942, 42.950858721], [-72.393804216, 42.965733493], [-72.359381122, 42.974119583], [-72.371869847, 43.038194157], [-72.351717594, 43.099917219], [-72.339556124, 43.107999863], [-72.317103171, 43.093793407], [-72.30465979, 43.110919427], [-72.266075652, 43.097014907], [-72.268365926, 43.13565707], [-72.188288342, 43.178295622], [-72.138215602, 43.245029102], [-72.113679542, 43.242237982], [-72.072980282, 43.276156599], [-72.079567187, 43.234443261], [-72.116880228, 43.186147435], [-72.10663175, 43.155725126], [-72.142604443, 43.115854563], [-72.131985583, 43.078730389], [-72.10607205, 43.060677174], [-72.119043618, 43.045328353], [-72.101894341, 42.996119416], [-72.114917775, 42.950481808], [-72.066065919, 42.901008053], [-72.108182482, 42.861168801], [-72.11696631, 42.83162634]]]}, "properties": {"huc8": "01080201", "name": "Middle Connecticut", "states": "MA,NH,VT", "areasqkm": 2636.71, "dc_states": "MA", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-72.34580405, 42.086188174], [-72.345526769, 42.017848498], [-72.400851235, 41.996950126], [-72.403293445, 41.969565368], [-72.366690203, 41.91350416], [-72.45395349, 41.778434909], [-72.437260076, 41.772245443], [-72.441741839, 41.719506508], [-72.427132859, 41.698929733], [-72.404745653, 41.705098218], [-72.324817493, 41.672869211], [-72.326807543, 41.590360885], [-72.306297972, 41.57072196], [-72.306468024, 41.545595771], [-72.277904703, 41.515691197], [-72.249218866, 41.511805033], [-72.243937447, 41.481541669], [-72.230879321, 41.479270971], [-72.257136181, 41.468285388], [-72.254234716, 41.425796664], [-72.282685682, 41.398271507], [-72.26502411, 41.372337674], [-72.284743443, 41.305681145], [-72.299639716, 41.309609032], [-72.313423589, 41.278115308], [-72.384004459, 41.264924562], [-72.377524003, 41.323567486], [-72.402562632, 41.331682003], [-72.424824759, 41.319556659], [-72.439508005, 41.337476736], [-72.455460265, 41.31942377], [-72.507808968, 41.335624403], [-72.525305226, 41.363713419], [-72.516474739, 41.378113991], [-72.561990961, 41.440362787], [-72.585446999, 41.428709095], [-72.637282058, 41.473263687], [-72.683645174, 41.405303514], [-72.740122751, 41.425289249], [-72.738491998, 41.545833594], [-72.759686008, 41.558788514], [-72.751961365, 41.578861957], [-72.780664757, 41.559670901], [-72.797069058, 41.578189081], [-72.826653705, 41.552320814], [-72.843572125, 41.559689021], [-72.823706881, 41.603577143], [-72.843476817, 41.640166199], [-72.807746664, 41.672316914], [-72.812295656, 41.692311302], [-72.833834604, 41.685450918], [-72.833121732, 41.701102859], [-72.798446611, 41.750829495], [-72.797188595, 41.83142314], [-72.767168507, 41.848964042], [-72.751696274, 41.892477877], [-72.702756419, 41.861894614], [-72.697626069, 41.835806674], [-72.675258354, 41.836412704], [-72.668417766, 41.851647621], [-72.631131962, 41.843847103], [-72.625659659, 41.858211852], [-72.623316988, 41.876052535], [-72.684243485, 41.936320818], [-72.731567338, 41.91199947], [-72.748235121, 41.922770179], [-72.717161402, 42.02687139], [-72.724994913, 42.046215541], [-72.703911022, 42.084771938], [-72.664637402, 42.066670484], [-72.647095725, 42.087166375], [-72.59034641, 42.080251104], [-72.565726266, 42.101474233], [-72.560245976, 42.136924899], [-72.53449364, 42.125516392], [-72.501143202, 42.149173892], [-72.448463515, 42.138380892], [-72.432717933, 42.152320511], [-72.406514272, 42.117182023], [-72.34580405, 42.086188174]]]}, "properties": {"huc8": "01080205", "name": "Lower Connecticut", "states": "CT,MA", "areasqkm": 2809.44, "dc_states": "CT", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-70.809292395, 42.815090365], [-70.735409857, 42.816795027], [-70.729439918, 42.769312933], [-70.696454769, 42.723938616], [-70.608544889, 42.74073806], [-70.525259054, 42.712933786], [-70.499406907, 42.677843221], [-70.514770132, 42.611726797], [-70.601148857, 42.549320319], [-70.692031541, 42.273953675], [-70.72085215, 42.267201318], [-70.719709173, 42.220849199], [-70.756280807, 42.214747221], [-70.756624482, 42.200613814], [-70.780890144, 42.208488288], [-70.798891747, 42.187411535], [-70.820071263, 42.193500168], [-70.83394475, 42.157646842], [-70.866272909, 42.177140869], [-70.884715987, 42.162528373], [-70.906703425, 42.167892612], [-70.91679467, 42.140228844], [-70.943255467, 42.165076263], [-70.96315865, 42.161963619], [-70.971508247, 42.138080454], [-71.004554254, 42.157514013], [-70.999731196, 42.114851512], [-71.082002593, 42.14893306], [-71.101834191, 42.105919189], [-71.139386756, 42.109128601], [-71.154536677, 42.079920567], [-71.213830931, 42.114167726], [-71.251844508, 42.06927622], [-71.279446794, 42.094082184], [-71.286152465, 42.077719993], [-71.326725913, 42.083716667], [-71.321877254, 42.054122514], [-71.366357608, 42.025637157], [-71.364021076, 42.046498067], [-71.386085375, 42.063768841], [-71.397111251, 42.039421357], [-71.438620968, 42.030004091], [-71.450583054, 42.039047457], [-71.442739917, 42.073193587], [-71.500109716, 42.077945924], [-71.505953385, 42.108225471], [-71.544193311, 42.149101473], [-71.548432483, 42.187303222], [-71.516706063, 42.217484183], [-71.49946676, 42.201421684], [-71.476967497, 42.205426939], [-71.454412622, 42.242375768], [-71.385275764, 42.241319276], [-71.370888127, 42.278527058], [-71.328643425, 42.287097937], [-71.361376001, 42.308946199], [-71.318763299, 42.348436511], [-71.328673315, 42.43749205], [-71.266771926, 42.453899302], [-71.248735738, 42.428152807], [-71.204763276, 42.449427523], [-71.189117534, 42.502647317], [-71.219633234, 42.533263035], [-71.219087882, 42.555106677], [-71.193477107, 42.580701746], [-71.170016212, 42.576074816], [-71.166341705, 42.590620197], [-71.129065944, 42.600104131], [-71.114741339, 42.674227126], [-71.07110154, 42.693767881], [-71.091803951, 42.712909438], [-70.994876843, 42.742807694], [-71.017120434, 42.760137715], [-70.99545945, 42.795738168], [-70.956601156, 42.774248012], [-70.9062594, 42.778088667], [-70.901913864, 42.790114976], [-70.926029695, 42.806017317], [-70.915632559, 42.826300718], [-70.851479274, 42.78834606], [-70.806748552, 42.786827065], [-70.809292395, 42.815090365]]]}, "properties": {"huc8": "01090001", "name": "Charles", "states": "MA", "areasqkm": 3867.51, "dc_states": "MA", "cluster_count": 1, "data_center_count": 6, "clustered_data_center_count": 6}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-71.717053427, 42.350747354], [-71.721043213, 42.307891495], [-71.663571071, 42.227760672], [-71.638316735, 42.238256759], [-71.575382634, 42.20632822], [-71.550185754, 42.221755154], [-71.534066988, 42.128500498], [-71.505953385, 42.108225471], [-71.500109716, 42.077945924], [-71.442739917, 42.073193587], [-71.447488083, 42.033872283], [-71.398931665, 42.038261987], [-71.387259258, 42.063812053], [-71.364021076, 42.046498067], [-71.375806106, 41.986770547], [-71.353397769, 41.948763884], [-71.365833891, 41.946134991], [-71.373913898, 41.878098882], [-71.397883876, 41.883455014], [-71.453937782, 41.938097782], [-71.478145553, 41.937736666], [-71.487048878, 41.918513901], [-71.532910569, 41.938741661], [-71.553172214, 41.975207216], [-71.57427056, 41.97078777], [-71.580201669, 41.928957767], [-71.60469277, 41.930546678], [-71.606865568, 41.904569454], [-71.641812785, 41.909895545], [-71.640292211, 41.897543884], [-71.669878884, 41.884052789], [-71.671129449, 41.855084456], [-71.759960546, 41.89274723], [-71.744626119, 41.934589988], [-71.775130554, 41.95644722], [-71.768780543, 41.992846674], [-71.780749454, 42.009524441], [-71.759707434, 42.022609062], [-71.764030247, 42.0375966], [-71.813576086, 42.045101172], [-71.826843037, 42.077288843], [-71.811277403, 42.13235221], [-71.838719083, 42.168637998], [-71.887455269, 42.180905557], [-71.888776972, 42.231012828], [-71.928011338, 42.300921142], [-71.875191524, 42.339258917], [-71.855986967, 42.330860353], [-71.867439522, 42.308579244], [-71.849041058, 42.298214174], [-71.831034286, 42.333722092], [-71.735319986, 42.337169356], [-71.717053427, 42.350747354]]]}, "properties": {"huc8": "01090003", "name": "Blackstone", "states": "MA,RI", "areasqkm": 1228.46, "dc_states": "MA", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-72.387505307, 41.266820645], [-72.343057643, 41.268571324], [-72.388319237, 41.260488009], [-72.398389326, 41.276950902], [-72.394029394, 41.280245248], [-72.395105468, 41.281276081], [-72.393357557, 41.282674169], [-72.394172774, 41.28364531], [-72.392511293, 41.285905217], [-72.392263399, 41.28705189], [-72.392962293, 41.287621055], [-72.509303135, 41.256238916], [-72.524744285, 41.27852372], [-72.554181797, 41.268404283], [-72.54663132, 41.267295694], [-72.551599492, 41.262675412], [-72.546276407, 41.260566004], [-72.546415316, 41.258994523], [-72.549716189, 41.25971714], [-72.551790908, 41.258495368], [-72.55179785, 41.257351521], [-72.551049428, 41.256050888], [-72.550016211, 41.255668468], [-72.549557645, 41.255718771], [-72.54878013, 41.254175696], [-72.54829253, 41.254028536], [-72.549949629, 41.259484324], [-72.541898356, 41.257855006], [-72.542341811, 41.260178361], [-72.524438485, 41.267068808], [-72.54445876, 41.248662419], [-72.570207345, 41.267632817], [-72.567875458, 41.267572471], [-72.56596555, 41.268926387], [-72.568199407, 41.267852788], [-72.568134533, 41.270831177], [-72.569755299, 41.27118159], [-72.658424778, 41.265011583], [-72.663594798, 41.269903574], [-72.662292314, 41.271304792], [-72.652073515, 41.267086811], [-72.648858173, 41.267157383], [-72.63305889, 41.274466045], [-72.65586157, 41.269618485], [-72.647630231, 41.275760594], [-72.648799611, 41.279848046], [-72.644593347, 41.280548908], [-72.644243015, 41.281613743], [-72.649337929, 41.279754378], [-72.655556634, 41.270168461], [-72.663586753, 41.271826482], [-72.674645764, 41.266515888], [-72.69020675, 41.246893918], [-72.706256669, 41.243684833], [-72.7052476, 41.259598558], [-72.734498723, 41.254229998], [-72.762581093, 41.270465081], [-72.818541332, 41.248519608], [-72.801163182, 41.261122319], [-72.817959533, 41.267648287], [-72.80779533, 41.276671327], [-72.819064811, 41.267994439], [-72.811986553, 41.263330467], [-72.83608417, 41.24869663], [-72.852488771, 41.259066885], [-72.893482996, 41.241944495], [-72.906033114, 41.298863923], [-72.938274248, 41.28168947], [-72.921005739, 41.269622957], [-73.015372233, 41.204450911], [-73.023869496, 41.214117888], [-73.066172437, 41.197865642], [-73.081919683, 41.233034346], [-73.036555277, 41.317122645], [-73.049437417, 41.35849712], [-73.032116399, 41.379030055], [-73.003921643, 41.376716023], [-73.007244064, 41.428635126], [-72.9658591, 41.457001094], [-72.958333359, 41.484235203], [-72.984316333, 41.515677575], [-72.946239757, 41.561882888], [-72.959552592, 41.643373132], [-72.94856982, 41.63659305], [-72.929480717, 41.660917916], [-72.89371644, 41.657049334], [-72.830168769, 41.699954277], [-72.832814381, 41.684543884], [-72.804932222, 41.682068146], [-72.837865279, 41.658647842], [-72.84334083, 41.638972735], [-72.823706881, 41.603577143], [-72.843931005, 41.560154116], [-72.826653705, 41.552320814], [-72.797069058, 41.578189081], [-72.780664757, 41.559670901], [-72.751961365, 41.578861957], [-72.759686008, 41.558788514], [-72.738491998, 41.545833594], [-72.740122751, 41.425289249], [-72.683645174, 41.405303514], [-72.637282058, 41.473263687], [-72.585446999, 41.428709095], [-72.561990961, 41.440362787], [-72.516474739, 41.378113991], [-72.525305226, 41.363713419], [-72.507808968, 41.335624403], [-72.455045476, 41.319391167], [-72.439508005, 41.337476736], [-72.422734216, 41.319240755], [-72.388920224, 41.330944578], [-72.375107541, 41.319680398], [-72.387505307, 41.266820645]]]}, "properties": {"huc8": "01100004", "name": "Quinnipiac", "states": "CT", "areasqkm": 1326.97, "dc_states": "CT", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-73.095660643, 42.541758157], [-73.036112294, 42.529095329], [-73.06803225, 42.485650696], [-73.047366277, 42.472976871], [-73.054007516, 42.436874605], [-73.034951166, 42.412513055], [-73.061449006, 42.413767732], [-73.101711617, 42.373564906], [-73.158624158, 42.384872354], [-73.140528933, 42.357553578], [-73.158713446, 42.351167686], [-73.156880036, 42.310018994], [-73.126755134, 42.281121499], [-73.170669452, 42.258370376], [-73.135615185, 42.189695156], [-73.168709204, 42.182714648], [-73.164288298, 42.152649081], [-73.185083495, 42.147173053], [-73.169492469, 42.115390546], [-73.195577428, 42.10482604], [-73.177680329, 42.07528109], [-73.191696004, 42.068169035], [-73.17759548, 42.061174817], [-73.173026846, 42.032875157], [-73.185769931, 42.023698843], [-73.166761414, 41.991823948], [-73.202577816, 41.965596861], [-73.191761301, 41.942996299], [-73.143371685, 41.935558385], [-73.141478572, 41.902063712], [-73.121439979, 41.907333202], [-73.125588642, 41.889274335], [-73.100111679, 41.859789676], [-73.113748327, 41.832950062], [-73.077181056, 41.83336953], [-73.01773955, 41.791548735], [-73.011593476, 41.769333458], [-73.026195601, 41.760726666], [-73.041995094, 41.691397822], [-73.022167102, 41.667840814], [-72.972171948, 41.660744346], [-72.946203484, 41.562253066], [-72.984316333, 41.515677575], [-72.958333359, 41.484235203], [-72.976115956, 41.441085734], [-73.007244064, 41.428635126], [-73.002778903, 41.378723327], [-73.032116399, 41.379030055], [-73.049437417, 41.35849712], [-73.036555277, 41.317122645], [-73.081820026, 41.240242069], [-73.066172437, 41.197865642], [-73.081258821, 41.193251558], [-73.100826757, 41.174072511], [-73.108679455, 41.172090149], [-73.098215147, 41.180689698], [-73.11173074, 41.200585162], [-73.12570749, 41.181795515], [-73.12608631, 41.173240788], [-73.110406056, 41.167782698], [-73.1030217, 41.151409753], [-73.119207606, 41.155972815], [-73.144568517, 41.194399062], [-73.134876179, 41.224104082], [-73.157225148, 41.24282477], [-73.161087052, 41.282815105], [-73.208107547, 41.285492428], [-73.234360621, 41.308741366], [-73.217594252, 41.336516329], [-73.228429719, 41.35890884], [-73.274114356, 41.353480823], [-73.299356298, 41.323719242], [-73.32645525, 41.336861647], [-73.32996695, 41.364332531], [-73.362522348, 41.365063492], [-73.364375874, 41.340442308], [-73.374512092, 41.351726416], [-73.421825485, 41.336043216], [-73.443593011, 41.368658548], [-73.461777254, 41.360795177], [-73.457043246, 41.345792985], [-73.479166941, 41.358834779], [-73.512968227, 41.345337724], [-73.558867724, 41.367173893], [-73.542134399, 41.378187537], [-73.539415277, 41.419511332], [-73.510753061, 41.437573548], [-73.528684886, 41.464820743], [-73.507414102, 41.476120789], [-73.512516818, 41.508200087], [-73.49450769, 41.529972239], [-73.53925161, 41.585557845], [-73.646529199, 41.553163001], [-73.631244959, 41.614154473], [-73.652177178, 41.682413091], [-73.637561643, 41.687245977], [-73.637338035, 41.707023036], [-73.674831491, 41.749587576], [-73.629831685, 41.751665991], [-73.62432895, 41.778224747], [-73.645341124, 41.800775121], [-73.636739891, 41.826189768], [-73.66317933, 41.859507219], [-73.644996598, 41.860753731], [-73.632534858, 41.890550992], [-73.609017411, 41.87769533], [-73.590168302, 41.902521086], [-73.547093226, 41.972053474], [-73.547270037, 42.021428893], [-73.518557398, 42.020557423], [-73.47404553, 42.070223228], [-73.431962104, 42.08176792], [-73.438103818, 42.119696845], [-73.464742548, 42.139215441], [-73.490839833, 42.134776916], [-73.486380347, 42.157089454], [-73.467721543, 42.164751485], [-73.477496267, 42.191703837], [-73.467239038, 42.204364314], [-73.513300572, 42.281491343], [-73.492543396, 42.308408744], [-73.497232582, 42.335135554], [-73.467913856, 42.336349433], [-73.468364257, 42.364780962], [-73.427557077, 42.401813514], [-73.408523337, 42.393487273], [-73.379743602, 42.412397263], [-73.33358303, 42.496206375], [-73.314348947, 42.503653327], [-73.319412992, 42.516653385], [-73.263269531, 42.555741771], [-73.270025895, 42.602731176], [-73.22738482, 42.576851379], [-73.201484966, 42.584738083], [-73.224751369, 42.507228174], [-73.208590374, 42.48611588], [-73.184775667, 42.487989225], [-73.150297598, 42.520776726], [-73.117305085, 42.513636328], [-73.095660643, 42.541758157]]]}, "properties": {"huc8": "01100005", "name": "Housatonic", "states": "CT,MA,NY", "areasqkm": 5053.66, "dc_states": "CT", "cluster_count": 1, "data_center_count": 1, "clustered_data_center_count": 1}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-73.1030217, 41.151409753], [-73.172158732, 41.159047344], [-73.159742604, 41.165836967], [-73.15896167, 41.173649679], [-73.184055107, 41.178360425], [-73.177685996, 41.166361214], [-73.216606897, 41.141397243], [-73.200700951, 41.166629975], [-73.21735536, 41.158947031], [-73.242854551, 41.127865256], [-73.262352786, 41.117914084], [-73.265857417, 41.119256384], [-73.265675683, 41.119492897], [-73.26360081, 41.118628717], [-73.263164925, 41.118496278], [-73.262620495, 41.118512337], [-73.255820433, 41.124220734], [-73.254319056, 41.126982485], [-73.253449102, 41.125726798], [-73.252855013, 41.125717317], [-73.249464382, 41.127238519], [-73.247444972, 41.12883038], [-73.253991053, 41.128192072], [-73.263048756, 41.118559306], [-73.268296013, 41.12052996], [-73.273973427, 41.120423052], [-73.2860837, 41.12761261], [-73.27677976, 41.133438299], [-73.274447341, 41.136942393], [-73.275448549, 41.137639379], [-73.352673842, 41.101608786], [-73.373656621, 41.117705263], [-73.382793234, 41.104341212], [-73.367837898, 41.095348905], [-73.384203124, 41.102198188], [-73.395639944, 41.082284728], [-73.415543906, 41.098815301], [-73.415587177, 41.081020601], [-73.407923211, 41.084533812], [-73.407218621, 41.071625778], [-73.421631051, 41.081445701], [-73.440691487, 41.064583931], [-73.433344079, 41.055701049], [-73.466369677, 41.061946486], [-73.477705647, 41.036171505], [-73.478885876, 41.05573282], [-73.489724235, 41.040250098], [-73.507229491, 41.060995941], [-73.522842927, 41.020079411], [-73.545193122, 41.044144573], [-73.570689044, 41.001953069], [-73.58539967, 41.002601126], [-73.566418785, 41.016182962], [-73.572031818, 41.031514829], [-73.586525634, 41.010961835], [-73.592979804, 41.031233939], [-73.613988797, 41.008949522], [-73.608088776, 41.020198108], [-73.628459692, 41.018923138], [-73.62673117, 41.001724906], [-73.640791965, 41.012026343], [-73.664828083, 40.984284796], [-73.659704968, 40.969100097], [-73.672257736, 40.97535736], [-73.698210824, 40.939103694], [-73.692951362, 40.990204514], [-73.721608095, 41.040588382], [-73.704220645, 41.084547196], [-73.737981755, 41.150356866], [-73.710609114, 41.155890102], [-73.643837437, 41.212767255], [-73.5851511, 41.191582087], [-73.571864744, 41.22372813], [-73.542395674, 41.237783335], [-73.52319035, 41.287457277], [-73.500128308, 41.280583165], [-73.495080291, 41.320532197], [-73.530491815, 41.34650681], [-73.479166941, 41.358834779], [-73.455927599, 41.345827468], [-73.461777254, 41.360795177], [-73.443593011, 41.368658548], [-73.421825485, 41.336043216], [-73.374512092, 41.351726416], [-73.364375874, 41.340442308], [-73.362522348, 41.365063492], [-73.32996695, 41.364332531], [-73.32645525, 41.336861647], [-73.299356298, 41.323719242], [-73.274114356, 41.353480823], [-73.228429719, 41.35890884], [-73.217594252, 41.336516329], [-73.234360621, 41.308741366], [-73.208107547, 41.285492428], [-73.161087052, 41.282815105], [-73.157225148, 41.24282477], [-73.134876179, 41.224104082], [-73.144568517, 41.194399062], [-73.1030217, 41.151409753]]]}, "properties": {"huc8": "01100006", "name": "Saugatuck", "states": "CT,NY", "areasqkm": 1163.38, "dc_states": "CT", "cluster_count": 1, "data_center_count": 4, "clustered_data_center_count": 4}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-74.578177587, 43.633176995], [-74.560841939, 43.619755059], [-74.569744866, 43.603235827], [-74.541258143, 43.616330916], [-74.504156361, 43.586289519], [-74.584910533, 43.562656582], [-74.586671568, 43.530298495], [-74.6082471, 43.513006899], [-74.601450497, 43.494184994], [-74.572043692, 43.496652995], [-74.568200238, 43.461927041], [-74.611372857, 43.410955306], [-74.646310923, 43.403292737], [-74.64404149, 43.361019605], [-74.588739182, 43.314727727], [-74.605421633, 43.300014706], [-74.566570119, 43.27818031], [-74.585860439, 43.255727154], [-74.544532212, 43.228762517], [-74.501366164, 43.248290267], [-74.472451881, 43.203500603], [-74.455497127, 43.229450047], [-74.422548116, 43.232052199], [-74.443158256, 43.188119304], [-74.441683165, 43.160342449], [-74.418043339, 43.160947073], [-74.436877033, 43.149676721], [-74.43487852, 43.133489422], [-74.413325942, 43.126745532], [-74.384014093, 43.148248755], [-74.313214827, 43.138994642], [-74.319055735, 43.119850122], [-74.377394262, 43.087104334], [-74.336294575, 43.070076266], [-74.332501064, 43.045299383], [-74.26661566, 43.04894271], [-74.254436514, 43.030326428], [-74.275837999, 43.020444438], [-74.261768729, 43.011607478], [-74.223983883, 43.012324375], [-74.219989223, 43.032987925], [-74.183032416, 43.046203469], [-74.123250103, 43.039914851], [-74.089029257, 43.074591965], [-74.037932686, 43.073750297], [-74.065551085, 43.044972901], [-74.054316433, 43.022656378], [-74.072821772, 43.006210223], [-74.013662061, 43.001572997], [-73.993077944, 42.98589518], [-73.99722872, 42.968121723], [-73.978648938, 42.963038102], [-73.933094519, 42.977093571], [-73.929232629, 42.954675489], [-73.904131668, 42.948435695], [-73.908755494, 42.924008795], [-73.871447035, 42.895415869], [-73.883009977, 42.867316714], [-73.835629823, 42.852061188], [-73.814023765, 42.869540519], [-73.765841687, 42.868640404], [-73.729344432, 42.831084589], [-73.705087863, 42.83001796], [-73.672639016, 42.803804318], [-73.697721447, 42.731554438], [-73.733164961, 42.763867717], [-73.772956408, 42.718744444], [-73.822778426, 42.716455864], [-73.83676848, 42.732943922], [-73.85909822, 42.715524909], [-73.971822046, 42.775391348], [-73.987494556, 42.797473922], [-74.033499114, 42.798741268], [-74.043972187, 42.81829543], [-74.199753255, 42.8040147], [-74.211941665, 42.845629037], [-74.259705958, 42.907610428], [-74.2443002, 42.921686469], [-74.278954545, 42.942005879], [-74.305190616, 42.921119139], [-74.29034565, 42.90813808], [-74.332330777, 42.884600068], [-74.314055048, 42.868695122], [-74.331227666, 42.827719786], [-74.349334664, 42.822574968], [-74.323540513, 42.809828473], [-74.323644324, 42.791387204], [-74.3555624, 42.803544229], [-74.499668224, 42.799554459], [-74.433725093, 42.760719316], [-74.474665229, 42.76224878], [-74.471441506, 42.730639382], [-74.486835232, 42.723620778], [-74.554801327, 42.727479207], [-74.579425004, 42.75940185], [-74.574510991, 42.775410662], [-74.63288414, 42.781998314], [-74.647322281, 42.811314915], [-74.748357146, 42.808571478], [-74.750335411, 42.830434589], [-74.787839427, 42.846038636], [-74.766016013, 42.87581509], [-74.804184842, 42.883284748], [-74.873279211, 42.867501831], [-74.865481328, 42.893463804], [-74.887366581, 42.901104355], [-74.892159706, 42.933250409], [-74.977068427, 42.917130693], [-74.977378472, 42.93065022], [-75.036952765, 42.947842839], [-75.088693404, 42.937514743], [-75.121040789, 42.913256649], [-75.1262113, 42.924917442], [-75.160783857, 42.91961601], [-75.145982049, 42.932228081], [-75.146067096, 42.966852193], [-75.200993122, 42.98733239], [-75.20323533, 42.961794853], [-75.225279435, 42.963700259], [-75.260914303, 42.928119165], [-75.287117486, 42.943681182], [-75.338738614, 42.916767426], [-75.414497087, 42.927480452], [-75.43497057, 42.885043603], [-75.488558011, 42.897696206], [-75.524115857, 42.878349029], [-75.571835468, 42.923070217], [-75.562839901, 42.962905012], [-75.533432744, 42.943692616], [-75.491245359, 42.948357527], [-75.465706341, 42.962350233], [-75.456296466, 42.993854229], [-75.471461344, 43.026037351], [-75.506608367, 43.036665947], [-75.510138434, 43.058160203], [-75.485111857, 43.086989964], [-75.502655252, 43.091157849], [-75.49629827, 43.134838049], [-75.523438271, 43.161169293], [-75.447921386, 43.189313176], [-75.45643034, 43.212728259], [-75.436295466, 43.233255165], [-75.458613196, 43.268533581], [-75.449881945, 43.279221629], [-75.488330822, 43.294116667], [-75.491517777, 43.316615862], [-75.482680848, 43.337852062], [-75.445771791, 43.346576679], [-75.499840742, 43.349445748], [-75.542324366, 43.379340134], [-75.514493729, 43.447015209], [-75.484514642, 43.455858934], [-75.491114701, 43.50596078], [-75.466341179, 43.520437072], [-75.437509698, 43.512374838], [-75.457810437, 43.468583892], [-75.428504657, 43.46643825], [-75.414662227, 43.420349713], [-75.35567411, 43.432721921], [-75.353318954, 43.465944364], [-75.305268055, 43.488866652], [-75.302759249, 43.44220307], [-75.260559872, 43.412863198], [-75.286062427, 43.411088289], [-75.279163088, 43.394219852], [-75.222184565, 43.401247208], [-75.196497861, 43.374503839], [-75.174700294, 43.375587427], [-75.178452339, 43.351923876], [-75.149395851, 43.338683329], [-75.07786631, 43.372983258], [-75.005151854, 43.373399233], [-74.992977428, 43.395001926], [-74.883842263, 43.431757062], [-74.902788221, 43.478076435], [-74.829753748, 43.485626199], [-74.83989652, 43.501358898], [-74.819909589, 43.512939672], [-74.872621947, 43.538181229], [-74.814643608, 43.532110457], [-74.764381594, 43.566496349], [-74.693444439, 43.56728118], [-74.646477605, 43.586448881], [-74.644696463, 43.611046854], [-74.619629529, 43.627949627], [-74.578177587, 43.633176995]]]}, "properties": {"huc8": "02020004", "name": "Mohawk", "states": "NY", "areasqkm": 6607.17, "dc_states": "NY", "cluster_count": 1, "data_center_count": 2, "clustered_data_center_count": 2}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-73.698763178, 42.731210908], [-73.664913734, 42.724935532], [-73.619344584, 42.762612034], [-73.607935493, 42.792675313], [-73.596016492, 42.776499283], [-73.534040524, 42.770867843], [-73.4662986, 42.798993314], [-73.45111558, 42.786325662], [-73.411467689, 42.790747645], [-73.421798076, 42.733464683], [-73.401926902, 42.717097505], [-73.408538699, 42.662087125], [-73.324064425, 42.615459744], [-73.321016302, 42.600453671], [-73.275863633, 42.58857999], [-73.261153507, 42.560426457], [-73.319412992, 42.516653385], [-73.314348947, 42.503653327], [-73.33358303, 42.496206375], [-73.379743602, 42.412397263], [-73.408523337, 42.393487273], [-73.427557077, 42.401813514], [-73.468364257, 42.364780962], [-73.467913856, 42.336349433], [-73.497577278, 42.334555274], [-73.492543396, 42.308408744], [-73.513300572, 42.281491343], [-73.467239038, 42.204364314], [-73.477496267, 42.191703837], [-73.467721543, 42.164751485], [-73.486380347, 42.157089454], [-73.490839833, 42.134776916], [-73.464742548, 42.139215441], [-73.438103818, 42.119696845], [-73.43190125, 42.081999901], [-73.47404553, 42.070223228], [-73.518557398, 42.020557423], [-73.547270037, 42.021428893], [-73.547093226, 41.972053474], [-73.608434781, 41.878095762], [-73.635188382, 41.893230085], [-73.633096502, 41.936481689], [-73.66517231, 41.991613639], [-73.685331124, 41.986068875], [-73.690760014, 41.959345627], [-73.724019622, 41.974796883], [-73.738496492, 41.954563952], [-73.739125622, 41.971460182], [-73.770771161, 41.994513308], [-73.811637621, 41.949577504], [-73.842313021, 41.950075382], [-73.843644219, 41.968029509], [-73.867367618, 41.95501732], [-73.865713082, 41.983794815], [-73.873674022, 41.973749982], [-73.889152258, 41.989450796], [-73.926267428, 41.957172652], [-73.934071088, 41.918080062], [-73.983498167, 41.937502999], [-74.029672602, 41.912951731], [-74.050540885, 41.918979439], [-74.073045831, 41.888941696], [-74.148014665, 41.844575354], [-74.176207381, 41.882192085], [-74.189545377, 41.86696822], [-74.207874844, 41.874587291], [-74.210217547, 41.896359199], [-74.258111806, 41.882256993], [-74.24238016, 41.915685034], [-74.287533515, 41.92465393], [-74.305410173, 41.907381323], [-74.340559477, 41.919991575], [-74.35913339, 42.001071001], [-74.496784448, 42.035069397], [-74.508062527, 42.078376259], [-74.488393392, 42.092700792], [-74.519224836, 42.129127111], [-74.416991979, 42.197555278], [-74.372263381, 42.175606004], [-74.19910774, 42.164623212], [-74.17304328, 42.13608141], [-74.103378298, 42.114292403], [-74.081290626, 42.155788352], [-74.10569571, 42.20527302], [-74.100617485, 42.224054656], [-74.064353729, 42.226131734], [-74.104707679, 42.26772852], [-74.099887636, 42.296497672], [-74.259943394, 42.378821562], [-74.284920389, 42.419002177], [-74.32346475, 42.436674845], [-74.31841078, 42.473453534], [-74.33225292, 42.481991892], [-74.320041401, 42.487517271], [-74.35339875, 42.531409057], [-74.349669985, 42.557005791], [-74.259932666, 42.5418662], [-74.186843953, 42.562236022], [-74.145110291, 42.522579615], [-74.12100381, 42.523409919], [-74.096990913, 42.534808249], [-74.104163729, 42.549038802], [-74.081531009, 42.533915739], [-74.069236662, 42.582893201], [-74.033202138, 42.572546569], [-74.026574168, 42.616359106], [-74.092285195, 42.688255735], [-74.133742416, 42.687173985], [-74.152458262, 42.706276734], [-74.219406195, 42.722179735], [-74.221457728, 42.737511266], [-74.192362503, 42.757376343], [-74.188373124, 42.781803222], [-74.202078166, 42.790333528], [-74.186350182, 42.794842467], [-74.210254123, 42.794540821], [-74.043972187, 42.81829543], [-74.033499114, 42.798741268], [-73.987494556, 42.797473922], [-73.971822046, 42.775391348], [-73.85909822, 42.715524909], [-73.83676848, 42.732943922], [-73.822778426, 42.716455864], [-73.772956408, 42.718744444], [-73.733164961, 42.763867717], [-73.698763178, 42.731210908]]]}, "properties": {"huc8": "02020006", "name": "Middle Hudson", "states": "MA,NY", "areasqkm": 6291.95, "dc_states": "NY", "cluster_count": 1, "data_center_count": 3, "clustered_data_center_count": 3}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-73.520404329, 41.348484398], [-73.525883602, 41.334105316], [-73.494299614, 41.318461608], [-73.502450266, 41.274266295], [-73.52319035, 41.287457277], [-73.542395674, 41.237783335], [-73.571864744, 41.22372813], [-73.5851511, 41.191582087], [-73.644850787, 41.21231593], [-73.710609114, 41.155890102], [-73.739838293, 41.144491877], [-73.755838197, 41.156110932], [-73.751349055, 41.122832578], [-73.800322204, 41.094762561], [-73.795283274, 41.066672653], [-73.816261479, 41.051887388], [-73.805895425, 41.025504039], [-73.823569782, 41.035045239], [-73.855481191, 40.99389133], [-73.869664957, 40.949852957], [-73.855427782, 40.946041897], [-73.879594043, 40.881564986], [-73.925628902, 40.8190545], [-73.909662285, 40.790578956], [-73.91120182, 40.741593381], [-73.886112509, 40.727297264], [-73.896331625, 40.716122457], [-73.88020384, 40.69429966], [-73.948246958, 40.666896675], [-73.992373982, 40.695649163], [-74.083590482, 40.709216455], [-73.954447377, 40.870881584], [-73.92293605, 40.942513329], [-73.915852594, 40.977912592], [-73.95414355, 41.006508622], [-73.963336101, 41.052304666], [-73.928928068, 41.073392477], [-73.935977321, 41.108874224], [-73.908504192, 41.129518966], [-73.929811013, 41.166445799], [-73.988546225, 41.196553466], [-74.034051491, 41.18331162], [-74.030002507, 41.158395754], [-74.058850585, 41.141212955], [-74.064778334, 41.170004163], [-74.048098519, 41.208702076], [-74.113364552, 41.194565723], [-74.089165334, 41.237681517], [-74.104327357, 41.264922324], [-74.037317221, 41.285786504], [-74.025188147, 41.268609844], [-74.000657127, 41.322749237], [-73.947338488, 41.326841218], [-73.865245374, 41.443848401], [-73.815050581, 41.495947603], [-73.800356501, 41.485126501], [-73.777652116, 41.496816993], [-73.768056946, 41.528014524], [-73.748553568, 41.525735213], [-73.695850758, 41.56345091], [-73.684818359, 41.536848492], [-73.53925161, 41.585557845], [-73.49450769, 41.529972239], [-73.512516818, 41.508200087], [-73.507414102, 41.476120789], [-73.528684886, 41.464820743], [-73.510753061, 41.437573548], [-73.539415277, 41.419511332], [-73.542134399, 41.378187537], [-73.559276941, 41.368211162], [-73.520404329, 41.348484398]]]}, "properties": {"huc8": "02030101", "name": "Lower Hudson", "states": "CT,NJ,NY", "areasqkm": 1941.73, "dc_states": "NJ, NY", "cluster_count": 1, "data_center_count": 13, "clustered_data_center_count": 13}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-74.082434095, 41.298127498], [-74.105265383, 41.263308982], [-74.091132946, 41.223278104], [-74.113424758, 41.194780685], [-74.048222326, 41.20886993], [-74.064778334, 41.170004163], [-74.059162749, 41.141430005], [-74.030002507, 41.158395754], [-74.034051491, 41.18331162], [-73.988956001, 41.196580894], [-73.929811013, 41.166445799], [-73.908732472, 41.134764436], [-73.935977321, 41.108874224], [-73.928928068, 41.073392477], [-73.963336101, 41.052304666], [-73.95414355, 41.006508622], [-73.915852594, 40.977912592], [-73.92293605, 40.942513329], [-73.954447377, 40.870881584], [-74.029273484, 40.767716208], [-74.091208956, 40.704080633], [-74.20573481, 40.739184201], [-74.211019572, 40.763985053], [-74.244758394, 40.752174095], [-74.231616549, 40.772037255], [-74.250284529, 40.790346112], [-74.243309167, 40.803791781], [-74.265394131, 40.814922375], [-74.303275556, 40.750445369], [-74.393785243, 40.682658116], [-74.488589494, 40.642048242], [-74.494219967, 40.625721742], [-74.600265944, 40.631881897], [-74.619853983, 40.65347172], [-74.614041586, 40.679099591], [-74.56623233, 40.713062315], [-74.565523592, 40.730530999], [-74.59755813, 40.738846502], [-74.579286254, 40.75916052], [-74.600642365, 40.773299177], [-74.588378307, 40.794445538], [-74.604126667, 40.79900547], [-74.570233676, 40.835971483], [-74.612470305, 40.852805536], [-74.600359903, 40.888325733], [-74.634728802, 40.909414234], [-74.620078481, 40.93954921], [-74.545848045, 40.988522588], [-74.540896263, 41.008595241], [-74.564888627, 41.006042703], [-74.588377896, 41.043178899], [-74.557896494, 41.082034575], [-74.537481677, 41.079099265], [-74.514974982, 41.162806122], [-74.482528832, 41.170053318], [-74.469040178, 41.149161404], [-74.447561723, 41.163907263], [-74.447220154, 41.1418342], [-74.403600416, 41.131657909], [-74.279522577, 41.256706371], [-74.242650477, 41.255913116], [-74.210970644, 41.310448582], [-74.216784336, 41.326480049], [-74.187261578, 41.333568156], [-74.173445108, 41.360972565], [-74.142751836, 41.325523468], [-74.082434095, 41.298127498]]]}, "properties": {"huc8": "02030103", "name": "Hackensack-Passaic", "states": "NJ,NY", "areasqkm": 2936.91, "dc_states": "NJ, NY", "cluster_count": 1, "data_center_count": 29, "clustered_data_center_count": 29}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-74.20573481, 40.739184201], [-73.992373982, 40.695649163], [-73.947568871, 40.66684742], [-73.832686377, 40.711555909], [-73.770601563, 40.719640589], [-73.691210413, 40.775221872], [-73.660158199, 40.729140881], [-73.669999172, 40.656232551], [-73.756098537, 40.592403893], [-73.923318881, 40.558081628], [-74.016310539, 40.478428033], [-73.988779998, 40.447519998], [-73.976680003, 40.39900001], [-73.982415491, 40.283675997], [-74.052838439, 40.288423544], [-74.098646928, 40.250072736], [-74.168578036, 40.260495814], [-74.209112273, 40.242383989], [-74.261023958, 40.273332305], [-74.242663995, 40.301126667], [-74.27019883, 40.323042869], [-74.227701631, 40.373777464], [-74.25680198, 40.37461173], [-74.283427652, 40.397281519], [-74.262077019, 40.422437735], [-74.300316293, 40.437334876], [-74.288084075, 40.449488248], [-74.297737406, 40.469307587], [-74.268791121, 40.510865193], [-74.294270956, 40.538029839], [-74.357408141, 40.548266341], [-74.358506697, 40.573943744], [-74.390075187, 40.584650188], [-74.400449796, 40.623723685], [-74.379646003, 40.637343148], [-74.377717206, 40.676566098], [-74.349340568, 40.697146471], [-74.357499185, 40.720894438], [-74.302674622, 40.750966111], [-74.265394131, 40.814922375], [-74.243309167, 40.803791781], [-74.250284529, 40.790346112], [-74.232131926, 40.773566122], [-74.24257918, 40.750872717], [-74.220112713, 40.766478032], [-74.20573481, 40.739184201]]]}, "properties": {"huc8": "02030104", "name": "Sandy Hook-Staten Island", "states": "NJ,NY", "areasqkm": 1838.33, "dc_states": "NJ, NY", "cluster_count": 1, "data_center_count": 5, "clustered_data_center_count": 5}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-74.353857967, 40.712545642], [-74.349340568, 40.697146471], [-74.377908802, 40.676161929], [-74.379646003, 40.637343148], [-74.400449796, 40.623723685], [-74.390320719, 40.585152038], [-74.358506697, 40.573943744], [-74.365319288, 40.557606102], [-74.343082371, 40.54015304], [-74.278405773, 40.528731155], [-74.26681765, 40.505680256], [-74.297737406, 40.469307587], [-74.288084075, 40.449488248], [-74.299894422, 40.435902141], [-74.262198644, 40.42272455], [-74.283427652, 40.397281519], [-74.25680198, 40.37461173], [-74.227701631, 40.373777464], [-74.270094114, 40.324091032], [-74.246296233, 40.313259515], [-74.250747299, 40.282419622], [-74.385872551, 40.184529365], [-74.393431573, 40.201231599], [-74.429514793, 40.198516049], [-74.473503164, 40.230633624], [-74.563960468, 40.237922603], [-74.613660385, 40.282555778], [-74.676713436, 40.290353209], [-74.719095944, 40.331439931], [-74.783766142, 40.299589438], [-74.796855129, 40.305572466], [-74.793802051, 40.326639105], [-74.826060344, 40.341947847], [-74.823698287, 40.36375513], [-74.84195567, 40.352006043], [-74.855467099, 40.371593876], [-74.883284784, 40.361351565], [-74.859856002, 40.4043273], [-74.88622075, 40.431387124], [-74.942432175, 40.430546825], [-74.938501114, 40.46558465], [-74.912167889, 40.483826407], [-74.927019884, 40.490916175], [-74.896907716, 40.521141612], [-74.904165671, 40.556973746], [-74.979982767, 40.55570077], [-74.997105887, 40.613767128], [-75.055898942, 40.63937723], [-75.031712189, 40.640482849], [-75.021300304, 40.665345959], [-74.996978226, 40.67023421], [-74.944214792, 40.726091409], [-74.904157603, 40.737625296], [-74.892120994, 40.759209534], [-74.810787123, 40.788970433], [-74.770650019, 40.887979695], [-74.748852955, 40.896467133], [-74.71407009, 40.869834188], [-74.639282694, 40.915482566], [-74.600359903, 40.888325733], [-74.612470305, 40.852805536], [-74.570233676, 40.835971483], [-74.604126667, 40.79900547], [-74.588378307, 40.794445538], [-74.600642365, 40.773299177], [-74.579286254, 40.75916052], [-74.59755813, 40.738846502], [-74.565523592, 40.730530999], [-74.56623233, 40.713062315], [-74.614041586, 40.679099591], [-74.619853983, 40.65347172], [-74.600265944, 40.631881897], [-74.512393598, 40.617409705], [-74.353857967, 40.712545642]]]}, "properties": {"huc8": "02030105", "name": "Raritan", "states": "NJ", "areasqkm": 2863, "dc_states": "NJ", "cluster_count": 1, "data_center_count": 31, "clustered_data_center_count": 31}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-71.791890965, 41.273044876], [-71.790094845, 41.06570358], [-71.828458293, 41.015789775], [-72.446867313, 40.793285179], [-73.214210402, 40.577301216], [-73.34814531, 40.577473438], [-73.569797325, 40.523496344], [-73.781775641, 40.536909045], [-73.902621782, 40.494439541], [-73.940562647, 40.542944987], [-73.923318881, 40.558081628], [-73.756098537, 40.592403893], [-73.669313203, 40.657678569], [-73.660158199, 40.729140881], [-73.689894346, 40.776780004], [-73.550681781, 40.817571584], [-73.528713119, 40.806911357], [-73.539068637, 40.825299788], [-73.514393307, 40.84419471], [-73.483046211, 40.837041724], [-73.498956696, 40.818287076], [-73.440216483, 40.81164435], [-73.434465545, 40.852026896], [-73.340327485, 40.882854146], [-73.28998291, 40.860079977], [-73.278822512, 40.82038866], [-73.23441135, 40.806811159], [-73.162391846, 40.814595617], [-73.150986406, 40.847994349], [-73.167687915, 40.879720665], [-73.064005989, 40.933266429], [-73.014930909, 40.932160727], [-72.968964509, 40.953768], [-72.944468895, 40.941994759], [-72.920946952, 40.956420393], [-72.849289802, 40.947118235], [-72.78606374, 40.960792167], [-72.768482717, 40.947941282], [-72.761122294, 40.962979478], [-72.693360639, 40.978987756], [-72.628426599, 40.976648027], [-72.587317228, 40.995618278], [-72.539826971, 40.987341632], [-72.518595174, 41.009934825], [-72.534781622, 41.027226311], [-72.462569814, 41.046145766], [-72.4448508, 41.085180334], [-72.392080753, 41.096675161], [-72.349397549, 41.139691351], [-72.129522336, 41.196289045], [-72.033277538, 41.25399275], [-71.994926457, 41.258254551], [-71.985018653, 41.278494101], [-71.858787826, 41.300206913], [-71.791890965, 41.273044876]]]}, "properties": {"huc8": "02030202", "name": "Southern Long Island", "states": "NJ,NY,RI", "areasqkm": 5079.5, "dc_states": "NY", "cluster_count": 0, "data_center_count": 3, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-75.348197914, 41.217414228], [-75.358917155, 41.133954292], [-75.43692009, 41.087270977], [-75.406791576, 41.063879186], [-75.412254211, 41.030763886], [-75.468391338, 41.023491531], [-75.449416962, 41.0013484], [-75.406135424, 40.997022939], [-75.41263598, 40.945125831], [-75.361152639, 40.89373034], [-75.295738425, 40.876913268], [-75.244262814, 40.905635418], [-75.28615577, 40.864573375], [-75.402959602, 40.827195632], [-75.401222151, 40.787406227], [-75.328857442, 40.761465249], [-75.333702028, 40.719908072], [-75.310447695, 40.718671203], [-75.317375179, 40.700567453], [-75.296859594, 40.692171881], [-75.318954444, 40.676163019], [-75.266990744, 40.673128305], [-75.210151678, 40.692727118], [-75.208061127, 40.654042862], [-75.261734052, 40.6166643], [-75.25556956, 40.585732707], [-75.327186435, 40.558138008], [-75.347061093, 40.510607392], [-75.40636459, 40.487607817], [-75.427116359, 40.498870809], [-75.443237487, 40.482062383], [-75.481559626, 40.500120732], [-75.569938543, 40.492979968], [-75.584007309, 40.476878265], [-75.66464246, 40.458893214], [-75.712417478, 40.492401206], [-75.697318918, 40.533826108], [-75.714629995, 40.548711059], [-75.709426999, 40.590003454], [-75.735649407, 40.617635021], [-75.760963461, 40.607954171], [-75.770629706, 40.624677817], [-75.758048915, 40.659962493], [-75.71968064, 40.670770661], [-75.758453463, 40.734037504], [-75.888732881, 40.678453091], [-75.93290671, 40.704055031], [-75.93913994, 40.720120657], [-75.919585078, 40.729281145], [-75.935454937, 40.744662681], [-75.918487512, 40.769251074], [-75.927940448, 40.786899493], [-75.831613826, 40.840170288], [-75.858229083, 40.850098086], [-75.96218098, 40.816188998], [-75.993472575, 40.824857249], [-75.970237973, 40.856039856], [-75.911705386, 40.863885892], [-75.941084876, 40.889959409], [-76.005561928, 40.880980384], [-75.971496562, 40.901189547], [-75.969551039, 40.917348607], [-75.99079135, 40.924667359], [-75.967743068, 40.932920906], [-75.983024775, 40.959892595], [-75.853225885, 40.987905666], [-75.845245448, 41.002111692], [-75.87942397, 41.004517627], [-75.884613169, 41.023187515], [-75.925827067, 41.019261025], [-75.905746606, 41.039720184], [-75.845215004, 41.044323708], [-75.843834524, 41.06811016], [-75.780898944, 41.069671093], [-75.795387175, 41.091673175], [-75.783958646, 41.099836164], [-75.787521497, 41.143788628], [-75.818778993, 41.168648556], [-75.825713995, 41.196689904], [-75.681640663, 41.27842813], [-75.666000305, 41.278827403], [-75.636108263, 41.235906359], [-75.530914117, 41.265846506], [-75.523376288, 41.28111202], [-75.452720805, 41.27494398], [-75.417961042, 41.289289673], [-75.392715335, 41.280402329], [-75.381965704, 41.233976222], [-75.348197914, 41.217414228]]]}, "properties": {"huc8": "02040106", "name": "Lehigh", "states": "PA", "areasqkm": 3526.74, "dc_states": "PA", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-74.452655162, 40.018308047], [-74.421672686, 40.011301294], [-74.419995057, 39.962770348], [-74.377854866, 39.957036875], [-74.371748521, 39.938153261], [-74.385486251, 39.919291349], [-74.375955999, 39.907117004], [-74.407038593, 39.892214067], [-74.413789604, 39.869887642], [-74.397549425, 39.859053131], [-74.407895798, 39.850119153], [-74.515697407, 39.869622344], [-74.544733659, 39.864370215], [-74.535811293, 39.841951028], [-74.55530273, 39.843969634], [-74.580415049, 39.818829834], [-74.620231581, 39.846608007], [-74.663761444, 39.852332593], [-74.684219679, 39.839531264], [-74.748273449, 39.847560595], [-74.765569192, 39.819522172], [-74.783260263, 39.836299868], [-74.901649999, 39.793240001], [-74.943664817, 39.81423404], [-74.953258531, 39.77090865], [-74.986356703, 39.790694493], [-75.006183417, 39.773251495], [-74.99529978, 39.744139717], [-75.017541052, 39.724369989], [-75.04284996, 39.730625539], [-75.087303346, 39.700876556], [-75.141562887, 39.702825613], [-75.149211153, 39.671490595], [-75.186763756, 39.663267946], [-75.21194979, 39.638288186], [-75.351651205, 39.683593552], [-75.377099668, 39.717643451], [-75.418477442, 39.714640945], [-75.435326599, 39.743329395], [-75.412358608, 39.754927685], [-75.434554871, 39.789745341], [-75.52506503, 39.815164619], [-75.524009863, 39.842550956], [-75.605407663, 39.958683848], [-75.586479338, 39.976643022], [-75.608306969, 40.000712644], [-75.573814391, 40.027832067], [-75.445129449, 40.050931089], [-75.340217585, 40.045844786], [-75.323440637, 40.020111501], [-75.257858228, 40.009031802], [-75.223167279, 39.95983362], [-75.250839092, 39.878476085], [-75.176132068, 39.890110329], [-75.175781158, 39.941589084], [-75.159759423, 39.955140591], [-75.180847045, 39.986770192], [-75.164856145, 40.017400306], [-75.193161098, 40.060594294], [-75.184562578, 40.096408251], [-75.10127257, 40.133396405], [-75.182998767, 40.175100425], [-75.101409856, 40.208436683], [-75.048515231, 40.200182213], [-75.038086042, 40.172567448], [-75.04978938, 40.153066352], [-74.979179341, 40.156336654], [-74.98674795, 40.134629187], [-74.960029696, 40.133780649], [-74.93271627, 40.104802095], [-74.944389268, 40.084027518], [-74.935911353, 40.058729906], [-74.803199923, 40.035679542], [-74.802983133, 40.005239749], [-74.681592763, 40.005965034], [-74.642436535, 40.024659289], [-74.62194524, 40.001351876], [-74.572340211, 40.022803221], [-74.533970346, 39.992111865], [-74.452655162, 40.018308047]]]}, "properties": {"huc8": "02040202", "name": "Lower Delaware", "states": "DE,NJ,PA", "areasqkm": 2982.08, "dc_states": "NJ, PA", "cluster_count": 1, "data_center_count": 2, "clustered_data_center_count": 1}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-75.403694049, 40.489423482], [-75.371185184, 40.458802652], [-75.368866099, 40.435746855], [-75.383956784, 40.42585528], [-75.345306506, 40.418634739], [-75.393661564, 40.405214273], [-75.346939256, 40.402751258], [-75.334915142, 40.366227469], [-75.286323697, 40.385835851], [-75.222404525, 40.441157468], [-75.195617685, 40.414759616], [-75.215393085, 40.385588827], [-75.198616, 40.37028968], [-75.204833837, 40.348643163], [-75.307174835, 40.313758008], [-75.31816099, 40.279114521], [-75.291763309, 40.241961852], [-75.241363505, 40.245096084], [-75.25290663, 40.223984884], [-75.220802279, 40.209806634], [-75.212898266, 40.17755396], [-75.182510398, 40.176394063], [-75.10127257, 40.133396405], [-75.184562578, 40.096408251], [-75.193161098, 40.060594294], [-75.164856145, 40.017400306], [-75.180847045, 39.986770192], [-75.159759423, 39.955140591], [-75.175781158, 39.941589084], [-75.174453866, 39.891640054], [-75.215927269, 39.876379449], [-75.233932625, 39.889873004], [-75.250839092, 39.878476085], [-75.221214236, 39.947809197], [-75.257858228, 40.009031802], [-75.323440637, 40.020111501], [-75.340217585, 40.045844786], [-75.440369223, 40.051531116], [-75.578369195, 40.022998251], [-75.590103272, 40.05313947], [-75.661010663, 40.052914292], [-75.655474548, 40.064277959], [-75.692749199, 40.076473635], [-75.696699562, 40.124056236], [-75.800277673, 40.146599695], [-75.812080438, 40.131251039], [-75.840621848, 40.134439424], [-75.827614584, 40.178210796], [-75.934257633, 40.195363754], [-75.911071705, 40.204548853], [-75.922119, 40.216150908], [-75.993710001, 40.214922031], [-76.012931837, 40.237878774], [-75.998031554, 40.248841788], [-76.024310565, 40.262710378], [-76.023902874, 40.289575836], [-76.052017133, 40.279927105], [-76.127263914, 40.311047131], [-76.184219521, 40.30523511], [-76.198280417, 40.322175857], [-76.220252789, 40.296941711], [-76.34363544, 40.31047968], [-76.393772581, 40.354382405], [-76.395553447, 40.372404243], [-76.311981333, 40.407413476], [-76.251869393, 40.404233259], [-76.255111837, 40.448453781], [-76.222778418, 40.455327215], [-76.192558283, 40.48642139], [-76.197440961, 40.531175655], [-76.216316327, 40.540811416], [-76.206043762, 40.586869979], [-76.243774572, 40.603732252], [-76.233596684, 40.628822037], [-76.298401096, 40.640516184], [-76.360527004, 40.690252259], [-76.384406996, 40.689711589], [-76.379643629, 40.704980514], [-76.303352443, 40.729949621], [-76.304519616, 40.754479525], [-76.093688917, 40.815048767], [-76.058502331, 40.835055583], [-76.078900279, 40.834733726], [-76.075004678, 40.860756624], [-76.015998839, 40.888532399], [-75.941084876, 40.889959409], [-75.911705386, 40.863885892], [-75.970237973, 40.856039856], [-75.993472575, 40.824857249], [-75.96218098, 40.816188998], [-75.858229083, 40.850098086], [-75.831581049, 40.839626108], [-75.927940448, 40.786899493], [-75.918487512, 40.769251074], [-75.935454937, 40.744662681], [-75.919585078, 40.729281145], [-75.93913994, 40.720120657], [-75.933852542, 40.705619312], [-75.888732881, 40.678453091], [-75.758453463, 40.734037504], [-75.71968064, 40.670770661], [-75.758048915, 40.659962493], [-75.770629706, 40.624677817], [-75.760963461, 40.607954171], [-75.735649407, 40.617635021], [-75.709426999, 40.590003454], [-75.714629995, 40.548711059], [-75.697318918, 40.533826108], [-75.712417478, 40.492401206], [-75.697136041, 40.475526056], [-75.66464246, 40.458893214], [-75.584007309, 40.476878265], [-75.569938543, 40.492979968], [-75.403694049, 40.489423482]]]}, "properties": {"huc8": "02040203", "name": "Schuylkill", "states": "PA", "areasqkm": 4951.62, "dc_states": "PA", "cluster_count": 1, "data_center_count": 4, "clustered_data_center_count": 4}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-73.902621782, 40.494439541], [-73.924184448, 40.470930496], [-73.906371879, 40.368975509], [-73.91142947, 40.294112399], [-73.998378193, 39.97555371], [-74.03082528, 39.74376628], [-74.313700838, 39.373275087], [-74.412260208, 39.438778316], [-74.404843096, 39.45409389], [-74.44125885, 39.48580763], [-74.500707204, 39.461649563], [-74.540562154, 39.477288043], [-74.596373401, 39.472508474], [-74.606149648, 39.507616377], [-74.686805638, 39.523020867], [-74.685224232, 39.563044937], [-74.707945985, 39.579201629], [-74.697375046, 39.588936082], [-74.772308386, 39.622115581], [-74.799259804, 39.617147622], [-74.824214611, 39.648162821], [-74.887650562, 39.664782639], [-74.888220908, 39.682776011], [-74.915833923, 39.699276494], [-74.927289323, 39.72656013], [-74.919966718, 39.798499903], [-74.893382467, 39.794663015], [-74.783260263, 39.836299868], [-74.765569192, 39.819522172], [-74.748273449, 39.847560595], [-74.620231581, 39.846608007], [-74.581779061, 39.818674813], [-74.55530273, 39.843969634], [-74.535811293, 39.841951028], [-74.54476422, 39.864233237], [-74.533352612, 39.867980976], [-74.44172779, 39.860628467], [-74.420298456, 39.846321298], [-74.399087923, 39.856438836], [-74.412671298, 39.877677265], [-74.371750165, 39.913588294], [-74.385489149, 39.918967265], [-74.376399976, 39.954522023], [-74.419995057, 39.962770348], [-74.421672686, 40.011301294], [-74.455182801, 40.019576648], [-74.443532732, 40.050534971], [-74.476147377, 40.079170695], [-74.476765466, 40.099653976], [-74.451551683, 40.09429569], [-74.441650293, 40.123011954], [-74.419867156, 40.133634252], [-74.424932136, 40.20017667], [-74.393431573, 40.201231599], [-74.385872551, 40.184529365], [-74.265287153, 40.273359454], [-74.197996341, 40.241912155], [-74.168578036, 40.260495814], [-74.098646928, 40.250072736], [-74.052838439, 40.288423544], [-73.984949784, 40.281635397], [-73.976680003, 40.39900001], [-73.988779998, 40.447519998], [-74.016310539, 40.478428033], [-73.940562647, 40.542944987], [-73.902621782, 40.494439541]]]}, "properties": {"huc8": "02040301", "name": "Mullica-Toms", "states": "NJ,NY", "areasqkm": 4468.01, "dc_states": "NJ", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-75.432342155, 41.853027631], [-75.416671738, 41.808504919], [-75.451217843, 41.802988277], [-75.465225108, 41.765166155], [-75.463310439, 41.705096863], [-75.419624308, 41.664480381], [-75.432357701, 41.59139361], [-75.467155452, 41.533358442], [-75.473190497, 41.483022916], [-75.522415056, 41.444622733], [-75.528396635, 41.423053952], [-75.484520044, 41.392900644], [-75.476715109, 41.339513527], [-75.458313125, 41.319928998], [-75.438644479, 41.326964081], [-75.418556089, 41.288670482], [-75.452720805, 41.27494398], [-75.523376288, 41.28111202], [-75.530914117, 41.265846506], [-75.636108263, 41.235906359], [-75.666000305, 41.278827403], [-75.681640663, 41.27842813], [-75.825713995, 41.196689904], [-75.818778993, 41.168648556], [-75.787521497, 41.143788628], [-75.783958646, 41.099836164], [-75.795387175, 41.091673175], [-75.780898944, 41.069671093], [-75.83256808, 41.071218967], [-75.845215004, 41.044323708], [-75.921020562, 41.0326373], [-75.923889254, 41.016393981], [-75.884613169, 41.023187515], [-75.87942397, 41.004517627], [-75.844771685, 41.001559647], [-75.864372347, 40.983435672], [-75.983024775, 40.959892595], [-75.967743068, 40.932920906], [-75.99079135, 40.924667359], [-75.969551039, 40.917348607], [-75.971496562, 40.901189547], [-76.079284641, 40.850523898], [-76.194630628, 40.84581119], [-76.318695089, 40.812169218], [-76.348014757, 40.829486317], [-76.509131739, 40.811231717], [-76.528816167, 40.854566508], [-76.510361293, 40.864031341], [-76.534942401, 40.886422896], [-76.58219151, 40.879073358], [-76.642181215, 40.893552547], [-76.68955935, 40.881398366], [-76.715614136, 40.893627298], [-76.789749254, 40.866112028], [-76.790497597, 40.905483873], [-76.813774267, 40.942604159], [-76.67926689, 40.965751211], [-76.707603315, 40.975437655], [-76.692147413, 41.009912812], [-76.661338648, 41.012446431], [-76.559455996, 41.072123032], [-76.554504299, 41.08769663], [-76.600975192, 41.145150018], [-76.555274976, 41.170105615], [-76.574256734, 41.212417043], [-76.50969088, 41.230737395], [-76.471794152, 41.269798886], [-76.473667972, 41.287893031], [-76.554519447, 41.309492169], [-76.554427912, 41.330241734], [-76.47005457, 41.355368529], [-76.450576934, 41.337704675], [-76.444786181, 41.366366751], [-76.359829308, 41.374501786], [-76.2718506, 41.361382546], [-76.252433665, 41.319202074], [-76.240366251, 41.335578743], [-76.210892154, 41.331936492], [-76.197570938, 41.346970549], [-76.167656075, 41.333257863], [-76.030700506, 41.385642885], [-76.008743246, 41.357153168], [-75.961937146, 41.364057368], [-75.944923558, 41.385365951], [-75.858084126, 41.366047976], [-75.850097814, 41.343927797], [-75.802047691, 41.358626265], [-75.756149203, 41.397286624], [-75.74936224, 41.428655928], [-75.711578219, 41.449363947], [-75.732559162, 41.472115614], [-75.726341226, 41.484612277], [-75.710304156, 41.479591737], [-75.684623838, 41.516479524], [-75.632751367, 41.533147487], [-75.588218752, 41.517918269], [-75.57390591, 41.542179837], [-75.593955824, 41.563263212], [-75.586953415, 41.591396539], [-75.568191472, 41.592086098], [-75.555076616, 41.625040075], [-75.539108409, 41.622828239], [-75.542915427, 41.645166174], [-75.526153596, 41.657030015], [-75.494125448, 41.64571053], [-75.483871469, 41.672482936], [-75.537287123, 41.75965466], [-75.527961919, 41.823255512], [-75.432342155, 41.853027631]]]}, "properties": {"huc8": "02050107", "name": "Upper Susquehanna-Lackawanna", "states": "PA", "areasqkm": 4572.75, "dc_states": "PA", "cluster_count": 0, "data_center_count": 3, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-77.902359122, 41.260933691], [-77.850273005, 41.236441748], [-77.835632234, 41.210774962], [-77.855003278, 41.188707555], [-77.882469233, 41.189504424], [-77.874923574, 41.170694109], [-77.902641293, 41.148072212], [-77.984237807, 41.113630051], [-77.997924815, 41.03662527], [-77.948814258, 41.009455256], [-77.975349069, 40.975040133], [-77.968780564, 40.928243386], [-77.994728094, 40.890234943], [-78.099052553, 40.836756048], [-78.131233255, 40.84623924], [-78.183998045, 40.786809792], [-78.213462707, 40.795561566], [-78.249275213, 40.785474639], [-78.252052289, 40.768351645], [-78.281753645, 40.769932675], [-78.298393293, 40.734085136], [-78.36193095, 40.723203088], [-78.371398947, 40.686275288], [-78.438789192, 40.664277957], [-78.45245358, 40.624570739], [-78.467010634, 40.624197172], [-78.44882208, 40.576022588], [-78.490074052, 40.532186715], [-78.512527363, 40.542754386], [-78.528251703, 40.529278607], [-78.550369311, 40.457756732], [-78.65436551, 40.468642258], [-78.663658134, 40.501945062], [-78.689826903, 40.502917085], [-78.71668996, 40.537065952], [-78.7434615, 40.530531238], [-78.751266505, 40.548996611], [-78.721633996, 40.582719967], [-78.826065151, 40.624323207], [-78.831291105, 40.656169559], [-78.859634401, 40.658088056], [-78.84149946, 40.696657134], [-78.91438288, 40.716093184], [-78.881057722, 40.764931603], [-78.902839785, 40.770657358], [-78.901824948, 40.813085041], [-78.869720503, 40.825051081], [-78.863441563, 40.860135631], [-78.889828042, 40.894456604], [-78.83904249, 40.915556305], [-78.786506693, 40.915944999], [-78.749603407, 40.982285371], [-78.688400213, 41.001395743], [-78.703331172, 41.00671597], [-78.702384933, 41.045776566], [-78.646194533, 41.080972295], [-78.641578804, 41.094739426], [-78.6648329, 41.114713909], [-78.649579188, 41.124253502], [-78.583542003, 41.153733805], [-78.548492356, 41.157557981], [-78.520851114, 41.134078336], [-78.471885751, 41.145913923], [-78.45172883, 41.161271892], [-78.453080489, 41.183174662], [-78.40621963, 41.210187964], [-78.353561445, 41.187694082], [-78.321518028, 41.221715871], [-78.339523224, 41.233194839], [-78.335517897, 41.249908829], [-78.29791029, 41.273675751], [-78.150733978, 41.216649782], [-78.056305055, 41.260494929], [-77.967117267, 41.241998609], [-77.902359122, 41.260933691]]]}, "properties": {"huc8": "02050201", "name": "Upper West Branch Susquehanna", "states": "PA", "areasqkm": 4136.01, "dc_states": "PA", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-75.824661297, 40.159267006], [-75.986961235, 40.097287595], [-75.915603704, 40.064493563], [-75.910011319, 40.043928342], [-75.892044237, 40.049131437], [-75.901657256, 40.020257984], [-75.951461787, 40.002340639], [-75.905952619, 39.911171594], [-75.989135832, 39.764330152], [-76.021534355, 39.747919883], [-76.036529359, 39.689709912], [-76.067287634, 39.681349839], [-76.05049275, 39.654135704], [-76.088632895, 39.626011838], [-76.066435497, 39.597801297], [-76.065724545, 39.551392415], [-76.107058746, 39.534437555], [-76.149645578, 39.576348588], [-76.197004694, 39.582533456], [-76.235804632, 39.550194754], [-76.254023594, 39.559845192], [-76.303783649, 39.548315363], [-76.343472432, 39.578472638], [-76.42772445, 39.582855449], [-76.463932333, 39.628627971], [-76.53897891, 39.613831525], [-76.569800949, 39.662352355], [-76.589393647, 39.662681773], [-76.690925449, 39.740144701], [-76.708519034, 39.729404494], [-76.738342422, 39.738741394], [-76.764885478, 39.720900188], [-76.812377909, 39.744897384], [-76.852600003, 39.745118114], [-76.928552225, 39.697508022], [-76.965155721, 39.699921408], [-77.038970927, 39.723929637], [-77.051650821, 39.749666016], [-77.087898372, 39.769915981], [-77.083010643, 39.780972848], [-77.119941586, 39.795997043], [-77.143310643, 39.853544561], [-77.183935017, 39.889992857], [-77.185666041, 39.921089754], [-77.24137129, 39.883140052], [-77.244270324, 39.898119539], [-77.280232144, 39.89689474], [-77.327575362, 39.926059677], [-77.421081606, 39.899362813], [-77.430366569, 39.913311776], [-77.376159641, 39.97513523], [-77.291217737, 40.021969488], [-77.182220577, 40.030867383], [-77.11687468, 40.088906627], [-77.033335884, 40.100078138], [-76.996406383, 40.08685283], [-76.910553091, 40.131178427], [-76.875137155, 40.168364537], [-76.800346429, 40.127832219], [-76.752726399, 40.127688877], [-76.719556315, 40.102023624], [-76.705204597, 40.122293691], [-76.544288477, 40.193134262], [-76.497077975, 40.237520012], [-76.466094963, 40.233038375], [-76.427589524, 40.263492589], [-76.403801046, 40.251220689], [-76.373825128, 40.259274144], [-76.376464694, 40.286841672], [-76.350830113, 40.309850836], [-76.220252789, 40.296941711], [-76.198280417, 40.322175857], [-76.184219521, 40.30523511], [-76.127263914, 40.311047131], [-76.052017133, 40.279927105], [-76.023902874, 40.289575836], [-76.024310565, 40.262710378], [-75.998031554, 40.248841788], [-76.012931837, 40.237878774], [-75.993710001, 40.214922031], [-75.922119, 40.216150908], [-75.911071705, 40.204548853], [-75.934257633, 40.195363754], [-75.827614584, 40.178210796], [-75.824661297, 40.159267006]]]}, "properties": {"huc8": "02050306", "name": "Lower Susquehanna", "states": "MD,PA", "areasqkm": 6439.28, "dc_states": "PA", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-76.082930886, 39.540977018], [-76.088409625, 39.48022761], [-76.046689693, 39.460112148], [-76.046672871, 39.431607987], [-76.052469562, 39.430429379], [-76.049286605, 39.444649491], [-76.059023381, 39.458917756], [-76.069976014, 39.41655557], [-76.103854423, 39.411031266], [-76.071653129, 39.431250488], [-76.132645496, 39.40715034], [-76.228468548, 39.333869611], [-76.250445485, 39.343928226], [-76.245913814, 39.331206295], [-76.271844722, 39.313925976], [-76.277203138, 39.287963967], [-76.257092265, 39.288061219], [-76.26765543, 39.270135169], [-76.295113747, 39.296078212], [-76.374542755, 39.292336607], [-76.366536395, 39.273164255], [-76.334455668, 39.269300907], [-76.382062033, 39.222566451], [-76.406817768, 39.220829225], [-76.470230292, 39.171668543], [-76.432446064, 39.136672703], [-76.41879884, 39.152125823], [-76.411187598, 39.127607196], [-76.438746985, 39.107474706], [-76.48429692, 39.105401613], [-76.539539709, 39.131357784], [-76.582818941, 39.131230962], [-76.618505129, 39.110977325], [-76.657228511, 39.141592067], [-76.746446172, 39.138676768], [-76.779254861, 39.160255915], [-76.80804866, 39.220388529], [-76.795767524, 39.235752266], [-76.824328914, 39.257907803], [-76.839770901, 39.297285208], [-76.905601274, 39.322901507], [-77.00453136, 39.32112017], [-77.073660194, 39.352733856], [-77.106828595, 39.334593135], [-77.174968178, 39.350229687], [-77.075938242, 39.461045514], [-77.078675135, 39.487848062], [-77.039652156, 39.537427343], [-77.025696686, 39.524048697], [-76.992400762, 39.546725375], [-77.003034091, 39.609856894], [-76.920510563, 39.630201666], [-76.885517104, 39.657282445], [-76.922628597, 39.711557377], [-76.852600003, 39.745118114], [-76.812377909, 39.744897384], [-76.764885478, 39.720900188], [-76.738342422, 39.738741394], [-76.687553566, 39.739234264], [-76.589393647, 39.662681773], [-76.569800949, 39.662352355], [-76.53897891, 39.613831525], [-76.463932333, 39.628627971], [-76.42772445, 39.582855449], [-76.343472432, 39.578472638], [-76.303783649, 39.548315363], [-76.254023594, 39.559845192], [-76.235804632, 39.550194754], [-76.195620205, 39.582643061], [-76.130355285, 39.57029194], [-76.113765224, 39.534502214], [-76.082930886, 39.540977018]]]}, "properties": {"huc8": "02060003", "name": "Gunpowder-Patapsco", "states": "MD,PA", "areasqkm": 3671.32, "dc_states": "MD", "cluster_count": 1, "data_center_count": 11, "clustered_data_center_count": 11}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-77.07911279, 39.352302801], [-77.00453136, 39.32112017], [-76.905601274, 39.322901507], [-76.833542104, 39.293736138], [-76.824328914, 39.257907803], [-76.795767524, 39.235752266], [-76.80804866, 39.220388529], [-76.779254861, 39.160255915], [-76.739688635, 39.138992412], [-76.720716598, 39.097771717], [-76.658627045, 39.0488934], [-76.674198134, 39.019490306], [-76.660317508, 39.006171203], [-76.670549728, 38.976129111], [-76.640913913, 38.953209697], [-76.621607725, 38.908563435], [-76.58762005, 38.900543252], [-76.620425563, 38.865952108], [-76.605905997, 38.853761179], [-76.616212296, 38.829539381], [-76.589152027, 38.794148641], [-76.590541951, 38.737410676], [-76.563020111, 38.726075672], [-76.572495328, 38.704300245], [-76.603454005, 38.698157692], [-76.604938293, 38.635218583], [-76.543801751, 38.623318885], [-76.569108078, 38.600522835], [-76.535379957, 38.574696017], [-76.541140885, 38.555760928], [-76.58286743, 38.553296666], [-76.592692566, 38.53346957], [-76.578882033, 38.51405813], [-76.519143121, 38.497924938], [-76.427784337, 38.414574495], [-76.437541151, 38.393091598], [-76.407213576, 38.382086355], [-76.400792123, 38.36325537], [-76.419822594, 38.351486153], [-76.424956556, 38.278762757], [-76.454241738, 38.26675843], [-76.53275991, 38.308183135], [-76.588485195, 38.368527781], [-76.679825384, 38.416042974], [-76.715286404, 38.418795628], [-76.775729516, 38.470061975], [-76.772862911, 38.521389676], [-76.80180345, 38.558617888], [-76.791921061, 38.595938844], [-76.771061318, 38.603814291], [-76.78585349, 38.629362162], [-76.766328843, 38.642509246], [-76.843007776, 38.701048266], [-76.831931936, 38.732561717], [-76.805147497, 38.750964184], [-76.863305711, 38.839673249], [-76.905931207, 38.859697828], [-76.846343743, 38.924929027], [-76.865406012, 38.991740512], [-76.81088526, 39.005244477], [-76.815415619, 39.033286188], [-76.868979992, 39.058797211], [-76.910147324, 39.106180035], [-76.984574859, 39.121528462], [-77.012948564, 39.149820235], [-77.065667589, 39.141802986], [-77.085946547, 39.172527362], [-77.139797434, 39.203562529], [-77.143138495, 39.254265974], [-77.155574338, 39.275071113], [-77.205394701, 39.28895761], [-77.202920628, 39.326199737], [-77.179979467, 39.350445782], [-77.106828595, 39.334593135], [-77.07911279, 39.352302801]]]}, "properties": {"huc8": "02060006", "name": "Patuxent", "states": "MD", "areasqkm": 2401.1, "dc_states": "MD", "cluster_count": 1, "data_center_count": 1, "clustered_data_center_count": 1}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-77.388343912, 39.965412282], [-77.430366569, 39.913311776], [-77.418075439, 39.863256207], [-77.468307518, 39.77328751], [-77.472743387, 39.715544654], [-77.50849452, 39.684007093], [-77.492776032, 39.676694549], [-77.529285897, 39.632406927], [-77.568291081, 39.62419017], [-77.621692611, 39.509596662], [-77.616287916, 39.468549318], [-77.640010938, 39.416641783], [-77.683962752, 39.410124521], [-77.726752042, 39.321780955], [-77.845534338, 39.320783789], [-77.888398962, 39.346355332], [-78.001081875, 39.194746966], [-77.996172761, 39.159785794], [-78.075477693, 39.13030918], [-78.101673572, 39.08287412], [-78.141501628, 39.062830612], [-78.255427711, 39.108022659], [-78.250081472, 39.141596747], [-78.284841797, 39.172297933], [-78.332872374, 39.151313095], [-78.376695185, 39.187324635], [-78.403629369, 39.167605542], [-78.438246642, 39.197691713], [-78.399843207, 39.244336433], [-78.419129084, 39.257746534], [-78.33929955, 39.34897245], [-78.364868282, 39.361073458], [-78.343501708, 39.388702457], [-78.360076037, 39.409676587], [-78.349926908, 39.461857024], [-78.265845548, 39.608503052], [-78.282953214, 39.633369309], [-78.262482, 39.664714663], [-78.301317294, 39.687460251], [-78.265724123, 39.750385303], [-78.325164747, 39.786162173], [-78.13770299, 39.991611963], [-78.129638642, 40.009052448], [-78.151703751, 40.019524373], [-78.113122907, 40.035891697], [-78.054591004, 40.031681847], [-78.01731113, 40.059328491], [-77.958641097, 40.022267705], [-77.926597925, 40.04895887], [-77.916138618, 40.038724015], [-77.962567345, 39.958778439], [-77.956298868, 39.926949197], [-77.919052296, 40.00384738], [-77.859176539, 40.065089943], [-77.763946416, 40.208253296], [-77.711731158, 40.173611139], [-77.650295279, 40.225675499], [-77.653108503, 40.2108719], [-77.601226791, 40.238487672], [-77.611580005, 40.218450528], [-77.596732926, 40.226126238], [-77.596107458, 40.211808697], [-77.69493845, 40.129671289], [-77.700845033, 40.141464619], [-77.718814773, 40.129912338], [-77.85984788, 40.005171536], [-77.883622486, 39.942585867], [-77.74742149, 40.050271314], [-77.622207628, 39.986014839], [-77.610336419, 39.997881007], [-77.579292246, 39.985460547], [-77.552993879, 40.007334126], [-77.477043088, 39.960757216], [-77.407440049, 40.00187053], [-77.388343912, 39.965412282]]]}, "properties": {"huc8": "02070004", "name": "Conococheague-Opequon", "states": "MD,PA,VA,WV", "areasqkm": 5897.89, "dc_states": "WV", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-78.245462334, 38.957354581], [-78.169577653, 38.945492804], [-78.138721419, 38.895321555], [-78.112198437, 38.886415547], [-78.168520421, 38.833510656], [-78.200773027, 38.776593449], [-78.279296386, 38.762041103], [-78.31899866, 38.737713362], [-78.332285057, 38.705003908], [-78.314259541, 38.682869813], [-78.326164617, 38.63054377], [-78.38332722, 38.58834246], [-78.381033443, 38.561334168], [-78.4428616, 38.527649492], [-78.44146591, 38.490450148], [-78.464983981, 38.447028968], [-78.522663788, 38.369681533], [-78.544622155, 38.362848032], [-78.551474239, 38.336426129], [-78.651999182, 38.29357242], [-78.661882901, 38.25377224], [-78.706582539, 38.2463045], [-78.745196032, 38.213905131], [-78.788162803, 38.126558296], [-78.779977707, 38.082974079], [-78.874372109, 38.027949623], [-78.907091922, 37.987275851], [-78.892606295, 37.974618996], [-78.899028338, 37.948868412], [-78.941770935, 37.940442397], [-79.005148177, 37.881752192], [-79.043675033, 37.891373127], [-79.06261936, 37.917591895], [-79.043926908, 37.93147386], [-79.060311617, 37.945671619], [-79.097962144, 37.953514689], [-79.1424872, 37.93488728], [-79.166852785, 37.95466942], [-79.224261408, 37.964826124], [-79.240386752, 37.986617899], [-79.215531819, 38.024235176], [-79.236285438, 38.032251174], [-79.228598905, 38.046561371], [-79.285531877, 38.036613984], [-79.308141328, 38.054938593], [-79.261420781, 38.104205995], [-79.263054243, 38.148527575], [-79.314582743, 38.169437689], [-79.290207233, 38.190120376], [-79.296383519, 38.21255928], [-79.276660025, 38.242633826], [-79.28790521, 38.274862553], [-79.264688553, 38.312597202], [-79.305129493, 38.348787421], [-79.296558751, 38.360386495], [-79.32291409, 38.403429917], [-79.283049255, 38.418181288], [-79.210478291, 38.493148972], [-79.206187047, 38.52466417], [-79.129991865, 38.655014349], [-79.087466262, 38.659019079], [-79.086100992, 38.629119616], [-79.051877231, 38.611694906], [-79.057660402, 38.583338914], [-79.02714513, 38.576450635], [-79.002511372, 38.542908488], [-78.978617919, 38.533483231], [-78.945128371, 38.568403904], [-78.922019608, 38.556702295], [-78.910720629, 38.535206929], [-78.938010791, 38.494758345], [-78.902779415, 38.463508522], [-78.857175869, 38.484936766], [-78.82177918, 38.422527896], [-78.806364506, 38.440734835], [-78.735347676, 38.444212824], [-78.687185059, 38.498184698], [-78.654614193, 38.591352385], [-78.601857685, 38.66390009], [-78.561290125, 38.675345616], [-78.470172445, 38.752535567], [-78.340983227, 38.87282641], [-78.300244733, 38.943880715], [-78.258043584, 38.941694216], [-78.245462334, 38.957354581]]]}, "properties": {"huc8": "02070005", "name": "South Fork Shenandoah", "states": "VA,WV", "areasqkm": 4330.25, "dc_states": "VA", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-78.376695185, 39.187324635], [-78.332872374, 39.151313095], [-78.286424613, 39.172838773], [-78.250081472, 39.141596747], [-78.251033073, 39.054380021], [-78.274272766, 39.030159176], [-78.252126756, 39.008731729], [-78.258629164, 38.996168271], [-78.188925417, 38.944334698], [-78.246536745, 38.957626442], [-78.258043584, 38.941694216], [-78.300244733, 38.943880715], [-78.340983227, 38.87282641], [-78.470172445, 38.752535567], [-78.561290125, 38.675345616], [-78.601857685, 38.66390009], [-78.654614193, 38.591352385], [-78.687185059, 38.498184698], [-78.728257147, 38.449776142], [-78.807077076, 38.440540505], [-78.82177918, 38.422527896], [-78.856538385, 38.484597491], [-78.899370882, 38.461771186], [-78.937695216, 38.494206018], [-78.910720629, 38.535206929], [-78.922452513, 38.557039046], [-78.945128371, 38.568403904], [-78.978617919, 38.533483231], [-79.011460114, 38.547505972], [-79.02714513, 38.576450635], [-79.057660402, 38.583338914], [-79.058045953, 38.624405494], [-79.086276462, 38.629671892], [-79.093162804, 38.701515535], [-79.054707951, 38.786476001], [-79.027450919, 38.792514], [-78.988866785, 38.857348408], [-78.956323855, 38.857150028], [-78.971315121, 38.832981488], [-78.95970104, 38.824884306], [-78.917357924, 38.846412862], [-78.908086463, 38.824584596], [-78.840889407, 38.803867627], [-78.787572205, 38.885559874], [-78.73920484, 38.92738856], [-78.718183585, 38.935019236], [-78.716790383, 38.904465404], [-78.628650017, 38.981212179], [-78.601914261, 38.964575865], [-78.551430308, 39.017129315], [-78.57052506, 39.033094469], [-78.495044552, 39.101220889], [-78.458143799, 39.114920089], [-78.389439622, 39.183193358], [-78.376695185, 39.187324635]]]}, "properties": {"huc8": "02070006", "name": "North Fork Shenandoah", "states": "VA,WV", "areasqkm": 2677.7, "dc_states": "VA", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-77.205394701, 39.28895761], [-77.155574338, 39.275071113], [-77.143138495, 39.254265974], [-77.138023621, 39.206187595], [-77.1788277, 39.120051599], [-77.1139357, 39.05102617], [-77.127290372, 39.028854562], [-77.110758376, 38.988948556], [-77.073514095, 38.975314147], [-77.089409339, 38.933203232], [-77.168984045, 38.945218543], [-77.228005619, 38.898330504], [-77.278001963, 38.898401357], [-77.344512645, 38.843083026], [-77.36569238, 38.854238067], [-77.383776338, 38.903622653], [-77.409148598, 38.904281857], [-77.44589969, 38.944128492], [-77.58009278, 38.923952671], [-77.643027438, 38.959256745], [-77.680445133, 38.893364687], [-77.742664665, 38.892049362], [-77.772041872, 38.859539089], [-77.8233578, 38.879480042], [-77.869203112, 38.858514626], [-77.895143209, 38.871508933], [-77.9278873, 38.854727933], [-77.944571402, 38.867686279], [-77.952302936, 38.840410149], [-77.996081395, 38.888531903], [-78.055782829, 38.88594297], [-78.075560909, 38.907579948], [-77.989199659, 38.997335669], [-77.862535492, 39.080982822], [-77.684313602, 39.409658774], [-77.640010938, 39.416641783], [-77.616287916, 39.468549318], [-77.621692611, 39.509596662], [-77.568616979, 39.623668113], [-77.513602649, 39.650138045], [-77.492450465, 39.477817162], [-77.514401829, 39.37434294], [-77.463942978, 39.355161733], [-77.473490984, 39.262805619], [-77.455934455, 39.256169295], [-77.454380608, 39.221939445], [-77.417882226, 39.226421819], [-77.38275713, 39.264126166], [-77.330167222, 39.240296186], [-77.246945685, 39.247176568], [-77.205394701, 39.28895761]]]}, "properties": {"huc8": "02070008", "name": "Middle Potomac-Catoctin", "states": "DC,MD,VA,WV", "areasqkm": 3206.87, "dc_states": "MD, VA", "cluster_count": 1, "data_center_count": 235, "clustered_data_center_count": 234}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-76.919227778, 39.703774506], [-76.885517104, 39.657282445], [-76.920510563, 39.630201666], [-76.967538122, 39.628857242], [-77.003213407, 39.609663099], [-76.992400762, 39.546725375], [-77.025696686, 39.524048697], [-77.037764109, 39.539243772], [-77.059157845, 39.514995933], [-77.078675135, 39.487848062], [-77.075938242, 39.461045514], [-77.200672977, 39.330866798], [-77.197407134, 39.301754874], [-77.228013278, 39.253428434], [-77.330167222, 39.240296186], [-77.38275713, 39.264126166], [-77.417882226, 39.226421819], [-77.454380608, 39.221939445], [-77.455934455, 39.256169295], [-77.473490984, 39.262805619], [-77.463942978, 39.355161733], [-77.514401829, 39.37434294], [-77.492450465, 39.477817162], [-77.511382827, 39.578545584], [-77.501085882, 39.612839305], [-77.516700686, 39.620452709], [-77.492517477, 39.67722449], [-77.50849452, 39.684007093], [-77.472743387, 39.715544654], [-77.468307518, 39.77328751], [-77.418075439, 39.863256207], [-77.422218312, 39.898676889], [-77.327844388, 39.926085548], [-77.280232144, 39.89689474], [-77.244270324, 39.898119539], [-77.24137129, 39.883140052], [-77.185666041, 39.921089754], [-77.183935017, 39.889992857], [-77.143310643, 39.853544561], [-77.119941586, 39.795997043], [-77.083010643, 39.780972848], [-77.087898372, 39.769915981], [-77.051650821, 39.749666016], [-77.052573985, 39.734370185], [-76.965155721, 39.699921408], [-76.919227778, 39.703774506]]]}, "properties": {"huc8": "02070009", "name": "Monocacy", "states": "MD,PA", "areasqkm": 2511.12, "dc_states": "MD", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-77.149311093, 39.196787693], [-77.085946547, 39.172527362], [-77.065667589, 39.141802986], [-77.012948564, 39.149820235], [-76.984574859, 39.121528462], [-76.910147324, 39.106180035], [-76.868680542, 39.058573152], [-76.821097138, 39.045041271], [-76.810574431, 39.005516313], [-76.865406012, 38.991740512], [-76.846343743, 38.924929027], [-76.905931207, 38.859697828], [-76.863305711, 38.839673249], [-76.805147497, 38.750964184], [-76.836880032, 38.716596382], [-76.860524967, 38.711206251], [-76.877186095, 38.682649446], [-76.938444136, 38.689939555], [-76.945300873, 38.673413459], [-77.02787605, 38.669835746], [-77.054908846, 38.635182865], [-77.184203924, 38.594994262], [-77.21019687, 38.5677095], [-77.378940774, 38.636377513], [-77.404310075, 38.663420467], [-77.440320161, 38.658435336], [-77.480824585, 38.600991642], [-77.527787638, 38.570109381], [-77.52639516, 38.556160522], [-77.609598739, 38.513200039], [-77.641909528, 38.534905134], [-77.668424818, 38.526834449], [-77.694626746, 38.55055128], [-77.698699969, 38.586770842], [-77.738154157, 38.61446378], [-77.809117865, 38.622487837], [-77.809952788, 38.704151106], [-77.795300698, 38.71375971], [-77.83576418, 38.733694851], [-77.830790035, 38.763018921], [-77.846188789, 38.786451321], [-77.844757589, 38.807644189], [-77.812480496, 38.830458314], [-77.851932129, 38.867118282], [-77.8233578, 38.879480042], [-77.772041872, 38.859539089], [-77.742664665, 38.892049362], [-77.680445133, 38.893364687], [-77.643594134, 38.959068219], [-77.58009278, 38.923952671], [-77.438252687, 38.941500094], [-77.417728034, 38.910050852], [-77.381372255, 38.901221067], [-77.36569238, 38.854238067], [-77.344512645, 38.843083026], [-77.278001963, 38.898401357], [-77.228005619, 38.898330504], [-77.168984045, 38.945218543], [-77.087443445, 38.934081019], [-77.073514095, 38.975314147], [-77.110758376, 38.988948556], [-77.127290372, 39.028854562], [-77.1139357, 39.05102617], [-77.1788277, 39.120051599], [-77.149311093, 39.196787693]]]}, "properties": {"huc8": "02070010", "name": "Middle Potomac-Anacostia-Occoquan", "states": "DC,MD,VA", "areasqkm": 3374.3, "dc_states": "DC, MD, VA", "cluster_count": 1, "data_center_count": 111, "clustered_data_center_count": 111}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-76.854875574, 38.714900802], [-76.766328843, 38.642509246], [-76.78585349, 38.629362162], [-76.771061318, 38.603814291], [-76.791921061, 38.595938844], [-76.80180345, 38.558617888], [-76.772862911, 38.521389676], [-76.775729516, 38.470061975], [-76.715286404, 38.418795628], [-76.679825384, 38.416042974], [-76.588485195, 38.368527781], [-76.53275991, 38.308183135], [-76.411355339, 38.237320907], [-76.362148259, 38.14376511], [-76.367182361, 38.09477757], [-76.326888726, 38.062333698], [-76.321154743, 38.035286593], [-76.202129308, 37.891729568], [-76.241231687, 37.890023909], [-76.309937568, 37.923742267], [-76.366763588, 37.888065991], [-76.419547352, 37.89109458], [-76.445222679, 37.919734327], [-76.485539006, 37.922261081], [-76.504081214, 37.890956609], [-76.542922077, 37.90227333], [-76.556373225, 37.931754897], [-76.605535801, 37.949050884], [-76.66183313, 38.00807234], [-76.693204164, 37.988461152], [-76.72755599, 37.997969341], [-76.799923189, 38.09291891], [-76.801495321, 38.109129486], [-76.783385234, 38.118399513], [-76.809812544, 38.154087161], [-76.981493317, 38.134649076], [-77.231492917, 38.294224623], [-77.372938729, 38.30553125], [-77.367611374, 38.321655256], [-77.435068545, 38.331924162], [-77.464049543, 38.367558475], [-77.532028088, 38.382071275], [-77.53951957, 38.411115846], [-77.572027891, 38.40096401], [-77.575317731, 38.429057472], [-77.592331243, 38.430421127], [-77.579010842, 38.487307535], [-77.601718109, 38.49403115], [-77.608402863, 38.518258709], [-77.52639516, 38.556160522], [-77.527787638, 38.570109381], [-77.480824585, 38.600991642], [-77.440320161, 38.658435336], [-77.404310075, 38.663420467], [-77.378940774, 38.636377513], [-77.21019687, 38.5677095], [-77.184203924, 38.594994262], [-77.054908846, 38.635182865], [-77.027383127, 38.670011572], [-76.945300873, 38.673413459], [-76.938444136, 38.689939555], [-76.877186095, 38.682649446], [-76.854875574, 38.714900802]]]}, "properties": {"huc8": "02070011", "name": "Lower Potomac", "states": "MD,VA", "areasqkm": 4677.15, "dc_states": "VA", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-78.02382406, 38.895482574], [-77.96579644, 38.86836032], [-77.952302936, 38.840410149], [-77.944571402, 38.867686279], [-77.927573481, 38.854735806], [-77.894572597, 38.871500571], [-77.849841559, 38.86504323], [-77.812549017, 38.830744956], [-77.844757589, 38.807644189], [-77.846188789, 38.786451321], [-77.830790035, 38.763018921], [-77.83576418, 38.733694851], [-77.795300698, 38.71375971], [-77.809952788, 38.704151106], [-77.801534839, 38.648639432], [-77.815571574, 38.63350421], [-77.793161763, 38.611712005], [-77.738154157, 38.61446378], [-77.698699969, 38.586770842], [-77.694626746, 38.55055128], [-77.668424818, 38.526834449], [-77.641909528, 38.534905134], [-77.579546741, 38.487899402], [-77.592331243, 38.430421127], [-77.575317731, 38.429057472], [-77.569769445, 38.405924111], [-77.613374864, 38.377744501], [-77.650145031, 38.310599829], [-77.696465161, 38.322103744], [-77.754459661, 38.27601648], [-77.790409808, 38.292623169], [-77.843832153, 38.241073686], [-77.904986925, 38.272802736], [-78.047642604, 38.245697863], [-78.083675729, 38.268765341], [-78.157313572, 38.21359603], [-78.168128869, 38.178073631], [-78.192976753, 38.16304358], [-78.223404984, 38.17094117], [-78.305297789, 38.122238691], [-78.309855448, 38.149718221], [-78.290936325, 38.163065785], [-78.301666895, 38.196223465], [-78.388279891, 38.23795839], [-78.43429585, 38.308084698], [-78.497382075, 38.336837965], [-78.50321347, 38.364770032], [-78.526422465, 38.372487086], [-78.441600856, 38.490162411], [-78.4428616, 38.527649492], [-78.381033443, 38.561334168], [-78.38332722, 38.58834246], [-78.324145441, 38.63360555], [-78.314259541, 38.682869813], [-78.332285057, 38.705003908], [-78.318804688, 38.737921564], [-78.279296386, 38.762041103], [-78.200773027, 38.776593449], [-78.168520421, 38.833510656], [-78.111880348, 38.886802391], [-78.02382406, 38.895482574]]]}, "properties": {"huc8": "02080103", "name": "Rapidan-Upper Rappahannock", "states": "VA", "areasqkm": 4032.08, "dc_states": "VA", "cluster_count": 1, "data_center_count": 2, "clustered_data_center_count": 1}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-78.163977564, 37.75061435], [-78.178905962, 37.727839763], [-78.16998715, 37.713099785], [-78.200559613, 37.701214996], [-78.193286018, 37.686098757], [-78.287752692, 37.657739595], [-78.330878329, 37.623799749], [-78.375091527, 37.62038009], [-78.446620901, 37.544953154], [-78.474937558, 37.543038884], [-78.570206585, 37.466540421], [-78.649375995, 37.433426948], [-78.678608085, 37.458291102], [-78.71337656, 37.45739512], [-78.726867724, 37.426047871], [-78.787463794, 37.403085135], [-78.812696233, 37.414222867], [-78.845513464, 37.384077983], [-78.833109675, 37.362996116], [-79.040966913, 37.327745287], [-79.091279506, 37.279760428], [-79.136500591, 37.264092854], [-79.16890685, 37.281142547], [-79.151140565, 37.329671342], [-79.177161097, 37.341061881], [-79.227733982, 37.326360679], [-79.282135794, 37.342584326], [-79.28328696, 37.35986566], [-79.343936188, 37.4126976], [-79.336605896, 37.441919873], [-79.353629425, 37.482840637], [-79.395661391, 37.466327414], [-79.505438134, 37.523910542], [-79.433988409, 37.572099909], [-79.457260924, 37.599267781], [-79.445026537, 37.623951629], [-79.401688589, 37.625948793], [-79.345111253, 37.660862497], [-79.264913952, 37.79428571], [-79.230986606, 37.81321979], [-79.208840726, 37.788907551], [-79.170687306, 37.800486515], [-79.144204819, 37.856138681], [-79.15047788, 37.891018723], [-79.06261936, 37.917591895], [-79.043675033, 37.891373127], [-79.005148177, 37.881752192], [-78.941770935, 37.940442397], [-78.899028338, 37.948868412], [-78.892606295, 37.974618996], [-78.907091922, 37.987275851], [-78.840589491, 38.046506504], [-78.801716525, 38.018700321], [-78.810321989, 37.97463061], [-78.748773542, 37.944454896], [-78.713521515, 37.947361622], [-78.669250964, 38.001806231], [-78.605277138, 38.01101067], [-78.594157475, 37.98410287], [-78.573171376, 37.986286634], [-78.576317267, 37.960261647], [-78.539370854, 37.946997589], [-78.509123978, 37.962226534], [-78.499222894, 37.914252099], [-78.473506187, 37.89754386], [-78.429997904, 37.897121467], [-78.419718253, 37.843227453], [-78.362756401, 37.8040827], [-78.324592014, 37.805203594], [-78.318489718, 37.778536694], [-78.284959348, 37.755712737], [-78.232385848, 37.782710175], [-78.163977564, 37.75061435]]]}, "properties": {"huc8": "02080203", "name": "Middle James-Buffalo", "states": "VA", "areasqkm": 5240.27, "dc_states": "VA", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-76.841947334, 37.488809763], [-76.8077484, 37.377409457], [-76.773490939, 37.378685346], [-76.757819533, 37.343370361], [-76.733607858, 37.331699731], [-76.714152884, 37.274489127], [-76.667984222, 37.265619222], [-76.627386501, 37.231931692], [-76.604983763, 37.242178854], [-76.560855098, 37.226287692], [-76.521033241, 37.231638929], [-76.497795597, 37.205969762], [-76.508103249, 37.14384046], [-76.499816911, 37.121320366], [-76.484281169, 37.128673902], [-76.487801218, 37.095126646], [-76.472680149, 37.093229442], [-76.469073028, 37.072247523], [-76.433402138, 37.067374345], [-76.447391271, 37.012769026], [-76.412510383, 36.962606296], [-76.498701401, 36.910943804], [-76.522015175, 36.877039696], [-76.594634026, 36.847513087], [-76.628450068, 36.88235011], [-76.689703498, 36.905822058], [-76.710786659, 36.962144212], [-76.6911905, 36.983995242], [-76.709366352, 36.997184276], [-76.713327576, 37.044024322], [-76.751216585, 37.067903595], [-76.784767734, 37.116944065], [-76.820015147, 37.112711815], [-76.822781338, 37.136515247], [-76.868689219, 37.126183606], [-76.879136317, 37.149265723], [-76.919548644, 37.163560271], [-76.920723099, 37.184775356], [-76.952134401, 37.17387324], [-76.976631571, 37.198619241], [-76.982284092, 37.156731465], [-77.051715496, 37.123227879], [-77.094107735, 37.157578204], [-77.127323851, 37.147903712], [-77.16022555, 37.169966919], [-77.175826273, 37.161908528], [-77.191937179, 37.205264557], [-77.240121436, 37.228113018], [-77.240671913, 37.24541926], [-77.276103751, 37.246306559], [-77.294413608, 37.223255213], [-77.314335145, 37.232367487], [-77.347621955, 37.215768612], [-77.313996785, 37.297399273], [-77.275951215, 37.31044117], [-77.295401179, 37.342990387], [-77.316961809, 37.346949849], [-77.319608403, 37.366859199], [-77.347608861, 37.368723027], [-77.353033916, 37.350567133], [-77.402100363, 37.341324374], [-77.404498081, 37.354717178], [-77.436316411, 37.3601573], [-77.493517512, 37.352637891], [-77.529452879, 37.404634671], [-77.561696157, 37.403794917], [-77.641510289, 37.454160886], [-77.660064967, 37.482123274], [-77.657109238, 37.53453159], [-77.552266221, 37.49306831], [-77.480222494, 37.499681428], [-77.428535901, 37.529692177], [-77.447389554, 37.548820604], [-77.503768415, 37.553838418], [-77.534807992, 37.597370966], [-77.56071489, 37.602947715], [-77.546758362, 37.635544509], [-77.567974006, 37.657240534], [-77.614642223, 37.651828172], [-77.632516758, 37.710490335], [-77.577959109, 37.724809837], [-77.57317616, 37.738385919], [-77.54548533, 37.735358219], [-77.491426909, 37.769753488], [-77.48416257, 37.753261185], [-77.456298278, 37.747566923], [-77.436171058, 37.719718677], [-77.440590133, 37.692199038], [-77.385789613, 37.631506248], [-77.296330808, 37.639646998], [-77.302291327, 37.607724156], [-77.249265083, 37.590392365], [-77.197729534, 37.546948588], [-77.089510315, 37.517973343], [-77.0529399, 37.54094935], [-76.994601201, 37.514484745], [-76.956638545, 37.516428998], [-76.940933729, 37.499720197], [-76.876711769, 37.503272781], [-76.841947334, 37.488809763]]]}, "properties": {"huc8": "02080206", "name": "Lower James", "states": "VA", "areasqkm": 3733.47, "dc_states": "VA", "cluster_count": 1, "data_center_count": 24, "clustered_data_center_count": 24}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-77.656895058, 37.500523337], [-77.641510289, 37.454160886], [-77.553511799, 37.399560366], [-77.529452879, 37.404634671], [-77.494274123, 37.352950618], [-77.436316411, 37.3601573], [-77.404498081, 37.354717178], [-77.402100363, 37.341324374], [-77.322180807, 37.367437998], [-77.275951215, 37.31044117], [-77.313996785, 37.297399273], [-77.320237686, 37.260729883], [-77.347789085, 37.240813819], [-77.345632353, 37.21746731], [-77.392719775, 37.202429704], [-77.400559337, 37.179423103], [-77.513832986, 37.177195016], [-77.528887454, 37.195796829], [-77.585217639, 37.212232517], [-77.619838286, 37.195798946], [-77.623416777, 37.177101303], [-77.718201214, 37.162031743], [-77.753641877, 37.141494866], [-77.91180794, 37.132921724], [-78.006741162, 37.076986726], [-78.146858897, 37.194459291], [-78.168589905, 37.202172739], [-78.184090782, 37.184640574], [-78.236345211, 37.196124292], [-78.2546946, 37.16283299], [-78.314461203, 37.139567547], [-78.324651174, 37.103076713], [-78.447994976, 37.07811835], [-78.487831623, 37.089029293], [-78.528554392, 37.141969152], [-78.55305292, 37.151734736], [-78.583809008, 37.140140873], [-78.63591474, 37.170554824], [-78.639279702, 37.192318644], [-78.684212956, 37.195283513], [-78.687220807, 37.279808549], [-78.727558442, 37.284959605], [-78.782625157, 37.329616055], [-78.817876124, 37.333389874], [-78.845759701, 37.382932627], [-78.812696233, 37.414222867], [-78.78520734, 37.403656225], [-78.726867724, 37.426047871], [-78.717860312, 37.455074625], [-78.681441528, 37.458876347], [-78.661255589, 37.436763133], [-78.608928737, 37.418469463], [-78.592614329, 37.430232615], [-78.444296348, 37.362905214], [-78.418504224, 37.376241922], [-78.371475494, 37.365647945], [-78.372560867, 37.395063984], [-78.351608954, 37.422758369], [-78.280335317, 37.462231394], [-78.27947682, 37.479016732], [-78.236984918, 37.508721305], [-78.116697258, 37.476746785], [-78.046941173, 37.494280637], [-78.014160042, 37.522099556], [-77.97117183, 37.513867491], [-77.939598641, 37.552457914], [-77.90798424, 37.528786948], [-77.886629085, 37.539184893], [-77.795893551, 37.524367938], [-77.785134675, 37.50783753], [-77.748615905, 37.518817903], [-77.72330006, 37.50296229], [-77.705459399, 37.515475814], [-77.656895058, 37.500523337]]]}, "properties": {"huc8": "02080207", "name": "Appomattox", "states": "VA", "areasqkm": 4170.68, "dc_states": "VA", "cluster_count": 1, "data_center_count": 4, "clustered_data_center_count": 4}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-77.786635736, 36.525581545], [-77.678596555, 36.511204924], [-77.672386173, 36.471034363], [-77.738773111, 36.46050243], [-77.791398109, 36.39441674], [-77.89459661, 36.426116678], [-77.904827548, 36.442143614], [-77.932263985, 36.429694116], [-77.945713546, 36.442924554], [-77.993271048, 36.419827304], [-78.063894488, 36.448491365], [-78.132152679, 36.435378053], [-78.181794362, 36.450330064], [-78.266465111, 36.418845053], [-78.292438366, 36.426606052], [-78.312281795, 36.482921239], [-78.291145926, 36.529493241], [-78.25834176, 36.548527627], [-78.293033123, 36.596290099], [-78.336413579, 36.59046512], [-78.360614555, 36.607451069], [-78.359266371, 36.644522826], [-78.41201711, 36.658573068], [-78.428636067, 36.699295328], [-78.409396487, 36.783539667], [-78.436421187, 36.807503614], [-78.410702615, 36.823005987], [-78.272113357, 36.772147178], [-78.189589295, 36.773324505], [-78.095412695, 36.699405515], [-78.094425507, 36.682776748], [-77.988379997, 36.665666306], [-77.951500632, 36.61348321], [-77.861193771, 36.606033212], [-77.830644548, 36.589809281], [-77.814464018, 36.563126483], [-77.821619456, 36.546534785], [-77.786635736, 36.525581545]]]}, "properties": {"huc8": "03010106", "name": "Roanoke Rapids", "states": "NC,VA", "areasqkm": 1532.88, "dc_states": "VA", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-78.870289044, 36.37727499], [-78.837953861, 36.324282675], [-78.859552676, 36.286854929], [-78.830786989, 36.255171303], [-78.782867301, 36.285142618], [-78.745249611, 36.227691988], [-78.681924366, 36.206219734], [-78.682200734, 36.185987925], [-78.641676049, 36.164278984], [-78.577761053, 36.144531425], [-78.574448856, 36.114087051], [-78.55096886, 36.10610855], [-78.540457426, 36.070614302], [-78.515301795, 36.066921363], [-78.501889859, 36.038545491], [-78.383070364, 35.980775364], [-78.3576958, 35.949233241], [-78.348418549, 35.887840303], [-78.330946863, 35.879507804], [-78.339541173, 35.855614241], [-78.314180239, 35.808026552], [-78.265342108, 35.794592989], [-78.274236236, 35.763644552], [-78.254248422, 35.74217318], [-78.253045489, 35.694096114], [-78.233335678, 35.706147484], [-78.219110174, 35.686009802], [-78.198680677, 35.691233863], [-78.153385797, 35.637816488], [-78.088258238, 35.643008548], [-78.090791673, 35.561507235], [-78.127520549, 35.504961553], [-78.04834686, 35.495493799], [-78.041503483, 35.509304174], [-77.983370677, 35.484584804], [-77.995725358, 35.431319365], [-77.978220675, 35.427008865], [-77.99283986, 35.414367364], [-77.972031428, 35.391857612], [-78.0059863, 35.344619363], [-77.974706173, 35.275220112], [-78.016490986, 35.273213301], [-78.013291858, 35.221188987], [-78.052599987, 35.221470364], [-78.073537549, 35.179890926], [-78.093715674, 35.173857738], [-78.114335107, 35.2018398], [-78.15755154, 35.202461926], [-78.171182238, 35.223340361], [-78.22132542, 35.211860864], [-78.244117923, 35.221520864], [-78.331166864, 35.284936303], [-78.398686736, 35.24667055], [-78.507652673, 35.270786678], [-78.528993111, 35.300574367], [-78.493942627, 35.347758915], [-78.510155108, 35.368995612], [-78.546735857, 35.36216424], [-78.566149303, 35.433341927], [-78.610139734, 35.434674614], [-78.662226111, 35.497701863], [-78.757201483, 35.54475337], [-78.774038551, 35.590943427], [-78.842043487, 35.603744925], [-78.852083485, 35.629442427], [-78.829593802, 35.671857554], [-78.852869486, 35.725544927], [-78.840944112, 35.766754925], [-78.872680863, 35.817846242], [-78.841933051, 35.842100618], [-78.856509363, 35.876959177], [-78.837821048, 35.950312678], [-78.962863361, 36.027031742], [-79.077741175, 36.009713178], [-79.084986111, 36.028962242], [-79.132376549, 36.016204616], [-79.17013861, 36.037208118], [-79.200019863, 36.027106676], [-79.219904298, 36.044866928], [-79.228664365, 36.070717674], [-79.201217171, 36.112599177], [-79.204573927, 36.218711924], [-79.128205987, 36.226633925], [-79.120182485, 36.289522928], [-79.051468359, 36.328470054], [-79.006253863, 36.398676055], [-78.978813923, 36.374339866], [-78.93755404, 36.393556369], [-78.917599549, 36.36917074], [-78.870289044, 36.37727499]]]}, "properties": {"huc8": "03020201", "name": "Upper Neuse", "states": "NC", "areasqkm": 6231.89, "dc_states": "NC", "cluster_count": 1, "data_center_count": 6, "clustered_data_center_count": 5}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-79.66274049, 36.358840365], [-79.598165233, 36.283182802], [-79.565342672, 36.299748177], [-79.521061173, 36.279261427], [-79.399099488, 36.320007363], [-79.345675861, 36.266488491], [-79.303736489, 36.268850429], [-79.283543111, 36.236634303], [-79.2408593, 36.238153426], [-79.204573927, 36.218711924], [-79.201217171, 36.112599177], [-79.228664365, 36.070717674], [-79.200019863, 36.027106676], [-79.17013861, 36.037208118], [-79.131578549, 36.016115928], [-79.090069612, 36.030023241], [-79.077741175, 36.009713178], [-78.962863361, 36.027031742], [-78.870264988, 35.977984301], [-78.837154802, 35.945877679], [-78.852824985, 35.930813798], [-78.856509363, 35.876959177], [-78.841933051, 35.842100618], [-78.872660049, 35.818100366], [-78.840944112, 35.766754925], [-78.85559361, 35.722189303], [-78.981729986, 35.664264051], [-78.993391988, 35.644042111], [-78.984482236, 35.617942552], [-79.039714988, 35.585923675], [-79.083552423, 35.638484738], [-79.146998424, 35.65529324], [-79.154155798, 35.676441924], [-79.212049048, 35.683573553], [-79.247707546, 35.77572599], [-79.3509658, 35.74156299], [-79.378445357, 35.80293705], [-79.39874536, 35.794406051], [-79.417792113, 35.810608424], [-79.403001362, 35.837905613], [-79.467563111, 35.839617239], [-79.48732949, 35.858064366], [-79.483225739, 35.874394052], [-79.533234048, 35.890881926], [-79.561747993, 35.870415554], [-79.590521921, 35.895764617], [-79.672689552, 35.914238679], [-79.699204678, 35.899064304], [-79.760175989, 35.94969924], [-79.780791615, 35.991120866], [-79.831407484, 35.993500301], [-79.970047423, 36.118419301], [-79.998770799, 36.102663491], [-80.073335244, 36.125388865], [-80.044811673, 36.14515355], [-80.046781798, 36.174554553], [-79.991473487, 36.212558925], [-79.979334059, 36.237216615], [-79.996078051, 36.247074677], [-79.883224611, 36.283011491], [-79.822564301, 36.324245805], [-79.7815008, 36.319974805], [-79.729492424, 36.371870056], [-79.700845116, 36.347810988], [-79.66274049, 36.358840365]]]}, "properties": {"huc8": "03030002", "name": "Haw", "states": "NC", "areasqkm": 4422.63, "dc_states": "NC", "cluster_count": 1, "data_center_count": 3, "clustered_data_center_count": 3}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-79.052760802, 35.596505987], [-79.112535113, 35.615155674], [-79.150824547, 35.590836051], [-79.179320988, 35.552022302], [-79.161018988, 35.530608676], [-79.167729046, 35.489934177], [-79.140868364, 35.461221866], [-79.21739236, 35.438797988], [-79.239435676, 35.388810364], [-79.270102173, 35.389495549], [-79.3082553, 35.362828114], [-79.356771676, 35.365206052], [-79.36467705, 35.342961985], [-79.407806361, 35.341240057], [-79.419871049, 35.311767299], [-79.467263419, 35.320297676], [-79.484805669, 35.288682553], [-79.58203161, 35.267093738], [-79.676637861, 35.303784861], [-79.743957612, 35.291411613], [-79.778688178, 35.341665861], [-79.788072799, 35.38942649], [-79.774017424, 35.576450679], [-79.82739105, 35.634786926], [-79.811869424, 35.689766613], [-79.830227301, 35.723688492], [-79.812181489, 35.79573361], [-79.895196115, 35.840419928], [-79.919104924, 35.881736867], [-79.966008863, 35.88695268], [-80.022611487, 35.928816862], [-80.006764236, 35.957827426], [-80.043850051, 36.013834176], [-80.039315305, 36.029829806], [-80.067221613, 36.051587553], [-80.065772049, 36.116265803], [-79.99328855, 36.102520674], [-79.970047423, 36.118419301], [-79.831407484, 35.993500301], [-79.780791615, 35.991120866], [-79.760175989, 35.94969924], [-79.699204678, 35.899064304], [-79.672689552, 35.914238679], [-79.590521921, 35.895764617], [-79.561747993, 35.870415554], [-79.533234048, 35.890881926], [-79.483225739, 35.874394052], [-79.48732949, 35.858064366], [-79.467563111, 35.839617239], [-79.403001362, 35.837905613], [-79.417792113, 35.810608424], [-79.39874536, 35.794406051], [-79.378445357, 35.80293705], [-79.3509658, 35.74156299], [-79.247707546, 35.77572599], [-79.212049048, 35.683573553], [-79.154155798, 35.676441924], [-79.146998424, 35.65529324], [-79.083552423, 35.638484738], [-79.052760802, 35.596505987]]]}, "properties": {"huc8": "03030003", "name": "Deep", "states": "NC", "areasqkm": 3755.81, "dc_states": "NC", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-80.656167675, 35.573773612], [-80.615516676, 35.544195424], [-80.554766487, 35.584192549], [-80.410812236, 35.488023427], [-80.354783239, 35.533211176], [-80.227778799, 35.439269679], [-80.202340988, 35.448692801], [-80.162725612, 35.356797862], [-80.189291179, 35.276639549], [-80.170845927, 35.266384175], [-80.16420661, 35.229923361], [-80.11658986, 35.224839614], [-80.066537239, 35.162610988], [-80.076988922, 35.142975803], [-80.139027861, 35.149275491], [-80.197418614, 35.028782113], [-80.265508231, 34.991709862], [-80.329118925, 34.913203114], [-80.335947552, 34.874617735], [-80.381355302, 34.862137363], [-80.404700486, 34.8320878], [-80.400533925, 34.81601955], [-80.466157194, 34.807026711], [-80.516454421, 34.840000112], [-80.526473494, 34.88083636], [-80.599358612, 34.874482677], [-80.63956986, 34.905613116], [-80.62137261, 35.029206362], [-80.697419176, 35.08603005], [-80.679664554, 35.152096427], [-80.647476861, 35.180940109], [-80.674673673, 35.213272863], [-80.725704234, 35.22334893], [-80.731808046, 35.262074552], [-80.766610734, 35.263957671], [-80.766673112, 35.278445425], [-80.78701886, 35.277588111], [-80.833745925, 35.31450205], [-80.815899926, 35.365913299], [-80.83305448, 35.372085364], [-80.8423863, 35.458994801], [-80.858655863, 35.482581239], [-80.8370028, 35.513246549], [-80.845903552, 35.550849616], [-80.777599927, 35.598968678], [-80.656167675, 35.573773612]]]}, "properties": {"huc8": "03040105", "name": "Rocky", "states": "NC,SC", "areasqkm": 3670.86, "dc_states": "NC", "cluster_count": 1, "data_center_count": 3, "clustered_data_center_count": 3}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-78.208898551, 34.120270488], [-78.285583104, 34.085186611], [-78.334821672, 34.086690111], [-78.366762923, 34.066956798], [-78.353294733, 34.038050057], [-78.372224799, 34.012614299], [-78.401742737, 34.02259842], [-78.402330489, 34.004395551], [-78.440326605, 33.979952359], [-78.510254676, 33.970894111], [-78.527838108, 33.943102862], [-78.508827735, 33.913508485], [-78.56922211, 33.890798359], [-78.614748442, 33.902878757], [-78.661396527, 33.892951961], [-78.672497415, 33.882631327], [-78.659984939, 33.85729977], [-78.741348588, 33.846679683], [-78.804317319, 33.802955682], [-78.874366814, 33.791588898], [-78.869232261, 33.771843578], [-78.908610279, 33.739017183], [-78.909281426, 33.690848375], [-78.937932038, 33.662684943], [-78.978545868, 33.654803181], [-78.988886291, 33.609620059], [-79.059506351, 33.552672739], [-79.124650264, 33.448007012], [-79.198888565, 33.404446328], [-79.232317025, 33.346534038], [-79.213057453, 33.337064082], [-79.271943147, 33.347246641], [-79.140524114, 33.503932948], [-79.118515545, 33.558430875], [-79.120529139, 33.647927399], [-79.104209149, 33.665807838], [-79.117049599, 33.713537628], [-79.091977948, 33.723283823], [-79.142143422, 33.749539042], [-79.092946702, 33.816087121], [-79.148605313, 33.863174195], [-79.078807795, 33.925232436], [-79.094426418, 33.941173996], [-79.059634441, 33.994937594], [-79.064471298, 34.009229089], [-78.855802947, 34.028022254], [-78.856512421, 34.047034617], [-78.913957292, 34.084833379], [-78.902215058, 34.104097839], [-78.856215113, 34.088101621], [-78.842593738, 34.116321614], [-78.882094407, 34.126507665], [-78.896432483, 34.191760673], [-78.885607177, 34.217165674], [-78.926027113, 34.236896484], [-78.905830485, 34.246774985], [-78.865894362, 34.235833674], [-78.8507863, 34.255015488], [-78.871179992, 34.264002859], [-78.864057613, 34.276267738], [-78.826003674, 34.273990174], [-78.831798484, 34.326253423], [-78.797647861, 34.367106426], [-78.830599051, 34.362846858], [-78.821887487, 34.37065405], [-78.845535862, 34.410270364], [-78.822453114, 34.421523176], [-78.833182548, 34.43009905], [-78.817806362, 34.432583177], [-78.808646854, 34.459676111], [-78.778540674, 34.463594051], [-78.780746794, 34.5195078], [-78.702739177, 34.546879423], [-78.712186427, 34.573502485], [-78.642855051, 34.583717611], [-78.608793861, 34.555155551], [-78.582454423, 34.563584052], [-78.566592984, 34.532752803], [-78.483941739, 34.518021925], [-78.467474608, 34.496318676], [-78.493161802, 34.484377051], [-78.472926859, 34.469700549], [-78.482406675, 34.457536736], [-78.461372234, 34.429316304], [-78.363252486, 34.382219298], [-78.389207427, 34.334839235], [-78.353289299, 34.315947802], [-78.363612047, 34.235487798], [-78.292606546, 34.201320299], [-78.242226113, 34.204064239], [-78.245031357, 34.136317737], [-78.208898551, 34.120270488]]]}, "properties": {"huc8": "03040206", "name": "Waccamaw", "states": "NC,SC", "areasqkm": 4277.14, "dc_states": "SC", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-81.694795304, 36.148085924], [-81.622684802, 36.075668987], [-81.619448738, 36.036859989], [-81.575048923, 35.960446426], [-81.476717673, 35.998301236], [-81.45918586, 35.988029113], [-81.47263268, 35.973947359], [-81.424550427, 35.986965489], [-81.418618926, 35.968296116], [-81.392028428, 35.961300554], [-81.268426865, 36.025027361], [-81.176213174, 36.031466175], [-81.148323546, 35.976022368], [-81.163828113, 35.921849177], [-81.122389799, 35.911784053], [-81.118209046, 35.882165741], [-81.080211994, 35.873319926], [-81.059609109, 35.827722365], [-81.003046053, 35.785993738], [-81.002919424, 35.771358992], [-80.892032987, 35.713468866], [-80.824269487, 35.633416862], [-80.830371736, 35.618467928], [-80.80252124, 35.587674112], [-80.846103429, 35.550544992], [-80.8370028, 35.513246549], [-80.858655863, 35.482581239], [-80.8423863, 35.458994801], [-80.83305448, 35.372085364], [-80.815941426, 35.366289048], [-80.827848237, 35.319308988], [-80.884844798, 35.297563303], [-80.89814005, 35.251416615], [-80.960957861, 35.224439489], [-80.955886614, 35.182650181], [-80.97663255, 35.132443554], [-81.010450617, 35.120650366], [-80.990398999, 35.059755084], [-81.017926958, 35.007198509], [-81.097362784, 35.014027562], [-81.134318706, 34.994722035], [-81.160309997, 34.999449458], [-81.181872218, 35.03369647], [-81.26571214, 35.047590878], [-81.32670748, 35.157785919], [-81.311554488, 35.20489424], [-81.334040363, 35.219254236], [-81.33703849, 35.266557928], [-81.266011613, 35.287402049], [-81.207062435, 35.260941489], [-81.1614958, 35.269091113], [-81.105542739, 35.22288199], [-81.084472552, 35.224166927], [-81.033706799, 35.148833179], [-81.010019295, 35.190330985], [-81.039917244, 35.227843176], [-81.045520865, 35.268853178], [-81.080653611, 35.298548863], [-81.121873426, 35.419779426], [-81.145379863, 35.4237333], [-81.171534805, 35.468426361], [-81.209932796, 35.490632427], [-81.182368868, 35.545062739], [-81.120023924, 35.592086179], [-81.117533304, 35.61854049], [-81.165541299, 35.637005114], [-81.165661038, 35.653944614], [-81.206729119, 35.673242738], [-81.235636736, 35.720326239], [-81.316817927, 35.739854926], [-81.424769299, 35.709255051], [-81.608625483, 35.722856052], [-81.611252423, 35.701126801], [-81.688004297, 35.668461553], [-81.772170616, 35.5928518], [-81.884043366, 35.571655614], [-81.900084926, 35.536987175], [-81.929215053, 35.5275023], [-81.944493236, 35.583633986], [-82.063837992, 35.629483176], [-82.067700178, 35.6093863], [-82.150992428, 35.543780991], [-82.226474178, 35.538453927], [-82.288553616, 35.598526363], [-82.264151079, 35.618936154], [-82.285726741, 35.648314176], [-82.289153175, 35.696236552], [-82.193594801, 35.734793364], [-82.160561241, 35.774419746], [-82.162249921, 35.797273675], [-82.099555867, 35.851458805], [-82.048823428, 35.852920988], [-82.022589864, 35.885043673], [-81.999347305, 35.874164801], [-81.980244986, 35.884786679], [-81.982411679, 35.911379115], [-81.954464925, 35.926916988], [-81.962400538, 36.016561977], [-81.937240302, 36.045679051], [-81.942805551, 36.060975805], [-81.896604553, 36.063431859], [-81.875645738, 36.124973989], [-81.859089615, 36.115003115], [-81.842117239, 36.129097863], [-81.837627178, 36.115427865], [-81.801393118, 36.108885053], [-81.722185302, 36.119125552], [-81.694795304, 36.148085924]]]}, "properties": {"huc8": "03050101", "name": "Upper Catawba", "states": "NC,SC", "areasqkm": 6106.21, "dc_states": "NC", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-81.337633357, 35.264464049], [-81.3688878, 35.311350989], [-81.348598301, 35.353067863], [-81.43258861, 35.408181929], [-81.425113487, 35.442574677], [-81.482361988, 35.556971678], [-81.5961818, 35.571342175], [-81.649288801, 35.561840547], [-81.754848115, 35.615380555], [-81.733252176, 35.617512553], [-81.688004297, 35.668461553], [-81.611252423, 35.701126801], [-81.608625483, 35.722856052], [-81.424769299, 35.709255051], [-81.316817927, 35.739854926], [-81.235636736, 35.720326239], [-81.206729119, 35.673242738], [-81.165661038, 35.653944614], [-81.165541299, 35.637005114], [-81.149521983, 35.623834238], [-81.12707799, 35.630086302], [-81.120023924, 35.592086179], [-81.182368868, 35.545062739], [-81.209932796, 35.490632427], [-81.186917045, 35.483544306], [-81.10167049, 35.385385738], [-81.080653611, 35.298548863], [-81.045520865, 35.268853178], [-81.039917244, 35.227843176], [-81.010768803, 35.193662238], [-81.018858985, 35.1583748], [-81.033706799, 35.148833179], [-81.084472552, 35.224166927], [-81.105542739, 35.22288199], [-81.1614958, 35.269091113], [-81.207062435, 35.260941489], [-81.250366612, 35.288996237], [-81.337633357, 35.264464049]]]}, "properties": {"huc8": "03050102", "name": "South Fork Catawba", "states": "NC,SC", "areasqkm": 1711.71, "dc_states": "NC", "cluster_count": 0, "data_center_count": 4, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-80.601996861, 34.875187113], [-80.636232581, 34.810940888], [-80.615245547, 34.713816341], [-80.689140346, 34.598298247], [-80.719497558, 34.587541189], [-80.744484004, 34.602426167], [-80.776064035, 34.577720221], [-80.843502786, 34.587280746], [-80.872054365, 34.542636182], [-80.91952711, 34.518947746], [-81.020253625, 34.546694305], [-81.047819641, 34.535109606], [-81.08402988, 34.553529855], [-81.102142718, 34.541055288], [-81.151926068, 34.549694683], [-81.173296478, 34.575933632], [-81.177415666, 34.638918515], [-81.195718881, 34.653005835], [-81.18645623, 34.680387493], [-81.214227852, 34.733181979], [-81.196228948, 34.754133609], [-81.20303258, 34.790833738], [-81.246031758, 34.808172133], [-81.242533532, 34.867057677], [-81.202980814, 34.88809606], [-81.240269151, 34.952922758], [-81.238716898, 35.006448861], [-81.26571214, 35.047590878], [-81.181872218, 35.03369647], [-81.160309997, 34.999449458], [-81.134318706, 34.994722035], [-81.097362784, 35.014027562], [-81.017926958, 35.007198509], [-80.990398999, 35.059755084], [-81.010450617, 35.120650366], [-80.97663255, 35.132443554], [-80.955886614, 35.182650181], [-80.960957861, 35.224439489], [-80.89814005, 35.251416615], [-80.884844798, 35.297563303], [-80.833745925, 35.31450205], [-80.78701886, 35.277588111], [-80.766673112, 35.278445425], [-80.766610734, 35.263957671], [-80.731808046, 35.262074552], [-80.725704234, 35.22334893], [-80.674673673, 35.213272863], [-80.647476861, 35.180940109], [-80.679664554, 35.152096427], [-80.697419176, 35.08603005], [-80.622832429, 35.032811678], [-80.641138615, 34.910635432], [-80.601996861, 34.875187113]]]}, "properties": {"huc8": "03050103", "name": "Lower Catawba", "states": "NC,SC", "areasqkm": 3456.09, "dc_states": "NC", "cluster_count": 1, "data_center_count": 7, "clustered_data_center_count": 7}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-82.066445424, 35.628623051], [-81.944493236, 35.583633986], [-81.929215053, 35.5275023], [-81.890124987, 35.546871366], [-81.889344798, 35.569314179], [-81.831972865, 35.587833301], [-81.802208926, 35.578403736], [-81.754374053, 35.612203988], [-81.720163425, 35.607089365], [-81.707090491, 35.581852617], [-81.649288801, 35.561840547], [-81.5961818, 35.571342175], [-81.482047554, 35.5567013], [-81.425113487, 35.442574677], [-81.43258861, 35.408181929], [-81.348598301, 35.353067863], [-81.3688878, 35.311350989], [-81.336848051, 35.263179111], [-81.333885737, 35.218885427], [-81.311625861, 35.205191679], [-81.32670748, 35.157785919], [-81.265223679, 35.046160427], [-81.329880264, 34.978973505], [-81.321587351, 34.965656695], [-81.34682825, 34.941929962], [-81.361426738, 34.893368718], [-81.380708602, 34.86543661], [-81.416798351, 34.85107502], [-81.410779086, 34.837003257], [-81.504014221, 34.849081125], [-81.580775259, 34.835532662], [-81.593028454, 34.811840858], [-81.662067977, 34.816142347], [-81.695683745, 34.852802363], [-81.729498116, 34.859306421], [-81.765089927, 34.902057555], [-81.885712175, 34.921527084], [-81.973757623, 34.982886281], [-82.058072267, 34.99631929], [-82.150665907, 35.060057279], [-82.186333983, 35.062281158], [-82.262783705, 35.127456334], [-82.296784787, 35.125145193], [-82.319631901, 35.147949066], [-82.345732986, 35.138199237], [-82.338530777, 35.155283925], [-82.290372638, 35.169322101], [-82.294281746, 35.195711955], [-82.372089679, 35.18023255], [-82.393047925, 35.215511613], [-82.439904181, 35.165968713], [-82.457329629, 35.164272633], [-82.460032581, 35.178278294], [-82.585563802, 35.15204099], [-82.590138369, 35.165333612], [-82.54150224, 35.193268488], [-82.553340048, 35.20266736], [-82.539556618, 35.229505739], [-82.430124248, 35.245827987], [-82.403017615, 35.269744365], [-82.404921174, 35.287994866], [-82.364529867, 35.3165008], [-82.370925926, 35.343490121], [-82.310323551, 35.378290736], [-82.345729927, 35.40862349], [-82.320509807, 35.423528927], [-82.312486175, 35.453961487], [-82.370657169, 35.471698241], [-82.369324425, 35.485549551], [-82.314073613, 35.505819676], [-82.343983174, 35.52804674], [-82.323234306, 35.547867677], [-82.342674742, 35.568932482], [-82.288553616, 35.598526363], [-82.226474178, 35.538453927], [-82.150992428, 35.543780991], [-82.067700178, 35.6093863], [-82.066445424, 35.628623051]]]}, "properties": {"huc8": "03050105", "name": "Upper Broad", "states": "NC,SC", "areasqkm": 6419.26, "dc_states": "NC", "cluster_count": 1, "data_center_count": 6, "clustered_data_center_count": 5}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-79.690375203, 33.061881417], [-79.707627947, 33.044079059], [-79.698999429, 33.005348021], [-79.657742287, 33.019795352], [-79.6156685, 33.010858083], [-79.695021833, 32.953068935], [-79.685833717, 32.944666469], [-79.711706842, 32.912504577], [-79.840062732, 32.823351645], [-79.834494318, 32.810115122], [-79.85492971, 32.794097179], [-79.834767724, 32.760487878], [-79.794835681, 32.720876955], [-79.754817642, 32.709384816], [-79.775905881, 32.680540554], [-79.81981795, 32.669696041], [-79.862771663, 32.634516346], [-79.893318976, 32.679195338], [-79.968318875, 32.697917783], [-79.953890826, 32.721604728], [-79.990048553, 32.740708285], [-79.978883112, 32.782038503], [-80.050007487, 32.825574481], [-80.093357945, 32.816548789], [-80.092443611, 32.848221475], [-80.140638913, 32.866344386], [-80.175243671, 32.916084403], [-80.282107319, 32.943136895], [-80.336986001, 33.000546836], [-80.378605451, 33.003331685], [-80.371639098, 33.042110407], [-80.39234453, 33.059509003], [-80.231619682, 33.129074687], [-80.234357442, 33.162390554], [-80.261451061, 33.169294262], [-80.265730764, 33.187248701], [-80.24021634, 33.225418293], [-80.255010035, 33.253825182], [-80.227854665, 33.28460821], [-80.17493495, 33.284306581], [-80.184485997, 33.344000156], [-80.110628868, 33.430464828], [-80.035408284, 33.396865035], [-79.994735147, 33.40545317], [-79.881152774, 33.38589927], [-79.869997854, 33.365016902], [-79.842416877, 33.361652398], [-79.860656823, 33.351043219], [-79.857382084, 33.311856651], [-79.773863072, 33.25323146], [-79.764236565, 33.222047234], [-79.740713531, 33.219229603], [-79.721801454, 33.237381661], [-79.703108783, 33.227875912], [-79.684192235, 33.247569079], [-79.660972173, 33.235000962], [-79.645258631, 33.192124987], [-79.671127254, 33.190562958], [-79.670129086, 33.161440158], [-79.708086963, 33.168914819], [-79.716443534, 33.158027703], [-79.661534572, 33.138155782], [-79.692045714, 33.09399929], [-79.690375203, 33.061881417]]]}, "properties": {"huc8": "03050201", "name": "Cooper", "states": "SC", "areasqkm": 3273.07, "dc_states": "SC", "cluster_count": 1, "data_center_count": 11, "clustered_data_center_count": 11}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-81.853661533, 33.719470641], [-81.75220283, 33.690062992], [-81.763655748, 33.641675169], [-81.726835751, 33.615915003], [-81.714682219, 33.564729539], [-81.529476869, 33.493303951], [-81.546338208, 33.480567365], [-81.530972708, 33.445300045], [-81.499439972, 33.437838812], [-81.476543957, 33.410700862], [-81.471813916, 33.376816195], [-81.505498157, 33.344392887], [-81.476338721, 33.279655918], [-81.487768111, 33.261747773], [-81.461285954, 33.256396316], [-81.463231826, 33.235918417], [-81.42748785, 33.222493916], [-81.407895136, 33.182668773], [-81.339871227, 33.139319615], [-81.337178315, 33.068865917], [-81.369885921, 33.025532452], [-81.388745538, 33.026634234], [-81.360097113, 32.988767298], [-81.389111313, 32.943465792], [-81.353138171, 32.919048402], [-81.336893958, 32.8569895], [-81.425269092, 32.794895851], [-81.471500625, 32.804557652], [-81.507784062, 32.836075246], [-81.511520188, 32.865620232], [-81.551327447, 32.869285251], [-81.554302133, 32.917753128], [-81.601806605, 32.912771796], [-81.603564132, 32.940888203], [-81.621276141, 32.936851416], [-81.64133232, 32.966754349], [-81.63925047, 33.013913787], [-81.723469835, 33.060160203], [-81.755522849, 33.059171285], [-81.81564687, 33.087557277], [-81.827867781, 33.11239885], [-81.868730394, 33.118468475], [-81.892818584, 33.146852523], [-81.923578715, 33.141353316], [-81.971841442, 33.17207806], [-81.991977193, 33.168171621], [-82.00315791, 33.194433145], [-82.128542541, 33.211719128], [-82.16225787, 33.273370951], [-82.204589511, 33.300197746], [-82.194025553, 33.351656597], [-82.227330999, 33.376659473], [-82.219078695, 33.407627559], [-82.261769731, 33.401273375], [-82.412676041, 33.425895086], [-82.422013833, 33.462931806], [-82.410740273, 33.479627257], [-82.437752873, 33.552359664], [-82.406129252, 33.610646188], [-82.306014779, 33.611088928], [-82.265502094, 33.626312338], [-82.250339879, 33.650685827], [-82.177630318, 33.673223863], [-82.139444344, 33.627967332], [-82.061103896, 33.602798259], [-82.046996737, 33.567338724], [-82.009215135, 33.568741603], [-81.940258525, 33.586427646], [-81.939335286, 33.61147826], [-81.876092978, 33.671362007], [-81.882608771, 33.700676887], [-81.853661533, 33.719470641]]]}, "properties": {"huc8": "03060106", "name": "Middle Savannah", "states": "GA,SC", "areasqkm": 4750.7, "dc_states": "SC", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-83.161140024, 33.793588902], [-83.175101692, 33.755405997], [-83.125964343, 33.725873704], [-83.087670355, 33.617855782], [-83.103142142, 33.596940991], [-83.077212631, 33.568121785], [-83.078996867, 33.536134833], [-83.016847541, 33.49077967], [-83.018651563, 33.46967477], [-82.997515648, 33.447603548], [-82.941581504, 33.413500631], [-82.922976072, 33.359060097], [-82.967432498, 33.31762814], [-82.969493031, 33.298282558], [-83.02804924, 33.266646309], [-83.054488796, 33.223749019], [-83.122475564, 33.218540543], [-83.130779981, 33.187798405], [-83.114600628, 33.147245729], [-83.127426922, 33.137772017], [-83.231109053, 33.131966585], [-83.295839089, 33.145993493], [-83.299001157, 33.127570742], [-83.34092479, 33.130562974], [-83.45137247, 33.056134725], [-83.493911564, 33.048926974], [-83.501970738, 33.031441116], [-83.535522222, 33.031003409], [-83.576862306, 33.06598928], [-83.603499652, 33.059237802], [-83.642100424, 33.183803195], [-83.682824046, 33.249391371], [-83.718843192, 33.259140366], [-83.709639045, 33.287884598], [-83.754340053, 33.324605966], [-83.74843508, 33.382336909], [-83.764030129, 33.424627924], [-83.733456583, 33.516084815], [-83.75400281, 33.621458674], [-83.727365047, 33.633224244], [-83.705556364, 33.675470108], [-83.700138093, 33.776584113], [-83.732773007, 33.820519889], [-83.726159394, 33.848355139], [-83.791081203, 33.910902738], [-83.819728524, 33.906976308], [-83.823049938, 33.925450827], [-83.931629062, 34.012193914], [-83.931475641, 34.030161317], [-83.953653098, 34.034584637], [-83.91759307, 34.067548744], [-83.940868557, 34.106343473], [-83.924476862, 34.163112755], [-83.860396595, 34.221656229], [-83.818115237, 34.295721258], [-83.801891327, 34.291567918], [-83.795648665, 34.327161368], [-83.76782623, 34.355427172], [-83.727359355, 34.381041523], [-83.659930796, 34.393398847], [-83.668189581, 34.365649064], [-83.650144071, 34.349175479], [-83.650450529, 34.322586145], [-83.577611328, 34.260457809], [-83.511140556, 34.23978966], [-83.445562482, 34.190978314], [-83.409450651, 34.202604498], [-83.366695285, 34.174338963], [-83.312867015, 34.074993159], [-83.326708614, 34.047865685], [-83.298991201, 33.985543938], [-83.252138317, 33.954686965], [-83.21061471, 33.897325421], [-83.157463491, 33.886207069], [-83.17112112, 33.830660249], [-83.161140024, 33.793588902]]]}, "properties": {"huc8": "03070101", "name": "Upper Oconee", "states": "GA", "areasqkm": 7550.2, "dc_states": "GA", "cluster_count": 1, "data_center_count": 4, "clustered_data_center_count": 4}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-84.001978815, 34.050275709], [-83.931475641, 34.030161317], [-83.931629062, 34.012193914], [-83.823049938, 33.925450827], [-83.819728524, 33.906976308], [-83.791081203, 33.910902738], [-83.725113661, 33.846971209], [-83.732773007, 33.820519889], [-83.700138093, 33.776584113], [-83.71224816, 33.72490494], [-83.701803202, 33.696120285], [-83.726626665, 33.634208614], [-83.75400281, 33.621458674], [-83.733456583, 33.516084815], [-83.764030129, 33.424627924], [-83.74843508, 33.382336909], [-83.752986313, 33.316716695], [-83.709639045, 33.287884598], [-83.718935371, 33.259263301], [-83.682824046, 33.249391371], [-83.642100424, 33.183803195], [-83.606606126, 33.061959886], [-83.565701634, 33.061461061], [-83.534968734, 33.030941838], [-83.510057572, 32.923334004], [-83.534112394, 32.890749657], [-83.485560786, 32.850647549], [-83.466043747, 32.804847266], [-83.469948352, 32.76504519], [-83.496980667, 32.760401094], [-83.517320604, 32.70142954], [-83.543125372, 32.714848254], [-83.56481934, 32.707274593], [-83.558691889, 32.651508808], [-83.601111452, 32.654583569], [-83.630473614, 32.6269378], [-83.70445472, 32.672903532], [-83.772832394, 32.646560025], [-83.848816634, 32.690405004], [-83.876002939, 32.660171264], [-83.925095798, 32.683149897], [-83.969173492, 32.76078459], [-84.010696382, 32.761194401], [-84.018623807, 32.791595021], [-84.069047724, 32.822350263], [-84.088895531, 32.878715926], [-84.137403877, 32.917776608], [-84.151686669, 32.958497042], [-84.133328827, 33.025147432], [-84.200849534, 33.066472346], [-84.201610119, 33.18682667], [-84.229971053, 33.23763516], [-84.28810388, 33.273907835], [-84.296492906, 33.37292012], [-84.282431485, 33.383715416], [-84.294326039, 33.401381309], [-84.279951634, 33.423735553], [-84.320975514, 33.440581138], [-84.353836389, 33.516336376], [-84.332630075, 33.607230299], [-84.382689149, 33.622771705], [-84.393305244, 33.651159639], [-84.441082449, 33.672631884], [-84.414188476, 33.742038483], [-84.267698647, 33.775969054], [-84.232922734, 33.819611902], [-84.196959884, 33.82570144], [-84.219832541, 33.864331389], [-84.205500127, 33.901351715], [-84.223718167, 33.930454249], [-84.206876806, 33.969537296], [-84.170877637, 33.971850063], [-84.142447217, 34.005355044], [-84.098532737, 34.017181631], [-84.067964525, 34.000213499], [-84.042436124, 34.03336301], [-84.001978815, 34.050275709]]]}, "properties": {"huc8": "03070103", "name": "Upper Ocmulgee", "states": "GA", "areasqkm": 7700.64, "dc_states": "GA", "cluster_count": 2, "data_center_count": 3, "clustered_data_center_count": 3}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-81.207473067, 29.104635942], [-81.156139549, 29.028540779], [-81.13119128, 29.036537337], [-81.136907336, 29.070225257], [-81.096269574, 29.005829084], [-80.991391715, 29.012565064], [-80.979524937, 28.970087516], [-80.967056599, 28.971601414], [-80.964696523, 28.929837364], [-80.949920174, 28.929196346], [-80.944360491, 28.890817481], [-80.923081484, 28.890396345], [-80.907257643, 28.812639523], [-80.869507011, 28.744396913], [-80.877393004, 28.720471013], [-80.861706581, 28.722748566], [-80.840036567, 28.623709726], [-80.818682786, 28.607177961], [-80.810018328, 28.564312804], [-80.825475719, 28.53518458], [-80.787908669, 28.50569545], [-80.698443469, 28.282733696], [-80.699765857, 28.210417556], [-80.672825064, 28.175482379], [-80.686106737, 28.127146708], [-80.70600393, 28.120637166], [-80.706067946, 28.078932094], [-80.648793276, 28.078802006], [-80.638148185, 28.022269027], [-80.605685409, 28.013416605], [-80.645791288, 28.007014947], [-80.622158313, 27.991434293], [-80.616214719, 27.901041465], [-80.600418861, 27.894542055], [-80.600642856, 27.853908407], [-80.568928923, 27.78416212], [-80.577464041, 27.676467733], [-80.561310287, 27.668911086], [-80.545247551, 27.617812739], [-80.529008027, 27.617284612], [-80.529152568, 27.588064896], [-80.545714255, 27.588357048], [-80.545601245, 27.558768408], [-80.660432752, 27.558478074], [-80.660751548, 27.58883922], [-80.687388714, 27.589084582], [-80.688089725, 27.558414267], [-80.728649434, 27.558772491], [-80.728117224, 27.508260624], [-80.771889802, 27.472121523], [-80.783882436, 27.4785866], [-80.772089537, 27.435743646], [-80.850437288, 27.434883229], [-80.843105753, 27.462503718], [-80.874798403, 27.464994476], [-80.86946418, 27.561306429], [-80.888850989, 27.561256304], [-80.889938501, 27.610052463], [-80.948275891, 27.660414592], [-80.950555598, 27.717565502], [-81.02350327, 27.733417915], [-81.040898448, 27.758782704], [-81.041428602, 27.802069762], [-81.011233243, 27.822806765], [-81.019078341, 27.839934962], [-80.975905875, 27.852542595], [-80.987820592, 27.876307474], [-81.014070925, 27.876449483], [-81.021684286, 27.897775845], [-81.036130783, 27.891232447], [-81.03949582, 27.914503647], [-81.101364948, 27.943420365], [-81.094334271, 27.986479776], [-81.107478973, 28.008458363], [-81.133581277, 28.007925408], [-81.125900742, 28.047903077], [-81.142316011, 28.051741676], [-81.145587858, 28.082505153], [-81.08866268, 28.117531733], [-81.10439816, 28.158616559], [-81.125805196, 28.168295907], [-81.099243009, 28.171239124], [-81.110618171, 28.191862839], [-81.048705877, 28.188627558], [-81.068307218, 28.252707677], [-81.110143137, 28.247948053], [-81.18692806, 28.4889745], [-81.233104107, 28.495384263], [-81.220401778, 28.451499314], [-81.264678684, 28.448928374], [-81.297821043, 28.490564066], [-81.326962707, 28.495353388], [-81.313768205, 28.520701723], [-81.338146922, 28.570719945], [-81.383836923, 28.54327758], [-81.46608704, 28.557322519], [-81.468417194, 28.515759128], [-81.508103875, 28.50969066], [-81.534272519, 28.52009477], [-81.5306195, 28.546224671], [-81.571158407, 28.562246638], [-81.527321097, 28.58331548], [-81.536775169, 28.597381997], [-81.516480205, 28.639040339], [-81.514562395, 28.707430201], [-81.548450706, 28.715370941], [-81.571023849, 28.698971855], [-81.590898749, 28.718238491], [-81.57513046, 28.767809916], [-81.604180304, 28.782905477], [-81.62278044, 28.846241701], [-81.610464749, 28.892275769], [-81.629979132, 28.899505872], [-81.62659615, 28.924868363], [-81.645362733, 28.937952805], [-81.628330765, 28.969849128], [-81.670373885, 28.964794862], [-81.686024038, 29.0103225], [-81.669532535, 29.035469788], [-81.677072224, 29.054471452], [-81.722512571, 29.048977244], [-81.731436906, 29.124706704], [-81.706473885, 29.114727575], [-81.703241346, 29.13000207], [-81.730221925, 29.154361743], [-81.773916242, 29.155980218], [-81.810190973, 29.190043677], [-81.790589241, 29.206478524], [-81.822627959, 29.247564305], [-81.795761941, 29.313948799], [-81.851181416, 29.34271266], [-81.838214723, 29.370713521], [-81.850059, 29.391589928], [-81.829198001, 29.405619729], [-81.870838551, 29.443448026], [-81.869895844, 29.465064097], [-81.81390482, 29.475652475], [-81.804081945, 29.455379147], [-81.77031335, 29.444654155], [-81.733112184, 29.475891996], [-81.684652207, 29.465821047], [-81.643969861, 29.498685647], [-81.579971937, 29.49933659], [-81.562349019, 29.482675244], [-81.583650229, 29.449668993], [-81.566805449, 29.428710926], [-81.532397357, 29.431233276], [-81.489520101, 29.309475023], [-81.444635418, 29.29208662], [-81.406274555, 29.227541078], [-81.360450056, 29.248613942], [-81.324001042, 29.237754721], [-81.313819763, 29.204176683], [-81.347349522, 29.175780464], [-81.322408525, 29.136802244], [-81.304312226, 29.057241786], [-81.267108586, 29.009244639], [-81.251356569, 29.032597917], [-81.262774077, 29.063264001], [-81.207473067, 29.104635942]]]}, "properties": {"huc8": "03080101", "name": "Upper St. Johns", "states": "FL", "areasqkm": 10228.29, "dc_states": "FL", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-82.069308666, 29.698436786], [-82.081824569, 29.66667818], [-82.033190577, 29.665870536], [-82.023494152, 29.614495624], [-81.981361775, 29.627012749], [-81.964310466, 29.663885314], [-81.938483743, 29.64650007], [-81.829938409, 29.673377176], [-81.81156647, 29.634283502], [-81.823664305, 29.618327815], [-81.763463734, 29.606477458], [-81.767285137, 29.579011161], [-81.8020232, 29.57275929], [-81.810194848, 29.546524395], [-81.793043045, 29.544881572], [-81.798699347, 29.527488519], [-81.767315714, 29.498534371], [-81.714458493, 29.504977036], [-81.690172729, 29.470738221], [-81.733112184, 29.475891996], [-81.74985638, 29.449283412], [-81.781432836, 29.443664301], [-81.81390482, 29.475652475], [-81.860583244, 29.473752369], [-81.871487973, 29.449165512], [-81.829198001, 29.405619729], [-81.850059, 29.391589928], [-81.838214723, 29.370713521], [-81.851181416, 29.34271266], [-81.795761941, 29.313948799], [-81.822627959, 29.247564305], [-81.790589241, 29.206478524], [-81.810190973, 29.190043677], [-81.773916242, 29.155980218], [-81.730221925, 29.154361743], [-81.703241346, 29.13000207], [-81.706473885, 29.114727575], [-81.731436906, 29.124706704], [-81.722512571, 29.048977244], [-81.677072224, 29.054471452], [-81.669532535, 29.035469788], [-81.686024038, 29.0103225], [-81.670373885, 28.964794862], [-81.628330765, 28.969849128], [-81.645362733, 28.937952805], [-81.62659615, 28.924868363], [-81.629979132, 28.899505872], [-81.610464749, 28.892275769], [-81.62278044, 28.846241701], [-81.604180304, 28.782905477], [-81.57513046, 28.767809916], [-81.590898749, 28.718238491], [-81.571023849, 28.698971855], [-81.548450706, 28.715370941], [-81.514562395, 28.707430201], [-81.516480205, 28.639040339], [-81.536775169, 28.597381997], [-81.527321097, 28.58331548], [-81.571189371, 28.563898313], [-81.529672531, 28.545370864], [-81.532406268, 28.528081107], [-81.558587846, 28.529255765], [-81.575196591, 28.492074507], [-81.633964894, 28.49804585], [-81.630386871, 28.476291092], [-81.676168379, 28.45287557], [-81.726400492, 28.452885199], [-81.71026632, 28.422608035], [-81.723382679, 28.41110261], [-81.673289475, 28.345118838], [-81.622367469, 28.137498724], [-81.680272249, 28.107954221], [-81.698380736, 28.105227368], [-81.704229862, 28.121716402], [-81.705225346, 28.150840597], [-81.678484348, 28.176841723], [-81.700808999, 28.215564268], [-81.69020736, 28.232601779], [-81.724254248, 28.346403497], [-81.789948431, 28.37298252], [-81.779944, 28.385812389], [-81.803398011, 28.40510972], [-81.800251661, 28.425748753], [-81.833296684, 28.44303875], [-81.831666855, 28.507019298], [-81.893119274, 28.647704678], [-81.92313203, 28.641735989], [-81.934777228, 28.648759442], [-81.928256658, 28.669374037], [-81.962355791, 28.673657852], [-81.909329323, 28.735512304], [-81.960265218, 28.781077909], [-81.940426221, 28.788650116], [-81.94259395, 28.810021116], [-81.902404187, 28.820007313], [-81.906422077, 28.905885506], [-81.878383516, 28.895218093], [-81.869162736, 28.936319191], [-81.888498543, 28.946671534], [-81.937731413, 28.92494725], [-81.980284389, 28.95801084], [-81.989118485, 28.94402011], [-81.998930065, 28.965057808], [-82.04355052, 28.953658658], [-82.044028728, 29.008000154], [-82.00088465, 29.054523843], [-82.025353698, 29.101193], [-82.02032852, 29.120188463], [-82.057467757, 29.119539666], [-82.047499357, 29.135844845], [-82.068133949, 29.183107961], [-82.13510984, 29.178400982], [-82.126355914, 29.159856695], [-82.15768802, 29.123761106], [-82.152254461, 29.094883252], [-82.198210685, 29.091200102], [-82.214684128, 29.066797841], [-82.199770538, 29.056535381], [-82.231389044, 29.045527626], [-82.286001413, 29.04850148], [-82.29463601, 29.073764253], [-82.262942879, 29.109494913], [-82.321953116, 29.119356263], [-82.317161439, 29.138869334], [-82.344772636, 29.174708653], [-82.376874505, 29.182441164], [-82.401907234, 29.163613844], [-82.398576885, 29.17996012], [-82.41826111, 29.186733294], [-82.427408664, 29.216826607], [-82.474155038, 29.209091324], [-82.46393895, 29.193830866], [-82.481825619, 29.165758509], [-82.534018277, 29.166352976], [-82.549606411, 29.219234425], [-82.566520332, 29.228905041], [-82.547342746, 29.293231715], [-82.564237802, 29.316889304], [-82.585945903, 29.313596685], [-82.59697613, 29.34144764], [-82.576961368, 29.369104225], [-82.555709331, 29.36504956], [-82.532974003, 29.384867389], [-82.545081584, 29.408175725], [-82.574693292, 29.417272259], [-82.55794844, 29.462172258], [-82.571545987, 29.471911241], [-82.547902092, 29.510926502], [-82.564505964, 29.533417482], [-82.52880448, 29.578589846], [-82.56276673, 29.614466358], [-82.538695602, 29.630800445], [-82.536081939, 29.675862123], [-82.517326891, 29.677648296], [-82.495923607, 29.725336958], [-82.465175866, 29.739405591], [-82.441570757, 29.710690309], [-82.371767609, 29.710529555], [-82.318422257, 29.759091397], [-82.305267422, 29.746890892], [-82.261227785, 29.75737511], [-82.251738189, 29.80753385], [-82.228963731, 29.819298078], [-82.203593581, 29.813573646], [-82.202370553, 29.789078225], [-82.17211145, 29.802818199], [-82.152655153, 29.770087917], [-82.104629187, 29.754385282], [-82.104953168, 29.721385915], [-82.069308666, 29.698436786]]]}, "properties": {"huc8": "03080102", "name": "Oklawaha", "states": "FL", "areasqkm": 7204.55, "dc_states": "FL", "cluster_count": 0, "data_center_count": 3, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-81.329193421, 30.428581512], [-81.318733057, 30.391076604], [-81.338278651, 30.358523753], [-81.315143137, 30.23307004], [-81.371902046, 30.218944093], [-81.392692653, 30.267460575], [-81.380695012, 30.195194175], [-81.395302233, 30.176953544], [-81.42451903, 30.194310625], [-81.425356385, 30.170465876], [-81.442157803, 30.172756632], [-81.418195066, 30.114637544], [-81.445151684, 30.098300626], [-81.431628791, 30.09476309], [-81.412052718, 29.996511539], [-81.388839212, 29.979731102], [-81.383133438, 29.95240115], [-81.408749757, 29.952245225], [-81.40092167, 29.886883725], [-81.423316536, 29.928453345], [-81.435612676, 29.917119016], [-81.388067571, 29.770160068], [-81.376236465, 29.780721684], [-81.350160805, 29.701915879], [-81.372311053, 29.683250565], [-81.372727391, 29.653300036], [-81.341258523, 29.619782348], [-81.365818617, 29.615177323], [-81.370005128, 29.596673358], [-81.347372172, 29.564334442], [-81.322083143, 29.561537196], [-81.313222197, 29.541725595], [-81.295020577, 29.546072264], [-81.266267833, 29.497802962], [-81.19834381, 29.475448657], [-81.209947315, 29.418169606], [-81.166265187, 29.383090872], [-81.165507224, 29.342152316], [-81.188995626, 29.33383571], [-81.183122692, 29.296406049], [-81.217013385, 29.266722132], [-81.166259495, 29.196209896], [-81.160912094, 29.155162979], [-81.262774077, 29.063264001], [-81.251356569, 29.032597917], [-81.265291211, 29.008871395], [-81.304312226, 29.057241786], [-81.322408525, 29.136802244], [-81.347349522, 29.175780464], [-81.313819763, 29.204176683], [-81.324001042, 29.237754721], [-81.360450056, 29.248613942], [-81.406274555, 29.227541078], [-81.444635418, 29.29208662], [-81.489520101, 29.309475023], [-81.532397357, 29.431233276], [-81.566805449, 29.428710926], [-81.583650229, 29.449668993], [-81.562349019, 29.482675244], [-81.57966241, 29.499159682], [-81.643969861, 29.498685647], [-81.676986811, 29.467204977], [-81.695472715, 29.464465339], [-81.717250792, 29.506338317], [-81.776271251, 29.501404215], [-81.798699347, 29.527488519], [-81.793043045, 29.544881572], [-81.810194848, 29.546524395], [-81.801144747, 29.573667069], [-81.767285137, 29.579011161], [-81.763463734, 29.606477458], [-81.823664305, 29.618327815], [-81.81156647, 29.634283502], [-81.829938409, 29.673377176], [-81.938483743, 29.64650007], [-81.964310466, 29.663885314], [-81.981361775, 29.627012749], [-82.022663442, 29.614434351], [-82.033190577, 29.665870536], [-82.04936078, 29.656633456], [-82.082574544, 29.669140209], [-82.069856076, 29.70632403], [-82.028622834, 29.723174144], [-82.070534793, 29.786836554], [-82.058838962, 29.849855621], [-82.037566034, 29.853566428], [-82.038729577, 29.909249028], [-82.014865754, 29.920692285], [-82.033767222, 30.004745384], [-82.051941423, 30.021063109], [-82.042818127, 30.099437316], [-82.066677688, 30.224651356], [-81.999659089, 30.240524372], [-81.986719279, 30.269777705], [-81.943087009, 30.277827969], [-81.947555689, 30.288651099], [-81.920825688, 30.288507988], [-81.915589479, 30.274273833], [-81.889997837, 30.286122431], [-81.910130528, 30.347761889], [-81.845481483, 30.366960605], [-81.878797291, 30.410306563], [-81.89927846, 30.399077227], [-81.887931196, 30.416313073], [-81.84755933, 30.435684225], [-81.822670488, 30.430127044], [-81.790183681, 30.454997719], [-81.761587528, 30.450543662], [-81.757192848, 30.473971924], [-81.717561362, 30.491981496], [-81.671019135, 30.503522416], [-81.641385851, 30.490533163], [-81.609059421, 30.512250235], [-81.494613883, 30.473364105], [-81.414348659, 30.407074561], [-81.329193421, 30.428581512]]]}, "properties": {"huc8": "03080103", "name": "Lower St. Johns", "states": "FL", "areasqkm": 7347.13, "dc_states": "FL", "cluster_count": 0, "data_center_count": 3, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-80.874798403, 27.464994476], [-80.943582472, 27.436801063], [-80.93135136, 27.390867606], [-80.949719276, 27.383867369], [-80.965890256, 27.322433517], [-80.965544548, 27.300361739], [-80.946981278, 27.289612369], [-80.983058628, 27.28422703], [-80.866094527, 27.152982757], [-80.972027806, 27.061725513], [-81.006931629, 27.093205975], [-80.964076396, 27.146704093], [-81.012550142, 27.187340365], [-81.004672345, 27.236488775], [-81.054129299, 27.236133085], [-81.054111448, 27.267206148], [-81.070742574, 27.271385566], [-81.089682964, 27.337598787], [-81.141335454, 27.359862314], [-81.125762042, 27.376773314], [-81.126245585, 27.390994386], [-81.14448702, 27.376622037], [-81.203559366, 27.379496054], [-81.277459619, 27.296314702], [-81.327571121, 27.301273988], [-81.331210372, 27.273040549], [-81.308670667, 27.221789346], [-81.335171279, 27.211640969], [-81.343256828, 27.168715284], [-81.392565188, 27.194501535], [-81.420486686, 27.252634184], [-81.410407004, 27.266436504], [-81.441666809, 27.293421075], [-81.473974524, 27.377465145], [-81.510462639, 27.421214179], [-81.483543513, 27.455002055], [-81.535364357, 27.568900213], [-81.515775618, 27.598241882], [-81.554159043, 27.63080986], [-81.53714898, 27.644702451], [-81.637460348, 27.686122136], [-81.582128224, 27.724091069], [-81.647018758, 27.819458114], [-81.571566967, 27.84594752], [-81.585366395, 27.868654059], [-81.568363813, 27.871155756], [-81.569018391, 27.890595393], [-81.587090072, 27.903967844], [-81.567175416, 27.918810652], [-81.586450455, 27.942554759], [-81.570419458, 27.962935375], [-81.592586277, 28.008723901], [-81.615966645, 28.009981947], [-81.61782798, 28.065523194], [-81.601435744, 28.066363387], [-81.621122596, 28.084266232], [-81.61510214, 28.129208791], [-81.634530065, 28.153429406], [-81.673892376, 28.346932429], [-81.723382679, 28.41110261], [-81.71026632, 28.422608035], [-81.724988518, 28.455363917], [-81.676168379, 28.45287557], [-81.631257413, 28.475375222], [-81.629848538, 28.499509203], [-81.62667769, 28.48889308], [-81.574576763, 28.492289263], [-81.558587846, 28.529255765], [-81.508829681, 28.509744364], [-81.468838689, 28.515387583], [-81.46608704, 28.557322519], [-81.383836923, 28.54327758], [-81.340257254, 28.570967394], [-81.313768205, 28.520701723], [-81.326962707, 28.495353388], [-81.297821043, 28.490564066], [-81.264678684, 28.448928374], [-81.220401778, 28.451499314], [-81.233104107, 28.495384263], [-81.18692806, 28.4889745], [-81.110143137, 28.247948053], [-81.068307218, 28.252707677], [-81.048705877, 28.188627558], [-81.110618171, 28.191862839], [-81.099243009, 28.171239124], [-81.125805196, 28.168295907], [-81.10439816, 28.158616559], [-81.08866268, 28.117531733], [-81.145587858, 28.082505153], [-81.142316011, 28.051741676], [-81.125900742, 28.047903077], [-81.133581277, 28.007925408], [-81.107478973, 28.008458363], [-81.094334271, 27.986479776], [-81.101364948, 27.943420365], [-81.03949582, 27.914503647], [-81.036130783, 27.891232447], [-81.021684286, 27.897775845], [-81.014070925, 27.876449483], [-80.987820592, 27.876307474], [-80.975905875, 27.852542595], [-81.010358062, 27.849475729], [-81.011447395, 27.82216431], [-81.041428602, 27.802069762], [-81.046486762, 27.778819756], [-81.02350327, 27.733417915], [-80.950555598, 27.717565502], [-80.948275891, 27.660414592], [-80.889938501, 27.610052463], [-80.888850989, 27.561256304], [-80.86946418, 27.561306429], [-80.874798403, 27.464994476]]]}, "properties": {"huc8": "03090101", "name": "Kissimmee", "states": "FL", "areasqkm": 7580.95, "dc_states": "FL", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-80.237249705, 25.258372384], [-80.335885371, 25.269208057], [-80.386402602, 25.300118817], [-80.436124976, 25.232523186], [-80.492152717, 25.227676017], [-80.496634569, 25.203247768], [-80.520998027, 25.221771491], [-80.545607414, 25.20365469], [-80.562906828, 25.49015884], [-80.560242798, 25.550586086], [-80.496904458, 25.624108864], [-80.502381172, 25.761627866], [-80.4815219, 25.782666995], [-80.484528419, 25.890751286], [-80.440186675, 25.941945596], [-80.449507501, 26.145997181], [-80.366887595, 26.128364308], [-80.329248514, 26.162286415], [-80.298585262, 26.160174205], [-80.297451015, 26.356439187], [-80.253208275, 26.364695802], [-80.236904408, 26.385552391], [-80.221556928, 26.468473926], [-80.232871349, 26.542162224], [-80.271572735, 26.59294407], [-80.205113913, 26.606339022], [-80.20410734, 26.632037685], [-80.29970714, 26.638436302], [-80.300417956, 26.62018384], [-80.315206017, 26.623388752], [-80.347197171, 26.6479889], [-80.363948461, 26.710024074], [-80.330095078, 26.709870592], [-80.344486143, 26.723557427], [-80.336512115, 26.765959099], [-80.263080145, 26.765244201], [-80.26420119, 26.735532836], [-80.215730573, 26.735677109], [-80.212873395, 26.811756954], [-80.269685831, 26.810388938], [-80.269320573, 26.824399129], [-80.32897019, 26.838462904], [-80.393696692, 26.892991379], [-80.39358377, 26.914250568], [-80.351697858, 26.94323276], [-80.375117984, 26.958858178], [-80.531745669, 26.95814477], [-80.531605657, 26.972962276], [-80.580526825, 26.97287254], [-80.580520298, 26.987376764], [-80.620838967, 26.983676479], [-80.6060079, 26.988235816], [-80.602476325, 27.018656329], [-80.640877393, 27.104495541], [-80.583210136, 27.161968366], [-80.588052776, 27.178727821], [-80.623080667, 27.189741448], [-80.594743546, 27.206741528], [-80.675004985, 27.243898616], [-80.670521494, 27.28993179], [-80.713320997, 27.300196276], [-80.712126222, 27.340222225], [-80.753509727, 27.340942369], [-80.773903414, 27.392830156], [-80.773653183, 27.405592847], [-80.725896416, 27.41907511], [-80.635828045, 27.410983966], [-80.632857988, 27.448333081], [-80.546211394, 27.447939205], [-80.546309997, 27.428670222], [-80.49278381, 27.428850041], [-80.493243482, 27.447513905], [-80.374572153, 27.447634922], [-80.367064416, 27.468927489], [-80.34452854, 27.46834571], [-80.342479824, 27.453745338], [-80.313973472, 27.459162536], [-80.275500447, 27.479429952], [-80.252187899, 27.527974824], [-80.096200569, 27.183958367], [-79.974027546, 26.791729142], [-79.985443562, 26.53981166], [-80.05774867, 26.037860441], [-80.069854876, 25.756591061], [-80.091519815, 25.721787206], [-80.10187461, 25.651826175], [-80.112263662, 25.521182826], [-80.093939354, 25.475077761], [-80.14631758, 25.417262002], [-80.237249705, 25.258372384]]]}, "properties": {"huc8": "03090206", "name": "Florida Southeast Coast", "states": "FL", "areasqkm": 9521.26, "dc_states": "FL", "cluster_count": 1, "data_center_count": 14, "clustered_data_center_count": 11}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-82.270008354, 28.40510984], [-82.28308001, 28.376200396], [-82.27063006, 28.371517676], [-82.274338124, 28.336813497], [-82.246582596, 28.324727344], [-82.232519536, 28.352475988], [-82.209189443, 28.347303288], [-82.219544141, 28.327070194], [-82.184257416, 28.326385932], [-82.166690378, 28.309961306], [-82.168191879, 28.263002622], [-82.144504933, 28.251148897], [-82.11812344, 28.265759217], [-82.05097848, 28.200137304], [-82.007003156, 28.206201898], [-82.006485699, 28.188085483], [-81.988950668, 28.187484401], [-81.985230682, 28.164525704], [-81.956535219, 28.146450685], [-81.956514953, 28.128190386], [-81.990106223, 28.117910045], [-81.973905651, 28.099639224], [-81.98080477, 28.070366966], [-81.955368338, 28.04891433], [-81.961151061, 27.996899085], [-82.022727995, 28.006884949], [-82.079445418, 28.038804041], [-82.105052678, 28.01851459], [-82.104783563, 27.98933457], [-82.13508567, 27.978436753], [-82.161017744, 27.980427222], [-82.164920894, 28.000297116], [-82.207260876, 28.003172236], [-82.207524775, 27.96762027], [-82.230843602, 27.952664869], [-82.221189795, 27.928032564], [-82.256039737, 27.907902138], [-82.285992055, 28.007756548], [-82.308055787, 28.039033072], [-82.343511103, 28.05461921], [-82.341996162, 28.06711449], [-82.34571719, 28.071836905], [-82.345107256, 28.035771148], [-82.401583729, 27.983093994], [-82.440880357, 28.000642257], [-82.453681736, 27.944133], [-82.497301548, 27.955951559], [-82.494918405, 28.033116774], [-82.479721455, 28.04046117], [-82.467754571, 28.095049726], [-82.456409333, 28.088974612], [-82.442470281, 28.106180208], [-82.463872044, 28.131281214], [-82.460484325, 28.214953797], [-82.472199498, 28.223704623], [-82.460355906, 28.251031774], [-82.480535833, 28.270331818], [-82.448999315, 28.280187177], [-82.461812585, 28.288004177], [-82.452047317, 28.321580904], [-82.437106609, 28.320913273], [-82.442742346, 28.346941339], [-82.419985085, 28.363150465], [-82.420378863, 28.384238439], [-82.345750957, 28.375805812], [-82.339006512, 28.402395713], [-82.312716065, 28.408035295], [-82.296917645, 28.389790463], [-82.270008354, 28.40510984]]]}, "properties": {"huc8": "03100205", "name": "Hillsborough", "states": "FL", "areasqkm": 1699.39, "dc_states": "FL", "cluster_count": 1, "data_center_count": 1, "clustered_data_center_count": 1}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-82.464567004, 28.198294389], [-82.463872044, 28.131281214], [-82.442470281, 28.106180208], [-82.456409333, 28.088974612], [-82.467754571, 28.095049726], [-82.479721455, 28.04046117], [-82.494918405, 28.033116774], [-82.497301548, 27.955951559], [-82.453681736, 27.944133], [-82.440880357, 28.000642257], [-82.401583729, 27.983093994], [-82.345107256, 28.035771148], [-82.346433727, 28.071105556], [-82.344453095, 28.07093768], [-82.343511103, 28.05461921], [-82.308055787, 28.039033072], [-82.286476104, 28.008641079], [-82.290151267, 27.988284545], [-82.254919289, 27.92457469], [-82.261104553, 27.907607662], [-82.311369269, 27.913587528], [-82.334621309, 27.873518722], [-82.386154173, 27.86997305], [-82.402046023, 27.853850023], [-82.32717335, 27.846358853], [-82.315366326, 27.815654325], [-82.281746296, 27.791644709], [-82.284172832, 27.770275013], [-82.253118514, 27.76335697], [-82.278285323, 27.735966311], [-82.273094921, 27.713114218], [-82.289098797, 27.706895875], [-82.356442659, 27.750733541], [-82.382930098, 27.73794742], [-82.396579384, 27.701277034], [-82.398462384, 27.727185593], [-82.415377437, 27.7350062], [-82.48212385, 27.720023649], [-82.490922181, 27.701633559], [-82.47374153, 27.68466364], [-82.487023054, 27.649888949], [-82.517285197, 27.640850948], [-82.516518443, 27.608708845], [-82.489899188, 27.619309472], [-82.481117069, 27.605417626], [-82.426962732, 27.601259844], [-82.425982295, 27.569727764], [-82.475428342, 27.559517221], [-82.499421357, 27.58317493], [-82.501007406, 27.56315826], [-82.558004259, 27.548772858], [-82.572844832, 27.520383792], [-82.635895907, 27.533959911], [-82.680118799, 27.516527311], [-82.698989301, 27.474953727], [-82.707980751, 27.523015783], [-82.742609709, 27.539490805], [-82.802115973, 27.53022651], [-82.8227824, 27.583161507], [-82.794363814, 27.69752542], [-82.802955969, 27.709525608], [-82.667154103, 27.719197587], [-82.682748734, 27.739981667], [-82.670723914, 27.78022288], [-82.693995058, 27.801731186], [-82.66016975, 27.801158177], [-82.659077673, 27.813847469], [-82.70005983, 27.827153104], [-82.690622955, 27.848841684], [-82.728788822, 27.871788936], [-82.72362098, 27.903827416], [-82.744100212, 27.902660416], [-82.776852786, 27.933632926], [-82.759636938, 27.955175536], [-82.775265335, 27.96005805], [-82.757079809, 27.973625856], [-82.766578376, 27.988724695], [-82.729596316, 28.00149821], [-82.720646172, 28.025849389], [-82.741401135, 28.067337023], [-82.747529476, 28.137095379], [-82.718630224, 28.155961828], [-82.692757009, 28.143337833], [-82.618200152, 28.15594204], [-82.618082254, 28.167017179], [-82.599373846, 28.156860369], [-82.589294075, 28.180330234], [-82.568649827, 28.158892113], [-82.553239076, 28.184913742], [-82.524088679, 28.155254888], [-82.464567004, 28.198294389]]]}, "properties": {"huc8": "03100206", "name": "Tampa Bay", "states": "FL", "areasqkm": 2401.15, "dc_states": "FL", "cluster_count": 1, "data_center_count": 4, "clustered_data_center_count": 4}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-81.702521888, 28.118714797], [-81.7433767, 28.138633447], [-81.755103467, 28.088245408], [-81.78044021, 28.081888752], [-81.790015219, 28.108683871], [-81.821495948, 28.123392838], [-81.843026666, 28.103550272], [-81.90360838, 28.118254649], [-81.945447294, 28.107668804], [-81.944197384, 28.12837057], [-81.985230682, 28.164525704], [-81.987948654, 28.186534869], [-82.006485699, 28.188085483], [-82.007003156, 28.206201898], [-82.05097848, 28.200137304], [-82.11812344, 28.265759217], [-82.144504933, 28.251148897], [-82.168191879, 28.263002622], [-82.166690378, 28.309961306], [-82.184257416, 28.326385932], [-82.219544141, 28.327070194], [-82.209189443, 28.347303288], [-82.232519536, 28.352475988], [-82.246582596, 28.324727344], [-82.274338124, 28.336813497], [-82.27063006, 28.371517676], [-82.28308001, 28.376200396], [-82.262822835, 28.427133548], [-82.294763564, 28.419777828], [-82.335569827, 28.451692241], [-82.293566702, 28.488134312], [-82.350244134, 28.504618364], [-82.386791526, 28.485292869], [-82.40156269, 28.492869186], [-82.385576276, 28.558946061], [-82.419502794, 28.58581947], [-82.416169403, 28.619481433], [-82.439056485, 28.655441511], [-82.416381298, 28.666070509], [-82.365472614, 28.642830598], [-82.342558323, 28.67140739], [-82.362762063, 28.682317573], [-82.357863901, 28.718902248], [-82.392579196, 28.750804144], [-82.388282417, 28.765211421], [-82.416453926, 28.778406519], [-82.405783443, 28.79418503], [-82.437411128, 28.868558186], [-82.420291035, 28.882098395], [-82.444268464, 28.894532102], [-82.468090801, 28.884568709], [-82.464577167, 28.911996382], [-82.50845307, 28.936103511], [-82.493152468, 28.954902756], [-82.517160653, 28.962027329], [-82.522206574, 29.025625307], [-82.56563568, 29.0328237], [-82.564814239, 29.020483751], [-82.603169053, 29.002845156], [-82.642238229, 29.017375785], [-82.734366207, 28.979931164], [-82.765376031, 29.001150597], [-82.719676524, 29.033764053], [-82.664922981, 29.047795851], [-82.642183285, 29.038567017], [-82.587837635, 29.069760222], [-82.561576723, 29.063386041], [-82.548317968, 29.106724489], [-82.510395734, 29.12855779], [-82.465940623, 29.188299734], [-82.474155038, 29.209091324], [-82.456348538, 29.216528225], [-82.427408664, 29.216826607], [-82.41826111, 29.186733294], [-82.398576885, 29.17996012], [-82.401907234, 29.163613844], [-82.376874505, 29.182441164], [-82.344772636, 29.174708653], [-82.317161439, 29.138869334], [-82.321953116, 29.119356263], [-82.262942879, 29.109494913], [-82.29463601, 29.073764253], [-82.279727338, 29.04554944], [-82.212710349, 29.047714668], [-82.197849511, 29.059648055], [-82.214684128, 29.066797841], [-82.198210685, 29.091200102], [-82.152254461, 29.094883252], [-82.15768802, 29.123761106], [-82.126355914, 29.159856695], [-82.134823946, 29.178615469], [-82.063501386, 29.180816431], [-82.047229378, 29.133423764], [-82.057467757, 29.119539666], [-82.02032852, 29.120188463], [-82.025353698, 29.101193], [-82.00072634, 29.05278768], [-82.044028728, 29.008000154], [-82.04355052, 28.953658658], [-81.998930065, 28.965057808], [-81.989118485, 28.94402011], [-81.980284389, 28.95801084], [-81.937731413, 28.92494725], [-81.888498543, 28.946671534], [-81.868506936, 28.934919972], [-81.878383516, 28.895218093], [-81.906422077, 28.905885506], [-81.902404187, 28.820007313], [-81.94259395, 28.810021116], [-81.940426221, 28.788650116], [-81.960265218, 28.781077909], [-81.909329323, 28.735512304], [-81.962355791, 28.673657852], [-81.928256658, 28.669374037], [-81.934777228, 28.648759442], [-81.92313203, 28.641735989], [-81.893119274, 28.647704678], [-81.831666855, 28.507019298], [-81.833296684, 28.44303875], [-81.800251661, 28.425748753], [-81.803398011, 28.40510972], [-81.779944, 28.385812389], [-81.789948431, 28.37298252], [-81.724254248, 28.346403497], [-81.69020736, 28.232601779], [-81.700808999, 28.215564268], [-81.678484348, 28.176841723], [-81.705225346, 28.150840597], [-81.702521888, 28.118714797]]]}, "properties": {"huc8": "03100208", "name": "Withlacoochee", "states": "FL", "areasqkm": 5388.81, "dc_states": "FL", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-83.413618311, 34.587699508], [-83.439763188, 34.580875393], [-83.464974344, 34.533618118], [-83.53001377, 34.502308574], [-83.664136619, 34.389166649], [-83.727907957, 34.38080668], [-83.795648665, 34.327161368], [-83.801891327, 34.291567918], [-83.818115237, 34.295721258], [-83.860396595, 34.221656229], [-83.924915732, 34.162344213], [-83.940868557, 34.106343473], [-83.916139516, 34.080538924], [-83.925125272, 34.050405766], [-83.960289181, 34.035377438], [-84.001978815, 34.050275709], [-84.042436124, 34.03336301], [-84.067964525, 34.000213499], [-84.098532737, 34.017181631], [-84.142447217, 34.005355044], [-84.170877637, 33.971850063], [-84.206876806, 33.969537296], [-84.223718167, 33.930454249], [-84.205500127, 33.901351715], [-84.219832541, 33.864331389], [-84.196959884, 33.82570144], [-84.232922734, 33.819611902], [-84.267235579, 33.776229079], [-84.385035725, 33.749714012], [-84.436425043, 33.788263704], [-84.449842056, 33.823718107], [-84.49633778, 33.848063313], [-84.495971532, 33.872109707], [-84.537590893, 33.911907519], [-84.556550594, 33.963743771], [-84.46127588, 34.034020374], [-84.453838528, 34.059511359], [-84.382057966, 34.062019552], [-84.335645468, 34.098024334], [-84.27070746, 34.097663786], [-84.241746546, 34.178188081], [-84.275864007, 34.228856082], [-84.249403002, 34.244927581], [-84.151427751, 34.236707634], [-84.035149248, 34.301958021], [-84.049383939, 34.360363807], [-84.00806302, 34.38730612], [-84.01423061, 34.40289029], [-83.994497138, 34.417908063], [-84.024603219, 34.460353252], [-84.02025506, 34.503250833], [-84.055930569, 34.527689473], [-84.068469838, 34.581342721], [-84.02515781, 34.669220057], [-83.99473241, 34.67832106], [-83.985211373, 34.713542129], [-83.947390975, 34.738173035], [-83.878678829, 34.722918268], [-83.830084236, 34.730473813], [-83.830598325, 34.766243871], [-83.794913173, 34.824645516], [-83.712102067, 34.790600168], [-83.649430517, 34.825173484], [-83.601905661, 34.826832941], [-83.556601472, 34.784984747], [-83.551004993, 34.75011838], [-83.429518104, 34.700092725], [-83.417304965, 34.661763914], [-83.437647701, 34.652864993], [-83.449013483, 34.623293118], [-83.412838174, 34.607401336], [-83.413618311, 34.587699508]]]}, "properties": {"huc8": "03130001", "name": "Upper Chattahoochee", "states": "GA", "areasqkm": 4106.87, "dc_states": "GA", "cluster_count": 1, "data_center_count": 20, "clustered_data_center_count": 20}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-84.562554957, 33.984208818], [-84.541905852, 33.919718765], [-84.495971532, 33.872109707], [-84.49633778, 33.848063313], [-84.449842056, 33.823718107], [-84.436425043, 33.788263704], [-84.390559735, 33.754073198], [-84.414188476, 33.742038483], [-84.449964965, 33.646706153], [-84.474546669, 33.623419562], [-84.508039096, 33.620178463], [-84.596205266, 33.550602281], [-84.662468147, 33.528611843], [-84.692532393, 33.454205389], [-84.754307838, 33.433680469], [-84.750124337, 33.406029576], [-84.796119135, 33.342462176], [-84.74641809, 33.248166228], [-84.751123758, 33.21116578], [-84.774474427, 33.198798908], [-84.76112494, 33.147208834], [-84.7931138, 33.131492042], [-84.772166641, 33.096721346], [-84.789229037, 33.055249864], [-84.776705506, 33.031596148], [-84.752867701, 33.031058246], [-84.725193204, 32.9575867], [-84.741033825, 32.928844327], [-84.674656512, 32.779647015], [-84.681868881, 32.694482687], [-84.659240058, 32.657271431], [-84.901951733, 32.597444289], [-84.906782594, 32.577426582], [-84.950969354, 32.566550159], [-84.96474013, 32.520609996], [-85.018035059, 32.509334154], [-85.052749262, 32.542533453], [-85.09371873, 32.536099603], [-85.167206394, 32.58468889], [-85.254865826, 32.598465501], [-85.280373902, 32.626725591], [-85.318754622, 32.611602878], [-85.369710119, 32.623890052], [-85.371131479, 32.707630533], [-85.41721489, 32.754233197], [-85.44403341, 32.754501059], [-85.474121522, 32.779486633], [-85.405766484, 32.874780386], [-85.390573548, 32.968939611], [-85.401795533, 32.99028578], [-85.348097539, 33.019784577], [-85.346990439, 33.046459872], [-85.329304544, 33.053526025], [-85.340594862, 33.096763102], [-85.363167616, 33.116013813], [-85.363777806, 33.149607606], [-85.315512237, 33.197808806], [-85.374438628, 33.262550544], [-85.303217042, 33.302702865], [-85.300207714, 33.367853014], [-85.288979893, 33.38411998], [-85.260089996, 33.384609992], [-85.255477282, 33.415853912], [-85.223305079, 33.436513568], [-85.145196155, 33.444207143], [-85.085968587, 33.492968434], [-85.064222607, 33.54337951], [-85.022698702, 33.557773943], [-84.992633971, 33.628710324], [-84.947605583, 33.681368941], [-84.965884676, 33.706669749], [-84.909833702, 33.729488665], [-84.935069414, 33.769863242], [-84.96878502, 33.787039811], [-84.956341657, 33.836473192], [-84.897163542, 33.81518134], [-84.844688805, 33.85713389], [-84.851948174, 33.876634027], [-84.824111404, 33.90493023], [-84.811469527, 33.898594405], [-84.765055927, 33.943784709], [-84.67166109, 33.945240808], [-84.641185434, 33.991682316], [-84.611147942, 33.973520334], [-84.562554957, 33.984208818]]]}, "properties": {"huc8": "03130002", "name": "Middle Chattahoochee-Lake Harding", "states": "AL,GA", "areasqkm": 7875.21, "dc_states": "GA", "cluster_count": 1, "data_center_count": 13, "clustered_data_center_count": 13}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-84.443361731, 32.577063405], [-84.469075264, 32.491507106], [-84.489903451, 32.500997358], [-84.516507747, 32.472475433], [-84.546931708, 32.477438673], [-84.542722168, 32.429333025], [-84.565617921, 32.385973626], [-84.59503785, 32.394021683], [-84.597980576, 32.369064285], [-84.650059029, 32.357035157], [-84.658796411, 32.279369552], [-84.688650401, 32.27843713], [-84.712538006, 32.232097619], [-84.707377564, 32.164869156], [-84.684392186, 32.149347716], [-84.665218563, 32.092529468], [-84.67931831, 32.040970974], [-84.646068157, 31.997961543], [-84.650084529, 31.975821552], [-84.69272271, 31.955090366], [-84.703159989, 31.91720774], [-84.740812302, 31.899246763], [-84.740727307, 31.858151398], [-84.798452558, 31.811689727], [-84.800641926, 31.771039329], [-84.831045928, 31.757335714], [-84.83391449, 31.723391406], [-84.886253597, 31.746704303], [-84.922439458, 31.729404949], [-84.977620008, 31.735499881], [-84.999393095, 31.673387888], [-85.019913566, 31.676833348], [-85.034450116, 31.630860142], [-85.081724013, 31.611866384], [-85.120572816, 31.637011039], [-85.166249993, 31.622260085], [-85.201588522, 31.670354138], [-85.201371823, 31.69695381], [-85.288819644, 31.749060887], [-85.291623869, 31.777332464], [-85.363831629, 31.877724106], [-85.401639919, 31.857839752], [-85.431963793, 31.865444198], [-85.438770092, 31.895492684], [-85.419010052, 31.930403807], [-85.442432535, 31.947089573], [-85.457550352, 31.926820409], [-85.483529897, 31.940725409], [-85.493657752, 31.930690616], [-85.512651281, 31.972944055], [-85.525854212, 31.973203452], [-85.502704924, 32.029823201], [-85.518642276, 32.055769445], [-85.515587059, 32.114755365], [-85.576109953, 32.157622654], [-85.57911232, 32.217191539], [-85.548042721, 32.234076736], [-85.533609037, 32.277084738], [-85.444959953, 32.298810136], [-85.429233433, 32.326952669], [-85.395520603, 32.335186789], [-85.374497078, 32.363062094], [-85.402171373, 32.480986068], [-85.373460839, 32.535707212], [-85.337715994, 32.547632421], [-85.344408767, 32.567863299], [-85.32719029, 32.577013054], [-85.338116467, 32.612488751], [-85.280373902, 32.626725591], [-85.254865826, 32.598465501], [-85.167206394, 32.58468889], [-85.09371873, 32.536099603], [-85.052749262, 32.542533453], [-85.018035059, 32.509334154], [-84.96474013, 32.520609996], [-84.950969354, 32.566550159], [-84.906782594, 32.577426582], [-84.901951733, 32.597444289], [-84.805999384, 32.631091954], [-84.739721687, 32.627788716], [-84.651359284, 32.662839371], [-84.634591343, 32.641135835], [-84.565356046, 32.651210944], [-84.473151715, 32.631581389], [-84.443361731, 32.577063405]]]}, "properties": {"huc8": "03130003", "name": "Middle Chattahoochee-Walter F", "states": "AL,GA", "areasqkm": 7347.5, "dc_states": "GA", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-84.440288903, 33.676442707], [-84.392542483, 33.650457198], [-84.382689149, 33.622771705], [-84.332630075, 33.607230299], [-84.353836389, 33.516336376], [-84.320975514, 33.440581138], [-84.279951634, 33.423735553], [-84.294326039, 33.401381309], [-84.282431485, 33.383715416], [-84.296492906, 33.37292012], [-84.28810388, 33.273907835], [-84.229971053, 33.23763516], [-84.201610119, 33.18682667], [-84.198204578, 33.059706146], [-84.162308515, 33.052725428], [-84.133051992, 33.02462458], [-84.151106865, 32.981780494], [-84.137403877, 32.917776608], [-84.088895531, 32.878715926], [-84.069047724, 32.822350263], [-84.018623807, 32.791595021], [-84.010696382, 32.761194401], [-83.969173492, 32.76078459], [-83.917314648, 32.68020511], [-83.935063458, 32.636991652], [-83.966968295, 32.616699659], [-83.934708328, 32.596226119], [-83.957930596, 32.566145771], [-83.958150954, 32.528711222], [-83.928684742, 32.500138246], [-83.928438218, 32.473718517], [-83.941817582, 32.456854843], [-84.002622007, 32.447198585], [-84.021820576, 32.425918363], [-84.010017374, 32.374472741], [-84.019362629, 32.342525237], [-84.118904503, 32.339868509], [-84.194832445, 32.371931516], [-84.254519107, 32.348213219], [-84.270342929, 32.368363385], [-84.279879899, 32.356993579], [-84.30273381, 32.371479594], [-84.374463232, 32.371631883], [-84.439971318, 32.443690278], [-84.421768272, 32.50567208], [-84.429305078, 32.544430815], [-84.45452723, 32.555487447], [-84.443361731, 32.577063405], [-84.472967269, 32.631458425], [-84.565356046, 32.651210944], [-84.634591343, 32.641135835], [-84.681598978, 32.69330186], [-84.674656512, 32.779647015], [-84.741002979, 32.928721303], [-84.725193204, 32.9575867], [-84.752867701, 33.031058246], [-84.776705506, 33.031596148], [-84.789229037, 33.055249864], [-84.772166641, 33.096721346], [-84.7931138, 33.131492042], [-84.76112494, 33.147208834], [-84.774474427, 33.198798908], [-84.751123758, 33.21116578], [-84.74641809, 33.248166228], [-84.796026239, 33.342996327], [-84.750124337, 33.406029576], [-84.754307838, 33.433680469], [-84.692532393, 33.454205389], [-84.662468147, 33.528611843], [-84.596205266, 33.550602281], [-84.508039096, 33.620178463], [-84.474546669, 33.623419562], [-84.440288903, 33.676442707]]]}, "properties": {"huc8": "03130005", "name": "Upper Flint", "states": "GA", "areasqkm": 6811.01, "dc_states": "GA", "cluster_count": 1, "data_center_count": 6, "clustered_data_center_count": 6}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-85.265579937, 31.737429935], [-85.291500799, 31.536919332], [-85.332446925, 31.461071732], [-85.35896004, 31.441190003], [-85.30689737, 31.395245747], [-85.300509929, 31.372000125], [-85.410371979, 31.325330627], [-85.418381156, 31.305290432], [-85.389995265, 31.262958773], [-85.387704187, 31.207621829], [-85.451771948, 31.184127762], [-85.454559279, 31.168926697], [-85.501758834, 31.143997267], [-85.518922433, 31.106099912], [-85.547146253, 31.123415467], [-85.559689541, 31.103877016], [-85.58086709, 31.11120936], [-85.577050209, 31.080501377], [-85.61209126, 31.028069889], [-85.636462973, 31.052130251], [-85.664379343, 31.049100431], [-85.663714823, 31.098976259], [-85.684599444, 31.106748859], [-85.789423981, 31.091212888], [-85.85814029, 31.022054297], [-85.864993463, 31.041668661], [-85.996952877, 31.094139416], [-85.994793206, 31.109555774], [-86.042994768, 31.116685049], [-86.036406114, 31.156903987], [-86.061275082, 31.186487212], [-86.032839685, 31.254847807], [-86.034317745, 31.314322497], [-85.958397741, 31.382417501], [-85.93709461, 31.378556784], [-85.894913786, 31.405952062], [-85.820310513, 31.517590863], [-85.801707455, 31.515167866], [-85.773148114, 31.566816662], [-85.748413244, 31.567328724], [-85.688180722, 31.619671988], [-85.669460249, 31.663038661], [-85.621978733, 31.689657864], [-85.598042283, 31.748772091], [-85.497671195, 31.855770919], [-85.436987563, 31.882178756], [-85.43244805, 31.865748504], [-85.401639919, 31.857839752], [-85.364217206, 31.878063196], [-85.291623869, 31.777332464], [-85.288819644, 31.749060887], [-85.265579937, 31.737429935]]]}, "properties": {"huc8": "03140201", "name": "Upper Choctawhatchee", "states": "AL", "areasqkm": 3997.3, "dc_states": "AL", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-84.045215846, 34.640707579], [-84.068380027, 34.580354803], [-84.055930569, 34.527689473], [-84.02025506, 34.503250833], [-84.024603219, 34.460353252], [-83.994497138, 34.417908063], [-84.01423061, 34.40289029], [-84.00806302, 34.38730612], [-84.049383939, 34.360363807], [-84.035083282, 34.302110918], [-84.151427751, 34.236707634], [-84.249403002, 34.244927581], [-84.276122541, 34.22863471], [-84.241746546, 34.178188081], [-84.2712681, 34.097150113], [-84.335645468, 34.098024334], [-84.382057966, 34.062019552], [-84.453838528, 34.059511359], [-84.46127588, 34.034020374], [-84.549317659, 33.973669704], [-84.562554957, 33.984208818], [-84.611147942, 33.973520334], [-84.641185434, 33.991682316], [-84.67494057, 33.943779654], [-84.765055927, 33.943784709], [-84.811469527, 33.898594405], [-84.831278117, 33.899624909], [-84.851948174, 33.876634027], [-84.844688805, 33.85713389], [-84.897715005, 33.815062309], [-84.925303611, 33.816736812], [-84.949081304, 33.858883465], [-84.972076478, 33.865019526], [-84.997953507, 33.941101874], [-85.0894174, 33.934115465], [-85.136677297, 33.901454414], [-85.168842523, 33.92096628], [-85.199982497, 33.98856103], [-85.17693745, 34.016370767], [-85.148415896, 34.019811656], [-85.142523306, 34.054425487], [-85.234614047, 34.126016433], [-85.235432389, 34.146986509], [-85.210153791, 34.161169138], [-85.211051781, 34.191096965], [-85.179563256, 34.252266373], [-85.137852829, 34.278434235], [-85.097793463, 34.276163276], [-85.095613849, 34.296704922], [-85.049332085, 34.339261349], [-84.981034847, 34.329196389], [-84.957328739, 34.339552338], [-84.946517371, 34.308319272], [-84.91609663, 34.299194869], [-84.881172808, 34.340855297], [-84.843492987, 34.324395951], [-84.811927887, 34.337206419], [-84.778533074, 34.294814254], [-84.728171738, 34.305848505], [-84.708987298, 34.289614971], [-84.59618059, 34.33829185], [-84.610990646, 34.359185751], [-84.576377334, 34.355517562], [-84.573359514, 34.381966156], [-84.52287236, 34.41103303], [-84.506895991, 34.448689278], [-84.470184686, 34.469573642], [-84.448696347, 34.503752675], [-84.387214283, 34.536964243], [-84.345453383, 34.537318792], [-84.353333833, 34.556749369], [-84.328916968, 34.583640482], [-84.247183952, 34.567558195], [-84.191042605, 34.632264709], [-84.160871894, 34.633365807], [-84.128209622, 34.664315667], [-84.045215846, 34.640707579]]]}, "properties": {"huc8": "03150104", "name": "Etowah", "states": "GA", "areasqkm": 4821.33, "dc_states": "GA", "cluster_count": 1, "data_center_count": 1, "clustered_data_center_count": 1}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-84.940912756, 33.836025204], [-84.956341657, 33.836473192], [-84.971783223, 33.797152186], [-84.909833702, 33.729488665], [-84.965884676, 33.706669749], [-84.947605583, 33.681368941], [-84.992633971, 33.628710324], [-85.017391475, 33.565228337], [-85.064222607, 33.54337951], [-85.077171745, 33.503979469], [-85.136535439, 33.449493165], [-85.229180159, 33.434452826], [-85.256093505, 33.415137404], [-85.260089996, 33.384609992], [-85.29447282, 33.380633978], [-85.295166596, 33.316930866], [-85.319084181, 33.284284323], [-85.378759926, 33.259969857], [-85.449134457, 33.2569213], [-85.474359678, 33.291839008], [-85.614469889, 33.317219952], [-85.626428799, 33.336768025], [-85.694390483, 33.346801391], [-85.764279844, 33.396139913], [-85.803797219, 33.370491974], [-85.836559925, 33.375060029], [-85.810999933, 33.473289846], [-85.697299219, 33.562126759], [-85.629318442, 33.654629756], [-85.635834341, 33.671788097], [-85.591975089, 33.688709088], [-85.584644473, 33.711332669], [-85.547670202, 33.732490723], [-85.520959922, 33.773060065], [-85.529929986, 33.796279995], [-85.489005496, 33.796911743], [-85.490374377, 33.809928148], [-85.431244812, 33.824103854], [-85.382781337, 33.817229068], [-85.38038497, 33.838114553], [-85.338674425, 33.867293723], [-85.354300174, 33.894109898], [-85.33963013, 33.909020062], [-85.299069586, 33.895300086], [-85.229907188, 33.913995499], [-85.216041508, 33.898547615], [-85.161998364, 33.91882893], [-85.137129905, 33.901411082], [-85.0894174, 33.934115465], [-84.997953507, 33.941101874], [-84.972421112, 33.865643765], [-84.949081304, 33.858883465], [-84.940912756, 33.836025204]]]}, "properties": {"huc8": "03150108", "name": "Upper Tallapoosa", "states": "AL,GA", "areasqkm": 3611.62, "dc_states": "GA", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-86.5745798, 33.500609914], [-86.729819861, 33.324629972], [-86.714980151, 33.308729729], [-86.785230126, 33.235429907], [-86.762069718, 33.229572157], [-86.763799825, 33.203879969], [-86.799999867, 33.182719968], [-86.749883206, 33.138182504], [-86.781341488, 33.108003752], [-86.779500016, 33.059540064], [-86.806099083, 33.013803724], [-86.749450109, 32.97948987], [-86.747105536, 32.955402457], [-86.823150102, 32.893199972], [-86.911532607, 32.898666159], [-86.919887622, 32.827497476], [-86.947533141, 32.813438152], [-86.965672428, 32.770568206], [-86.954816006, 32.745029639], [-86.966261043, 32.69170072], [-87.020705187, 32.63776146], [-87.00367532, 32.597342814], [-87.039849914, 32.563419652], [-87.052190089, 32.461198395], [-87.079563465, 32.434721293], [-87.072119487, 32.419850108], [-87.098625797, 32.404971935], [-87.089789817, 32.324840002], [-87.127930135, 32.309349984], [-87.157609131, 32.372894556], [-87.209677512, 32.414882844], [-87.260328323, 32.525257214], [-87.287712184, 32.535052112], [-87.335834306, 32.680694894], [-87.389425587, 32.705860338], [-87.391579949, 32.748819929], [-87.374173699, 32.761004362], [-87.350092194, 32.838488139], [-87.352756649, 32.869824899], [-87.376669608, 32.870459996], [-87.364089918, 32.892819707], [-87.381951514, 32.922009965], [-87.348276418, 32.934355007], [-87.344260019, 33.00171007], [-87.29286014, 33.02241997], [-87.305189966, 33.041199892], [-87.28258007, 33.067830042], [-87.277956516, 33.117694156], [-87.226543937, 33.154130093], [-87.232512444, 33.178175769], [-87.205186707, 33.21434894], [-87.184370816, 33.224874915], [-87.171400027, 33.210510065], [-87.062280137, 33.327299914], [-87.019263002, 33.299794994], [-86.909170057, 33.424480002], [-86.716380651, 33.536523045], [-86.597018528, 33.691513654], [-86.615044295, 33.711195922], [-86.593719902, 33.726450067], [-86.554607415, 33.721923732], [-86.524450611, 33.751340654], [-86.535999214, 33.722369768], [-86.505710092, 33.709789869], [-86.481045183, 33.740918], [-86.4387198, 33.739439961], [-86.438512617, 33.713415787], [-86.420487697, 33.711520421], [-86.426720046, 33.679737861], [-86.4888823, 33.614447109], [-86.45666455, 33.608241432], [-86.50597494, 33.564645827], [-86.493073092, 33.552020753], [-86.5745798, 33.500609914]]]}, "properties": {"huc8": "03150202", "name": "Cahaba", "states": "AL", "areasqkm": 4723.87, "dc_states": "AL", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-89.760168844, 32.781123414], [-89.724385468, 32.782463304], [-89.716317821, 32.723356133], [-89.678785322, 32.692700631], [-89.683126466, 32.669978382], [-89.64709454, 32.66120969], [-89.676369413, 32.588488395], [-89.674179355, 32.554426809], [-89.621508505, 32.507179341], [-89.632739761, 32.466549127], [-89.591799728, 32.455504638], [-89.58166684, 32.387503835], [-89.557674936, 32.360843678], [-89.505138415, 32.338870209], [-89.51288242, 32.233509545], [-89.613560715, 32.151612479], [-89.650015803, 32.007452097], [-89.701413722, 31.996749019], [-89.718425916, 31.970512245], [-89.747989004, 31.984355534], [-89.783509176, 31.963849889], [-89.764814648, 31.910290532], [-89.796371738, 31.881562344], [-89.806695729, 31.837972432], [-89.83886609, 31.846428016], [-89.889659702, 31.822279526], [-89.918223264, 31.837873542], [-89.93787832, 31.820830943], [-89.962648053, 31.832356866], [-90.037566913, 31.811551109], [-90.083605353, 31.835295567], [-90.16064949, 31.845294733], [-90.167309548, 31.873573326], [-90.254768117, 31.895387437], [-90.351536716, 31.993741218], [-90.33351057, 32.030253919], [-90.339682275, 32.061012173], [-90.381371382, 32.110885097], [-90.368946633, 32.139204339], [-90.384918784, 32.157324337], [-90.370421071, 32.17937446], [-90.372306943, 32.225274986], [-90.360151932, 32.25163902], [-90.324341895, 32.25257748], [-90.313108174, 32.276437337], [-90.287602353, 32.278667873], [-90.283462497, 32.33968089], [-90.247471044, 32.342790368], [-90.229494592, 32.380117408], [-90.241203934, 32.409719164], [-90.174779918, 32.460664796], [-90.175856352, 32.483517702], [-90.114523502, 32.460350542], [-90.082478604, 32.486380896], [-90.041397773, 32.482771438], [-90.006681595, 32.500981555], [-89.958807382, 32.555250966], [-89.919269824, 32.563092581], [-89.900424121, 32.611620967], [-89.858954838, 32.610833458], [-89.853562576, 32.639095656], [-89.831027087, 32.631539888], [-89.792963861, 32.679138207], [-89.764173813, 32.689443783], [-89.752811633, 32.726242592], [-89.771441586, 32.738976893], [-89.754559636, 32.762561955], [-89.760168844, 32.781123414]]]}, "properties": {"huc8": "03180002", "name": "Middle Pearl-Strong", "states": "MS", "areasqkm": 5120.13, "dc_states": "MS", "cluster_count": 0, "data_center_count": 4, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-91.201437091, 47.335155123], [-91.24428099, 47.30627609], [-91.24646357, 47.286769387], [-91.314471473, 47.258202604], [-91.355951424, 47.207828001], [-91.423023595, 47.176127043], [-91.460501089, 47.136217398], [-91.589404496, 47.084607411], [-91.597133544, 47.063484951], [-91.623360546, 47.061720858], [-91.662793112, 47.017422133], [-91.73680684, 46.995721879], [-91.727599962, 46.988989885], [-91.745810091, 46.988477018], [-91.740148207, 46.979503203], [-91.784007001, 46.94333225], [-91.905109473, 46.90344183], [-91.8971219, 46.895833127], [-91.915815743, 46.896620549], [-91.914208101, 46.883523794], [-92.034106921, 46.834373695], [-92.0282395, 46.825590727], [-92.068363252, 46.802248609], [-92.097512831, 46.804297263], [-92.094094301, 46.787149727], [-92.156315037, 46.805444727], [-92.145161803, 46.815530714], [-92.159882532, 46.832810859], [-92.130224367, 46.866062839], [-92.106620339, 46.93475689], [-92.121545366, 46.943578403], [-92.111012761, 46.955692465], [-92.137576324, 46.958754184], [-92.12817706, 46.976814041], [-92.072938265, 46.994496249], [-92.038815759, 46.984765159], [-92.022438323, 47.009952375], [-92.030955385, 47.026098626], [-91.943860531, 47.045077784], [-91.93212167, 47.055357122], [-91.956451619, 47.066890489], [-91.925379819, 47.076101545], [-91.916995585, 47.10034886], [-91.8561373, 47.104512906], [-91.804393896, 47.129289945], [-91.809525185, 47.140857753], [-91.774027726, 47.162374997], [-91.77303732, 47.205891194], [-91.682666459, 47.234377574], [-91.679319984, 47.266376891], [-91.648428288, 47.263713021], [-91.626382504, 47.282445201], [-91.637484404, 47.298205211], [-91.565699512, 47.34301234], [-91.581350875, 47.3550384], [-91.571385322, 47.365272836], [-91.504038533, 47.381757955], [-91.489349249, 47.416207936], [-91.456090871, 47.441608572], [-91.483416704, 47.465801864], [-91.388929089, 47.458313526], [-91.376158612, 47.423236407], [-91.390124529, 47.385487641], [-91.379126862, 47.378239195], [-91.285772304, 47.389967931], [-91.258375997, 47.364232643], [-91.275316907, 47.353997781], [-91.260776652, 47.341449349], [-91.201437091, 47.335155123]]]}, "properties": {"huc8": "04010102", "name": "Beaver-Lester", "states": "MN", "areasqkm": 1590.16, "dc_states": "MN", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-88.546678372, 44.173265616], [-88.552547612, 44.117126266], [-88.527531393, 44.092650244], [-88.562591173, 44.052964249], [-88.533141412, 44.012996534], [-88.559646673, 43.985437015], [-88.59020824, 43.979031155], [-88.612012364, 43.944708446], [-88.581980504, 43.872760394], [-88.597784079, 43.880164721], [-88.63212303, 43.855085114], [-88.652967103, 43.878031233], [-88.644070395, 43.89078323], [-88.691179581, 43.905632774], [-88.794076092, 43.862199256], [-88.782734402, 43.831381479], [-88.734945931, 43.795597831], [-88.786693491, 43.754737446], [-88.82613457, 43.755726496], [-88.823374279, 43.736570397], [-88.851895071, 43.720460573], [-88.868766166, 43.676634499], [-88.889270164, 43.686255911], [-88.969293721, 43.656570085], [-88.948101856, 43.620317319], [-89.015421786, 43.615510204], [-89.043864347, 43.604904094], [-89.044893213, 43.587673316], [-89.091492989, 43.574850955], [-89.173136988, 43.571577706], [-89.194590904, 43.554935971], [-89.259862193, 43.551593998], [-89.292682298, 43.528427997], [-89.354720511, 43.535919228], [-89.406826057, 43.514358678], [-89.454566905, 43.546306619], [-89.553881774, 43.55037559], [-89.644531229, 43.579879531], [-89.623186865, 43.623927692], [-89.655983874, 43.630028227], [-89.669550756, 43.655235806], [-89.711541602, 43.678032138], [-89.690755855, 43.730677315], [-89.696791926, 43.763675162], [-89.678602227, 43.78036479], [-89.697260061, 43.821674148], [-89.662420788, 43.866519848], [-89.676772275, 43.87576414], [-89.670381913, 43.893812665], [-89.615221331, 43.910259703], [-89.555060932, 44.043323168], [-89.45205591, 44.123989383], [-89.416060754, 44.128033111], [-89.418536761, 44.141118209], [-89.369596102, 44.160004387], [-89.345711686, 44.193012873], [-89.307230063, 44.17196549], [-89.322438308, 44.12747095], [-89.305988768, 44.111261467], [-89.246000596, 44.126120696], [-89.223264762, 44.063780674], [-89.193132588, 44.038010488], [-89.166081616, 44.05610905], [-89.073164501, 44.017363349], [-89.016832539, 44.038852552], [-88.999953993, 44.019037345], [-88.950261898, 44.005627701], [-88.910822131, 44.030588189], [-88.821708628, 44.042466024], [-88.807382383, 44.051900515], [-88.816588469, 44.076516757], [-88.780608393, 44.072711984], [-88.764870979, 44.098492483], [-88.704582967, 44.097628424], [-88.680444009, 44.114503393], [-88.683000245, 44.128258119], [-88.669386216, 44.131018678], [-88.664694585, 44.113531063], [-88.620136536, 44.125462959], [-88.604831047, 44.152549068], [-88.546678372, 44.173265616]]]}, "properties": {"huc8": "04030201", "name": "Upper Fox", "states": "WI", "areasqkm": 4196.28, "dc_states": "WI", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-88.250916696, 44.187504122], [-88.295903303, 44.142619202], [-88.274358429, 44.104711274], [-88.284279234, 44.096317957], [-88.257142371, 44.070993224], [-88.288773931, 44.034532735], [-88.263601071, 44.015960464], [-88.259540058, 43.994367311], [-88.278992332, 43.971912483], [-88.255838371, 43.911633947], [-88.346250571, 43.870244512], [-88.332449562, 43.851528803], [-88.356498756, 43.812508473], [-88.319590665, 43.81779314], [-88.3439937, 43.795990029], [-88.32906393, 43.785597035], [-88.33712358, 43.759479949], [-88.323039837, 43.755587855], [-88.353039838, 43.724185565], [-88.339000829, 43.685535708], [-88.416383065, 43.683445701], [-88.439069636, 43.672189483], [-88.435898013, 43.659321555], [-88.482270874, 43.643326649], [-88.505766428, 43.658772865], [-88.584754981, 43.65523056], [-88.648309149, 43.691199252], [-88.648775645, 43.755804309], [-88.718905993, 43.781804303], [-88.730972208, 43.767636963], [-88.74961672, 43.775199035], [-88.736272909, 43.800891796], [-88.782527395, 43.831158826], [-88.794481196, 43.861804643], [-88.691179581, 43.905632774], [-88.644070395, 43.89078323], [-88.652967103, 43.878031233], [-88.63212303, 43.855085114], [-88.597784079, 43.880164721], [-88.581980504, 43.872760394], [-88.612012364, 43.944708446], [-88.59020824, 43.979031155], [-88.533985026, 44.010787347], [-88.562272944, 44.054456452], [-88.393302328, 44.232412407], [-88.318724997, 44.222430179], [-88.250916696, 44.187504122]]]}, "properties": {"huc8": "04030203", "name": "Lake Winnebago", "states": "WI", "areasqkm": 1482.29, "dc_states": "WI", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-86.414209162, 41.791347361], [-86.487898086, 41.770204341], [-86.473432545, 41.758208222], [-86.513761018, 41.734185643], [-86.58601055, 41.733425594], [-86.61905611, 41.694004035], [-86.67821673, 41.695442117], [-86.680816237, 41.678361809], [-86.701902066, 41.67406038], [-86.69501258, 41.658327791], [-86.739321679, 41.666398727], [-86.836564316, 41.627167515], [-86.820517157, 41.611436165], [-86.838705238, 41.586690261], [-86.976899784, 41.56151607], [-86.986514514, 41.552043325], [-86.975325291, 41.525468683], [-86.999384122, 41.504991811], [-87.000480687, 41.519854551], [-87.052872484, 41.535659319], [-87.053772514, 41.511755233], [-87.012757896, 41.445236346], [-87.027011876, 41.437559193], [-87.029830283, 41.403743749], [-87.081369614, 41.43607164], [-87.162552362, 41.453250414], [-87.255028969, 41.393868959], [-87.258262292, 41.36213978], [-87.306014454, 41.380425191], [-87.32556743, 41.363891249], [-87.365289619, 41.400720542], [-87.435471571, 41.388575619], [-87.434058348, 41.413452956], [-87.451547062, 41.42962355], [-87.440771973, 41.45583061], [-87.485622084, 41.454303867], [-87.440081691, 41.482011265], [-87.427598035, 41.520485586], [-87.335508403, 41.540313921], [-87.355876213, 41.548570698], [-87.359446101, 41.580296587], [-87.27132586, 41.590388066], [-87.253375492, 41.610409069], [-87.329196181, 41.608435958], [-87.330837664, 41.617596123], [-87.351997649, 41.610718524], [-87.404465085, 41.630004501], [-87.432081109, 41.614885366], [-87.471901125, 41.618279552], [-87.471556223, 41.629455215], [-87.518587029, 41.628492331], [-87.55396164, 41.666533596], [-87.592106438, 41.658703005], [-87.611967271, 41.684205598], [-87.584695345, 41.707685685], [-87.559158867, 41.695098824], [-87.528995252, 41.733856297], [-87.528245842, 41.710830188], [-87.504800266, 41.691628701], [-87.437705433, 41.663418835], [-87.4288109, 41.681953138], [-87.414590395, 41.672266906], [-87.431541091, 41.647145695], [-87.325160122, 41.624478346], [-87.325450069, 41.60929901], [-87.324235922, 41.608867651], [-87.324259227, 41.624490566], [-87.25344727, 41.620673842], [-87.122436589, 41.645200288], [-86.92230243, 41.713857865], [-86.722096299, 41.816134489], [-86.621776079, 41.891830034], [-86.488611524, 42.114444352], [-86.523344015, 42.048616714], [-86.542627726, 41.939629204], [-86.52451903, 41.945234365], [-86.522181932, 41.921140647], [-86.502544705, 41.917666204], [-86.50843594, 41.90219543], [-86.479048226, 41.90070132], [-86.470160607, 41.883304572], [-86.407581452, 41.906808234], [-86.383729641, 41.872231758], [-86.394881283, 41.851431227], [-86.42531449, 41.849376357], [-86.426242684, 41.825544275], [-86.448263798, 41.813659526], [-86.414209162, 41.791347361]]]}, "properties": {"huc8": "04040001", "name": "Little Calumet-Galien", "states": "IL,IN,MI", "areasqkm": 1783.85, "dc_states": "IN", "cluster_count": 1, "data_center_count": 1, "clustered_data_center_count": 1}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-87.613510585, 41.88285578], [-87.577903038, 41.776369757], [-87.528882927, 41.733855611], [-87.55255971, 41.726454652], [-87.624204522, 41.778392858], [-87.613510585, 41.88285578]]], [[[-87.681364274, 42.077078229], [-87.654484487, 41.988739288], [-87.631848043, 41.965193069], [-87.642241901, 41.961485931], [-87.633222616, 41.942474818], [-87.641944772, 41.947441018], [-87.623538917, 41.903929718], [-87.598577684, 41.891433158], [-87.628042138, 41.889390326], [-87.665263808, 41.964353746], [-87.689772732, 42.045491614], [-87.681364274, 42.077078229]]], [[[-87.89733345, 43.020128349], [-87.845056838, 42.962083109], [-87.847787864, 42.889617393], [-87.824654019, 42.837427864], [-87.757503814, 42.781458415], [-87.778264201, 42.762257764], [-87.778066224, 42.718862186], [-87.819655782, 42.623104403], [-87.797386236, 42.467846252], [-87.83276949, 42.28846345], [-87.796018128, 42.20140583], [-87.725953704, 42.108991421], [-87.679764188, 42.078666485], [-87.685053742, 42.075592257], [-87.721980727, 42.079349971], [-87.840105301, 42.236718901], [-87.884185259, 42.382911212], [-87.866739637, 42.545510508], [-87.886344201, 42.575304159], [-87.922488577, 42.56121812], [-87.93885032, 42.599958964], [-87.923257208, 42.695596792], [-87.971956319, 42.700268157], [-87.987029619, 42.679120518], [-87.976259953, 42.649684437], [-87.992474205, 42.639557249], [-88.016577727, 42.683033921], [-88.087770499, 42.687599994], [-88.08167184, 42.74613402], [-88.061046369, 42.766007848], [-88.07335586, 42.801336355], [-88.057502068, 42.817771651], [-88.073220587, 42.83455769], [-88.059805728, 42.855656274], [-88.075108713, 42.903683939], [-88.102871841, 42.900194951], [-88.101569361, 42.921975203], [-88.126090563, 42.931203283], [-88.085785724, 42.965966262], [-88.103815831, 43.011109181], [-88.034733332, 43.002296516], [-88.018659032, 42.970237174], [-87.966587819, 42.94083441], [-87.950034297, 42.952399798], [-87.860314436, 42.938782968], [-87.862863994, 42.95876349], [-87.891178793, 42.965310374], [-87.882500595, 42.973279662], [-87.905937259, 42.999995686], [-87.89733345, 43.020128349]]]]}, "properties": {"huc8": "04040002", "name": "Pike-Root", "states": "IL,WI", "areasqkm": 1083.55, "dc_states": "IL, WI", "cluster_count": 2, "data_center_count": 8, "clustered_data_center_count": 8}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-87.86925856, 43.386516162], [-87.911785309, 43.245378443], [-87.880813724, 43.170506754], [-87.900387055, 43.125708022], [-87.863769061, 43.07418675], [-87.895332045, 43.041694918], [-87.905591971, 42.997481413], [-87.859605289, 42.93975056], [-87.950034297, 42.952399798], [-87.966587819, 42.94083441], [-88.018659032, 42.970237174], [-88.034733332, 43.002296516], [-88.102478273, 43.011951216], [-88.093015468, 43.031149247], [-88.142004854, 43.037018754], [-88.121394075, 43.051910975], [-88.134792215, 43.076836445], [-88.121752388, 43.082179197], [-88.109565741, 43.154866972], [-88.137431658, 43.164711364], [-88.131213492, 43.180984327], [-88.147347338, 43.189022966], [-88.174008465, 43.179479905], [-88.202246017, 43.190672525], [-88.20155952, 43.213708737], [-88.183075971, 43.215313175], [-88.187038458, 43.24187521], [-88.230066128, 43.245693513], [-88.21530152, 43.26532785], [-88.241838701, 43.299592742], [-88.266107805, 43.305257299], [-88.259918131, 43.343400844], [-88.291792281, 43.35811741], [-88.263825632, 43.447649278], [-88.300277895, 43.478468338], [-88.289703704, 43.487461039], [-88.332927323, 43.505172827], [-88.319449521, 43.519055465], [-88.32890398, 43.550229916], [-88.357359774, 43.553672203], [-88.347445018, 43.566374996], [-88.360443361, 43.58157734], [-88.422091372, 43.598431208], [-88.427371867, 43.619987675], [-88.457112916, 43.616129675], [-88.466806509, 43.656503478], [-88.435898013, 43.659321555], [-88.439069636, 43.672189483], [-88.416017479, 43.683533588], [-88.351203836, 43.676148006], [-88.33890263, 43.686039784], [-88.3488378, 43.707946607], [-88.314355499, 43.718846867], [-88.250240631, 43.700555661], [-88.232580103, 43.71882827], [-88.204198635, 43.701978424], [-88.165163792, 43.736035982], [-88.116461194, 43.753226706], [-88.108050293, 43.736480662], [-88.06838227, 43.760016361], [-88.049518771, 43.739392946], [-88.076670415, 43.701012799], [-88.003629959, 43.696121523], [-87.989113695, 43.685839424], [-88.005164808, 43.67160357], [-87.997573323, 43.656224647], [-87.928731389, 43.633042792], [-87.913342364, 43.577359327], [-87.945078737, 43.571669378], [-87.92803619, 43.559352824], [-87.960127271, 43.527490446], [-87.945285148, 43.518568644], [-87.948743767, 43.476894089], [-87.927303201, 43.470149823], [-87.903979933, 43.416318246], [-87.916752851, 43.411442526], [-87.907518841, 43.359747538], [-87.86925856, 43.386516162]]]}, "properties": {"huc8": "04040003", "name": "Milwaukee", "states": "WI", "areasqkm": 2276.51, "dc_states": "WI", "cluster_count": 1, "data_center_count": 3, "clustered_data_center_count": 3}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-85.888880316, 42.37181843], [-85.699056182, 42.323549069], [-85.728704277, 42.275406933], [-85.679332737, 42.248943127], [-85.724664929, 42.251550115], [-85.725297544, 42.230780162], [-85.747030113, 42.22408495], [-85.740551386, 42.174759424], [-85.705961379, 42.190013624], [-85.61559442, 42.169442243], [-85.583250228, 42.201915063], [-85.562354359, 42.18872229], [-85.560528431, 42.21091289], [-85.518190655, 42.203403032], [-85.511987689, 42.224090583], [-85.482817861, 42.2077002], [-85.466597083, 42.256335415], [-85.401629957, 42.250501491], [-85.330863449, 42.290028669], [-85.321823331, 42.240062691], [-85.293387803, 42.240007735], [-85.277041498, 42.216190345], [-85.281716558, 42.1933989], [-85.258598122, 42.188497669], [-85.229823681, 42.188538946], [-85.170937839, 42.224840738], [-85.134259316, 42.215225972], [-85.112739327, 42.237694569], [-85.049119833, 42.239025331], [-84.998296561, 42.222862012], [-84.9983027, 42.203301526], [-84.908564838, 42.203005738], [-84.890073361, 42.172641761], [-84.821808966, 42.17079807], [-84.801492067, 42.13397301], [-84.816251876, 42.096966422], [-84.790545436, 42.058302857], [-84.626917185, 41.981907195], [-84.55890459, 42.017647273], [-84.52564186, 41.970807022], [-84.47598091, 41.974809028], [-84.441829623, 41.935742087], [-84.475890936, 41.912919111], [-84.571850749, 41.919280953], [-84.595249953, 41.909430302], [-84.582805725, 41.876652903], [-84.641434552, 41.865714496], [-84.664760353, 41.891840554], [-84.656294437, 41.91222871], [-84.717374833, 41.904512292], [-84.734950753, 41.859037614], [-84.723887684, 41.854347206], [-84.749372872, 41.829339809], [-84.789273144, 41.814543342], [-84.815739634, 41.837317741], [-84.836141737, 41.817498631], [-84.834972384, 41.779232091], [-84.876609348, 41.738669234], [-84.824486436, 41.690746313], [-84.862976355, 41.691089189], [-84.901797076, 41.661486825], [-84.871141038, 41.637892806], [-84.903109791, 41.593751645], [-84.931233438, 41.573496616], [-84.967411447, 41.577390304], [-84.968694301, 41.557850099], [-84.987407121, 41.564935632], [-85.014096292, 41.516922599], [-85.067709194, 41.522340093], [-85.081533559, 41.500732925], [-85.133424076, 41.494558966], [-85.201042327, 41.505649364], [-85.198177788, 41.487955129], [-85.223988297, 41.473114437], [-85.194140567, 41.465510253], [-85.21064547, 41.437046683], [-85.239311549, 41.427529221], [-85.241578027, 41.40697767], [-85.284187677, 41.398215776], [-85.273204248, 41.356736592], [-85.328733685, 41.318438506], [-85.394171866, 41.311245238], [-85.399317963, 41.291640116], [-85.429334446, 41.299624138], [-85.432867202, 41.269721782], [-85.460397932, 41.266438549], [-85.469705113, 41.297340618], [-85.528609428, 41.290211593], [-85.575911138, 41.33602578], [-85.629827194, 41.318191634], [-85.644887508, 41.328593125], [-85.64173055, 41.350058412], [-85.680515084, 41.340446687], [-85.709079871, 41.357962454], [-85.737076107, 41.340459352], [-85.783562414, 41.353908561], [-85.808266032, 41.328961078], [-85.885464516, 41.298416972], [-85.912604658, 41.30483288], [-85.892343409, 41.36575119], [-85.976691328, 41.398418457], [-85.968369518, 41.438356286], [-86.036152863, 41.444570398], [-86.055354122, 41.467429614], [-86.001198474, 41.467632836], [-85.965421233, 41.481394386], [-86.080442283, 41.516028648], [-86.099065517, 41.551466991], [-86.160029695, 41.556162635], [-86.193971071, 41.586105829], [-86.227334848, 41.563654817], [-86.24500591, 41.581553376], [-86.280729686, 41.572052127], [-86.306061275, 41.583882245], [-86.27676997, 41.649927383], [-86.295958533, 41.671954876], [-86.35805044, 41.682428368], [-86.344546972, 41.716048697], [-86.360932931, 41.743176353], [-86.341797861, 41.756291881], [-86.34333766, 41.800525969], [-86.367961262, 41.798046565], [-86.387112115, 41.754486358], [-86.437858611, 41.754821233], [-86.451867346, 41.774730749], [-86.451555405, 41.787604696], [-86.413830762, 41.791845298], [-86.448721533, 41.81152705], [-86.426242684, 41.825544275], [-86.42531449, 41.849376357], [-86.390233491, 41.854050166], [-86.392852578, 41.890622712], [-86.417391424, 41.906804389], [-86.470160607, 41.883304572], [-86.479048226, 41.90070132], [-86.50843594, 41.90219543], [-86.502544705, 41.917666204], [-86.522181932, 41.921140647], [-86.52451903, 41.945234365], [-86.542627726, 41.939629204], [-86.523344015, 42.048616714], [-86.488989119, 42.115342147], [-86.393606697, 42.202158428], [-86.31140912, 42.222363896], [-86.267967854, 42.260821588], [-86.167039101, 42.279036886], [-86.156608349, 42.300359167], [-86.124974047, 42.261616446], [-86.019962076, 42.260190764], [-85.957362894, 42.303520835], [-85.987089519, 42.339311577], [-85.978844796, 42.357218004], [-85.888880316, 42.37181843]]]}, "properties": {"huc8": "04050001", "name": "St. Joseph", "states": "IN,MI", "areasqkm": 12208.69, "dc_states": "IN", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-84.137992562, 42.911121317], [-84.075581283, 42.883650639], [-84.089630485, 42.802036919], [-84.074161024, 42.779959538], [-84.109040738, 42.736993887], [-84.069678278, 42.694769718], [-84.027126552, 42.690934904], [-84.004180373, 42.66646988], [-84.011852116, 42.649413087], [-83.975446881, 42.618854172], [-83.987387092, 42.59393803], [-83.966124506, 42.569919295], [-83.96702531, 42.54455439], [-83.938691468, 42.531486339], [-83.938636692, 42.515497006], [-83.95685205, 42.506613173], [-83.973290445, 42.523572571], [-83.985574932, 42.50828243], [-84.015139104, 42.522523589], [-84.049452694, 42.498127467], [-84.19006473, 42.504000969], [-84.18997562, 42.45393125], [-84.211176247, 42.44968582], [-84.220493318, 42.415085353], [-84.133413941, 42.416437662], [-84.126318903, 42.389951802], [-84.081206889, 42.355290093], [-84.132841529, 42.316841132], [-84.111179383, 42.307872749], [-84.132250191, 42.292850203], [-84.113123894, 42.279420561], [-84.117449314, 42.263599373], [-84.141375454, 42.269016481], [-84.130961836, 42.242483652], [-84.154052437, 42.232442237], [-84.153546931, 42.21500007], [-84.19052908, 42.202454187], [-84.214861007, 42.167062706], [-84.279058219, 42.170193828], [-84.325782956, 42.153503067], [-84.309988768, 42.133695281], [-84.348167958, 42.115884788], [-84.31719804, 42.110972322], [-84.313946725, 42.094317115], [-84.427453102, 42.050284035], [-84.45866275, 42.00861252], [-84.479699077, 42.022369064], [-84.456997694, 42.043846435], [-84.46198553, 42.057487912], [-84.485147716, 42.064045436], [-84.465751858, 42.087555474], [-84.476542087, 42.156776167], [-84.495022418, 42.147360868], [-84.572181465, 42.173619306], [-84.55630249, 42.191090471], [-84.573658706, 42.200018859], [-84.53514895, 42.218469209], [-84.551774652, 42.218217589], [-84.568554075, 42.248054243], [-84.610460462, 42.254775501], [-84.609826716, 42.266915209], [-84.624796273, 42.257464446], [-84.632375689, 42.275060393], [-84.595106515, 42.302516586], [-84.665792556, 42.302528091], [-84.687994959, 42.316477335], [-84.661331387, 42.340003437], [-84.67470512, 42.346772946], [-84.666444423, 42.378448106], [-84.742516162, 42.389328665], [-84.717083784, 42.451808191], [-84.726564797, 42.466639407], [-84.770012619, 42.472711928], [-84.761825414, 42.499977864], [-84.778886141, 42.511971779], [-84.758217248, 42.51663459], [-84.758367093, 42.532716341], [-84.71708283, 42.534953691], [-84.693927618, 42.554886557], [-84.672540785, 42.548042245], [-84.672131749, 42.586364277], [-84.69009191, 42.599794365], [-84.678134175, 42.618706383], [-84.70777485, 42.64292831], [-84.674089761, 42.678332098], [-84.686320754, 42.709660597], [-84.74694297, 42.722697742], [-84.749027135, 42.683463491], [-84.765069547, 42.676510669], [-84.796230139, 42.698843874], [-84.802055957, 42.728177078], [-84.873197915, 42.7143744], [-84.882719995, 42.734497018], [-84.987227799, 42.675332017], [-85.049058052, 42.68344421], [-84.963882866, 42.768815138], [-84.975595089, 42.782877036], [-85.035833063, 42.789081849], [-85.038293186, 42.814585634], [-84.956010165, 42.848319062], [-84.99171737, 42.866001942], [-84.954711529, 42.883225747], [-84.955302866, 42.90458677], [-84.919863137, 42.932024964], [-84.9548606, 42.995436796], [-84.864505561, 42.967330225], [-84.831718059, 42.941243776], [-84.837441595, 42.922036953], [-84.823193671, 42.916071333], [-84.837369534, 42.889618464], [-84.817130002, 42.896487512], [-84.781933041, 42.876738616], [-84.772989036, 42.836016335], [-84.577837916, 42.862938471], [-84.505305858, 42.897033997], [-84.421901109, 42.873402901], [-84.41413671, 42.895383455], [-84.385124238, 42.879362263], [-84.361907007, 42.897972949], [-84.271208615, 42.877170183], [-84.229527296, 42.900493957], [-84.203486653, 42.890900918], [-84.137992562, 42.911121317]]]}, "properties": {"huc8": "04050004", "name": "Upper Grand", "states": "MI", "areasqkm": 4558.7, "dc_states": "MI", "cluster_count": 0, "data_center_count": 3, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-83.052518873, 43.18436835], [-83.10013926, 43.144988693], [-83.085869044, 43.12519268], [-83.181619614, 43.118587502], [-83.16154474, 43.033974268], [-83.189064263, 42.964855649], [-83.142186253, 42.90998558], [-83.149766862, 42.899616726], [-83.178149164, 42.893469699], [-83.198381394, 42.859511174], [-83.211466521, 42.866302229], [-83.250509322, 42.842621632], [-83.274722517, 42.84173388], [-83.327865273, 42.870045938], [-83.32734698, 42.887393333], [-83.350111157, 42.887973764], [-83.366425127, 42.838048794], [-83.39430362, 42.831755079], [-83.385108858, 42.803075172], [-83.417292774, 42.792315193], [-83.41492191, 42.76796595], [-83.451119125, 42.790898212], [-83.464499802, 42.776766517], [-83.489255458, 42.789081343], [-83.560373336, 42.777389266], [-83.561563671, 42.793078788], [-83.58830747, 42.793965139], [-83.61560011, 42.82089708], [-83.675066024, 42.794872202], [-83.70196867, 42.799576887], [-83.717578918, 42.85928271], [-83.776464821, 42.83212144], [-83.802436471, 42.84021587], [-83.819189549, 42.881760426], [-83.904958875, 42.937243142], [-83.889961809, 42.965123005], [-84.069624306, 42.980816998], [-84.077145607, 43.009269364], [-84.055987955, 43.023092844], [-84.094022007, 43.031192549], [-84.110916199, 43.055959083], [-84.100764067, 43.072148241], [-84.114363702, 43.076341607], [-84.108884425, 43.092140563], [-84.08263445, 43.097461559], [-84.108535887, 43.12210656], [-84.027228923, 43.128957846], [-84.016930581, 43.186117389], [-83.999467255, 43.191476889], [-84.012199105, 43.230059304], [-83.998270214, 43.238437184], [-83.992504747, 43.292250522], [-84.044072182, 43.316137173], [-84.051658391, 43.336195656], [-84.03073746, 43.312424012], [-84.028210552, 43.328997471], [-83.942101837, 43.309780487], [-83.91660747, 43.282291004], [-83.874972553, 43.287102588], [-83.845535756, 43.269717761], [-83.754770726, 43.26072494], [-83.719691218, 43.235719242], [-83.715053738, 43.214908846], [-83.689857066, 43.212173887], [-83.693020046, 43.198629209], [-83.675220371, 43.205770469], [-83.657916427, 43.184944131], [-83.624951422, 43.179482438], [-83.467106819, 43.225780436], [-83.434943169, 43.245516726], [-83.425561011, 43.294396677], [-83.374251038, 43.329189935], [-83.21286565, 43.354406901], [-83.176768899, 43.331533053], [-83.088577747, 43.315833935], [-83.110948384, 43.271999665], [-83.063602537, 43.222002485], [-83.089954615, 43.211401262], [-83.08542487, 43.20190052], [-83.052518873, 43.18436835]]]}, "properties": {"huc8": "04080204", "name": "Flint", "states": "MI", "areasqkm": 3446.25, "dc_states": "MI", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-82.781848788, 42.837372817], [-82.794508337, 42.772878893], [-82.882407963, 42.612513221], [-82.846014708, 42.59405411], [-82.813060104, 42.599150545], [-82.777087926, 42.595874197], [-82.776551633, 42.593770094], [-82.895567983, 42.579555191], [-82.956599026, 42.487485207], [-83.008998453, 42.444656052], [-82.995758206, 42.441672452], [-82.99863401, 42.413721062], [-83.092533618, 42.36989621], [-83.149161637, 42.396680154], [-83.163852245, 42.445899464], [-83.206690341, 42.455102332], [-83.216708509, 42.472983069], [-83.218278557, 42.546585299], [-83.156425654, 42.639737315], [-83.207002342, 42.641114838], [-83.261870562, 42.609947987], [-83.316457182, 42.616306073], [-83.335070819, 42.583097673], [-83.392181874, 42.580910243], [-83.415255398, 42.599549301], [-83.41074887, 42.622927047], [-83.451951414, 42.634494938], [-83.432285876, 42.680304505], [-83.467631072, 42.694565452], [-83.450611562, 42.699526675], [-83.447463483, 42.723542072], [-83.481792898, 42.730271198], [-83.483498276, 42.75351835], [-83.521705389, 42.782788434], [-83.464499802, 42.776766517], [-83.448130041, 42.790697403], [-83.414550215, 42.76803986], [-83.417292774, 42.792315193], [-83.385108858, 42.803075172], [-83.39430362, 42.831755079], [-83.366425127, 42.838048794], [-83.349798173, 42.888116815], [-83.32734698, 42.887393333], [-83.327865273, 42.870045938], [-83.274722517, 42.84173388], [-83.249902933, 42.842709788], [-83.190035551, 42.86517138], [-83.174750328, 42.896201201], [-83.123912215, 42.887821473], [-83.061697363, 42.933945574], [-83.037191361, 42.925463446], [-83.021500408, 42.946243383], [-82.996212094, 42.922954835], [-82.891409039, 42.931408025], [-82.869456439, 42.890681602], [-82.781848788, 42.837372817]]]}, "properties": {"huc8": "04090003", "name": "Clinton", "states": "MI", "areasqkm": 2064.16, "dc_states": "MI", "cluster_count": 1, "data_center_count": 2, "clustered_data_center_count": 2}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-83.009506642, 42.410197414], [-82.900119506, 42.39224388], [-82.928960102, 42.360176421], [-82.921044245, 42.328894428], [-82.86968296, 42.305042205], [-82.872555583, 42.287324169], [-82.902329215, 42.272538175], [-82.902820477, 42.242164999], [-82.948729707, 42.212797382], [-82.910748261, 42.202860642], [-82.905838229, 42.184435065], [-82.822999469, 42.175620823], [-82.718657038, 42.105652289], [-82.772813939, 42.115600402], [-82.910900937, 42.095474778], [-82.927012048, 42.087531774], [-82.920745112, 42.072283624], [-82.971540817, 42.040171697], [-83.021528864, 42.050141906], [-83.026543225, 42.097855241], [-83.069044988, 42.139607414], [-83.103068297, 42.130081193], [-83.081996697, 42.121531405], [-83.1132734, 42.096257199], [-83.11211577, 42.050667557], [-83.196920154, 42.043475945], [-83.211348503, 42.087109334], [-83.273547738, 42.149303712], [-83.317126184, 42.170198656], [-83.413059324, 42.1683482], [-83.417198271, 42.211884475], [-83.400910616, 42.229045398], [-83.557419032, 42.239870645], [-83.560271889, 42.264201469], [-83.598536343, 42.253628886], [-83.590409398, 42.294223644], [-83.631666482, 42.309189952], [-83.568190038, 42.342752434], [-83.564554542, 42.367955363], [-83.598785698, 42.387873299], [-83.649209947, 42.372291543], [-83.652876467, 42.384744175], [-83.633505345, 42.415435828], [-83.584991694, 42.415462441], [-83.609429598, 42.428475447], [-83.558218449, 42.450102605], [-83.543656141, 42.435436762], [-83.522651762, 42.443391003], [-83.505320728, 42.482617892], [-83.534211367, 42.495521672], [-83.492052138, 42.53130395], [-83.45619911, 42.525265075], [-83.454561442, 42.541152037], [-83.405103862, 42.548280306], [-83.405423373, 42.569396354], [-83.329194039, 42.586002238], [-83.330131948, 42.610676684], [-83.316457182, 42.616306073], [-83.261870562, 42.609947987], [-83.251351267, 42.626355894], [-83.189027071, 42.644101031], [-83.153110653, 42.636514969], [-83.218278557, 42.546585299], [-83.206690341, 42.455102332], [-83.163852245, 42.445899464], [-83.152673482, 42.401192285], [-83.110369295, 42.38742692], [-83.108444331, 42.373161949], [-83.032168209, 42.387079484], [-83.009506642, 42.410197414]]]}, "properties": {"huc8": "04090004", "name": "Detroit", "states": "CN,MI", "areasqkm": 2298.11, "dc_states": "MI", "cluster_count": 1, "data_center_count": 6, "clustered_data_center_count": 6}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-83.609639138, 41.96571607], [-83.337438692, 41.891089788], [-83.394991867, 41.860737371], [-83.443629109, 41.791273099], [-83.465307014, 41.785128382], [-83.438513167, 41.759526965], [-83.479621086, 41.75752661], [-83.476821259, 41.739852897], [-83.459520132, 41.736388928], [-83.520110696, 41.660523391], [-83.639948368, 41.621416604], [-83.811242432, 41.641139543], [-83.837848932, 41.65768472], [-83.918457151, 41.655169642], [-83.937608838, 41.686086423], [-84.004523874, 41.647850997], [-84.070302726, 41.654800749], [-84.069615574, 41.66978783], [-83.998452008, 41.693768299], [-83.987008394, 41.716440713], [-83.880939156, 41.736897266], [-83.881722898, 41.755114294], [-83.856714934, 41.773303247], [-83.821649909, 41.769280172], [-83.7906245, 41.78831414], [-83.795850426, 41.819952166], [-83.767441065, 41.820956447], [-83.768243104, 41.849174714], [-83.676274986, 41.872176207], [-83.669172973, 41.923961496], [-83.609639138, 41.96571607]]], [[[-83.197190149, 42.059504031], [-83.200491249, 42.042501635], [-83.201482797, 42.06139012], [-83.197190149, 42.059504031]]], [[[-83.651143015, 42.249532766], [-83.624518932, 42.240971304], [-83.619214029, 42.214989192], [-83.522704751, 42.170886166], [-83.424439401, 42.160234995], [-83.369209797, 42.115888274], [-83.350373775, 42.071558869], [-83.248192327, 42.060187608], [-83.17166998, 42.017309486], [-83.211071719, 41.989894862], [-83.238498155, 41.994449245], [-83.223587403, 41.989375975], [-83.252517879, 41.973901964], [-83.265486512, 41.933117534], [-83.286653854, 41.949085218], [-83.344149556, 41.928983944], [-83.334194381, 41.901659469], [-83.347644568, 41.898648268], [-83.370274216, 41.929190761], [-83.436264693, 41.962998278], [-83.516539186, 41.991786487], [-83.610861898, 41.998161293], [-83.617501915, 42.050797857], [-83.601583094, 42.068210876], [-83.65047294, 42.062995113], [-83.723376573, 42.11118067], [-83.704483926, 42.121643133], [-83.716720253, 42.136942572], [-83.679129452, 42.168178148], [-83.708854467, 42.17501942], [-83.687862934, 42.198011942], [-83.694842577, 42.232801117], [-83.651143015, 42.249532766]]]]}, "properties": {"huc8": "04100001", "name": "Ottawa-Stony", "states": "MI,OH", "areasqkm": 1812.32, "dc_states": "MI", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-82.740003848, 41.517382591], [-82.775457916, 41.505109668], [-82.809465417, 41.510883726], [-82.82419311, 41.491930985], [-82.847200119, 41.502683363], [-82.957408078, 41.488681074], [-82.975842395, 41.463176644], [-83.041872466, 41.46027915], [-82.974934157, 41.451192398], [-82.938691139, 41.417332864], [-82.881163986, 41.442786203], [-82.853648142, 41.439208259], [-82.824293848, 41.468625844], [-82.751098863, 41.441667778], [-82.706371119, 41.460040868], [-82.666053115, 41.450203001], [-82.675265831, 41.447645411], [-82.682439677, 41.442413184], [-82.684246251, 41.435358933], [-82.664149898, 41.445280273], [-82.638073069, 41.422542485], [-82.593501406, 41.414794249], [-82.632892548, 41.325519716], [-82.67248684, 41.317100918], [-82.680252551, 41.334898031], [-82.708785205, 41.337974286], [-82.765361218, 41.303759581], [-82.773797064, 41.265446639], [-82.813426344, 41.25690264], [-82.821126221, 41.233030771], [-82.853451042, 41.221778637], [-82.853065907, 41.171785599], [-82.886506318, 41.15963391], [-82.882053852, 41.138586884], [-82.906702101, 41.11584348], [-82.90095961, 41.090046917], [-82.848885595, 41.061270987], [-82.746882408, 41.038068864], [-82.762579323, 40.995812779], [-82.740480899, 40.985388105], [-82.744465201, 40.951561575], [-82.762823879, 40.935897922], [-82.732681661, 40.917133545], [-82.773907959, 40.872779374], [-82.70045802, 40.840935087], [-82.69973421, 40.825572227], [-82.672134577, 40.825751607], [-82.650715231, 40.780854767], [-82.708473026, 40.747310435], [-82.757830798, 40.747077887], [-82.796905964, 40.755669777], [-82.806684524, 40.788392429], [-82.893518566, 40.781013046], [-82.974889725, 40.801018451], [-83.010731608, 40.786557977], [-83.070110172, 40.716755961], [-83.129404723, 40.728677457], [-83.176799684, 40.641238903], [-83.22452113, 40.600595298], [-83.33448416, 40.591809396], [-83.499477506, 40.641863946], [-83.52908814, 40.630270278], [-83.575966359, 40.644401495], [-83.537237526, 40.753888463], [-83.504963696, 40.738846902], [-83.468122304, 40.773279224], [-83.47971648, 40.788497066], [-83.433021486, 40.802225059], [-83.427640944, 40.83316431], [-83.468757481, 40.867483591], [-83.467337728, 40.902714883], [-83.40459475, 40.977546637], [-83.38191396, 40.982986604], [-83.385129034, 41.014151191], [-83.364272684, 41.029201692], [-83.372308076, 41.050520425], [-83.427121521, 41.043778902], [-83.410023123, 41.062571352], [-83.436921268, 41.118623024], [-83.416371286, 41.139557874], [-83.428876222, 41.150526201], [-83.412269652, 41.156651979], [-83.458895982, 41.217620349], [-83.439271272, 41.247480577], [-83.372475535, 41.269506758], [-83.366685092, 41.301118021], [-83.336464733, 41.318977064], [-83.317557007, 41.367506092], [-83.208751589, 41.422763682], [-83.173883498, 41.46514309], [-83.017064898, 41.479429489], [-82.952662289, 41.513034439], [-82.889593631, 41.506216651], [-82.764594733, 41.534395939], [-82.756315171, 41.515961295], [-82.740003848, 41.517382591]]]}, "properties": {"huc8": "04100011", "name": "Sandusky", "states": "OH", "areasqkm": 4714.6, "dc_states": "OH", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-81.107400862, 41.385396277], [-81.152689812, 41.357863074], [-81.152917382, 41.311668193], [-81.178964135, 41.305008179], [-81.189407882, 41.288255875], [-81.174069729, 41.268614507], [-81.211714652, 41.246964758], [-81.215980586, 41.217957442], [-81.253898499, 41.210308885], [-81.241159555, 41.203203445], [-81.245066461, 41.174347614], [-81.220090505, 41.169993227], [-81.239909109, 41.147328382], [-81.233862456, 41.112388378], [-81.197003808, 41.098624413], [-81.2195833, 41.080153202], [-81.20344111, 41.036958133], [-81.221265015, 41.031889951], [-81.239114818, 40.98762766], [-81.312260774, 40.958247041], [-81.344560084, 40.963605648], [-81.351928887, 40.995531385], [-81.375462738, 40.996704316], [-81.391978857, 41.018786465], [-81.404054848, 41.007344608], [-81.452330378, 41.023611521], [-81.463230458, 41.012636637], [-81.488650647, 41.029175019], [-81.48043659, 41.043482607], [-81.534599212, 41.057263946], [-81.528702227, 41.07320798], [-81.553473738, 41.068014955], [-81.55110502, 41.118269121], [-81.60231444, 41.112423514], [-81.638288883, 41.14279369], [-81.664878694, 41.118667101], [-81.684967158, 41.123682355], [-81.684027759, 41.110954081], [-81.722583113, 41.119265353], [-81.725924162, 41.147800571], [-81.680811104, 41.178173219], [-81.67955306, 41.20620448], [-81.65895733, 41.21657372], [-81.671079336, 41.289964472], [-81.710020003, 41.300265556], [-81.751962511, 41.370747691], [-81.777312723, 41.364094204], [-81.784799365, 41.38658092], [-81.833345679, 41.407884783], [-81.813100068, 41.449233805], [-81.743160752, 41.464193141], [-81.710907904, 41.503320193], [-81.53879079, 41.458289956], [-81.502560583, 41.479539043], [-81.434045938, 41.377712017], [-81.365701642, 41.349489277], [-81.33973923, 41.274153774], [-81.287425426, 41.284881865], [-81.266914872, 41.271465217], [-81.272437063, 41.292842364], [-81.256150958, 41.315393483], [-81.291226533, 41.317963636], [-81.259576079, 41.35994581], [-81.303107378, 41.41100434], [-81.286793586, 41.433011776], [-81.247727808, 41.432998186], [-81.252010074, 41.45999453], [-81.223262099, 41.449218488], [-81.201941547, 41.495318538], [-81.216643956, 41.500010526], [-81.216730264, 41.529803431], [-81.17957091, 41.551781034], [-81.187416164, 41.567960655], [-81.174223271, 41.582430488], [-81.138949093, 41.607274359], [-81.094797489, 41.591047115], [-81.064444211, 41.61810205], [-81.056395319, 41.530936008], [-81.068566349, 41.469036078], [-81.044854787, 41.462841815], [-81.107400862, 41.385396277]]]}, "properties": {"huc8": "04110002", "name": "Cuyahoga", "states": "OH", "areasqkm": 2101.57, "dc_states": "OH", "cluster_count": 1, "data_center_count": 4, "clustered_data_center_count": 3}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-81.285626913, 41.755839272], [-81.255632696, 41.694702333], [-81.325332102, 41.652023918], [-81.224309471, 41.628399021], [-81.232236502, 41.584254718], [-81.20366278, 41.582446551], [-81.17918354, 41.556519067], [-81.216730264, 41.529803431], [-81.216643956, 41.500010526], [-81.201941547, 41.495318538], [-81.223262099, 41.449218488], [-81.252010074, 41.45999453], [-81.247727808, 41.432998186], [-81.286793586, 41.433011776], [-81.303703603, 41.409625536], [-81.259576079, 41.35994581], [-81.291226533, 41.317963636], [-81.256150958, 41.315393483], [-81.273612764, 41.287781989], [-81.264928219, 41.272413408], [-81.287425426, 41.284881865], [-81.33973923, 41.274153774], [-81.365701642, 41.349489277], [-81.434045938, 41.377712017], [-81.502366093, 41.479479706], [-81.53879079, 41.458289956], [-81.705598953, 41.503665936], [-81.610352191, 41.550136333], [-81.391153588, 41.70575656], [-81.285626913, 41.755839272]]], [[[-80.796377387, 41.902974194], [-80.752646801, 41.896566695], [-80.740566041, 41.869184024], [-80.684269007, 41.88457165], [-80.676332023, 41.855019099], [-80.577226695, 41.866481817], [-80.469590581, 41.906486971], [-80.461265498, 41.876967701], [-80.509750379, 41.849010591], [-80.52988809, 41.792708403], [-80.513938827, 41.69106545], [-80.546176817, 41.688035881], [-80.544640805, 41.66770128], [-80.603256758, 41.643290467], [-80.637863304, 41.759226448], [-80.627142724, 41.808421322], [-80.761539873, 41.793301023], [-80.772093472, 41.809503234], [-80.748308178, 41.82079748], [-80.749924776, 41.83375079], [-80.902874524, 41.765635646], [-81.131527033, 41.737257486], [-81.151070383, 41.764372087], [-81.197119054, 41.74975077], [-81.224058148, 41.760958231], [-81.112927405, 41.817134254], [-81.000028663, 41.85370626], [-80.898058444, 41.865025652], [-80.796377387, 41.902974194]]]]}, "properties": {"huc8": "04110003", "name": "Ashtabula-Chagrin", "states": "OH,PA", "areasqkm": 1625.24, "dc_states": "OH", "cluster_count": 1, "data_center_count": 3, "clustered_data_center_count": 3}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-78.582261556, 42.930692619], [-78.521716864, 42.912607818], [-78.52132508, 42.884083367], [-78.420374476, 42.875965899], [-78.392359768, 42.848288311], [-78.364273351, 42.857688439], [-78.319345264, 42.827683972], [-78.35342972, 42.788833986], [-78.340143586, 42.711803232], [-78.378498859, 42.715991386], [-78.328907064, 42.641290197], [-78.362331244, 42.637522515], [-78.363766544, 42.614964355], [-78.426150461, 42.606358574], [-78.423963384, 42.591518709], [-78.483604518, 42.576972986], [-78.493324673, 42.587861992], [-78.530481455, 42.57444386], [-78.569949557, 42.591997741], [-78.579361909, 42.563183712], [-78.616227564, 42.546118725], [-78.630615909, 42.559130004], [-78.691852021, 42.551952364], [-78.738836962, 42.56992043], [-78.779495684, 42.530372348], [-78.85950637, 42.591928962], [-78.916778207, 42.539938716], [-78.961072187, 42.543836321], [-78.971445891, 42.562938761], [-79.040317926, 42.556467447], [-79.0873393, 42.582193339], [-79.131022595, 42.579446185], [-79.111404105, 42.612303089], [-79.055839376, 42.648805748], [-79.06222492, 42.668345401], [-79.037799388, 42.6941422], [-78.913192051, 42.735205302], [-78.847994898, 42.778612751], [-78.867979041, 42.826095005], [-78.856940181, 42.840289413], [-78.896978746, 42.89450664], [-78.582261556, 42.930692619]]]}, "properties": {"huc8": "04120103", "name": "Buffalo-Eighteenmile", "states": "NY", "areasqkm": 1850.03, "dc_states": "NY", "cluster_count": 1, "data_center_count": 1, "clustered_data_center_count": 1}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-79.077260511, 43.260374828], [-79.033457657, 43.25190126], [-79.029857689, 43.201010913], [-79.044213686, 43.174161719], [-79.030864157, 43.169395892], [-79.042082285, 43.160389879], [-78.944591123, 43.172922131], [-78.804577302, 43.160812699], [-78.748903602, 43.174234101], [-78.765289375, 43.156390755], [-78.756994586, 43.146731275], [-78.697850163, 43.169714468], [-78.615654324, 43.147024811], [-78.459224991, 43.14377914], [-78.428947042, 43.125193207], [-78.447147032, 43.092569685], [-78.375216922, 43.05031009], [-78.229115648, 43.037120111], [-78.186460464, 43.006277701], [-78.177897738, 43.026641424], [-78.160068113, 43.028147916], [-78.15516956, 43.008707734], [-78.171994362, 42.989336653], [-78.118588261, 42.988525456], [-78.087366138, 42.961384741], [-78.133106518, 42.945249604], [-78.146587793, 42.88656579], [-78.125956213, 42.845910214], [-78.140416485, 42.79358305], [-78.181773531, 42.779599861], [-78.183319912, 42.764724816], [-78.206363171, 42.774007736], [-78.235125566, 42.757864971], [-78.222924199, 42.723695707], [-78.265666748, 42.710867035], [-78.264705791, 42.690066055], [-78.245217054, 42.681047948], [-78.293347905, 42.621462397], [-78.30289648, 42.662992692], [-78.313840447, 42.671654062], [-78.331672073, 42.652163036], [-78.351182087, 42.664218081], [-78.378490013, 42.715377698], [-78.340143586, 42.711803232], [-78.35342972, 42.788833986], [-78.319345264, 42.827683972], [-78.364273351, 42.857688439], [-78.392359768, 42.848288311], [-78.420374476, 42.875965899], [-78.52132508, 42.884083367], [-78.531636352, 42.916554968], [-78.596759629, 42.933556948], [-78.715530558, 42.907538264], [-78.8348973, 42.910765874], [-78.930744519, 42.891131733], [-78.938329356, 42.912024653], [-79.028965623, 42.914021217], [-79.070849836, 42.872037852], [-79.127595804, 42.886723645], [-79.17918933, 42.928111399], [-79.233851604, 42.91246086], [-79.224550173, 42.901045183], [-79.2477955, 42.887227739], [-79.250510537, 42.866637526], [-79.265533418, 42.910110791], [-79.343500709, 42.878556111], [-79.360268438, 42.891708756], [-79.373498545, 42.875774534], [-79.405364683, 42.890299047], [-79.426913069, 42.876006756], [-79.446041123, 42.88941443], [-79.476010038, 42.880232349], [-79.470913986, 42.889162397], [-79.537550001, 42.93368], [-79.5766555, 42.9226775], [-79.697349999, 42.956799999], [-79.77357, 42.93829], [-79.79919, 42.96953], [-79.83105, 42.97064], [-79.8318, 42.98875], [-79.866340001, 43.014060001], [-79.874109999, 43.051919999], [-79.904430001, 43.07786], [-79.90153, 43.103550001], [-79.936840001, 43.12185], [-79.965701199, 43.1635459], [-79.955959996, 43.201410006], [-79.876789179, 43.13198131], [-79.790453503, 43.12483563], [-79.605147031, 43.068642947], [-79.455360765, 43.058308555], [-79.429799278, 43.033320944], [-79.416560367, 43.043091286], [-79.374744656, 43.024095312], [-79.31318187, 43.04955869], [-79.213349629, 43.063613678], [-79.192687982, 43.137765864], [-79.217636678, 43.165336989], [-79.202080434, 43.181904862], [-79.217085771, 43.215155474], [-79.217486005, 43.244790262], [-79.172550359, 43.138499942], [-79.089559003, 43.136350649], [-79.066180454, 43.154794459], [-79.082123832, 43.19586536], [-79.065110696, 43.219709302], [-79.077923873, 43.225878362], [-79.063509952, 43.244510078], [-79.077260511, 43.260374828]]]}, "properties": {"huc8": "04120104", "name": "Niagara", "states": "CN,NY", "areasqkm": 3527.57, "dc_states": "NY", "cluster_count": 1, "data_center_count": 15, "clustered_data_center_count": 15}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-79.092578131, 43.261134415], [-79.063513725, 43.244527725], [-79.082123832, 43.19586536], [-79.066180454, 43.154794459], [-79.091656039, 43.135248481], [-79.164164284, 43.132269555], [-79.21202039, 43.226371052], [-79.164838107, 43.226894202], [-79.161561671, 43.2436089], [-79.151514984, 43.227761958], [-79.154971599, 43.2466013], [-79.092578131, 43.261134415]]], [[[-78.376378047, 43.375604319], [-77.976486416, 43.368295133], [-77.883363759, 43.345199446], [-77.766646162, 43.340566351], [-77.725902345, 43.32664661], [-77.734351069, 43.303381252], [-77.696287924, 43.305408616], [-77.60769309, 43.259816265], [-77.693893507, 43.160544158], [-77.84777073, 43.172325736], [-77.863331334, 43.144987403], [-77.884007828, 43.155937359], [-77.97094372, 43.149633093], [-77.972804935, 43.188795981], [-77.986740427, 43.189763131], [-78.039351272, 43.133136588], [-78.083719563, 43.13170214], [-78.097281026, 43.10950075], [-78.16374727, 43.083578004], [-78.172742835, 43.071888349], [-78.15499598, 43.069335808], [-78.185272595, 43.059345723], [-78.180275243, 43.043445726], [-78.201124041, 43.024538844], [-78.375501171, 43.050439908], [-78.447147032, 43.092569685], [-78.428947042, 43.125193207], [-78.459224991, 43.14377914], [-78.615654324, 43.147024811], [-78.697850163, 43.169714468], [-78.756994586, 43.146731275], [-78.765289375, 43.156390755], [-78.748903602, 43.174234101], [-78.804577302, 43.160812699], [-78.944591123, 43.172922131], [-79.042460417, 43.160649047], [-79.030864157, 43.169395892], [-79.044213686, 43.174161719], [-79.029857689, 43.201010913], [-79.033457657, 43.25190126], [-79.04990427, 43.255246402], [-79.060237006, 43.264158809], [-78.627473322, 43.358439467], [-78.376378047, 43.375604319]]]]}, "properties": {"huc8": "04130001", "name": "Oak Orchard-Twelvemile", "states": "CN,NY", "areasqkm": 2774.87, "dc_states": "NY", "cluster_count": 1, "data_center_count": 1, "clustered_data_center_count": 1}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-76.496374636, 43.203591823], [-76.469747418, 43.186815009], [-76.444019429, 43.208082627], [-76.415346311, 43.174612694], [-76.391043209, 43.188341456], [-76.365058617, 43.170005313], [-76.35865838, 43.197438542], [-76.301299782, 43.164125876], [-76.304044799, 43.20012218], [-76.250133604, 43.195056225], [-76.22907144, 43.181453789], [-76.232889639, 43.165192286], [-76.169564341, 43.119704959], [-76.114921865, 43.130666776], [-76.128580193, 43.113867196], [-76.119099162, 43.104831099], [-76.059826409, 43.130823404], [-76.016695605, 43.100912553], [-76.072952527, 43.065339066], [-76.060026691, 43.040448599], [-76.107506681, 43.046333284], [-76.134322781, 43.021971937], [-76.111583994, 42.995780857], [-76.12198035, 42.97314434], [-76.080545959, 42.934686663], [-76.099707804, 42.883722192], [-76.116443538, 42.88257253], [-76.09063103, 42.854272058], [-76.113915828, 42.841991989], [-76.116003233, 42.808190935], [-76.175294309, 42.80192885], [-76.168343292, 42.767592754], [-76.188307333, 42.760539928], [-76.223766228, 42.802587862], [-76.252406844, 42.802510847], [-76.230144329, 42.778314346], [-76.224644915, 42.727246164], [-76.269762051, 42.710490182], [-76.248615878, 42.640473038], [-76.274396577, 42.61470217], [-76.236005133, 42.561298085], [-76.2444726, 42.523010961], [-76.216506894, 42.545860276], [-76.174685191, 42.543938983], [-76.172097911, 42.49540084], [-76.186738105, 42.476018909], [-76.310386174, 42.424980603], [-76.323766091, 42.382627623], [-76.314193553, 42.350455826], [-76.361686631, 42.345132488], [-76.377752209, 42.359791459], [-76.436806466, 42.340617285], [-76.457783408, 42.362147225], [-76.504111429, 42.33950765], [-76.496219088, 42.29382954], [-76.512307558, 42.271959222], [-76.534206478, 42.305251494], [-76.588948596, 42.302023515], [-76.638613779, 42.33068218], [-76.650425099, 42.352209457], [-76.640228981, 42.36373463], [-76.672674597, 42.379431669], [-76.66961735, 42.423648898], [-76.721855517, 42.418358622], [-76.729458114, 42.388738096], [-76.75953122, 42.381987983], [-76.722149324, 42.300805654], [-76.762548423, 42.291535353], [-76.786089569, 42.217960308], [-76.824596619, 42.170831478], [-76.861566883, 42.203916464], [-76.857821548, 42.222984718], [-76.908406113, 42.270894773], [-76.907637278, 42.28867629], [-76.973608634, 42.320929976], [-76.993153035, 42.337402642], [-76.984545647, 42.353238519], [-77.006804959, 42.360065823], [-76.996844553, 42.373053301], [-77.012266035, 42.410131506], [-76.981828707, 42.445071318], [-77.001746729, 42.453184277], [-77.004240167, 42.48889298], [-77.040397936, 42.452605465], [-77.080398895, 42.453678748], [-77.06293084, 42.503177693], [-77.078622977, 42.502274584], [-77.121785139, 42.462523158], [-77.126008292, 42.431858288], [-77.15060467, 42.42958478], [-77.19996376, 42.371673658], [-77.239685877, 42.383242988], [-77.272808317, 42.359181097], [-77.322793803, 42.366922943], [-77.324781189, 42.415371738], [-77.285490142, 42.433755286], [-77.259779828, 42.470626103], [-77.218342495, 42.463895386], [-77.192677835, 42.48880561], [-77.238287791, 42.549497951], [-77.207434117, 42.579251565], [-77.206069675, 42.605371067], [-77.254203285, 42.623870859], [-77.285402637, 42.591673746], [-77.285270382, 42.572548826], [-77.315407265, 42.555908254], [-77.358626092, 42.577955808], [-77.392825783, 42.57704097], [-77.415053087, 42.554886661], [-77.477637739, 42.574982362], [-77.470752536, 42.593059929], [-77.49784491, 42.615903161], [-77.492828737, 42.635233885], [-77.441399871, 42.627227879], [-77.449708636, 42.665587196], [-77.472787558, 42.685293969], [-77.450470089, 42.690129206], [-77.425018947, 42.726428796], [-77.420945275, 42.7770223], [-77.457396685, 42.799697973], [-77.427862878, 42.850926098], [-77.432774761, 42.884702058], [-77.466670171, 42.91366225], [-77.505434486, 42.921502462], [-77.474305741, 42.948348148], [-77.478514946, 42.961658249], [-77.426556704, 42.979771099], [-77.375801401, 43.024161562], [-77.385242471, 43.083890701], [-77.361285375, 43.09433171], [-77.394395658, 43.108678154], [-77.386227912, 43.156357089], [-77.403656409, 43.171985003], [-77.371830105, 43.182675877], [-77.335886656, 43.15421705], [-77.238996171, 43.191102348], [-77.232246625, 43.174323383], [-77.21233581, 43.176860163], [-77.194101587, 43.213063795], [-77.14906595, 43.185513505], [-77.171012315, 43.169593909], [-77.142470053, 43.127969066], [-77.127512724, 43.150776558], [-77.109188922, 43.142668814], [-77.108659345, 43.169303332], [-77.06913581, 43.147489163], [-77.048268215, 43.160832862], [-77.040178355, 43.147851412], [-77.011541071, 43.155808048], [-76.988618857, 43.130765161], [-76.980641302, 43.157527679], [-76.940061987, 43.148706497], [-76.916506026, 43.161288631], [-76.895554079, 43.116379072], [-76.85482789, 43.101438787], [-76.845929036, 43.112208097], [-76.863769667, 43.16103411], [-76.846223605, 43.174254437], [-76.825629656, 43.16123815], [-76.809636178, 43.178029054], [-76.779767489, 43.145914779], [-76.750122035, 43.165775956], [-76.751279159, 43.193023412], [-76.729954492, 43.195526124], [-76.707874465, 43.148185831], [-76.691697253, 43.19584676], [-76.674524356, 43.197182064], [-76.635886332, 43.127185787], [-76.615385818, 43.133191288], [-76.592879712, 43.112430421], [-76.571291419, 43.156662936], [-76.597918343, 43.158770948], [-76.607640911, 43.185957393], [-76.573818693, 43.182250959], [-76.557471081, 43.211952469], [-76.495143081, 43.186158043], [-76.496374636, 43.203591823]]]}, "properties": {"huc8": "04140201", "name": "Seneca", "states": "NY", "areasqkm": 8961.11, "dc_states": "NY", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-75.466341179, 43.520437072], [-75.491400888, 43.505730791], [-75.484514642, 43.455858934], [-75.514493729, 43.447015209], [-75.542324366, 43.379340134], [-75.499840742, 43.349445748], [-75.445771791, 43.346576679], [-75.482680848, 43.337852062], [-75.491517777, 43.316615862], [-75.488330822, 43.294116667], [-75.449881945, 43.279221629], [-75.458613196, 43.268533581], [-75.436295466, 43.233255165], [-75.45643034, 43.212728259], [-75.447921386, 43.189313176], [-75.523438271, 43.161169293], [-75.49629827, 43.134838049], [-75.502655252, 43.091157849], [-75.485111857, 43.086989964], [-75.510138434, 43.058160203], [-75.506608367, 43.036665947], [-75.45782572, 43.007298874], [-75.468999988, 42.958099016], [-75.526341078, 42.94267465], [-75.562839901, 42.962905012], [-75.570350383, 42.899495964], [-75.587603096, 42.895400181], [-75.649096744, 42.91379953], [-75.652524654, 42.931614394], [-75.692992226, 42.956793705], [-75.698097789, 42.933952666], [-75.746000458, 42.915668499], [-75.728996721, 42.887077446], [-75.749803381, 42.866247675], [-75.732058364, 42.859046305], [-75.734044396, 42.843127313], [-75.795621405, 42.848639], [-75.835562625, 42.823640788], [-75.874224252, 42.82503807], [-75.87454367, 42.793979572], [-75.888433027, 42.787577219], [-75.907964719, 42.789572711], [-75.903968636, 42.816399027], [-75.916537543, 42.817143739], [-75.941581211, 42.872476025], [-75.97336127, 42.883650249], [-75.971714434, 42.908354173], [-75.984048425, 42.889856197], [-76.014393778, 42.900616808], [-76.054705416, 42.832158916], [-76.018607593, 42.804329645], [-76.055657902, 42.805972148], [-76.080321193, 42.774748375], [-76.09113364, 42.857049885], [-76.116443538, 42.88257253], [-76.099707804, 42.883722192], [-76.080545959, 42.934686663], [-76.12198035, 42.97314434], [-76.111583994, 42.995780857], [-76.134388658, 43.021723644], [-76.107506681, 43.046333284], [-76.060026691, 43.040448599], [-76.072952527, 43.065339066], [-76.016695605, 43.100912553], [-76.059826409, 43.130823404], [-76.119099162, 43.104831099], [-76.128580193, 43.113867196], [-76.114921865, 43.130666776], [-76.169564341, 43.119704959], [-76.233050905, 43.165348425], [-76.236041808, 43.190046544], [-76.276969443, 43.19403412], [-76.279037275, 43.222942456], [-76.33516564, 43.275107844], [-76.347315632, 43.316520695], [-76.38305166, 43.35133976], [-76.378765335, 43.369901215], [-76.359281429, 43.360782721], [-76.356103713, 43.388790234], [-76.310177668, 43.384258309], [-76.247640098, 43.354371536], [-76.238721234, 43.328225465], [-76.216248432, 43.375133798], [-76.155257394, 43.346604696], [-76.152962982, 43.370987714], [-76.080617844, 43.347804904], [-76.033033368, 43.38188833], [-75.932870696, 43.368657208], [-75.910586872, 43.384646143], [-75.954383056, 43.428088751], [-75.944807873, 43.444436369], [-75.966453266, 43.471762239], [-75.938808798, 43.499929819], [-75.899595897, 43.504502757], [-75.817956396, 43.453502747], [-75.820866529, 43.472491383], [-75.874902104, 43.5187918], [-75.794055399, 43.518986126], [-75.734497196, 43.473041014], [-75.640541222, 43.47529741], [-75.617242027, 43.499798461], [-75.59826617, 43.498575454], [-75.66543268, 43.630616658], [-75.651846132, 43.674849679], [-75.666708636, 43.691406468], [-75.634609806, 43.69578981], [-75.638920846, 43.712868167], [-75.572931687, 43.695875035], [-75.546156729, 43.655821204], [-75.483106209, 43.650301067], [-75.482222771, 43.600469371], [-75.51735176, 43.569151585], [-75.516361103, 43.531334273], [-75.466341179, 43.520437072]]]}, "properties": {"huc8": "04140202", "name": "Oneida", "states": "NY", "areasqkm": 3879.32, "dc_states": "NY", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-74.680264071, 44.995570176], [-74.708204828, 44.961889427], [-74.759978799, 44.952346839], [-74.751524065, 44.943497093], [-74.787741426, 44.902137287], [-74.790844476, 44.883686492], [-74.778275546, 44.88083186], [-74.807554221, 44.859968785], [-74.804290305, 44.842186306], [-74.859411216, 44.801802705], [-74.842186444, 44.788227971], [-74.875515613, 44.776609891], [-74.86502844, 44.763479931], [-74.920918399, 44.735570242], [-74.948355906, 44.675557359], [-74.922507613, 44.662077652], [-74.883935053, 44.668421064], [-74.887761121, 44.648915442], [-74.861594861, 44.630434583], [-74.851843572, 44.610717789], [-74.864324277, 44.603042788], [-74.834846222, 44.564716872], [-74.784401381, 44.553509274], [-74.745832863, 44.576428889], [-74.719276046, 44.560216465], [-74.70987209, 44.535842081], [-74.73620093, 44.514063601], [-74.735919888, 44.493384339], [-74.68005249, 44.496671038], [-74.656467015, 44.457500542], [-74.621985744, 44.450722598], [-74.587092488, 44.416862131], [-74.595946834, 44.402100806], [-74.584618135, 44.394176398], [-74.543932169, 44.400055847], [-74.534951501, 44.369681242], [-74.490303216, 44.368621097], [-74.478704248, 44.355207703], [-74.49652297, 44.336731177], [-74.46803519, 44.32860522], [-74.477990885, 44.314297853], [-74.44393422, 44.290635747], [-74.40106211, 44.286797247], [-74.39493117, 44.26012451], [-74.357681601, 44.275760843], [-74.323860079, 44.219991775], [-74.299921558, 44.236997174], [-74.258388107, 44.217416206], [-74.193477647, 44.22988464], [-74.131448114, 44.18701407], [-74.101138506, 44.191553933], [-74.080025339, 44.215812213], [-74.076455411, 44.20065587], [-74.028328614, 44.179549303], [-74.031217678, 44.159500337], [-74.064287519, 44.151045931], [-74.067023252, 44.124056584], [-74.098419574, 44.096182253], [-74.132637793, 44.098110192], [-74.155592351, 44.045769227], [-74.19628796, 44.035148877], [-74.25094281, 44.068238577], [-74.266509926, 44.066304652], [-74.283417388, 44.073025514], [-74.313265533, 44.07284361], [-74.330256163, 44.024903039], [-74.363693164, 44.009320088], [-74.352610793, 43.998864938], [-74.368772602, 43.993309154], [-74.361916952, 43.95803944], [-74.376827849, 43.950672461], [-74.36814189, 43.933091434], [-74.297572596, 43.932830006], [-74.322698916, 43.897913897], [-74.399618397, 43.897925844], [-74.396984147, 43.857371415], [-74.489914606, 43.834866472], [-74.461046107, 43.796973159], [-74.504126542, 43.787531291], [-74.493305147, 43.754185264], [-74.51474334, 43.737000797], [-74.554467786, 43.737627338], [-74.578738597, 43.758694824], [-74.658437981, 43.722615312], [-74.712391802, 43.730829129], [-74.667570002, 43.761385003], [-74.66837531, 43.783371589], [-74.696593871, 43.794000841], [-74.752415781, 43.764834262], [-74.759907595, 43.774949504], [-74.731957306, 43.803186327], [-74.808807054, 43.793845433], [-74.820687825, 43.804335366], [-74.703165841, 43.863763769], [-74.718380596, 43.909171914], [-74.743980774, 43.915689381], [-74.734953625, 43.92483248], [-74.668901199, 43.930129279], [-74.612164727, 43.955291456], [-74.676793265, 43.968942231], [-74.666996629, 43.980481939], [-74.691958736, 43.988933116], [-74.686487005, 44.007777817], [-74.723694364, 44.036665076], [-74.796350462, 44.030767321], [-74.793036386, 44.06242674], [-74.817896932, 44.058506099], [-74.854875843, 44.084528204], [-74.749441466, 44.107608104], [-74.712937018, 44.140094405], [-74.690962325, 44.122860778], [-74.661487863, 44.137349395], [-74.643206402, 44.206426914], [-74.663915831, 44.222700321], [-74.608566948, 44.256227931], [-74.665644536, 44.297400924], [-74.7590116, 44.307238369], [-74.764239494, 44.398984127], [-74.795709537, 44.423776168], [-74.819565912, 44.42250721], [-74.835862377, 44.447253006], [-74.87604478, 44.469874839], [-74.971728861, 44.464795328], [-74.970150352, 44.484811704], [-74.948941806, 44.482420337], [-74.937007055, 44.505986932], [-74.982356742, 44.605114828], [-75.024245606, 44.599108669], [-75.038853905, 44.616157403], [-75.11392132, 44.613821867], [-75.118698155, 44.627279057], [-75.130001556, 44.610849798], [-75.142150854, 44.617852488], [-75.127726389, 44.664397655], [-75.144861694, 44.677048475], [-75.091604693, 44.782520772], [-75.096580697, 44.80536806], [-75.063321939, 44.840158823], [-75.022394727, 44.855334762], [-74.998982598, 44.8886434], [-74.910060739, 44.926584866], [-74.853019447, 44.92780574], [-74.837949827, 44.948359358], [-74.791080967, 44.95527413], [-74.756283818, 44.982690332], [-74.680264071, 44.995570176]]]}, "properties": {"huc8": "04150305", "name": "Raquette", "states": "NY", "areasqkm": 3261.47, "dc_states": "NY", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-73.394065109, 45.492062375], [-73.407174849, 45.408873422], [-73.391099867, 45.384158395], [-73.421635633, 45.326366797], [-73.393090645, 45.323140312], [-73.418581766, 45.303057978], [-73.422323785, 45.244821452], [-73.470892401, 45.245310877], [-73.477749312, 45.203422844], [-73.508415756, 45.194986868], [-73.559289211, 45.138715963], [-73.568272583, 45.069868124], [-73.599631271, 45.064481734], [-73.59413021, 45.039684696], [-73.635788902, 44.972294817], [-73.715867252, 44.936454471], [-73.74639802, 44.953759902], [-73.864579318, 44.911141613], [-73.94882556, 44.904902143], [-73.954686832, 44.865533588], [-73.983309164, 44.828945548], [-73.943608084, 44.795216554], [-73.872217305, 44.814775761], [-73.858806502, 44.782437685], [-73.839638094, 44.779911876], [-73.864751283, 44.763424985], [-73.865054671, 44.728523177], [-73.881495318, 44.719319239], [-73.864000641, 44.70124775], [-73.895113025, 44.675257703], [-73.919724788, 44.675945559], [-73.961237701, 44.644178766], [-74.028861605, 44.633642906], [-74.06409771, 44.680159393], [-74.041221343, 44.701302752], [-74.056476189, 44.722871856], [-74.028884598, 44.739935101], [-74.043634966, 44.777633786], [-74.090558378, 44.789200717], [-74.084402062, 44.763712236], [-74.113094401, 44.778604624], [-74.142270211, 44.747763545], [-74.194591595, 44.755349825], [-74.200935567, 44.831616312], [-74.288421048, 44.864465947], [-74.292884866, 44.899244328], [-74.316053795, 44.912318628], [-74.306717254, 44.918780192], [-74.352071187, 44.9226513], [-74.379910123, 44.942830391], [-74.39392642, 44.978495773], [-74.420299673, 44.989196368], [-74.383908307, 45.037033319], [-74.239649925, 45.092769622], [-74.211650021, 45.126379248], [-74.09259489, 45.151598575], [-74.087112026, 45.175012394], [-73.934015838, 45.195158157], [-73.928112689, 45.216068021], [-73.880792541, 45.230177475], [-73.893854825, 45.241813749], [-73.868673545, 45.256265238], [-73.876504659, 45.276738927], [-73.788323929, 45.327444875], [-73.757026258, 45.378489626], [-73.702860172, 45.359373608], [-73.708861822, 45.382563472], [-73.677535304, 45.412084613], [-73.663640299, 45.411486499], [-73.66579765, 45.391459516], [-73.607300039, 45.402345743], [-73.60665217, 45.385462264], [-73.583859519, 45.384800188], [-73.571212799, 45.406176099], [-73.547835791, 45.384865918], [-73.5352079, 45.4020073], [-73.518540361, 45.379925243], [-73.480775037, 45.403240511], [-73.490605851, 45.435168617], [-73.417058938, 45.498731113], [-73.394065109, 45.492062375]]]}, "properties": {"huc8": "04150308", "name": "Chateaugay-English", "states": "CN,NY", "areasqkm": 2980.13, "dc_states": "NY", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-79.666650197, 40.680129818], [-79.675112937, 40.63472706], [-79.645309301, 40.61181862], [-79.641695995, 40.581945848], [-79.654647915, 40.544346214], [-79.622963019, 40.514276824], [-79.615691975, 40.474863074], [-79.680135621, 40.478599359], [-79.701003919, 40.494589674], [-79.761978188, 40.469185674], [-79.818748406, 40.485456754], [-79.829757708, 40.463890741], [-79.877609148, 40.449919431], [-79.960434026, 40.455124515], [-80.013023457, 40.441987228], [-80.011138811, 40.483476833], [-80.048156784, 40.52069852], [-80.034736571, 40.524333223], [-80.034904578, 40.572098709], [-80.107643177, 40.595745337], [-80.083743344, 40.620138646], [-80.087326034, 40.635894702], [-80.051780681, 40.643378963], [-80.042717016, 40.669220004], [-80.01007839, 40.65708064], [-79.935462891, 40.662661048], [-79.867637719, 40.706730799], [-79.864944306, 40.72679709], [-79.813980053, 40.731536537], [-79.794494702, 40.799374799], [-79.813156123, 40.812961762], [-79.80998242, 40.82897728], [-79.769508457, 40.875191694], [-79.773933365, 40.926284397], [-79.79399104, 40.947257695], [-79.762025594, 40.980518402], [-79.718940828, 40.976098718], [-79.697181721, 40.955046511], [-79.63681781, 40.951246455], [-79.588210194, 40.91049259], [-79.589819245, 40.864925565], [-79.607093856, 40.859363964], [-79.599971451, 40.823244685], [-79.622696011, 40.807729455], [-79.608991573, 40.790315027], [-79.628818974, 40.773051217], [-79.627030052, 40.729575261], [-79.67722004, 40.71928538], [-79.682861342, 40.680383164], [-79.666650197, 40.680129818]]]}, "properties": {"huc8": "05010009", "name": "Lower Allegheny", "states": "PA", "areasqkm": 1281.11, "dc_states": "PA", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-80.449920688, 40.940311811], [-80.448608363, 40.905070406], [-80.381797628, 40.891309834], [-80.378839924, 40.870451502], [-80.352483058, 40.855899187], [-80.38342306, 40.826940791], [-80.369538732, 40.812003528], [-80.391510041, 40.802898395], [-80.387614908, 40.766780892], [-80.425676735, 40.761547499], [-80.426818704, 40.746488615], [-80.471084533, 40.720328643], [-80.453903304, 40.693677235], [-80.354185006, 40.719345431], [-80.295684855, 40.696667078], [-80.25335692, 40.714892933], [-80.249786415, 40.736969206], [-80.153343256, 40.698017365], [-80.14305867, 40.670652618], [-80.095169219, 40.641805366], [-80.083743344, 40.620138646], [-80.106483583, 40.609441361], [-80.095455458, 40.601037751], [-80.106277433, 40.589053348], [-80.034904578, 40.572098709], [-80.034736571, 40.524333223], [-80.048156784, 40.52069852], [-80.011138811, 40.483476833], [-80.017143377, 40.437639363], [-79.98545267, 40.417718695], [-79.974690524, 40.369359954], [-80.034568728, 40.343363947], [-80.069137498, 40.308429038], [-80.046265099, 40.283123367], [-80.098884502, 40.235369474], [-80.103127123, 40.165268966], [-80.128463676, 40.121767933], [-80.165657201, 40.125089383], [-80.187706127, 40.15106125], [-80.225837206, 40.150390013], [-80.250325495, 40.115718353], [-80.278747463, 40.114866563], [-80.290794417, 40.082264286], [-80.316710822, 40.115677476], [-80.312362622, 40.188914644], [-80.338508577, 40.203567153], [-80.322685127, 40.218225557], [-80.333038175, 40.235555489], [-80.458160348, 40.247485433], [-80.485275203, 40.264654847], [-80.513442903, 40.251982419], [-80.562361639, 40.294062673], [-80.589607082, 40.292280147], [-80.60551041, 40.308627371], [-80.652951446, 40.310274009], [-80.702356037, 40.280610417], [-80.783182409, 40.275162105], [-80.855018076, 40.331503455], [-80.929694381, 40.32139555], [-80.94822165, 40.346437042], [-80.952321496, 40.418837045], [-81.038344618, 40.505995874], [-81.02364045, 40.531654482], [-81.02631047, 40.574812805], [-80.977734831, 40.579255407], [-80.964896169, 40.609167371], [-80.923185196, 40.62144873], [-80.926106986, 40.658939456], [-80.952546862, 40.687655364], [-80.943142917, 40.721956347], [-80.893878635, 40.763535027], [-80.933091369, 40.784551148], [-80.939041074, 40.806040828], [-80.900943544, 40.819844757], [-80.910440114, 40.836809372], [-80.897565391, 40.894013171], [-80.930686441, 40.91098327], [-80.912921872, 40.972297674], [-80.77920049, 40.978206103], [-80.717875805, 40.951724594], [-80.713215676, 40.932738428], [-80.733298536, 40.915848558], [-80.69515672, 40.847961938], [-80.67399567, 40.84941641], [-80.684708353, 40.887865548], [-80.671535607, 40.924202894], [-80.643815395, 40.911975091], [-80.61600798, 40.856953924], [-80.588916924, 40.867049938], [-80.622239675, 40.904627895], [-80.612135734, 40.921597218], [-80.622242357, 40.933825736], [-80.59101924, 40.936990862], [-80.578222807, 40.964946991], [-80.558107223, 40.968565022], [-80.522830572, 40.945730423], [-80.47958753, 40.958912299], [-80.449920688, 40.940311811]]]}, "properties": {"huc8": "05030101", "name": "Upper Ohio", "states": "OH,PA,WV", "areasqkm": 5145.19, "dc_states": "PA", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-80.698060628, 41.581520831], [-80.699378337, 41.536373382], [-80.678142514, 41.50002507], [-80.691651311, 41.401754981], [-80.676709708, 41.376487052], [-80.686445739, 41.318258172], [-80.668654677, 41.295066482], [-80.668278005, 41.254625296], [-80.629848327, 41.219314432], [-80.59975725, 41.140494352], [-80.570898768, 41.111747091], [-80.549856331, 41.11719883], [-80.459907725, 41.071680144], [-80.442718396, 41.039613889], [-80.376876705, 40.997011434], [-80.370544387, 40.979918725], [-80.396690808, 40.929477805], [-80.424739396, 40.940718498], [-80.445495782, 40.921048915], [-80.47958753, 40.958912299], [-80.522830572, 40.945730423], [-80.558107223, 40.968565022], [-80.578222807, 40.964946991], [-80.59101924, 40.936990862], [-80.622242357, 40.933825736], [-80.612135734, 40.921597218], [-80.622239675, 40.904627895], [-80.588916924, 40.867049938], [-80.61600798, 40.856953924], [-80.643815395, 40.911975091], [-80.671535607, 40.924202894], [-80.684708353, 40.887865548], [-80.67399567, 40.84941641], [-80.69515672, 40.847961938], [-80.733298536, 40.915848558], [-80.713215676, 40.932738428], [-80.717875805, 40.951724594], [-80.77920049, 40.978206103], [-80.912921872, 40.972297674], [-80.930686441, 40.91098327], [-80.897565391, 40.894013171], [-80.910440114, 40.836809372], [-80.901013431, 40.819580828], [-80.933089134, 40.807394181], [-80.981977787, 40.818218594], [-80.986931083, 40.781306301], [-80.99873316, 40.794248139], [-81.045833018, 40.786655997], [-81.033695516, 40.810226832], [-81.068229941, 40.852002745], [-81.109409419, 40.857137268], [-81.125307497, 40.843142574], [-81.143608418, 40.85669527], [-81.176709888, 40.851528024], [-81.170131054, 40.873218779], [-81.211188642, 40.873178368], [-81.222296533, 40.893045371], [-81.201700923, 40.915848171], [-81.220292148, 40.916779464], [-81.221635428, 40.937252318], [-81.247094271, 40.934358393], [-81.247203556, 40.960964237], [-81.279003647, 40.973185306], [-81.22652137, 40.99851123], [-81.221265015, 41.031889951], [-81.201486733, 41.043228929], [-81.2195833, 41.080153202], [-81.197003808, 41.098624413], [-81.233862456, 41.112388378], [-81.239909109, 41.147328382], [-81.220090505, 41.169993227], [-81.245066461, 41.174347614], [-81.241159555, 41.203203445], [-81.25415906, 41.208957201], [-81.216179696, 41.217738842], [-81.211714652, 41.246964758], [-81.175050524, 41.266988074], [-81.189373877, 41.288399642], [-81.152917382, 41.311668193], [-81.152689812, 41.357863074], [-81.105682817, 41.384997999], [-81.120694635, 41.350478089], [-81.010470387, 41.333750641], [-80.996484872, 41.303180462], [-80.946054068, 41.284684813], [-80.856611428, 41.308738029], [-80.800616738, 41.350391364], [-80.808466043, 41.453969067], [-80.771269825, 41.481773174], [-80.749687221, 41.57214812], [-80.698060628, 41.581520831]]]}, "properties": {"huc8": "05030103", "name": "Mahoning", "states": "OH,PA", "areasqkm": 2952.11, "dc_states": "OH", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-79.848114178, 41.163973068], [-79.785163928, 41.097633665], [-79.814453091, 41.068026343], [-79.820181846, 41.020628315], [-79.793327437, 40.940793568], [-79.773933365, 40.926284397], [-79.769508457, 40.875191694], [-79.80998242, 40.82897728], [-79.813156123, 40.812961762], [-79.794494702, 40.799374799], [-79.813980053, 40.731536537], [-79.864944306, 40.72679709], [-79.867637719, 40.706730799], [-79.927215471, 40.665422643], [-80.01007839, 40.65708064], [-80.042717016, 40.669220004], [-80.051780681, 40.643378963], [-80.093711792, 40.631930089], [-80.14305867, 40.670652618], [-80.153343256, 40.698017365], [-80.247108606, 40.732450242], [-80.244865474, 40.750076898], [-80.300033602, 40.82287562], [-80.288368066, 40.843904469], [-80.321311816, 40.854142957], [-80.280021644, 40.902568387], [-80.272178645, 40.947677329], [-80.218055623, 40.972158745], [-80.225311238, 41.004622705], [-80.201438762, 41.046453209], [-80.212699774, 41.111498499], [-80.186618139, 41.108619552], [-80.176429584, 41.12268607], [-80.186128317, 41.150420578], [-80.127502439, 41.172169089], [-80.139625657, 41.193410376], [-80.108143865, 41.196453142], [-80.117386007, 41.237672541], [-80.078926255, 41.267190814], [-80.100482269, 41.282806216], [-80.0950013, 41.306965955], [-80.018577625, 41.296741517], [-79.998123306, 41.254622983], [-79.956420818, 41.226824202], [-79.955169802, 41.188352396], [-79.848114178, 41.163973068]]]}, "properties": {"huc8": "05030105", "name": "Connoquenessing", "states": "PA", "areasqkm": 2171.22, "dc_states": "PA", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-81.82735878, 39.405278388], [-81.780501662, 39.359311494], [-81.819071172, 39.347739967], [-81.83592805, 39.315781566], [-81.76015797, 39.27533746], [-81.756681887, 39.232414636], [-81.740388988, 39.217864099], [-81.754797277, 39.183525923], [-81.800757197, 39.196305606], [-81.801694003, 39.162257227], [-81.839731215, 39.153294447], [-81.875401465, 39.21140221], [-81.858803568, 39.228505406], [-81.882369069, 39.234065446], [-81.885483233, 39.264503452], [-81.903117774, 39.254919442], [-81.963379232, 39.268388095], [-81.993660388, 39.254900339], [-82.019851176, 39.266966196], [-82.038635699, 39.309069607], [-82.070305256, 39.317614141], [-82.097194789, 39.288422945], [-82.0955137, 39.228604975], [-82.142994879, 39.22367138], [-82.160539328, 39.193320307], [-82.225530206, 39.240205261], [-82.206288395, 39.260416093], [-82.232909946, 39.308355483], [-82.21367359, 39.323147746], [-82.236198156, 39.391555789], [-82.256336091, 39.406366321], [-82.252006708, 39.440062794], [-82.320413975, 39.435908768], [-82.340323358, 39.451949093], [-82.3618578, 39.428274217], [-82.379125266, 39.454848501], [-82.403629689, 39.457687798], [-82.455533386, 39.437139097], [-82.49645844, 39.494879339], [-82.585026651, 39.53804684], [-82.602548449, 39.564968172], [-82.631137161, 39.548829827], [-82.651278286, 39.568756732], [-82.711924344, 39.565024349], [-82.754261553, 39.581425133], [-82.755900323, 39.59881917], [-82.824778794, 39.649239185], [-82.821552098, 39.667597119], [-82.781642556, 39.677807632], [-82.786835223, 39.729715231], [-82.747866063, 39.746825699], [-82.786093801, 39.776400749], [-82.768335074, 39.784677599], [-82.71690148, 39.752532932], [-82.616120963, 39.805473241], [-82.60054618, 39.779603485], [-82.574576198, 39.791599843], [-82.51604554, 39.781682346], [-82.500119417, 39.84030265], [-82.436841338, 39.846049849], [-82.41163653, 39.864373747], [-82.377500026, 39.850773577], [-82.360717325, 39.860254142], [-82.297236977, 39.805015508], [-82.270311205, 39.797574375], [-82.240897029, 39.812195632], [-82.24389243, 39.770946387], [-82.147922365, 39.736119035], [-82.147040783, 39.720932963], [-82.219187765, 39.678846839], [-82.23066446, 39.656792048], [-82.171563177, 39.63667855], [-82.09339693, 39.675450567], [-82.005567131, 39.668863657], [-81.974353848, 39.613442275], [-81.989653257, 39.584371868], [-81.939195631, 39.520746681], [-81.886841831, 39.492368731], [-81.886624602, 39.431871268], [-81.857451675, 39.425491009], [-81.852045623, 39.404305044], [-81.82735878, 39.405278388]]]}, "properties": {"huc8": "05030204", "name": "Hocking", "states": "OH", "areasqkm": 3098.27, "dc_states": "OH", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-81.72633299, 41.134735381], [-81.69978681, 41.111979966], [-81.673687217, 41.128742193], [-81.654493598, 41.122980153], [-81.643624571, 41.142642176], [-81.60231444, 41.112423514], [-81.55110502, 41.118269121], [-81.543465851, 41.090599989], [-81.560997513, 41.073707795], [-81.529261616, 41.073448782], [-81.534599212, 41.057263946], [-81.48043659, 41.043482607], [-81.488650647, 41.029175019], [-81.463230458, 41.012636637], [-81.452330378, 41.023611521], [-81.404054848, 41.007344608], [-81.392157313, 41.018843477], [-81.375462738, 40.996704316], [-81.351928887, 40.995531385], [-81.344374505, 40.963523512], [-81.311900255, 40.958278393], [-81.273520795, 40.9748551], [-81.247203556, 40.960964237], [-81.247309593, 40.93454576], [-81.221635428, 40.937252318], [-81.220292148, 40.916779464], [-81.200771299, 40.91390488], [-81.220550176, 40.884454732], [-81.169764367, 40.873014246], [-81.176709888, 40.851528024], [-81.068229941, 40.852002745], [-81.034477618, 40.812114335], [-81.051179376, 40.792303508], [-81.036908117, 40.783025389], [-80.999053147, 40.794273084], [-80.98407754, 40.781699215], [-80.988792893, 40.814379607], [-80.961411354, 40.821091091], [-80.894046155, 40.764650677], [-80.943142917, 40.721956347], [-80.952546862, 40.687655364], [-80.926106986, 40.658939456], [-80.923213776, 40.621345167], [-80.964896169, 40.609167371], [-80.977734831, 40.579255407], [-81.028802004, 40.568387036], [-81.02364045, 40.531654482], [-81.038999942, 40.507648204], [-80.952321496, 40.418837045], [-80.941468324, 40.334899341], [-81.019685444, 40.275485341], [-81.033760485, 40.226833735], [-81.015924778, 40.201371823], [-81.039308396, 40.191824888], [-81.082510945, 40.124347631], [-81.05621573, 40.080264542], [-81.076651749, 40.062788669], [-81.068988081, 40.027389888], [-81.103778925, 40.001925383], [-81.129732666, 40.008502756], [-81.182665316, 39.988633338], [-81.221898255, 40.023170475], [-81.221902486, 40.053030614], [-81.295210627, 40.058132533], [-81.326076683, 40.093368892], [-81.314539967, 40.102004651], [-81.336074975, 40.108843867], [-81.335134325, 40.134347741], [-81.369138685, 40.164076839], [-81.338539926, 40.167917553], [-81.337342885, 40.180456613], [-81.357757029, 40.193339203], [-81.383054731, 40.184669648], [-81.380793866, 40.203911845], [-81.41701704, 40.223100994], [-81.522860763, 40.232679878], [-81.570504216, 40.260935639], [-81.607683775, 40.236010645], [-81.693305461, 40.261569623], [-81.803650169, 40.231525217], [-81.828875658, 40.241882567], [-81.834906338, 40.272017512], [-81.87420219, 40.275282268], [-81.794146953, 40.349219862], [-81.79105827, 40.421985929], [-81.769014624, 40.450475727], [-81.783335475, 40.457787041], [-81.785216448, 40.486015176], [-81.768504826, 40.505621318], [-81.783965347, 40.552437012], [-81.765550492, 40.569295947], [-81.793416766, 40.619424467], [-81.765167562, 40.683612858], [-81.785004673, 40.734609102], [-81.803421972, 40.740012203], [-81.785984544, 40.759548312], [-81.800055919, 40.786956225], [-81.847862033, 40.784046089], [-81.841286657, 40.810147916], [-81.855555771, 40.831672077], [-81.898791669, 40.848688875], [-81.927902756, 40.894441073], [-81.923419086, 40.954611217], [-81.875580369, 40.971120601], [-81.902355818, 40.988768076], [-81.991661577, 41.13066939], [-81.927083193, 41.120570576], [-81.90989512, 41.140246099], [-81.884184091, 41.111912495], [-81.86262956, 41.113463913], [-81.858265875, 41.086829459], [-81.83114588, 41.072559034], [-81.767480401, 41.082782391], [-81.782805411, 41.143049276], [-81.72633299, 41.134735381]]]}, "properties": {"huc8": "05040001", "name": "Tuscarawas", "states": "OH", "areasqkm": 6720.15, "dc_states": "OH", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-82.714080064, 40.376923327], [-82.696639209, 40.337580119], [-82.654301971, 40.323330943], [-82.621986001, 40.33876345], [-82.601289152, 40.327498798], [-82.540595083, 40.334568177], [-82.504934429, 40.316886786], [-82.460619389, 40.325723593], [-82.425633519, 40.285543566], [-82.382467328, 40.285821651], [-82.26771575, 40.230753008], [-82.244492232, 40.202038889], [-82.255854904, 40.168864105], [-82.287820785, 40.14630178], [-82.285384117, 40.12999225], [-82.251919774, 40.089074318], [-82.22008863, 40.10742772], [-82.223697631, 40.077314142], [-82.150706826, 40.075959359], [-82.12929946, 40.09868202], [-82.035172044, 40.132034365], [-82.037970362, 40.092622552], [-82.013736663, 40.062515859], [-82.027476428, 40.048322294], [-81.992146729, 39.985860978], [-82.020426093, 39.950041685], [-82.015811144, 39.924771909], [-82.03944513, 39.914055977], [-82.0814355, 39.941500518], [-82.132737307, 39.94254816], [-82.183099984, 39.991661165], [-82.259769111, 39.992297028], [-82.386339603, 39.96052951], [-82.406990467, 39.939073715], [-82.39658597, 39.908092741], [-82.418639242, 39.894545082], [-82.410559564, 39.868605766], [-82.422110526, 39.855005089], [-82.460205524, 39.88679466], [-82.503974139, 39.878835056], [-82.551166861, 39.901970033], [-82.602424949, 39.897898916], [-82.640710412, 39.934348438], [-82.706958382, 39.956891898], [-82.762417733, 40.039722864], [-82.735242724, 40.091887359], [-82.707533121, 40.107238984], [-82.735336035, 40.132480566], [-82.72577092, 40.15728027], [-82.744964867, 40.169203494], [-82.733547001, 40.183431868], [-82.742282986, 40.221978371], [-82.71391642, 40.222455774], [-82.740580111, 40.320069616], [-82.717262088, 40.33198527], [-82.714080064, 40.376923327]]]}, "properties": {"huc8": "05040006", "name": "Licking", "states": "OH", "areasqkm": 2020.14, "dc_states": "OH", "cluster_count": 1, "data_center_count": 7, "clustered_data_center_count": 7}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-81.444495048, 38.368778863], [-81.423101503, 38.333425752], [-81.387268991, 38.334336446], [-81.37384017, 38.301430625], [-81.299871299, 38.27747994], [-81.308163348, 38.26804086], [-81.260626693, 38.220083283], [-81.243040731, 38.240873912], [-81.225418981, 38.23569403], [-81.245669668, 38.163901542], [-81.230350981, 38.153707228], [-81.200262913, 38.166416644], [-81.173068479, 38.118769332], [-81.191440558, 38.103276572], [-81.186045668, 38.07254886], [-81.202858929, 38.041061665], [-81.162710721, 38.016310268], [-81.177423109, 38.001879674], [-81.156362643, 37.975732262], [-81.188393894, 37.972853103], [-81.187740487, 37.935104611], [-81.206632827, 37.923924514], [-81.19054534, 37.872728174], [-81.20205227, 37.861667743], [-81.182043303, 37.850226036], [-81.240357443, 37.805816941], [-81.265126255, 37.803588769], [-81.2949133, 37.844376788], [-81.29704542, 37.944535404], [-81.34808728, 37.975952935], [-81.459390076, 37.978059654], [-81.470149007, 38.018086015], [-81.459826215, 38.027209356], [-81.477095129, 38.05892169], [-81.539749769, 38.079145898], [-81.515858076, 38.113510413], [-81.581270947, 38.143436538], [-81.601742042, 38.176264891], [-81.633530083, 38.171560715], [-81.648361984, 38.184858753], [-81.646825807, 38.225286345], [-81.610805511, 38.245488404], [-81.611394128, 38.27529592], [-81.590141318, 38.296965587], [-81.6389797, 38.313444219], [-81.644616183, 38.354196155], [-81.584713958, 38.351469935], [-81.578540731, 38.335984615], [-81.548507818, 38.331429072], [-81.444495048, 38.368778863]]]}, "properties": {"huc8": "05050006", "name": "Upper Kanawha", "states": "WV", "areasqkm": 1345.27, "dc_states": "WV", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-82.094504772, 38.850984225], [-82.062741788, 38.83512199], [-82.031107526, 38.844642274], [-82.008249596, 38.828182047], [-81.922750617, 38.839484061], [-81.906935906, 38.797921962], [-81.821788899, 38.78101635], [-81.808971537, 38.7591336], [-81.774747666, 38.752839099], [-81.775915322, 38.733793257], [-81.753996216, 38.726388002], [-81.732442125, 38.686298341], [-81.667175138, 38.659617357], [-81.633725797, 38.656141458], [-81.602604154, 38.67924543], [-81.527553539, 38.676004686], [-81.538528192, 38.698193023], [-81.477071815, 38.754646471], [-81.386717509, 38.713762733], [-81.352393202, 38.711498702], [-81.334552326, 38.727747532], [-81.285458539, 38.714493871], [-81.237094958, 38.659401542], [-81.279003259, 38.642679974], [-81.301923212, 38.613496374], [-81.381822214, 38.607610705], [-81.432655264, 38.575461229], [-81.436973102, 38.557426113], [-81.503217471, 38.54619653], [-81.502879487, 38.526434644], [-81.528657935, 38.517586924], [-81.543796317, 38.528419305], [-81.556668417, 38.487293983], [-81.590472448, 38.462656883], [-81.59437249, 38.408015763], [-81.643835712, 38.382022916], [-81.650591269, 38.333141092], [-81.6389797, 38.313444219], [-81.590141318, 38.296965587], [-81.611394128, 38.27529592], [-81.610805511, 38.245488404], [-81.648947961, 38.225310006], [-81.71101599, 38.272289142], [-81.734545562, 38.271076997], [-81.767296791, 38.344077922], [-81.816628386, 38.35204184], [-81.851882946, 38.402306308], [-81.891673045, 38.407889057], [-81.936627037, 38.377516454], [-82.004168522, 38.375481411], [-82.035729887, 38.410586325], [-82.076871492, 38.514025353], [-82.01978712, 38.622980821], [-82.06882808, 38.633349171], [-82.058001693, 38.642886559], [-82.079320046, 38.671027737], [-82.068611357, 38.695569893], [-82.033703778, 38.693116719], [-82.033586549, 38.711375518], [-82.065401064, 38.740157461], [-82.123832226, 38.751660414], [-82.140319924, 38.79591707], [-82.127620507, 38.810937054], [-82.136657871, 38.845470328], [-82.094504772, 38.850984225]]]}, "properties": {"huc8": "05050008", "name": "Lower Kanawha", "states": "WV", "areasqkm": 2393.94, "dc_states": "WV", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-82.697794883, 40.752116446], [-82.70378369, 40.719913189], [-82.735031396, 40.684442495], [-82.730607717, 40.645789598], [-82.70032364, 40.620982682], [-82.723645895, 40.603648697], [-82.715161651, 40.592013453], [-82.761757075, 40.588437621], [-82.765503167, 40.534504209], [-82.782371252, 40.519938533], [-82.747202008, 40.399857227], [-82.707015007, 40.384995166], [-82.724051505, 40.369672809], [-82.717262088, 40.33198527], [-82.740565239, 40.320177917], [-82.713696181, 40.225407545], [-82.742282986, 40.221978371], [-82.733547001, 40.183431868], [-82.744964867, 40.169203494], [-82.72577092, 40.15728027], [-82.735336035, 40.132480566], [-82.707533121, 40.107238984], [-82.736473023, 40.090163235], [-82.759287506, 40.018170957], [-82.706958382, 39.956891898], [-82.640710412, 39.934348438], [-82.602727174, 39.898036484], [-82.551166861, 39.901970033], [-82.503974139, 39.878835056], [-82.460205524, 39.88679466], [-82.430451749, 39.851222102], [-82.507613359, 39.834875438], [-82.500983446, 39.799200956], [-82.51604554, 39.781682346], [-82.574576198, 39.791599843], [-82.60054618, 39.779603485], [-82.616120963, 39.805473241], [-82.71690148, 39.752532932], [-82.763441681, 39.78638998], [-82.785810917, 39.777130368], [-82.747643649, 39.749885205], [-82.786835223, 39.729715231], [-82.781990975, 39.67746121], [-82.805676042, 39.679841015], [-82.825135111, 39.648938152], [-82.872167289, 39.651448908], [-82.885603159, 39.631630067], [-82.918792992, 39.633722041], [-82.965084999, 39.606434557], [-83.050756096, 39.632548604], [-83.067110747, 39.652524951], [-83.078806131, 39.639249716], [-83.103358209, 39.645800206], [-83.137874693, 39.70722622], [-83.198894114, 39.743984226], [-83.245221406, 39.851611976], [-83.304758608, 39.857351336], [-83.301531434, 39.897230957], [-83.327375084, 39.930315915], [-83.354336261, 39.932876382], [-83.373841226, 39.967911545], [-83.401156575, 39.948789749], [-83.420187652, 39.97355381], [-83.45733729, 39.971483562], [-83.493978292, 40.005561535], [-83.535126925, 40.018758361], [-83.586284697, 40.006574515], [-83.586802125, 40.0386273], [-83.608180493, 40.047810826], [-83.604817897, 40.089703236], [-83.634874195, 40.140353832], [-83.609531731, 40.147759769], [-83.605080605, 40.173113856], [-83.63864401, 40.242864613], [-83.615957975, 40.265223984], [-83.632100493, 40.303284918], [-83.621275693, 40.314349179], [-83.640652269, 40.33823276], [-83.610908837, 40.350547199], [-83.657278925, 40.383056496], [-83.720700116, 40.390157614], [-83.7098521, 40.413516138], [-83.724978716, 40.433436189], [-83.678587765, 40.452779476], [-83.676247299, 40.481901888], [-83.649064661, 40.483150844], [-83.643894405, 40.507187043], [-83.716685445, 40.558848296], [-83.693578542, 40.587709491], [-83.73540491, 40.600754087], [-83.762971521, 40.59114549], [-83.790965737, 40.555820857], [-83.856575579, 40.528413032], [-83.874059707, 40.550278221], [-83.936336668, 40.557876234], [-83.935703725, 40.623565738], [-83.902030975, 40.622518991], [-83.905529172, 40.658168738], [-83.8801381, 40.683190738], [-83.892760814, 40.686092202], [-83.890242488, 40.721922045], [-83.721401543, 40.71156991], [-83.639574498, 40.656829809], [-83.58623311, 40.657913719], [-83.52908814, 40.630270278], [-83.499477506, 40.641863946], [-83.322396398, 40.590764795], [-83.300808341, 40.603741471], [-83.221767336, 40.601789032], [-83.176799684, 40.641238903], [-83.129404723, 40.728677457], [-83.070110172, 40.716755961], [-83.010731608, 40.786557977], [-82.974889725, 40.801018451], [-82.893518566, 40.781013046], [-82.806684524, 40.788392429], [-82.791657954, 40.751652008], [-82.697794883, 40.752116446]]]}, "properties": {"huc8": "05060001", "name": "Upper Scioto", "states": "OH", "areasqkm": 8277.11, "dc_states": "OH", "cluster_count": 1, "data_center_count": 73, "clustered_data_center_count": 73}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-82.226220397, 37.471048325], [-82.263285427, 37.453643203], [-82.381240665, 37.472850352], [-82.420723586, 37.459466041], [-82.465730994, 37.477105349], [-82.517519652, 37.410350799], [-82.610033928, 37.410312921], [-82.618723541, 37.386500627], [-82.653993099, 37.380233318], [-82.663984953, 37.361161292], [-82.647083401, 37.353303761], [-82.672422468, 37.306614429], [-82.748561501, 37.26444742], [-82.797364234, 37.262085557], [-82.80604273, 37.28343442], [-82.890654414, 37.301507294], [-82.909331798, 37.319915593], [-82.885419397, 37.351929963], [-82.910118132, 37.362336099], [-82.899322419, 37.386755109], [-82.940426617, 37.46339643], [-82.878973007, 37.535938323], [-82.902303248, 37.57731381], [-82.904659152, 37.640568108], [-82.945257842, 37.682698399], [-82.972820013, 37.685952962], [-82.972460955, 37.734207482], [-82.940487622, 37.749463886], [-82.988535285, 37.795822353], [-83.018397987, 37.795531541], [-83.041530341, 37.818491489], [-83.039339095, 37.886451215], [-83.068543523, 37.924277664], [-83.063599139, 37.942886919], [-83.098934591, 37.973279894], [-83.024092346, 38.009309799], [-83.022016257, 37.982002081], [-82.987070054, 37.962369711], [-82.970137179, 37.910992802], [-82.920845746, 37.941016407], [-82.874242514, 37.924888612], [-82.875427812, 37.89985627], [-82.835872829, 37.903086455], [-82.790058492, 37.918422342], [-82.75205779, 37.98425308], [-82.68732357, 38.004378618], [-82.633139252, 38.111951084], [-82.600977777, 38.117660792], [-82.589986502, 38.079506488], [-82.564208328, 38.060345799], [-82.580037056, 38.003338427], [-82.552054881, 37.991206379], [-82.588052778, 37.983015389], [-82.57803747, 37.945135773], [-82.6020568, 37.921233834], [-82.5976305, 37.888301254], [-82.670914589, 37.852127612], [-82.645836323, 37.830447883], [-82.672949403, 37.788675368], [-82.653143882, 37.777533889], [-82.639572858, 37.71983707], [-82.563682227, 37.684909284], [-82.521648257, 37.694559277], [-82.443758248, 37.671492369], [-82.405046372, 37.636493475], [-82.376400171, 37.559233249], [-82.308148352, 37.551751614], [-82.293368725, 37.515372157], [-82.227220891, 37.502512962], [-82.226220397, 37.471048325]]]}, "properties": {"huc8": "05070203", "name": "Lower Levisa", "states": "KY", "areasqkm": 2884.09, "dc_states": "KY", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-84.142216952, 39.736369375], [-84.174971462, 39.710515622], [-84.139554472, 39.665661636], [-84.18353364, 39.578907403], [-84.157827915, 39.575325432], [-84.142321945, 39.535048013], [-84.153280438, 39.468071613], [-84.207525642, 39.496772322], [-84.218279273, 39.479015025], [-84.249707491, 39.490820053], [-84.252351762, 39.452859166], [-84.334131123, 39.427756015], [-84.340690674, 39.397144022], [-84.36717424, 39.377473119], [-84.353573771, 39.353450271], [-84.376483024, 39.338113639], [-84.413811566, 39.350951585], [-84.466311307, 39.404327485], [-84.538430573, 39.37680954], [-84.544273021, 39.36184344], [-84.521077843, 39.3481375], [-84.507163169, 39.304552349], [-84.591079744, 39.267525527], [-84.604372891, 39.166854741], [-84.673882099, 39.151701125], [-84.713634225, 39.170585039], [-84.784347268, 39.123076769], [-84.8497024, 39.107564553], [-84.852532657, 39.19119716], [-84.804645928, 39.158425125], [-84.776704969, 39.16935313], [-84.752246739, 39.213012966], [-84.759306999, 39.225755605], [-84.722544463, 39.226136448], [-84.727260711, 39.261756483], [-84.702833207, 39.275372389], [-84.740002455, 39.324136051], [-84.723836096, 39.379584613], [-84.806583943, 39.418920192], [-84.833652558, 39.457995], [-84.830474081, 39.480461481], [-84.891866984, 39.49483985], [-84.884147885, 39.556702021], [-84.894662084, 39.564827207], [-84.844635667, 39.660982046], [-84.852098467, 39.711097988], [-84.823829534, 39.737074766], [-84.828137102, 39.76000822], [-84.742476912, 39.807254705], [-84.756670775, 39.859238748], [-84.713832529, 39.870955441], [-84.709249528, 39.908125523], [-84.731890323, 39.925861749], [-84.691559704, 39.945086453], [-84.668866726, 39.986191158], [-84.637464227, 39.995620553], [-84.621126087, 39.976301167], [-84.560447605, 39.987565968], [-84.534148189, 39.932326828], [-84.484207721, 39.955014918], [-84.458188148, 39.93557829], [-84.468268188, 39.917591188], [-84.431617768, 39.898873363], [-84.446896256, 39.879100684], [-84.421383025, 39.867430601], [-84.385024549, 39.899654362], [-84.35922599, 39.882737789], [-84.326611669, 39.894630734], [-84.312674733, 39.854493741], [-84.27569154, 39.843295757], [-84.22827229, 39.782995615], [-84.148774208, 39.754247937], [-84.142216952, 39.736369375]]]}, "properties": {"huc8": "05080002", "name": "Lower Great Miami, Indiana, Ohio", "states": "IN,OH", "areasqkm": 3576.9, "dc_states": "OH", "cluster_count": 1, "data_center_count": 1, "clustered_data_center_count": 1}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-83.557051957, 39.916607294], [-83.571666658, 39.820003513], [-83.63919291, 39.750037584], [-83.628332019, 39.728504989], [-83.67809251, 39.678702], [-83.670413465, 39.646208975], [-83.72368607, 39.622697476], [-83.724586517, 39.573693994], [-83.704102129, 39.559275571], [-83.698869676, 39.500192765], [-83.629189641, 39.432589146], [-83.688987225, 39.367724392], [-83.695081056, 39.342848721], [-83.652972698, 39.310166272], [-83.677973957, 39.301889363], [-83.67165351, 39.231467578], [-83.698522896, 39.157414439], [-83.74839592, 39.191587779], [-83.805903197, 39.171521428], [-83.854023547, 39.184343519], [-83.865615607, 39.147504332], [-83.944371313, 39.077938202], [-83.959135802, 39.024079265], [-83.935765863, 38.970130267], [-83.979137571, 38.945943745], [-83.987852843, 38.900448295], [-84.012462528, 38.922359946], [-84.055437506, 38.908165517], [-84.089783938, 38.930963637], [-84.104742438, 38.921718629], [-84.11211446, 38.943056287], [-84.150825263, 38.948366137], [-84.148917169, 38.968508246], [-84.201717051, 38.99481711], [-84.201457383, 39.018172803], [-84.28929788, 39.075756015], [-84.429358752, 39.068186792], [-84.420693638, 39.137318197], [-84.473887088, 39.130594346], [-84.4439151, 39.174369457], [-84.390266926, 39.20295957], [-84.396204652, 39.251058223], [-84.350269766, 39.273618552], [-84.360870929, 39.389952812], [-84.340690674, 39.397144022], [-84.327619673, 39.432728144], [-84.252351762, 39.452859166], [-84.249707491, 39.490820053], [-84.218279273, 39.479015025], [-84.207208426, 39.496693793], [-84.156944098, 39.467829112], [-84.14743656, 39.478488299], [-84.149755211, 39.561187002], [-84.18353364, 39.578907403], [-84.139554472, 39.665661636], [-84.163408281, 39.68148217], [-84.170606525, 39.722580049], [-84.098285736, 39.740099404], [-84.065832168, 39.771020654], [-84.027658851, 39.781228337], [-84.006144733, 39.81135023], [-83.947199554, 39.793119136], [-83.950280876, 39.812288913], [-83.916015418, 39.808328483], [-83.908842565, 39.838165465], [-83.803703637, 39.828859094], [-83.804556162, 39.854892317], [-83.824679524, 39.861083124], [-83.803803266, 39.880410109], [-83.757470906, 39.881636712], [-83.746341289, 39.928639356], [-83.631356806, 39.896747951], [-83.587524504, 39.89659724], [-83.557051957, 39.916607294]]]}, "properties": {"huc8": "05090202", "name": "Little Miami", "states": "OH", "areasqkm": 4552.89, "dc_states": "OH", "cluster_count": 1, "data_center_count": 3, "clustered_data_center_count": 2}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-84.359178574, 39.34823418], [-84.350269766, 39.273618552], [-84.396204652, 39.251058223], [-84.390266926, 39.20295957], [-84.4439151, 39.174369457], [-84.472530218, 39.136922422], [-84.420693638, 39.137318197], [-84.43255213, 39.105886313], [-84.422702195, 39.087661448], [-84.473634185, 39.070929828], [-84.505012156, 39.091877046], [-84.511695178, 39.057124618], [-84.553253921, 39.055484178], [-84.57278985, 39.014221343], [-84.602873833, 39.017666819], [-84.628542694, 39.001293184], [-84.615183534, 38.967043015], [-84.6285131, 38.924856784], [-84.607128145, 38.89754239], [-84.612775953, 38.866578522], [-84.585934134, 38.831308426], [-84.591426345, 38.817692163], [-84.673325898, 38.820363017], [-84.700781675, 38.76965967], [-84.771212878, 38.774082245], [-84.788429709, 38.762346985], [-84.790940495, 38.730170222], [-84.871813597, 38.732801677], [-84.87107292, 38.711604954], [-84.918509573, 38.716548862], [-84.914345863, 38.705978634], [-84.929995688, 38.703945728], [-84.975818994, 38.719820919], [-85.025857242, 38.666794779], [-85.054055634, 38.696843298], [-85.1394991, 38.674395861], [-85.187215718, 38.682783159], [-85.181182983, 38.718261721], [-85.150116029, 38.717826904], [-85.185252192, 38.769057693], [-85.161519262, 38.798145147], [-85.190109732, 38.837087931], [-85.178039673, 38.85764009], [-85.208717349, 38.921495738], [-85.206100914, 38.95715675], [-85.231293532, 38.961470368], [-85.26503593, 39.002070429], [-85.237212273, 39.036485436], [-85.294043712, 39.080100927], [-85.309168609, 39.186869117], [-85.356961194, 39.215726677], [-85.366333137, 39.259742901], [-85.34837913, 39.316154072], [-85.288175619, 39.305138032], [-85.266912533, 39.315752934], [-85.255903674, 39.350631195], [-85.234084192, 39.353081736], [-85.195725863, 39.293001237], [-85.152114539, 39.278210159], [-85.156041595, 39.254455688], [-85.132259669, 39.259770158], [-85.069516326, 39.236386391], [-85.043208124, 39.268353793], [-85.041106733, 39.299042615], [-85.006289752, 39.313145581], [-84.961885573, 39.308014932], [-84.964374723, 39.276873234], [-84.867123159, 39.242781194], [-84.833542885, 39.205359342], [-84.860789659, 39.17570323], [-84.838445176, 39.102374004], [-84.713634225, 39.170585039], [-84.673882099, 39.151701125], [-84.604372891, 39.166854741], [-84.591079744, 39.267525527], [-84.507163169, 39.304552349], [-84.521077843, 39.3481375], [-84.544273021, 39.36184344], [-84.538430573, 39.37680954], [-84.466311307, 39.404327485], [-84.413811566, 39.350951585], [-84.376483024, 39.338113639], [-84.359178574, 39.34823418]]]}, "properties": {"huc8": "05090203", "name": "Middle Ohio-Laughery", "states": "IN,KY,OH", "areasqkm": 3652.65, "dc_states": "OH", "cluster_count": 1, "data_center_count": 7, "clustered_data_center_count": 7}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-87.208583777, 40.686138009], [-87.178311532, 40.666471278], [-87.109398162, 40.673587655], [-86.992004132, 40.645238703], [-87.01350761, 40.593212072], [-87.074367559, 40.574216489], [-87.057062482, 40.551133041], [-86.969374215, 40.577609245], [-86.934661662, 40.566530619], [-86.919385677, 40.587058758], [-86.863314037, 40.580009376], [-86.821192151, 40.553550844], [-86.809987073, 40.524003689], [-86.84682188, 40.503571157], [-86.873259609, 40.459153269], [-86.857276832, 40.455580388], [-86.864485686, 40.441425268], [-86.832747375, 40.393285518], [-86.766175931, 40.373779957], [-86.777242486, 40.343550239], [-86.760315872, 40.321398799], [-86.785209631, 40.301535461], [-86.728101676, 40.248772535], [-86.798851107, 40.193527553], [-86.816803519, 40.190887604], [-86.822264498, 40.214869742], [-86.850124334, 40.1882619], [-86.887442505, 40.185005132], [-86.932780598, 40.14080048], [-86.981162613, 40.131633226], [-86.976500665, 40.088040594], [-87.040995812, 40.068121259], [-87.040944313, 40.042017583], [-87.100444352, 40.062322769], [-87.115536874, 40.04824299], [-87.147694027, 40.058350984], [-87.261955148, 39.960057262], [-87.310094541, 39.969309781], [-87.328715122, 39.947314713], [-87.31834892, 39.899749253], [-87.342890596, 39.894247297], [-87.356226539, 39.844192032], [-87.311751133, 39.838188533], [-87.257663583, 39.865328674], [-87.216555214, 39.843497459], [-87.163690274, 39.850440118], [-87.14900062, 39.839057061], [-87.1058313, 39.88359699], [-87.115784173, 39.890192959], [-87.103527343, 39.922128949], [-87.077110236, 39.929911707], [-86.94704551, 39.902294997], [-86.93787605, 39.876604054], [-86.909263884, 39.881451371], [-86.862917607, 39.911937896], [-86.870724028, 39.924163971], [-86.834905451, 39.949357811], [-86.832453435, 39.968918297], [-86.634360616, 39.989013467], [-86.580417191, 40.02347267], [-86.532711182, 40.009874675], [-86.544757222, 39.983968172], [-86.572418456, 39.975811903], [-86.585343872, 39.948317859], [-86.634374802, 39.939014617], [-86.64575312, 39.913291815], [-86.690542703, 39.888653938], [-86.680741076, 39.877150837], [-86.694419329, 39.864992145], [-86.805465674, 39.793619159], [-86.812827801, 39.768347058], [-86.846136694, 39.758060847], [-86.865940933, 39.773650948], [-86.922818666, 39.776456747], [-86.950543021, 39.747371587], [-86.966096556, 39.76273993], [-87.004217451, 39.747595701], [-86.986235117, 39.717500332], [-87.01037333, 39.684720967], [-87.006260698, 39.66543797], [-87.020740663, 39.665426645], [-87.012463843, 39.639247212], [-87.025587415, 39.626237276], [-87.047869986, 39.619709018], [-87.119735634, 39.645256821], [-87.250770485, 39.584282431], [-87.343558764, 39.678377543], [-87.361336774, 39.662157479], [-87.356966293, 39.626660708], [-87.381708514, 39.603133061], [-87.403946525, 39.657157126], [-87.427203541, 39.651197049], [-87.460410958, 39.676129106], [-87.4573654, 39.69226903], [-87.505246734, 39.758409384], [-87.480806594, 39.781247053], [-87.478051758, 39.814056042], [-87.523351705, 39.834596041], [-87.526556259, 39.858719859], [-87.578467256, 39.855145577], [-87.584411329, 39.901618722], [-87.770351118, 39.883658442], [-87.775739229, 39.866497192], [-87.810073561, 39.867426667], [-87.90348903, 39.879276845], [-87.896131373, 39.892843101], [-87.955310918, 39.916116927], [-88.038242377, 39.924704764], [-88.022909767, 39.947686467], [-88.066781796, 39.968116854], [-88.06033162, 39.981971715], [-87.975590266, 39.993258838], [-87.899092174, 39.96782193], [-87.863327927, 40.0000141], [-87.792515522, 39.966709558], [-87.761421091, 40.026278083], [-87.674362964, 40.038590137], [-87.665982432, 40.021886144], [-87.589250242, 40.029362295], [-87.578565067, 39.984628293], [-87.540793095, 39.947669153], [-87.476212835, 39.941677753], [-87.440417653, 39.95775089], [-87.450942403, 40.024293188], [-87.495457983, 40.029912177], [-87.492391324, 40.060882364], [-87.51952908, 40.109757427], [-87.556017256, 40.119243506], [-87.533766276, 40.152158204], [-87.545201427, 40.188921039], [-87.496901339, 40.21213818], [-87.519255406, 40.243728759], [-87.481310045, 40.286607449], [-87.510277039, 40.335915302], [-87.476851231, 40.345718537], [-87.459634221, 40.326590214], [-87.398104882, 40.320241396], [-87.418393468, 40.352131252], [-87.393879479, 40.363290254], [-87.423720634, 40.447598283], [-87.411201722, 40.470961813], [-87.439923054, 40.473646407], [-87.443316614, 40.487962727], [-87.399113213, 40.533580725], [-87.416935062, 40.569344436], [-87.335557734, 40.593184684], [-87.318060046, 40.619947944], [-87.260656691, 40.637007659], [-87.274928933, 40.672689621], [-87.305254823, 40.679173832], [-87.296891009, 40.697444831], [-87.208583777, 40.686138009]]]}, "properties": {"huc8": "05120108", "name": "Middle Wabash-Little Vermilion", "states": "IL,IN", "areasqkm": 5892.13, "dc_states": "IN", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-88.238617129, 40.101562444], [-88.189941293, 40.092740599], [-88.184999144, 40.041851406], [-88.145368702, 39.987390641], [-88.030796862, 39.95485941], [-88.036048628, 39.922850791], [-87.955310918, 39.916116927], [-87.896131373, 39.892843101], [-87.902559406, 39.879057024], [-87.804941303, 39.868822965], [-87.819648957, 39.849702511], [-87.793504244, 39.816480759], [-87.809364087, 39.778339658], [-87.825793332, 39.776514951], [-87.815542764, 39.745827649], [-87.867687411, 39.720736179], [-87.867846674, 39.692518833], [-87.841955072, 39.661526504], [-87.778008527, 39.651703212], [-87.788845516, 39.639473501], [-87.769374913, 39.604402605], [-87.788543648, 39.596673311], [-87.794363237, 39.57280353], [-87.88144157, 39.538078579], [-87.875650501, 39.518420491], [-87.846179611, 39.512446764], [-87.860673284, 39.432085011], [-87.831877208, 39.406403783], [-87.829963691, 39.373487118], [-87.851473397, 39.318766984], [-87.805351144, 39.298541907], [-87.783900685, 39.255247328], [-87.792317546, 39.241642478], [-87.77720443, 39.223654541], [-87.796669609, 39.186887148], [-87.752940422, 39.085985037], [-87.759478694, 38.997924062], [-87.726841604, 38.994273874], [-87.70020715, 38.939284476], [-87.663818157, 38.948600771], [-87.631911314, 38.926423194], [-87.607775635, 38.931436869], [-87.626379168, 38.883752795], [-87.617845124, 38.869042667], [-87.58495546, 38.855038973], [-87.558196014, 38.86421329], [-87.549970425, 38.842285487], [-87.565277702, 38.822988811], [-87.515363163, 38.80253646], [-87.519573277, 38.758184316], [-87.550659901, 38.737522872], [-87.568582332, 38.675865533], [-87.599519557, 38.665236892], [-87.609157538, 38.645492525], [-87.624520338, 38.644482913], [-87.660666173, 38.684069814], [-87.737206883, 38.657424243], [-87.821477688, 38.720228585], [-87.844713545, 38.672250333], [-87.898015118, 38.667229714], [-87.967495299, 38.729706915], [-87.990386493, 38.777699533], [-88.041493929, 38.780112924], [-88.037109262, 38.843422386], [-88.098470843, 38.869348707], [-88.106691009, 38.915675761], [-88.086821086, 38.944670411], [-88.145084954, 38.95187104], [-88.173823006, 38.918675366], [-88.208950765, 38.997769537], [-88.29151798, 39.048697474], [-88.289296038, 39.103265556], [-88.35014037, 39.112223479], [-88.377616919, 39.075715485], [-88.389821924, 39.10995579], [-88.362601376, 39.127043637], [-88.359250463, 39.158213141], [-88.420975663, 39.172343286], [-88.430459149, 39.208359989], [-88.456906326, 39.220880988], [-88.441436715, 39.228697631], [-88.452380486, 39.250887098], [-88.429416187, 39.329257879], [-88.370140917, 39.353818241], [-88.358424998, 39.407805208], [-88.36560405, 39.431882236], [-88.391185559, 39.4408398], [-88.37976373, 39.481873396], [-88.389888025, 39.51376814], [-88.314397401, 39.536323342], [-88.165659315, 39.621748033], [-88.167793847, 39.634837869], [-88.263665891, 39.637241248], [-88.264462508, 39.652638975], [-88.291031279, 39.65836877], [-88.326305605, 39.698071543], [-88.346912748, 39.760215166], [-88.324790574, 39.889378044], [-88.275023438, 39.937998417], [-88.261531896, 39.994299266], [-88.259828813, 40.021355602], [-88.283860929, 40.055281076], [-88.262177921, 40.058067772], [-88.262837208, 40.090581868], [-88.238617129, 40.101562444]]]}, "properties": {"huc8": "05120112", "name": "Embarras", "states": "IL", "areasqkm": 6308.82, "dc_states": "IL", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-84.884118738, 40.198236201], [-84.876459362, 40.106614951], [-84.927820417, 40.071296018], [-84.981812241, 40.104715028], [-85.043298561, 40.081483895], [-85.068508509, 40.049673799], [-85.119877851, 40.078075064], [-85.145343956, 40.053965211], [-85.126406105, 40.035769675], [-85.155748042, 40.027292047], [-85.197909521, 40.031454987], [-85.261004629, 40.010250244], [-85.263748827, 40.050803128], [-85.358595374, 40.043119047], [-85.390208933, 39.994628045], [-85.407655093, 40.004522834], [-85.420426282, 39.984421525], [-85.486812088, 39.95434073], [-85.523887965, 39.966559294], [-85.576679203, 39.951571289], [-85.60294548, 39.964286212], [-85.625541035, 39.950795833], [-85.704439733, 39.959985856], [-85.733353857, 39.915973458], [-85.794774059, 39.917663459], [-85.814692053, 39.888694141], [-85.869432453, 39.922655586], [-85.895163003, 39.890019271], [-85.910123114, 39.823216382], [-85.946206991, 39.809265736], [-85.995802376, 39.822613362], [-86.026346985, 39.759893272], [-86.014068279, 39.739908281], [-86.047519598, 39.706106666], [-86.026702199, 39.685637299], [-86.059715454, 39.621503923], [-86.107705359, 39.608062151], [-86.125461225, 39.568581942], [-86.173884306, 39.534753147], [-86.152926479, 39.517367306], [-86.17346621, 39.493737761], [-86.139778707, 39.465355012], [-86.155873511, 39.444880161], [-86.124734525, 39.364944401], [-86.144083086, 39.34287003], [-86.188954477, 39.334543201], [-86.207632635, 39.346947523], [-86.233795438, 39.327696594], [-86.285912637, 39.326271507], [-86.305312369, 39.338724347], [-86.380169933, 39.312671009], [-86.414723013, 39.324439051], [-86.425810848, 39.310681197], [-86.495200311, 39.306696358], [-86.542688076, 39.340222689], [-86.655470495, 39.328223083], [-86.682755832, 39.372012082], [-86.679044877, 39.431297365], [-86.639006112, 39.446728381], [-86.645215307, 39.454577896], [-86.615671342, 39.448359552], [-86.561366324, 39.468925062], [-86.5700599, 39.480400654], [-86.5429709, 39.494970056], [-86.559155439, 39.533896539], [-86.496240173, 39.558768901], [-86.486991619, 39.580970707], [-86.516445343, 39.620305065], [-86.483634357, 39.657771233], [-86.490269754, 39.701031927], [-86.533873681, 39.70924491], [-86.539304499, 39.765569333], [-86.571207677, 39.781495575], [-86.578984325, 39.842435304], [-86.510865812, 39.877835694], [-86.501114432, 39.902163658], [-86.457537715, 39.927941266], [-86.459791635, 39.948625121], [-86.434047405, 39.961899671], [-86.427728389, 39.99054033], [-86.386806879, 40.010506187], [-86.402446334, 40.026021693], [-86.355969195, 40.047245358], [-86.374962304, 40.068000382], [-86.353266422, 40.094236587], [-86.313043539, 40.100159351], [-86.288304094, 40.145986859], [-86.241963004, 40.142879639], [-86.275490527, 40.172106508], [-86.25917894, 40.186069224], [-86.261567149, 40.20907623], [-86.24270526, 40.215873185], [-86.249977771, 40.233935092], [-86.222974811, 40.251020972], [-86.249054406, 40.278597717], [-86.198297385, 40.30193523], [-86.068326895, 40.321820412], [-86.041014258, 40.28563333], [-86.005413029, 40.317420576], [-85.917999986, 40.300011192], [-85.876814905, 40.344407593], [-85.81846619, 40.345567052], [-85.790448669, 40.373774771], [-85.713573876, 40.347141151], [-85.668388996, 40.369473938], [-85.645512763, 40.361844663], [-85.635090653, 40.382963394], [-85.601976934, 40.37549815], [-85.577958855, 40.349913631], [-85.504445943, 40.360405836], [-85.484204593, 40.29504544], [-85.424320373, 40.30173916], [-85.330779645, 40.2849066], [-85.323827627, 40.233098898], [-85.252965333, 40.2232312], [-85.22899774, 40.189787958], [-85.146617117, 40.184694563], [-85.111623141, 40.206904922], [-85.084082427, 40.190934871], [-84.884118738, 40.198236201]]]}, "properties": {"huc8": "05120201", "name": "Upper White", "states": "IN", "areasqkm": 7044.2, "dc_states": "IN", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-86.700995003, 39.421362701], [-86.678704118, 39.404811653], [-86.682755832, 39.372012082], [-86.655470495, 39.328223083], [-86.542688076, 39.340222689], [-86.501385693, 39.308697286], [-86.471079026, 39.30558035], [-86.416347866, 39.324271026], [-86.380169933, 39.312671009], [-86.305312369, 39.338724347], [-86.23439223, 39.327638897], [-86.196266446, 39.343548867], [-86.180592303, 39.2916303], [-86.187687282, 39.260342421], [-86.16027305, 39.246460947], [-86.24244732, 39.256375345], [-86.31368855, 39.232047233], [-86.429266546, 39.231936458], [-86.463214252, 39.210089925], [-86.477047269, 39.167059245], [-86.575326924, 39.177661093], [-86.624684159, 39.129908594], [-86.644099151, 39.150131974], [-86.652239774, 39.124181184], [-86.683901106, 39.110908511], [-86.6834392, 39.085081729], [-86.740641599, 39.004000845], [-86.737610941, 38.938995125], [-86.764242297, 38.893861594], [-86.82072929, 38.867918374], [-86.855276589, 38.870695802], [-86.876279687, 38.822291764], [-86.915485805, 38.815753879], [-86.916614687, 38.763733747], [-86.965023314, 38.76531625], [-86.966825788, 38.728277923], [-86.989523506, 38.722336353], [-86.983921206, 38.700511756], [-86.929310893, 38.695872756], [-86.926994985, 38.656619163], [-86.979363954, 38.652694287], [-87.02126733, 38.617390307], [-87.073321884, 38.636148306], [-87.103934174, 38.607190403], [-87.177709436, 38.593495013], [-87.179366863, 38.551226678], [-87.241628533, 38.546156438], [-87.226182377, 38.502508791], [-87.248889363, 38.489966901], [-87.233039742, 38.461571606], [-87.259140556, 38.438856484], [-87.301003134, 38.436744245], [-87.304648077, 38.461134823], [-87.359979218, 38.455271902], [-87.386107451, 38.426305593], [-87.493656909, 38.4713389], [-87.532746202, 38.462506713], [-87.527488506, 38.44604391], [-87.559475577, 38.426921518], [-87.576206154, 38.43755162], [-87.599655246, 38.421052785], [-87.742695427, 38.413452448], [-87.721369958, 38.478335084], [-87.669677234, 38.498346837], [-87.606615072, 38.484223308], [-87.598210847, 38.501736613], [-87.537545955, 38.520130457], [-87.528773969, 38.580039086], [-87.476474828, 38.641003879], [-87.44417051, 38.644443842], [-87.457564836, 38.679051073], [-87.434792643, 38.675726296], [-87.417184806, 38.694950552], [-87.411492889, 38.732032033], [-87.386059528, 38.737238469], [-87.361656642, 38.788758191], [-87.293638533, 38.819119247], [-87.305575287, 38.902025166], [-87.279724872, 38.955518635], [-87.29696939, 38.981203081], [-87.278108334, 39.009379867], [-87.282723611, 39.040404888], [-87.240938699, 39.062625471], [-87.232522374, 39.083496215], [-87.198350614, 39.089697363], [-87.197711414, 39.137868466], [-87.163189207, 39.140613499], [-87.153114324, 39.12596685], [-87.038646584, 39.103262993], [-87.000080382, 39.11803216], [-86.996419137, 39.134051713], [-86.97845683, 39.132374021], [-86.970831876, 39.111618312], [-86.954600995, 39.119152847], [-86.92669109, 39.194199833], [-86.942686414, 39.251509341], [-86.932942366, 39.262340012], [-86.957124835, 39.298664334], [-86.938159798, 39.334369543], [-86.896420127, 39.342569235], [-86.889107739, 39.358020576], [-86.905245398, 39.370707783], [-86.856247907, 39.383791241], [-86.832208489, 39.411803189], [-86.803726201, 39.418689135], [-86.764050667, 39.404067758], [-86.700995003, 39.421362701]]]}, "properties": {"huc8": "05120202", "name": "Lower White", "states": "IN", "areasqkm": 4333.86, "dc_states": "IN", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-85.231052968, 40.017203692], [-85.299550327, 39.93954337], [-85.347850028, 39.93550444], [-85.355995985, 39.902457986], [-85.385694536, 39.891047958], [-85.363625619, 39.855388854], [-85.392711851, 39.815746638], [-85.422739479, 39.699857715], [-85.454751823, 39.697294656], [-85.467683229, 39.669943247], [-85.516809794, 39.668477985], [-85.518406156, 39.648282382], [-85.575844589, 39.628283921], [-85.58426151, 39.574896785], [-85.629461978, 39.568416211], [-85.650404606, 39.539378169], [-85.705167624, 39.544739816], [-85.742095593, 39.5140591], [-85.778677467, 39.524052146], [-85.871660653, 39.447851691], [-85.862525795, 39.439803067], [-85.8884379, 39.380848351], [-85.928541098, 39.361942115], [-85.970464025, 39.297891829], [-85.950788829, 39.271971735], [-85.963833961, 39.226288768], [-85.934414807, 39.203449639], [-85.980420802, 39.181773665], [-85.99816892, 39.198568675], [-86.027517025, 39.19777489], [-86.046099309, 39.172441813], [-86.090093437, 39.19253877], [-86.058727834, 39.263610246], [-86.106428121, 39.281394842], [-86.144083086, 39.34287003], [-86.124734525, 39.364944401], [-86.155873511, 39.444880161], [-86.139778707, 39.465355012], [-86.17346621, 39.493737761], [-86.152926479, 39.517367306], [-86.176326487, 39.529198739], [-86.125461225, 39.568581942], [-86.107705359, 39.608062151], [-86.059715454, 39.621503923], [-86.026702199, 39.685637299], [-86.047519598, 39.706106666], [-86.014068279, 39.739908281], [-86.026346985, 39.759893272], [-85.995802376, 39.822613362], [-85.946206991, 39.809265736], [-85.910123114, 39.823216382], [-85.895163003, 39.890019271], [-85.862222169, 39.926280979], [-85.850642536, 39.903615389], [-85.814692053, 39.888694141], [-85.794774059, 39.917663459], [-85.733353857, 39.915973458], [-85.704439733, 39.959985856], [-85.625541035, 39.950795833], [-85.60294548, 39.964286212], [-85.576679203, 39.951571289], [-85.523887965, 39.966559294], [-85.486812088, 39.95434073], [-85.420426282, 39.984421525], [-85.407655093, 40.004522834], [-85.390208933, 39.994628045], [-85.35886726, 40.043011431], [-85.316539022, 40.038838151], [-85.296846124, 40.054666403], [-85.260739747, 40.04759181], [-85.265133056, 40.01249281], [-85.231052968, 40.017203692]]]}, "properties": {"huc8": "05120204", "name": "Driftwood", "states": "IN", "areasqkm": 3018.64, "dc_states": "IN", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-85.895141601, 36.463214875], [-85.883102417, 36.440513611], [-85.967559815, 36.286346436], [-85.939498901, 36.263217926], [-85.940986633, 36.238395692], [-86.056137085, 36.197814942], [-86.059394836, 36.122516632], [-86.120254516, 36.056674958], [-86.14894104, 36.055835724], [-86.161521912, 36.073810577], [-86.191680909, 36.058902741], [-86.248825073, 36.0663414], [-86.314582825, 36.134559631], [-86.365188599, 36.136573792], [-86.376159668, 36.155643464], [-86.436012269, 36.143177032], [-86.522529603, 36.218330383], [-86.629898072, 36.235366822], [-86.671920776, 36.286289216], [-86.638008119, 36.313003541], [-86.646362305, 36.367919923], [-86.675544737, 36.384418488], [-86.696365355, 36.42471695], [-86.679656981, 36.440746308], [-86.618049623, 36.44073105], [-86.608650208, 36.46623993], [-86.563110352, 36.489875794], [-86.494346619, 36.491764069], [-86.470748902, 36.467418672], [-86.43826294, 36.480716706], [-86.413276673, 36.5187912], [-86.3830719, 36.506824494], [-86.341827393, 36.534946442], [-86.291419984, 36.534694672], [-86.285102844, 36.5566597], [-86.186431885, 36.534603119], [-86.175674439, 36.514179231], [-86.111106873, 36.52640152], [-86.089790345, 36.50959015], [-86.037490845, 36.525848389], [-85.937011719, 36.458431244], [-85.895141601, 36.463214875]]]}, "properties": {"huc8": "05130201", "name": "Lower Cumberland-Old Hickory Lake", "states": "TN", "areasqkm": 2552.95, "dc_states": "TN", "cluster_count": 0, "data_center_count": 4, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-86.691200255, 36.410362245], [-86.646575929, 36.368328095], [-86.639427186, 36.328697205], [-86.638008119, 36.313003541], [-86.67160034, 36.285423279], [-86.629898072, 36.235366822], [-86.591117859, 36.23041153], [-86.646194459, 36.18920517], [-86.671562194, 36.192321777], [-86.663009645, 36.126853943], [-86.680267333, 36.113529205], [-86.614555359, 36.040733338], [-86.638168335, 36.003410339], [-86.61441803, 35.966583251], [-86.625541687, 35.955490112], [-86.616180421, 35.93371582], [-86.691818236, 35.915592193], [-86.751831054, 35.93629837], [-86.746177673, 35.977638244], [-86.760780334, 35.986362458], [-86.765960692, 36.026268006], [-86.78968048, 36.041736602], [-86.785919188, 36.071445465], [-86.894729614, 36.069267273], [-86.914344787, 36.094009399], [-86.927757263, 36.075187684], [-86.969261169, 36.12064743], [-87.008796691, 36.119354248], [-87.063835144, 36.146373749], [-87.07572174, 36.179485321], [-87.128295898, 36.221321106], [-87.118476867, 36.27640915], [-87.153396606, 36.304412843], [-87.141960144, 36.311096192], [-87.156013489, 36.332134248], [-87.139411926, 36.362499237], [-87.048614501, 36.416996003], [-86.928359985, 36.419307709], [-86.894256591, 36.434322358], [-86.80304718, 36.395202637], [-86.764587402, 36.394378662], [-86.74835205, 36.41886902], [-86.691200255, 36.410362245]]]}, "properties": {"huc8": "05130202", "name": "Lower Cumberland-Sycamore", "states": "TN", "areasqkm": 1676.91, "dc_states": "TN", "cluster_count": 1, "data_center_count": 8, "clustered_data_center_count": 8}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-86.623184205, 35.924125671], [-86.607986451, 35.843208313], [-86.572509767, 35.837577819], [-86.547508241, 35.806240082], [-86.548835755, 35.757507324], [-86.519592286, 35.736610412], [-86.53075409, 35.71591568], [-86.640731812, 35.703510284], [-86.671447753, 35.736766814], [-86.740356445, 35.745651245], [-86.797218322, 35.795082092], [-86.816413879, 35.778919219], [-86.880249022, 35.79806137], [-86.961082458, 35.784431457], [-87.017669677, 35.797042847], [-87.089591979, 35.857414245], [-87.083709717, 35.876075744], [-87.306343079, 35.954750061], [-87.318603516, 35.998207092], [-87.350784302, 36.028404236], [-87.344230652, 36.052947998], [-87.388259887, 36.061420441], [-87.406845092, 36.090885163], [-87.394493103, 36.099292755], [-87.432991028, 36.107837677], [-87.424797058, 36.131763458], [-87.436683655, 36.146614075], [-87.326911926, 36.215126038], [-87.262374878, 36.211711883], [-87.240608216, 36.250141144], [-87.153396606, 36.304412843], [-87.118560791, 36.276683808], [-87.127532959, 36.219902039], [-87.07572174, 36.179485321], [-87.063835144, 36.146373749], [-87.008796691, 36.119354248], [-86.969261169, 36.12064743], [-86.927757263, 36.075187684], [-86.914344787, 36.094009399], [-86.894729614, 36.069267273], [-86.786064148, 36.071525574], [-86.78968048, 36.041736602], [-86.765960692, 36.026268006], [-86.760780334, 35.986362458], [-86.746177673, 35.977638244], [-86.751602172, 35.936038971], [-86.691818236, 35.915592193], [-86.623184205, 35.924125671]]]}, "properties": {"huc8": "05130204", "name": "Harpeth", "states": "TN", "areasqkm": 2245.66, "dc_states": "TN", "cluster_count": 1, "data_center_count": 6, "clustered_data_center_count": 6}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-86.791410093, 36.834856689], [-86.733142708, 36.840790807], [-86.720475708, 36.824173718], [-86.667662447, 36.820276111], [-86.628995394, 36.760398268], [-86.625615988, 36.72482404], [-86.600826953, 36.705799221], [-86.617828315, 36.69852212], [-86.617325102, 36.663787513], [-86.557011371, 36.646052509], [-86.539428712, 36.63069153], [-86.552482605, 36.620330812], [-86.514991761, 36.597610474], [-86.532318116, 36.586341859], [-86.519264222, 36.548046113], [-86.530364991, 36.54586792], [-86.493682862, 36.492115021], [-86.56351471, 36.489768983], [-86.608650208, 36.46623993], [-86.618049623, 36.44073105], [-86.679656981, 36.440746308], [-86.693351745, 36.407283783], [-86.74835205, 36.41886902], [-86.768478392, 36.39371872], [-86.817123412, 36.397926331], [-86.894256591, 36.434322358], [-87.031578064, 36.408687592], [-87.066192626, 36.414482117], [-87.087234497, 36.442028047], [-87.156433105, 36.448745728], [-87.166458129, 36.458587648], [-87.155647277, 36.483306885], [-87.200454712, 36.505577088], [-87.247421265, 36.495571137], [-87.290992736, 36.52086258], [-87.3254776, 36.507694245], [-87.385040283, 36.55230713], [-87.59892273, 36.529376984], [-87.613769532, 36.54317093], [-87.705673218, 36.546897889], [-87.741996766, 36.568332672], [-87.734077454, 36.585807802], [-87.760665894, 36.605609894], [-87.697552687, 36.644293635], [-87.726632869, 36.67340654], [-87.684121883, 36.671115576], [-87.650724745, 36.696798413], [-87.616028643, 36.680512338], [-87.537279671, 36.696791528], [-87.492048686, 36.712190925], [-87.481006926, 36.73300144], [-87.415515667, 36.725226014], [-87.435714608, 36.769635527], [-87.392968929, 36.785810201], [-87.406363463, 36.804348855], [-87.29195199, 36.854136079], [-87.26564852, 36.891582309], [-87.237718916, 36.885934114], [-87.230400478, 36.865634322], [-87.183883494, 36.875647544], [-87.162395066, 36.921735018], [-87.096358066, 36.881847828], [-87.059824591, 36.888122171], [-87.034352576, 36.858744591], [-87.024518077, 36.868858337], [-87.001522189, 36.853124261], [-86.952163761, 36.855019092], [-86.906383132, 36.81167981], [-86.882874166, 36.828133016], [-86.817348008, 36.814259022], [-86.791410093, 36.834856689]]]}, "properties": {"huc8": "05130206", "name": "Red", "states": "KY,TN", "areasqkm": 3765.11, "dc_states": "TN", "cluster_count": 1, "data_center_count": 5, "clustered_data_center_count": 5}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-85.263698402, 38.998663279], [-85.231293532, 38.961470368], [-85.203935655, 38.951117071], [-85.208717349, 38.921495738], [-85.178039673, 38.85764009], [-85.190109732, 38.837087931], [-85.159818354, 38.790251495], [-85.185252192, 38.769057693], [-85.150116029, 38.717826904], [-85.181182983, 38.718261721], [-85.207844767, 38.666748227], [-85.19377524, 38.626565845], [-85.177128169, 38.624263408], [-85.203042509, 38.586729617], [-85.155636253, 38.470841499], [-85.196484837, 38.455230357], [-85.194019112, 38.366308362], [-85.265754255, 38.385524214], [-85.295913788, 38.411430182], [-85.334441933, 38.398534002], [-85.362037394, 38.414199473], [-85.409553918, 38.398497463], [-85.441545817, 38.382504286], [-85.46785939, 38.3515341], [-85.462562803, 38.327664228], [-85.517207566, 38.288467141], [-85.528061095, 38.245125056], [-85.583569113, 38.199202688], [-85.632384155, 38.174240232], [-85.704609757, 38.198237331], [-85.772841397, 38.156566472], [-85.786930147, 38.162651213], [-85.843109612, 38.115082087], [-85.876463238, 38.105830611], [-85.887633357, 38.059102417], [-85.91028792, 38.052519889], [-85.916396443, 38.023006798], [-85.944610331, 38.002479047], [-85.945414308, 38.020178707], [-85.963641469, 38.016888947], [-85.963304673, 38.039642514], [-85.913289282, 38.172489436], [-85.934870187, 38.195612998], [-85.93580896, 38.264234961], [-85.867082689, 38.304781916], [-85.853884849, 38.344055356], [-85.815672312, 38.377765329], [-85.832836751, 38.400107206], [-85.820607487, 38.424543918], [-85.841058108, 38.432350041], [-85.84981874, 38.417371185], [-85.985508028, 38.42066604], [-86.007241819, 38.458844783], [-85.995813462, 38.49353561], [-85.883872066, 38.497683318], [-85.831617656, 38.550318005], [-85.848459724, 38.561582508], [-85.817227189, 38.563257875], [-85.795784119, 38.594791384], [-85.754724536, 38.603174867], [-85.744062517, 38.620740117], [-85.720825377, 38.622682305], [-85.683138165, 38.587710084], [-85.646339598, 38.580292942], [-85.590617839, 38.653206171], [-85.542665097, 38.670019867], [-85.496441635, 38.663314225], [-85.47965968, 38.675859244], [-85.49060482, 38.705934795], [-85.439058277, 38.749594363], [-85.443901423, 38.798849376], [-85.379891011, 38.80871931], [-85.385581497, 38.865946325], [-85.355975511, 38.930191996], [-85.313370588, 38.951906177], [-85.306899252, 38.983475628], [-85.263698402, 38.998663279]]]}, "properties": {"huc8": "05140101", "name": "Silver-Little Kentucky", "states": "IN,KY", "areasqkm": 3267.38, "dc_states": "KY", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-85.192292872, 38.378678175], [-85.111494216, 38.344648005], [-85.101647588, 38.280758472], [-85.044019999, 38.255376043], [-85.066193166, 38.22309208], [-85.056873563, 38.172117055], [-85.072411987, 38.154288472], [-85.044973108, 38.112275244], [-85.052609177, 38.075223388], [-85.000691059, 38.041476727], [-84.967525275, 38.075081439], [-84.872964563, 38.0866704], [-84.905770572, 38.020299674], [-84.871780487, 37.992922456], [-84.888388248, 37.977882684], [-84.887090595, 37.947884203], [-84.848766151, 37.946743221], [-84.848676775, 37.894498617], [-84.809676589, 37.862310946], [-84.842114391, 37.810647041], [-84.794803055, 37.744617612], [-84.837162109, 37.697644234], [-84.829129907, 37.678781986], [-84.842430117, 37.654985607], [-84.822878184, 37.638448805], [-84.843431982, 37.591087342], [-84.887984248, 37.589256912], [-84.902975023, 37.610968591], [-84.890625628, 37.694008143], [-84.900724801, 37.743687481], [-84.916029128, 37.747416288], [-84.914285364, 37.857253582], [-84.951376381, 37.89527008], [-84.960867557, 37.943003268], [-84.949594142, 37.955704958], [-84.986367317, 37.956479014], [-85.005013319, 37.990505339], [-85.141044292, 37.920831472], [-85.262922409, 37.896820397], [-85.27218658, 37.86756605], [-85.344865146, 37.828526677], [-85.42671192, 37.82920161], [-85.521169546, 37.864976496], [-85.541530761, 37.858786911], [-85.542849455, 37.888244719], [-85.60429031, 37.913508416], [-85.659221712, 37.89716378], [-85.71320546, 37.918945403], [-85.860124472, 37.914866687], [-85.878285709, 37.907786787], [-85.880239222, 37.87546897], [-85.847898666, 37.825169654], [-85.852329347, 37.767966033], [-85.836381916, 37.756156922], [-85.900234405, 37.754451692], [-85.902916465, 37.78355533], [-85.931708011, 37.801486791], [-85.964080337, 37.865799309], [-85.948844824, 37.940710098], [-85.931921069, 37.952303589], [-85.964609269, 37.976479383], [-85.916396443, 38.023006798], [-85.91028792, 38.052519889], [-85.887633357, 38.059102417], [-85.876463238, 38.105830611], [-85.704609757, 38.198237331], [-85.620058182, 38.175580503], [-85.528061095, 38.245125056], [-85.517575118, 38.287922771], [-85.462562803, 38.327664228], [-85.46785939, 38.3515341], [-85.441545817, 38.382504286], [-85.383584353, 38.408885123], [-85.351606074, 38.412759633], [-85.334441933, 38.398534002], [-85.295913788, 38.411430182], [-85.231110784, 38.371600689], [-85.194992575, 38.365340115], [-85.192292872, 38.378678175]]]}, "properties": {"huc8": "05140102", "name": "Salt", "states": "KY", "areasqkm": 3805.48, "dc_states": "KY", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-87.862599946, 37.608485521], [-87.69347871, 37.569069475], [-87.630252367, 37.442451656], [-87.559046155, 37.414893329], [-87.502295261, 37.363609999], [-87.505308932, 37.319170982], [-87.485500639, 37.304015905], [-87.482862359, 37.270110845], [-87.511348432, 37.238249599], [-87.538415528, 37.234314948], [-87.533813483, 37.201868772], [-87.504988616, 37.178503364], [-87.548992551, 37.160532295], [-87.526575064, 37.096468508], [-87.508388465, 37.101659447], [-87.485588765, 37.082644909], [-87.494427449, 37.059356242], [-87.471053577, 37.013040721], [-87.494363225, 36.995548665], [-87.479310399, 36.989026993], [-87.472741759, 36.947479277], [-87.520916289, 36.948959171], [-87.545894122, 36.972384452], [-87.592255419, 36.969491899], [-87.662351316, 37.040585071], [-87.735013103, 37.049676984], [-87.750163829, 37.076929122], [-87.8018314, 37.070353955], [-87.826904542, 37.083701461], [-87.900433547, 37.149772286], [-87.942528999, 37.151359617], [-87.968169725, 37.178844303], [-88.003778583, 37.18275082], [-88.009986079, 37.198785426], [-87.983463085, 37.230928391], [-88.039059466, 37.270564109], [-88.065567322, 37.270507038], [-88.060235924, 37.299758405], [-88.073967196, 37.319917262], [-88.034724094, 37.342183531], [-88.030825949, 37.36439544], [-87.981901711, 37.364273846], [-87.997025258, 37.369223863], [-87.98860178, 37.399209232], [-88.027186281, 37.421924174], [-88.015583492, 37.449884713], [-88.050698019, 37.472179651], [-88.039874262, 37.496688306], [-88.05674342, 37.505381346], [-88.048889584, 37.529811054], [-88.06612224, 37.546239883], [-88.048410362, 37.565340996], [-88.070163197, 37.57895875], [-88.046555734, 37.59515661], [-88.015780664, 37.590361715], [-88.011531777, 37.603544086], [-87.979880607, 37.599730552], [-87.960225052, 37.619495303], [-87.924495435, 37.622004391], [-87.878393477, 37.598386407], [-87.862599946, 37.608485521]]]}, "properties": {"huc8": "05140205", "name": "Tradewater", "states": "KY", "areasqkm": 2442.05, "dc_states": "KY", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-82.612220765, 36.548397065], [-82.586395265, 36.527156831], [-82.634872437, 36.510982514], [-82.626312257, 36.495899201], [-82.65348816, 36.480930329], [-82.715965271, 36.46434784], [-82.676162719, 36.423229218], [-82.81350708, 36.363315583], [-82.85823059, 36.365055085], [-82.916007995, 36.328674317], [-82.937484741, 36.335079194], [-83.012756347, 36.274410248], [-83.043746948, 36.310630799], [-83.100440978, 36.29013443], [-83.135635376, 36.313419343], [-83.181411743, 36.272491455], [-83.168937682, 36.245002747], [-83.335968018, 36.161266327], [-83.383666992, 36.103847503], [-83.417442322, 36.122528076], [-83.492538453, 36.063526153], [-83.701919557, 36.015174866], [-83.820884705, 35.950748443], [-83.833686829, 35.965351105], [-83.856140138, 35.960876465], [-83.896331788, 36.016174316], [-83.876876832, 36.051101685], [-83.824508668, 36.071563721], [-83.856101991, 36.087879181], [-83.838142396, 36.106704712], [-83.8385849, 36.137714387], [-83.880813599, 36.156440736], [-83.831619264, 36.169391632], [-83.633644105, 36.290344238], [-83.605636597, 36.298027039], [-83.589256287, 36.282554627], [-83.219985961, 36.411037446], [-82.82843922, 36.594587629], [-82.83088684, 36.578472138], [-82.797538757, 36.555042267], [-82.717819213, 36.590003968], [-82.68434143, 36.565238954], [-82.612220765, 36.548397065]]]}, "properties": {"huc8": "06010104", "name": "Holston", "states": "TN,VA", "areasqkm": 2589.97, "dc_states": "TN", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-83.680732727, 36.262714386], [-83.831619264, 36.169391632], [-83.880813599, 36.156440736], [-83.838470459, 36.137538911], [-83.851089478, 36.091243744], [-84.014518737, 36.004291535], [-84.044967651, 35.966667175], [-84.155273437, 35.92508316], [-84.28591156, 35.836910247], [-84.308097839, 35.850688934], [-84.345390319, 35.830356598], [-84.42009735, 35.837661743], [-84.434432984, 35.865016937], [-84.453468322, 35.845161438], [-84.495971679, 35.877735138], [-84.527206421, 35.858905792], [-84.53942871, 35.884483337], [-84.55884552, 35.877532959], [-84.565292358, 35.890174865], [-84.526107788, 35.908622741], [-84.487136841, 35.887432098], [-84.460945129, 35.909408569], [-84.464825681, 35.930574258], [-84.434357121, 35.947809675], [-84.448738098, 35.962089539], [-84.425727844, 35.980197907], [-84.433494568, 35.994373321], [-84.393157959, 36.017845153], [-84.419609069, 36.040580749], [-84.410293578, 36.076965333], [-84.247917174, 36.149753571], [-84.247222899, 36.172096252], [-84.22920227, 36.184326172], [-84.227561951, 36.251903534], [-84.189193725, 36.278347016], [-84.095207213, 36.222938538], [-84.032508849, 36.245925904], [-84.003662108, 36.227142334], [-83.959259034, 36.237449646], [-83.937942506, 36.225540161], [-83.875221253, 36.26146698], [-83.849838257, 36.238746644], [-83.735916138, 36.285167695], [-83.718582153, 36.284435273], [-83.716842652, 36.267066956], [-83.685501099, 36.281234742], [-83.680732727, 36.262714386]]]}, "properties": {"huc8": "06010207", "name": "Lower Clinch", "states": "TN", "areasqkm": 1647.78, "dc_states": "TN", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-84.550079346, 35.625576019], [-84.625831602, 35.523952483], [-84.654022217, 35.511051177], [-84.678741453, 35.542217254], [-84.705078127, 35.542827605], [-84.800735474, 35.455471038], [-84.803382874, 35.436428069], [-84.859794617, 35.447452544], [-84.862060547, 35.460697173], [-84.932487488, 35.40700531], [-84.949584961, 35.417716979], [-84.993644715, 35.390598296], [-84.97808838, 35.331268312], [-85.000831605, 35.283245088], [-84.966888429, 35.272274018], [-84.961479188, 35.254203797], [-85.008659363, 35.183738709], [-85.010047911, 35.100612641], [-84.989059448, 35.091747284], [-84.99182129, 35.065158845], [-84.976135255, 35.062690735], [-84.996917725, 35.011608124], [-84.952072144, 35.000057221], [-84.952862662, 34.986032094], [-85.001971486, 34.887736675], [-85.003415731, 34.855702118], [-85.024040552, 34.857163902], [-85.032911661, 34.840650197], [-85.042214945, 34.756015127], [-85.076403918, 34.736089166], [-85.075606945, 34.706334558], [-85.130985799, 34.725345369], [-85.22449598, 34.707754787], [-85.226907644, 34.766973135], [-85.262283567, 34.78993484], [-85.278539422, 34.76442146], [-85.292276475, 34.782011863], [-85.307659034, 34.775494348], [-85.306376125, 34.761382333], [-85.362597618, 34.717830684], [-85.363243761, 34.697721836], [-85.386313525, 34.696770545], [-85.408581332, 34.663190332], [-85.403398665, 34.643714007], [-85.452381852, 34.605767336], [-85.485240164, 34.616349723], [-85.467929903, 34.625730034], [-85.472769919, 34.71424007], [-85.518550012, 34.694249835], [-85.587872141, 34.583414744], [-85.660170148, 34.592529859], [-85.619790135, 34.682329968], [-85.58625008, 34.71767004], [-85.601116186, 34.775346996], [-85.583780035, 34.815910045], [-85.51446009, 34.902000126], [-85.547193973, 34.882817272], [-85.570479277, 34.923044186], [-85.646586952, 34.948139668], [-85.65491989, 34.979079868], [-85.580909729, 35.048389435], [-85.551177978, 35.050121308], [-85.552757263, 35.08014679], [-85.485267638, 35.117179872], [-85.439826964, 35.208209992], [-85.366119384, 35.287570955], [-85.370910644, 35.302150727], [-85.334251403, 35.346950531], [-85.304138184, 35.352550506], [-85.316879274, 35.377922058], [-85.272476197, 35.392150878], [-85.286926271, 35.409797668], [-85.248191834, 35.450229644], [-85.251235962, 35.46892929], [-85.222755433, 35.482448577], [-85.208938599, 35.509616851], [-85.18435669, 35.502079009], [-85.142845154, 35.554977417], [-85.145828248, 35.588947296], [-85.118522645, 35.621421813], [-85.09148407, 35.642433166], [-85.043663025, 35.647605896], [-85.053283692, 35.605628967], [-85.023788452, 35.601463318], [-84.996421814, 35.575294494], [-84.912071229, 35.656719207], [-84.917076109, 35.642372131], [-84.892456055, 35.638397217], [-84.884391785, 35.615390779], [-84.813835144, 35.631927489], [-84.797386169, 35.613079071], [-84.775093079, 35.623775481], [-84.7684021, 35.653408052], [-84.718620301, 35.644371032], [-84.716873169, 35.664878845], [-84.628532409, 35.740440368], [-84.610069275, 35.722389221], [-84.589393616, 35.727134704], [-84.590187073, 35.693386078], [-84.550079346, 35.625576019]]]}, "properties": {"huc8": "06020001", "name": "Middle Tennessee-Chickamauga", "states": "AL,GA,TN", "areasqkm": 4827.2, "dc_states": "TN", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-85.736701965, 35.281871796], [-85.686462401, 35.26166916], [-85.681167602, 35.219970704], [-85.661994934, 35.201030732], [-85.671333313, 35.174388886], [-85.656219482, 35.15133667], [-85.694709777, 35.125965119], [-85.686187744, 35.091854098], [-85.629585266, 35.049072266], [-85.630737305, 35.020008087], [-85.606452941, 35.019245148], [-85.65491989, 34.979079868], [-85.642139671, 34.965490046], [-85.650369869, 34.953080081], [-85.570479277, 34.923044186], [-85.547193973, 34.882817272], [-85.514469835, 34.902260002], [-85.583780035, 34.815910045], [-85.601116186, 34.775346996], [-85.585250029, 34.72060997], [-85.619790135, 34.682329968], [-85.654280059, 34.599299852], [-85.712029775, 34.542770028], [-85.715240068, 34.521390018], [-85.826170027, 34.435830013], [-85.853149801, 34.384719944], [-85.956550146, 34.285159916], [-85.958719909, 34.25755006], [-85.984007793, 34.247685343], [-85.981280828, 34.229340875], [-86.055000279, 34.145379956], [-86.107319953, 34.150349884], [-86.109519813, 34.111599937], [-86.151889925, 34.15299982], [-86.134729812, 34.178229806], [-86.149929892, 34.234669946], [-86.269070096, 34.261069958], [-86.275639925, 34.242569925], [-86.313919905, 34.23118989], [-86.377240009, 34.248639877], [-86.390480162, 34.204970054], [-86.429050087, 34.194510091], [-86.452790109, 34.165519824], [-86.450859823, 34.142429862], [-86.464880025, 34.147000049], [-86.488690229, 34.123209969], [-86.516189842, 34.135279979], [-86.495829655, 34.164689917], [-86.509999848, 34.185139834], [-86.450051541, 34.250243285], [-86.44172987, 34.287970066], [-86.478413279, 34.313650115], [-86.422594112, 34.345056155], [-86.418137377, 34.364607044], [-86.388496425, 34.347505461], [-86.381130047, 34.376919956], [-86.399082783, 34.410235533], [-86.37346015, 34.45893991], [-86.341589664, 34.451040026], [-86.320874781, 34.501843065], [-86.261580351, 34.509923566], [-86.165020155, 34.579879846], [-86.203678666, 34.622945009], [-86.21290011, 34.668168221], [-86.246907124, 34.697039237], [-86.207675118, 34.743767749], [-86.164719932, 34.751500037], [-86.151449429, 34.776539371], [-86.090739939, 34.813019583], [-86.103159914, 34.870109936], [-86.076879547, 34.933842274], [-86.092724754, 34.952323067], [-86.056465149, 35.011383057], [-86.031997681, 35.02427292], [-86.05003357, 35.065696716], [-86.030174255, 35.105743409], [-85.987869262, 35.103782655], [-85.972831724, 35.127124787], [-85.984901428, 35.145526887], [-85.929412842, 35.179626465], [-85.91594696, 35.209514618], [-85.88622284, 35.208019258], [-85.777130126, 35.276077271], [-85.736701965, 35.281871796]]]}, "properties": {"huc8": "06030001", "name": "Guntersville Lake", "states": "AL,GA,TN", "areasqkm": 5173.58, "dc_states": "AL", "cluster_count": 0, "data_center_count": 3, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-87.333885193, 35.10308838], [-87.3307724, 35.05601883], [-87.291229246, 35.035018922], [-87.286419978, 34.994039974], [-87.311424617, 34.977126487], [-87.298870306, 34.94168002], [-87.277301773, 34.932497859], [-87.273553062, 34.897036071], [-87.293033548, 34.864685509], [-87.262492146, 34.818468363], [-87.304914792, 34.792748869], [-87.272350075, 34.764190156], [-87.228179929, 34.79737982], [-87.181020018, 34.788229776], [-87.089315437, 34.83003005], [-87.057938975, 34.814826749], [-86.978584989, 34.853509955], [-86.974554093, 34.890388275], [-86.948998443, 34.893016672], [-86.944864189, 34.969685641], [-86.908755732, 34.938170175], [-86.888622481, 34.955592527], [-86.862461453, 34.95262086], [-86.876579206, 34.978045661], [-86.86116823, 34.980581906], [-86.864341735, 35.015098573], [-86.84234619, 35.018444061], [-86.839500427, 35.006492615], [-86.828453063, 35.037723541], [-86.77203369, 35.018333435], [-86.751281737, 35.03699875], [-86.693275451, 35.015232086], [-86.663429261, 35.023368836], [-86.618858338, 35.098808289], [-86.514343263, 35.062515259], [-86.509559632, 35.086318971], [-86.488235474, 35.095825196], [-86.437843323, 35.080005647], [-86.41066742, 35.103046417], [-86.369110108, 35.073486329], [-86.365623474, 35.091835023], [-86.342529297, 35.096870423], [-86.327079773, 35.035961152], [-86.339591981, 35.02811432], [-86.307009905, 34.982959986], [-86.280227662, 34.993274689], [-86.277275086, 35.012260437], [-86.182922363, 35.020858765], [-86.158073426, 35.078083039], [-86.124359131, 35.102024079], [-86.061172485, 35.08278656], [-86.041366577, 35.093498231], [-86.050048828, 35.05658722], [-86.029838562, 35.030605316], [-86.089160078, 34.966299988], [-86.093223737, 34.948540503], [-86.076882828, 34.933549436], [-86.103169874, 34.870009842], [-86.090739939, 34.813019583], [-86.151449429, 34.776539371], [-86.164719932, 34.751500037], [-86.207675118, 34.743767749], [-86.246907124, 34.697039237], [-86.21290011, 34.668168221], [-86.203678666, 34.622945009], [-86.165020155, 34.579879846], [-86.261580351, 34.509923566], [-86.320874781, 34.501843065], [-86.341589664, 34.451040026], [-86.37346015, 34.45893991], [-86.399082783, 34.410235533], [-86.381130047, 34.376919956], [-86.388705229, 34.347255581], [-86.418137377, 34.364607044], [-86.457621947, 34.31690143], [-86.570299898, 34.317190056], [-86.596459898, 34.309999853], [-86.608002271, 34.280421886], [-86.69910514, 34.307718817], [-86.723000025, 34.291799923], [-86.757427457, 34.327766899], [-86.76316616, 34.307018805], [-86.793300415, 34.303616976], [-86.864339846, 34.240480072], [-86.933239869, 34.256430072], [-86.928537056, 34.276380111], [-86.977899959, 34.308259992], [-87.080199975, 34.300429913], [-87.137097828, 34.346323773], [-87.205920074, 34.334940074], [-87.315840168, 34.389399901], [-87.313609879, 34.41395005], [-87.291604686, 34.416540496], [-87.271800278, 34.453498784], [-87.275426773, 34.474547734], [-87.222550055, 34.497239939], [-87.201990023, 34.571590066], [-87.262660011, 34.620950015], [-87.257884154, 34.654619399], [-87.296659165, 34.681953527], [-87.325743154, 34.758886319], [-87.381611597, 34.796445735], [-87.394407777, 34.832372725], [-87.383832037, 34.860488728], [-87.402634339, 34.896538478], [-87.352860158, 34.926799853], [-87.356299971, 34.968540039], [-87.378210001, 34.998049637], [-87.378746033, 35.049240113], [-87.333885193, 35.10308838]]]}, "properties": {"huc8": "06030002", "name": "Wheeler Lake", "states": "AL,TN", "areasqkm": 7493.17, "dc_states": "AL", "cluster_count": 1, "data_center_count": 6, "clustered_data_center_count": 6}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-88.268746591, 37.043159246], [-88.216494984, 36.979147314], [-88.182762481, 36.957174181], [-88.105882204, 36.942435741], [-88.079917378, 36.8999511], [-88.093963928, 36.877951979], [-88.076048679, 36.862652778], [-88.086647577, 36.824148028], [-88.040608622, 36.745023459], [-88.04563514, 36.706836491], [-87.996749879, 36.670906066], [-88.002029418, 36.643928529], [-87.969306947, 36.600662233], [-87.978492737, 36.560180665], [-87.946762085, 36.52110672], [-87.958976747, 36.475631714], [-87.891174317, 36.451538086], [-87.820838929, 36.370746613], [-87.772377015, 36.363075257], [-87.747940064, 36.306304932], [-87.703895569, 36.273086548], [-87.699325562, 36.249526978], [-87.649734497, 36.234676361], [-87.626747132, 36.246105195], [-87.546691894, 36.147884369], [-87.654815674, 36.095050812], [-87.700561524, 36.099628448], [-87.863334656, 36.06238556], [-87.914634705, 36.033073425], [-87.886489869, 36.011692047], [-87.941459656, 35.957229614], [-87.92301178, 35.943939209], [-87.964332581, 35.926235198], [-88.027420043, 35.926998138], [-88.076202391, 35.887187958], [-88.107429504, 35.829105377], [-88.127464293, 35.839252471], [-88.151672362, 35.817352294], [-88.178619384, 35.816932678], [-88.187301635, 35.831977844], [-88.253471372, 35.839073181], [-88.278297423, 35.764183044], [-88.369461059, 35.692920684], [-88.382301331, 35.718193054], [-88.451187134, 35.730545043], [-88.458801269, 35.775852203], [-88.480819702, 35.779979706], [-88.450958251, 35.795154572], [-88.443717956, 35.893253327], [-88.367698669, 35.899604797], [-88.32546997, 35.925258636], [-88.33932495, 35.971683502], [-88.317276, 35.993366241], [-88.328514098, 36.025074006], [-88.306221008, 36.050674439], [-88.305786133, 36.089607239], [-88.328407287, 36.139072419], [-88.328681945, 36.202781677], [-88.346176147, 36.206787109], [-88.358169556, 36.235141754], [-88.321342468, 36.284152985], [-88.388618469, 36.31351471], [-88.369033813, 36.334823609], [-88.343040466, 36.32516861], [-88.342941284, 36.351833344], [-88.290969848, 36.376190186], [-88.302391052, 36.417335511], [-88.291839599, 36.480854035], [-88.265004135, 36.521326332], [-88.243051416, 36.528731047], [-88.240231997, 36.566915005], [-88.221142596, 36.580490498], [-88.238247104, 36.605228899], [-88.230614192, 36.665049671], [-88.270236231, 36.751832187], [-88.253972955, 36.839995145], [-88.272389448, 36.882992387], [-88.310385056, 36.898951351], [-88.283227928, 36.930478661], [-88.298610396, 36.956531673], [-88.285208143, 36.975864529], [-88.295114494, 36.993227094], [-88.276389218, 37.008195459], [-88.306813694, 37.044147195], [-88.268746591, 37.043159246]]]}, "properties": {"huc8": "06040005", "name": "Kentucky Lake", "states": "KY,TN", "areasqkm": 4700.87, "dc_states": "TN", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-92.804662516, 44.747019009], [-92.883937929, 44.735066467], [-92.918270059, 44.756227834], [-92.964196912, 44.739226396], [-93.020818203, 44.754306695], [-93.052452917, 44.802956014], [-93.040803418, 44.808305979], [-93.070710067, 44.830387439], [-93.071309297, 44.864698788], [-93.083351795, 44.86913467], [-93.088923102, 44.854120732], [-93.142594541, 44.866473508], [-93.150774046, 44.896746], [-93.224039408, 44.897382556], [-93.276908283, 44.863799363], [-93.291187658, 44.899801728], [-93.350779777, 44.892024084], [-93.357965377, 44.910651325], [-93.410638551, 44.936353226], [-93.466333778, 44.919022621], [-93.497924704, 44.945672517], [-93.523778649, 44.932302208], [-93.545678665, 44.884956611], [-93.57988628, 44.886594546], [-93.604798285, 44.851694454], [-93.652079707, 44.850410079], [-93.652590837, 44.826729867], [-93.692948873, 44.817846044], [-93.75744139, 44.863225642], [-93.754446618, 44.893022613], [-93.777956791, 44.91349459], [-93.738007743, 44.93247106], [-93.702940242, 44.929058144], [-93.71057144, 45.000213378], [-93.668776342, 45.000568401], [-93.582155162, 45.035753498], [-93.602988804, 45.073390116], [-93.645977435, 45.072291184], [-93.63696878, 45.086489664], [-93.656265869, 45.107591133], [-93.635458971, 45.141048778], [-93.604286895, 45.153695689], [-93.625345891, 45.179861411], [-93.555569924, 45.176318521], [-93.54351074, 45.202854782], [-93.51022419, 45.207810368], [-93.510672852, 45.241363741], [-93.523045584, 45.245849594], [-93.505010571, 45.269758641], [-93.432926786, 45.243580202], [-93.405513457, 45.202279517], [-93.373385982, 45.188283201], [-93.347320115, 45.215476291], [-93.357024203, 45.229305159], [-93.342212522, 45.263279325], [-93.284873136, 45.255992556], [-93.28970859, 45.274770446], [-93.22109115, 45.286656498], [-93.201208846, 45.304741274], [-93.190893906, 45.279221088], [-93.103148526, 45.293553565], [-93.084319579, 45.271060527], [-93.03169802, 45.295852649], [-93.012093671, 45.273878357], [-92.978020106, 45.272234771], [-92.962717057, 45.238216387], [-92.931307512, 45.245560577], [-92.885714417, 45.229619646], [-92.893430639, 45.185898975], [-92.918469431, 45.186109798], [-92.902732004, 45.160819925], [-92.941131398, 45.155192403], [-92.91334441, 45.137647535], [-92.907448996, 45.111353477], [-92.934902713, 45.090639361], [-92.917252606, 45.063338089], [-92.980960003, 45.045390808], [-92.995112128, 45.02362843], [-92.982588986, 45.025404595], [-92.984582632, 45.000722546], [-92.956200032, 44.974242809], [-92.878638255, 44.933663502], [-92.881667217, 44.917654669], [-92.848903466, 44.886544069], [-92.880223419, 44.851574923], [-92.883005383, 44.825562329], [-92.845959889, 44.821402556], [-92.843619453, 44.773264629], [-92.804662516, 44.747019009]]]}, "properties": {"huc8": "07010206", "name": "Twin Cities", "states": "MN", "areasqkm": 2609.29, "dc_states": "MN", "cluster_count": 1, "data_center_count": 6, "clustered_data_center_count": 6}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-93.088923102, 44.854120732], [-93.110202036, 44.815865676], [-93.091879488, 44.788163253], [-93.11475428, 44.769208225], [-93.112483914, 44.746371211], [-93.129988021, 44.767479325], [-93.17770389, 44.772910529], [-93.275923273, 44.746673253], [-93.224159718, 44.724235618], [-93.272033443, 44.685706497], [-93.308352216, 44.689479201], [-93.324759687, 44.641481862], [-93.367880297, 44.591791394], [-93.3574711, 44.562267349], [-93.323516403, 44.55212083], [-93.319652715, 44.515786911], [-93.442237695, 44.492233674], [-93.427764177, 44.470888384], [-93.4428741, 44.468828199], [-93.443095028, 44.442576591], [-93.471254467, 44.433418776], [-93.479751279, 44.401558539], [-93.511458005, 44.41541723], [-93.536349035, 44.397419318], [-93.591338461, 44.422736161], [-93.623706976, 44.387586264], [-93.673400496, 44.372887223], [-93.671465469, 44.349374494], [-93.704274032, 44.354610307], [-93.708594834, 44.340943179], [-93.753960821, 44.332642871], [-93.772856757, 44.342886253], [-93.812327843, 44.332035043], [-93.830875599, 44.351366937], [-93.931996141, 44.383863426], [-94.057624615, 44.360984503], [-94.117170126, 44.403320184], [-94.183143899, 44.385094457], [-94.19522837, 44.370412198], [-94.178185916, 44.358112345], [-94.213211509, 44.315997115], [-94.223475792, 44.337344975], [-94.244846276, 44.33842893], [-94.240775364, 44.357312678], [-94.32632982, 44.354617017], [-94.338133531, 44.3854455], [-94.391491658, 44.396365464], [-94.435893157, 44.441428325], [-94.481689444, 44.453579529], [-94.525934201, 44.437561641], [-94.550756543, 44.47163488], [-94.531003772, 44.52339937], [-94.554460308, 44.531409205], [-94.54054565, 44.544277153], [-94.54780491, 44.557113281], [-94.592996818, 44.570946801], [-94.624782645, 44.632154607], [-94.647529275, 44.623208535], [-94.72668391, 44.649659297], [-94.714099817, 44.673383223], [-94.695604467, 44.672962732], [-94.696307198, 44.705017713], [-94.674601318, 44.736216112], [-94.637917088, 44.731688963], [-94.627974204, 44.708749195], [-94.595654229, 44.722569413], [-94.582533111, 44.698252142], [-94.566971136, 44.700118705], [-94.564224341, 44.724795781], [-94.451999518, 44.728763963], [-94.412256881, 44.702726646], [-94.36590729, 44.710102481], [-94.343378338, 44.698156429], [-94.327548605, 44.713735604], [-94.270167182, 44.689829594], [-94.238023745, 44.701525842], [-94.205414716, 44.681146718], [-94.126291397, 44.684434651], [-94.112143032, 44.709031795], [-94.0667893, 44.720016294], [-94.026697746, 44.722297872], [-94.010209669, 44.706328944], [-94.016105408, 44.716058367], [-93.979299175, 44.734812237], [-93.983935666, 44.74697053], [-94.019228349, 44.746187605], [-93.987773752, 44.766332849], [-93.997191632, 44.773066963], [-93.92625511, 44.765070449], [-93.943779888, 44.785809334], [-93.905574596, 44.792747242], [-93.924303617, 44.802202572], [-93.925821692, 44.826207317], [-93.843412624, 44.850077066], [-93.874789232, 44.873148599], [-93.850157128, 44.898294089], [-93.790738295, 44.910272847], [-93.767604224, 44.907309127], [-93.75744139, 44.863225642], [-93.692948873, 44.817846044], [-93.652590837, 44.826729867], [-93.652079707, 44.850410079], [-93.604798285, 44.851694454], [-93.57988628, 44.886594546], [-93.545678665, 44.884956611], [-93.523778649, 44.932302208], [-93.497924704, 44.945672517], [-93.466333778, 44.919022621], [-93.410638551, 44.936353226], [-93.357965377, 44.910651325], [-93.350779777, 44.892024084], [-93.291187658, 44.899801728], [-93.276908283, 44.863799363], [-93.224039408, 44.897382556], [-93.150774046, 44.896746], [-93.14510534, 44.867802042], [-93.088923102, 44.854120732]]]}, "properties": {"huc8": "07020012", "name": "Lower Minnesota", "states": "MN", "areasqkm": 4755.61, "dc_states": "MN", "cluster_count": 1, "data_center_count": 5, "clustered_data_center_count": 5}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-92.30761574, 45.014605682], [-92.335394514, 44.952644627], [-92.325245422, 44.889669905], [-92.342103166, 44.873637985], [-92.295009358, 44.858112763], [-92.254046453, 44.802999268], [-92.243933392, 44.765258948], [-92.260801268, 44.704104821], [-92.235792083, 44.61848558], [-92.257428957, 44.59043638], [-92.214224411, 44.563557992], [-92.194019561, 44.527806373], [-92.147755831, 44.514331887], [-92.158723673, 44.470190249], [-92.082675444, 44.438417547], [-92.088745968, 44.404970337], [-92.143386749, 44.382455067], [-92.15368884, 44.394694746], [-92.209637015, 44.38517894], [-92.230631971, 44.365452898], [-92.265423232, 44.38691528], [-92.350074232, 44.37917718], [-92.434739725, 44.414819778], [-92.467351686, 44.414332813], [-92.53040709, 44.380614607], [-92.581964269, 44.385730514], [-92.614973811, 44.413219598], [-92.701720454, 44.406856724], [-92.691447169, 44.445985423], [-92.615036344, 44.497207584], [-92.618877707, 44.531680777], [-92.564576329, 44.566479257], [-92.556600219, 44.585150414], [-92.575905642, 44.603418437], [-92.606922014, 44.606210685], [-92.623038225, 44.582809546], [-92.666959353, 44.60270548], [-92.777396664, 44.597954963], [-92.781600037, 44.615964419], [-92.852942797, 44.603890837], [-92.903361161, 44.614821494], [-92.974891304, 44.610526209], [-92.974353099, 44.592860182], [-93.066671734, 44.57130282], [-93.148287748, 44.591900111], [-93.187087827, 44.580106769], [-93.189159276, 44.563438865], [-93.219956057, 44.579586883], [-93.279360524, 44.556661815], [-93.342606967, 44.555525769], [-93.362424782, 44.570797554], [-93.367832701, 44.592001288], [-93.324759687, 44.641481862], [-93.317589689, 44.679791414], [-93.301266524, 44.693635921], [-93.271906233, 44.685763638], [-93.224159718, 44.724235618], [-93.27529063, 44.74532457], [-93.269728203, 44.754287844], [-93.175321893, 44.772862798], [-93.129988021, 44.767479325], [-93.121952211, 44.748966674], [-93.111415627, 44.74742713], [-93.11475428, 44.769208225], [-93.091879488, 44.788163253], [-93.110202036, 44.815865676], [-93.083351795, 44.86913467], [-93.020818203, 44.754306695], [-92.964196912, 44.739226396], [-92.918270059, 44.756227834], [-92.883937929, 44.735066467], [-92.805696083, 44.744944696], [-92.74557654, 44.789272932], [-92.575249178, 44.795625787], [-92.556477411, 44.826733152], [-92.530208839, 44.828188192], [-92.513514442, 44.861142377], [-92.461690647, 44.871818613], [-92.452578498, 44.909050624], [-92.420845551, 44.941643785], [-92.432337088, 44.977735887], [-92.398952526, 44.994030158], [-92.398725165, 45.011498075], [-92.30761574, 45.014605682]]]}, "properties": {"huc8": "07040001", "name": "Rush-Vermillion", "states": "MN,WI", "areasqkm": 2880.61, "dc_states": "MN", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-92.123517211, 44.396962436], [-92.0643374, 44.349689981], [-92.029084487, 44.347820237], [-91.99740395, 44.316068939], [-91.94112827, 44.312147746], [-91.926072316, 44.289459556], [-91.959584466, 44.30931036], [-92.083679772, 44.301757455], [-92.111998313, 44.263336998], [-92.078264709, 44.239183201], [-92.075872374, 44.221716434], [-92.103545281, 44.204321722], [-92.085385407, 44.173031274], [-92.095423571, 44.163140148], [-92.290983514, 44.149701961], [-92.331166498, 44.160739174], [-92.396740034, 44.110765925], [-92.361099662, 44.070121465], [-92.243062616, 44.019588699], [-92.257532125, 44.00938819], [-92.239641137, 43.960579431], [-92.291888914, 43.941441638], [-92.315186603, 43.951260712], [-92.344539803, 43.926430654], [-92.365945542, 43.938233601], [-92.431966345, 43.906442469], [-92.498237671, 43.90463232], [-92.537112055, 43.881085244], [-92.638716107, 43.872664023], [-92.684813729, 43.847900659], [-92.812942678, 43.878529258], [-92.823314406, 43.912791233], [-92.921736778, 43.941523548], [-92.995551257, 43.950778946], [-93.061151138, 43.934925338], [-93.092477126, 43.968294081], [-93.061114284, 43.995469829], [-93.090657263, 44.024059382], [-93.094445369, 44.08528352], [-93.050256756, 44.098406896], [-93.045626679, 44.11254859], [-93.085918813, 44.116252771], [-93.096446442, 44.151919934], [-93.045697747, 44.15053799], [-93.05596041, 44.194329672], [-93.112760619, 44.209201512], [-93.148009602, 44.192865504], [-93.205710269, 44.254416272], [-93.189080252, 44.261530448], [-93.20202118, 44.28443089], [-93.102981443, 44.282396009], [-93.080939288, 44.312774551], [-93.003477126, 44.304937586], [-92.876191428, 44.324204512], [-92.823710153, 44.349866078], [-92.753030736, 44.346426542], [-92.685816422, 44.411248929], [-92.612791289, 44.412816286], [-92.581964269, 44.385730514], [-92.53040709, 44.380614607], [-92.467351686, 44.414332813], [-92.434739725, 44.414819778], [-92.350074232, 44.37917718], [-92.265423232, 44.38691528], [-92.230631971, 44.365452898], [-92.209637015, 44.38517894], [-92.15368884, 44.394694746], [-92.143386749, 44.382455067], [-92.123517211, 44.396962436]]]}, "properties": {"huc8": "07040004", "name": "Zumbro", "states": "MN", "areasqkm": 3682.9, "dc_states": "MN", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-91.562556726, 45.811791968], [-91.528627317, 45.788112264], [-91.542956036, 45.748154593], [-91.474047761, 45.786111992], [-91.444903414, 45.765035552], [-91.42793284, 45.778184366], [-91.353315036, 45.709564727], [-91.395624321, 45.68860392], [-91.386324536, 45.672004383], [-91.429687929, 45.624865185], [-91.396304738, 45.60068981], [-91.498123002, 45.504007678], [-91.449516993, 45.471826654], [-91.478992623, 45.457062733], [-91.473106336, 45.388617587], [-91.458228092, 45.375185948], [-91.477445346, 45.364772867], [-91.487601799, 45.320570271], [-91.468152058, 45.317925286], [-91.487895173, 45.301565957], [-91.45417149, 45.303791117], [-91.448694777, 45.291099828], [-91.471624446, 45.285452288], [-91.48461343, 45.239954453], [-91.531005364, 45.211065751], [-91.560502272, 45.211528371], [-91.578746539, 45.181787263], [-91.552120727, 45.164663832], [-91.561241042, 45.147221785], [-91.542245667, 45.12908886], [-91.594964456, 45.111465107], [-91.574654949, 45.0613393], [-91.592697662, 45.029981147], [-91.61759017, 45.025201629], [-91.595471066, 45.000752996], [-91.666071426, 44.962096076], [-91.68129791, 44.967930417], [-91.696230125, 44.944977681], [-91.787082535, 44.957606058], [-91.828172457, 44.937800389], [-91.832637351, 44.887768369], [-91.869060111, 44.859957587], [-91.818920147, 44.81193472], [-91.838369024, 44.794785332], [-91.871787053, 44.800965469], [-91.895913792, 44.777941118], [-91.902649802, 44.723531555], [-91.881316167, 44.706193279], [-91.941621226, 44.723260651], [-91.937931371, 44.750814389], [-91.979981375, 44.767870735], [-91.967374099, 44.803852598], [-91.981431258, 44.823672096], [-92.078737897, 44.861036073], [-92.146938485, 44.855631779], [-92.156086069, 44.904469561], [-92.204582406, 44.946756552], [-92.196721507, 44.96605603], [-92.218208236, 44.991089325], [-92.239890707, 44.997131179], [-92.243539853, 45.065223407], [-92.217528654, 45.075813871], [-92.255500777, 45.108073484], [-92.190751953, 45.148814004], [-92.21128313, 45.169576746], [-92.195256574, 45.174954991], [-92.18140347, 45.217000167], [-92.152933818, 45.230331938], [-92.163439882, 45.248832117], [-92.143552137, 45.266625535], [-92.227207971, 45.294346106], [-92.214236004, 45.310072076], [-92.127914501, 45.304863882], [-92.12152676, 45.316765975], [-92.189370734, 45.338237475], [-92.155776275, 45.345265817], [-92.151519668, 45.370839845], [-92.13377176, 45.379243623], [-92.144554657, 45.409831148], [-92.099334908, 45.455053967], [-92.10700543, 45.469642263], [-92.081724238, 45.480610442], [-92.072142762, 45.520170431], [-92.08282615, 45.550117445], [-92.071478766, 45.555212867], [-92.092512858, 45.607143324], [-92.069122207, 45.618669223], [-92.071942074, 45.644431067], [-91.928581697, 45.674425584], [-91.873778951, 45.702238929], [-91.842822266, 45.698943299], [-91.854851616, 45.688811523], [-91.845422697, 45.683032077], [-91.787379276, 45.704835576], [-91.765803707, 45.686152172], [-91.761570257, 45.704549921], [-91.805114311, 45.736659747], [-91.799590063, 45.757317197], [-91.81484176, 45.768209409], [-91.747078847, 45.781122935], [-91.719535124, 45.760710609], [-91.643882137, 45.799946141], [-91.647432637, 45.810814959], [-91.610428821, 45.798742365], [-91.608527373, 45.819058132], [-91.574180227, 45.84707309], [-91.562556726, 45.811791968]]]}, "properties": {"huc8": "07050007", "name": "Red Cedar", "states": "WI", "areasqkm": 4897.41, "dc_states": "WI", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-89.151830204, 45.091771703], [-89.149837085, 45.078253698], [-89.174126782, 45.07829399], [-89.216452339, 45.031857739], [-89.190299906, 45.015985321], [-89.225772031, 44.987144659], [-89.250236161, 44.997051607], [-89.267799863, 44.986862551], [-89.271345892, 44.968999128], [-89.254038641, 44.961434732], [-89.266257234, 44.924645852], [-89.305749127, 44.91713224], [-89.280345984, 44.893879483], [-89.338350811, 44.86334781], [-89.307612457, 44.835876267], [-89.31712214, 44.818832229], [-89.30208812, 44.803487818], [-89.324877836, 44.80489562], [-89.32428331, 44.779267292], [-89.374257632, 44.765932719], [-89.367082724, 44.716507296], [-89.405368546, 44.700462977], [-89.412777045, 44.67822669], [-89.380055675, 44.647925417], [-89.428810546, 44.630352835], [-89.41376073, 44.60490648], [-89.424135425, 44.547723274], [-89.399520763, 44.507202784], [-89.416155585, 44.462702641], [-89.399683723, 44.444244603], [-89.384258369, 44.338867883], [-89.353982129, 44.259144139], [-89.391167947, 44.247791747], [-89.356708386, 44.2338051], [-89.351754376, 44.179261039], [-89.555060932, 44.043323168], [-89.614972183, 43.9105858], [-89.670381913, 43.893812665], [-89.676772275, 43.87576414], [-89.662420788, 43.866519848], [-89.696646342, 43.825855443], [-89.678547272, 43.780703822], [-89.696791926, 43.763675162], [-89.690755855, 43.730677315], [-89.713192799, 43.683684387], [-89.655983874, 43.630028227], [-89.623186865, 43.623927692], [-89.645093897, 43.580570975], [-89.553881774, 43.55037559], [-89.454566905, 43.546306619], [-89.420367548, 43.51629264], [-89.435806253, 43.485955127], [-89.447111792, 43.505160131], [-89.557657191, 43.527579525], [-89.634605089, 43.561203518], [-89.707044312, 43.520633676], [-89.733173886, 43.542561152], [-89.766544053, 43.515759239], [-89.855211446, 43.510127344], [-89.902050653, 43.527662375], [-89.960714528, 43.584181437], [-89.959618905, 43.602553138], [-90.035994778, 43.674388834], [-90.036290863, 43.696112164], [-90.132934431, 43.699920723], [-90.196039567, 43.733005562], [-90.208833614, 43.75990484], [-90.198064725, 43.787846276], [-90.258338163, 43.82899631], [-90.426320086, 43.845316956], [-90.431123833, 43.861696253], [-90.447202901, 43.860370824], [-90.437014679, 43.88796849], [-90.448047112, 43.90112994], [-90.56934319, 43.885828624], [-90.60892121, 43.924348304], [-90.607288371, 43.970522919], [-90.576120864, 44.00625808], [-90.601445506, 44.068336526], [-90.58442233, 44.083320627], [-90.580744783, 44.120069424], [-90.55037425, 44.139421502], [-90.560217063, 44.162888239], [-90.523301671, 44.216695378], [-90.470967959, 44.208756874], [-90.428338478, 44.256745884], [-90.437205146, 44.289895335], [-90.381508628, 44.278583477], [-90.345054636, 44.312445025], [-90.250236759, 44.30681775], [-90.190883616, 44.335221002], [-90.125738511, 44.340403626], [-90.139276604, 44.377694259], [-90.127853195, 44.393426458], [-90.162092218, 44.418784718], [-90.169441769, 44.495005617], [-90.228316406, 44.508680026], [-90.213651786, 44.524415294], [-90.245688627, 44.553653549], [-90.28219838, 44.561727504], [-90.322705397, 44.621990959], [-90.359136501, 44.614644538], [-90.398761789, 44.638220648], [-90.415375839, 44.632253002], [-90.452474783, 44.666360478], [-90.43343992, 44.67713059], [-90.465157548, 44.714085083], [-90.438884894, 44.718876104], [-90.379742156, 44.684025596], [-90.364485393, 44.693403493], [-90.384788464, 44.709423761], [-90.359997312, 44.732340495], [-90.421419213, 44.763744335], [-90.437654505, 44.798298278], [-90.402491728, 44.80448116], [-90.347210417, 44.761678229], [-90.297800759, 44.757709126], [-90.185319194, 44.688487599], [-90.184696863, 44.671348314], [-90.059367219, 44.625601063], [-90.027878473, 44.638466488], [-89.958261082, 44.629632901], [-89.923287967, 44.605293851], [-89.904253015, 44.618107746], [-89.803332874, 44.592677633], [-89.720843682, 44.639103273], [-89.685073534, 44.635320704], [-89.679734298, 44.653985272], [-89.639185855, 44.667406303], [-89.618414142, 44.663105349], [-89.590819069, 44.624653796], [-89.552752474, 44.647103171], [-89.551830807, 44.687842707], [-89.510135123, 44.70949624], [-89.495004364, 44.735637347], [-89.463505068, 44.734766017], [-89.429105558, 44.776970695], [-89.39847503, 44.879185091], [-89.318210551, 44.993628245], [-89.198701747, 45.079521607], [-89.151830204, 45.091771703]]]}, "properties": {"huc8": "07070003", "name": "Castle Rock", "states": "WI", "areasqkm": 8415.94, "dc_states": "WI", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-89.888619939, 42.078122861], [-89.895334194, 42.033211476], [-89.921157548, 42.018443501], [-89.914272288, 41.998370803], [-89.988107005, 41.982479668], [-89.992238858, 41.934336967], [-89.972013751, 41.898740864], [-90.006880293, 41.861543811], [-89.999436567, 41.84482134], [-90.056054333, 41.837861186], [-90.025017003, 41.812490857], [-90.024139205, 41.788372165], [-90.137065539, 41.78683973], [-90.154012064, 41.771459556], [-90.142606238, 41.752628958], [-90.200753966, 41.742383337], [-90.209429989, 41.714489257], [-90.192241112, 41.696738458], [-90.19945229, 41.660401678], [-90.188634107, 41.654065585], [-90.282979021, 41.640184916], [-90.29169781, 41.632982141], [-90.278560738, 41.625675148], [-90.309436004, 41.620424724], [-90.290585497, 41.604059404], [-90.298478345, 41.589116043], [-90.382571767, 41.557683951], [-90.37569947, 41.530639028], [-90.424819628, 41.520443416], [-90.406064699, 41.502555644], [-90.415893503, 41.491067416], [-90.565655212, 41.496375567], [-90.61824749, 41.481787747], [-90.553965608, 41.445813004], [-90.572606574, 41.417559838], [-90.567234526, 41.392995661], [-90.711187462, 41.388485139], [-90.690395961, 41.343850797], [-90.688153128, 41.321013873], [-90.702257613, 41.312846428], [-90.766955892, 41.317682868], [-90.917880606, 41.272010779], [-90.959195445, 41.27634511], [-90.980025093, 41.26250959], [-90.970371853, 41.248778587], [-90.986150514, 41.246380215], [-90.987177621, 41.226106501], [-91.011572014, 41.219378477], [-90.989314924, 41.178368693], [-91.061862122, 41.141869098], [-91.190478087, 41.280239763], [-91.1823903, 41.298186464], [-91.205052119, 41.351519266], [-91.152919719, 41.440218133], [-91.039528695, 41.484161519], [-91.021664289, 41.508779396], [-90.970640165, 41.489166961], [-90.95811809, 41.543625162], [-90.927899745, 41.562858656], [-90.842724138, 41.52401659], [-90.780545901, 41.524063735], [-90.750696885, 41.547881686], [-90.764016326, 41.559851557], [-90.754752016, 41.57423332], [-90.704187901, 41.575908], [-90.700754027, 41.58923762], [-90.675499195, 41.587684533], [-90.620278387, 41.620908486], [-90.585558865, 41.618685786], [-90.57451019, 41.64504644], [-90.589632735, 41.661405258], [-90.568499731, 41.652811582], [-90.555043747, 41.671377137], [-90.496914769, 41.628998734], [-90.412305374, 41.636860524], [-90.38885381, 41.65337931], [-90.374173151, 41.68117095], [-90.388064831, 41.690094421], [-90.371003861, 41.69265035], [-90.35793319, 41.720312702], [-90.321083725, 41.724590671], [-90.335298459, 41.7541854], [-90.375826644, 41.771503907], [-90.385201119, 41.808387102], [-90.31494421, 41.866483989], [-90.307676213, 41.927239422], [-90.238875542, 41.931006511], [-90.210619491, 41.874266444], [-90.189754188, 41.895988444], [-90.121326813, 41.901602841], [-90.105924764, 41.93491391], [-90.119570592, 41.972860283], [-90.065338621, 41.981503761], [-90.017661014, 42.065336443], [-89.972299973, 42.084606506], [-89.888619939, 42.078122861]]]}, "properties": {"huc8": "07080101", "name": "Copperas-Duck", "states": "IA,IL", "areasqkm": 2568.51, "dc_states": "IA", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-91.455156375, 41.777671575], [-91.386905553, 41.764913135], [-91.398057446, 41.746651898], [-91.375964904, 41.713564688], [-91.441793911, 41.677755881], [-91.415907938, 41.661558138], [-91.425121481, 41.634514066], [-91.40807149, 41.611282237], [-91.443521224, 41.587763786], [-91.397732819, 41.542763678], [-91.39688295, 41.520957897], [-91.426629506, 41.504599981], [-91.424197836, 41.492695943], [-91.364052076, 41.465758842], [-91.327775166, 41.473599114], [-91.296975907, 41.450699206], [-91.344833704, 41.422451536], [-91.340210933, 41.396597431], [-91.369502881, 41.321397645], [-91.349422101, 41.311901132], [-91.34919751, 41.285133646], [-91.324716905, 41.291507077], [-91.330044986, 41.334954011], [-91.221691713, 41.357955637], [-91.193114741, 41.342653016], [-91.202883791, 41.321343418], [-91.1823903, 41.298186464], [-91.190223881, 41.279835395], [-91.080305321, 41.152736306], [-91.061862122, 41.141869098], [-91.012033539, 41.163306877], [-91.039429576, 41.148496234], [-91.051407389, 41.101459885], [-91.091193551, 41.088503174], [-91.08013146, 41.0627829], [-91.115679434, 41.064377957], [-91.132512089, 41.019329981], [-91.282069333, 41.052238315], [-91.292798931, 41.101881355], [-91.360187147, 41.173063637], [-91.431483017, 41.164061552], [-91.495692975, 41.196813226], [-91.491859697, 41.216179961], [-91.511780855, 41.227480078], [-91.568594039, 41.23039143], [-91.666857459, 41.271699514], [-91.71721251, 41.345434421], [-91.771686245, 41.363949359], [-91.759819006, 41.408467809], [-91.794787526, 41.408360437], [-91.827490073, 41.430747718], [-91.95393806, 41.427527134], [-91.996816336, 41.445918096], [-92.054399045, 41.430513369], [-92.083974912, 41.455510305], [-92.193604922, 41.439330884], [-92.387126211, 41.476835112], [-92.454117909, 41.508224552], [-92.490353061, 41.508086471], [-92.518958887, 41.545238041], [-92.518165353, 41.598255864], [-92.540499896, 41.618491061], [-92.592785252, 41.624886781], [-92.741737429, 41.700886768], [-92.71573575, 41.735708133], [-92.559557132, 41.68793183], [-92.473727876, 41.685383127], [-92.451723152, 41.704133718], [-92.299003744, 41.671173785], [-92.202860556, 41.717421931], [-92.156263098, 41.706000628], [-92.106776141, 41.739706232], [-92.088112199, 41.722574749], [-92.016512596, 41.7093078], [-91.987496263, 41.73857307], [-91.990307587, 41.756601667], [-91.966013758, 41.767892692], [-91.696625047, 41.738535848], [-91.60549636, 41.760242972], [-91.551379778, 41.719777711], [-91.454744976, 41.742191615], [-91.455156375, 41.777671575]]]}, "properties": {"huc8": "07080209", "name": "Lower Iowa", "states": "IA", "areasqkm": 4366.13, "dc_states": "IA", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-89.29434038, 43.363002249], [-89.288918503, 43.334242173], [-89.318553128, 43.313047], [-89.301982322, 43.299047628], [-89.27651731, 43.306886621], [-89.264485815, 43.285070726], [-89.274616756, 43.268238761], [-89.251051166, 43.26958535], [-89.22501833, 43.219192454], [-89.17445431, 43.204648056], [-89.188467749, 43.187611141], [-89.172197767, 43.17527146], [-89.179302075, 43.161031284], [-89.126424678, 43.14856998], [-89.10541258, 43.175365366], [-89.102835157, 43.118860312], [-89.079095848, 43.116633036], [-89.078481026, 43.100579628], [-89.041406461, 43.132768401], [-89.021752485, 43.123188116], [-89.022264161, 43.085900106], [-88.95540122, 43.092335828], [-88.958676108, 43.055682011], [-88.939919539, 43.045454987], [-88.928108402, 42.999130912], [-88.898238219, 43.000414916], [-88.89024473, 42.972159751], [-88.847333021, 42.967608043], [-88.845716007, 42.948765852], [-88.79667718, 42.925582059], [-88.785780706, 42.943035521], [-88.717866935, 42.934411384], [-88.716811456, 42.981877424], [-88.685391374, 42.975763805], [-88.683714665, 43.029623546], [-88.646233357, 43.07378874], [-88.601761408, 43.053287335], [-88.582595683, 43.068046876], [-88.571996785, 43.055023201], [-88.539158202, 43.062950977], [-88.531500973, 43.041895427], [-88.49071107, 43.044220187], [-88.439458467, 43.077713527], [-88.427053846, 43.102950342], [-88.359215505, 43.102613755], [-88.364461101, 43.115363367], [-88.342350698, 43.125554957], [-88.357022769, 43.146329381], [-88.30191449, 43.162502597], [-88.283204831, 43.217237004], [-88.264849014, 43.220458129], [-88.251632548, 43.248273501], [-88.191505081, 43.247605391], [-88.18296606, 43.215749838], [-88.228229112, 43.181776919], [-88.209840483, 43.164151647], [-88.220551766, 43.155435898], [-88.262152619, 43.159897485], [-88.281401552, 43.149045088], [-88.283030934, 43.120532402], [-88.330949761, 43.116207637], [-88.325103737, 43.080095001], [-88.365118927, 43.061571963], [-88.353298402, 43.047561564], [-88.376173861, 43.026676574], [-88.363567299, 43.026799299], [-88.368557133, 43.00536392], [-88.443204738, 42.960391231], [-88.438608147, 42.94364778], [-88.4574394, 42.934131898], [-88.478280045, 42.884541131], [-88.515726007, 42.860830017], [-88.551979608, 42.8662811], [-88.566141076, 42.850335278], [-88.560139187, 42.828397132], [-88.583123333, 42.808220066], [-88.59619192, 42.82107348], [-88.613623269, 42.788774975], [-88.629939772, 42.808295139], [-88.666537232, 42.792533673], [-88.674364068, 42.752599813], [-88.62891037, 42.724087037], [-88.638884701, 42.703740068], [-88.575257875, 42.671390123], [-88.529452272, 42.680109896], [-88.50615681, 42.661568679], [-88.467553772, 42.674985416], [-88.474666871, 42.625361182], [-88.538019783, 42.609597452], [-88.596462257, 42.547706313], [-88.62900088, 42.567644931], [-88.677345671, 42.548474796], [-88.701570221, 42.526023008], [-88.692333378, 42.51685179], [-88.722857959, 42.51161284], [-88.724250026, 42.491585262], [-88.74337361, 42.481952883], [-88.828824975, 42.476888544], [-88.876010009, 42.535959519], [-88.953834273, 42.520876295], [-89.020048686, 42.471382506], [-89.04778243, 42.477218278], [-89.069824793, 42.457546837], [-89.086704322, 42.474361576], [-89.070809909, 42.502995975], [-89.080990471, 42.558447994], [-89.163564869, 42.574754425], [-89.184147843, 42.606389113], [-89.241343, 42.607708074], [-89.254542717, 42.618371792], [-89.247577258, 42.632558562], [-89.29385052, 42.676817067], [-89.296259293, 42.707368709], [-89.25658957, 42.735474386], [-89.274509468, 42.759554096], [-89.25822375, 42.792142875], [-89.282681146, 42.790145792], [-89.275600799, 42.806249626], [-89.295972475, 42.829749174], [-89.3402792, 42.829049595], [-89.370757558, 42.853509285], [-89.371694007, 42.87812788], [-89.420968392, 42.89576269], [-89.418827453, 42.936165818], [-89.457542071, 42.938775398], [-89.432067641, 42.992430129], [-89.471195677, 43.019021341], [-89.495008209, 43.062390127], [-89.52398754, 43.048529424], [-89.554647037, 43.062781163], [-89.561309734, 43.080687025], [-89.539001116, 43.106789031], [-89.570631752, 43.102513411], [-89.593587496, 43.117747226], [-89.569298962, 43.169915237], [-89.60200108, 43.188126722], [-89.587994257, 43.228292474], [-89.482471832, 43.252783188], [-89.458216825, 43.286477067], [-89.471542367, 43.298733719], [-89.420307436, 43.311185249], [-89.433268734, 43.333854624], [-89.29434038, 43.363002249]]]}, "properties": {"huc8": "07090002", "name": "Middle Rock", "states": "IL,WI", "areasqkm": 4743.27, "dc_states": "WI", "cluster_count": 0, "data_center_count": 5, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-88.630287655, 42.567217656], [-88.589602269, 42.532712317], [-88.526290663, 42.535497613], [-88.523244597, 42.492867209], [-88.554825134, 42.488062955], [-88.569591082, 42.460297234], [-88.558477379, 42.442967333], [-88.500295795, 42.462476141], [-88.469835736, 42.428487398], [-88.48015774, 42.403479643], [-88.515628286, 42.396219976], [-88.53222654, 42.361480064], [-88.517724521, 42.332374907], [-88.468118555, 42.321577138], [-88.442268319, 42.294089771], [-88.407818861, 42.307709999], [-88.364012159, 42.280549295], [-88.38146881, 42.258057214], [-88.36119581, 42.216058589], [-88.368991918, 42.147442884], [-88.339049048, 42.141446954], [-88.335592068, 42.124735422], [-88.357741124, 42.112423397], [-88.399492957, 42.125189013], [-88.402491725, 42.098606862], [-88.444842822, 42.104187078], [-88.489895768, 42.083764678], [-88.477651961, 42.002483315], [-88.440188474, 41.99581427], [-88.448489404, 41.956293172], [-88.477330364, 41.956000186], [-88.486120052, 41.935685433], [-88.46218688, 41.907450414], [-88.627763398, 41.88327936], [-88.673989184, 41.893028772], [-88.724741646, 41.860522813], [-88.762524821, 41.859741485], [-88.775209673, 41.82311458], [-88.906002202, 41.764961369], [-88.927154966, 41.805841482], [-88.902198531, 41.829534209], [-88.947569259, 41.868215865], [-88.953725435, 41.896953202], [-88.971293874, 41.895156419], [-88.969480553, 41.937539345], [-89.060053208, 41.956427521], [-89.07450635, 41.99108637], [-89.062842794, 42.002594418], [-89.110334137, 42.052487946], [-89.123346844, 42.096629388], [-89.075687803, 42.115063585], [-89.076590606, 42.141867168], [-89.142059096, 42.176476963], [-89.088818677, 42.212009734], [-89.019895651, 42.225928165], [-89.016356923, 42.256612307], [-88.899384297, 42.342118747], [-88.893383899, 42.367584504], [-88.859234252, 42.377988882], [-88.862989493, 42.397653051], [-88.808684237, 42.453083612], [-88.815709152, 42.476853647], [-88.72660295, 42.488865144], [-88.722857959, 42.51161284], [-88.692333378, 42.51685179], [-88.701570221, 42.526023008], [-88.677750953, 42.548204251], [-88.630287655, 42.567217656]]]}, "properties": {"huc8": "07090006", "name": "Kishwaukee", "states": "IL,WI", "areasqkm": 3250.09, "dc_states": "IL", "cluster_count": 0, "data_center_count": 3, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-93.612389912, 41.578788415], [-93.654379781, 41.543003125], [-93.651538397, 41.528371334], [-93.736961962, 41.502595497], [-93.84555194, 41.509840694], [-93.8892431, 41.483179687], [-93.941797446, 41.512616677], [-93.971083321, 41.494315453], [-93.966371697, 41.543350518], [-94.018710992, 41.573857231], [-94.02965866, 41.60146287], [-94.065898942, 41.586472007], [-94.07801345, 41.604043214], [-94.062880087, 41.623964599], [-94.089802644, 41.649723115], [-94.070068069, 41.678129251], [-94.087797412, 41.697068833], [-94.091807687, 41.721694347], [-94.07794184, 41.734440841], [-94.096423129, 41.756718927], [-94.117741848, 41.740952611], [-94.154802231, 41.746507839], [-94.177697078, 41.768709064], [-94.262268346, 41.78139617], [-94.293297943, 41.834066051], [-94.311020492, 41.81999308], [-94.3460206, 41.823161752], [-94.385315914, 41.872222869], [-94.463444455, 41.899996949], [-94.532820485, 41.952379582], [-94.534549386, 41.970908868], [-94.566763781, 41.985172537], [-94.573165993, 42.027351596], [-94.608993712, 42.034857546], [-94.64284112, 42.010744971], [-94.712038534, 42.069330352], [-94.739053547, 42.074309123], [-94.716632985, 42.089318215], [-94.734736397, 42.115285269], [-94.763347622, 42.113438955], [-94.81681513, 42.156273489], [-94.943205084, 42.212317529], [-94.964668443, 42.208984007], [-94.959943819, 42.172515982], [-95.016482675, 42.183058982], [-94.994397385, 42.200976386], [-95.059446491, 42.237553665], [-95.072120044, 42.274537456], [-95.057949042, 42.279481986], [-95.058544738, 42.30902288], [-95.080765558, 42.311626566], [-95.119130104, 42.366658196], [-95.109950504, 42.403983519], [-95.120655816, 42.472621752], [-95.142680549, 42.505164228], [-95.151203898, 42.590798191], [-95.269406339, 42.608626636], [-95.314268219, 42.681032356], [-95.306298696, 42.720216801], [-95.289163545, 42.72383098], [-95.236481492, 42.658709298], [-95.206826741, 42.668096634], [-95.255411755, 42.755229671], [-95.224422937, 42.773487887], [-95.239848971, 42.826655264], [-95.164554158, 42.853819679], [-95.158381802, 42.872724716], [-95.097633831, 42.872661114], [-95.058370687, 42.892999841], [-95.012337284, 42.877612293], [-94.992125542, 42.919600325], [-94.941278071, 42.90150155], [-94.914912796, 42.932535141], [-94.850769946, 42.935522745], [-94.824910057, 42.899823408], [-94.827949085, 42.87873694], [-94.802097052, 42.857589439], [-94.811723384, 42.836663137], [-94.794165642, 42.814060411], [-94.770270164, 42.812502531], [-94.737811323, 42.766269248], [-94.747335793, 42.731907681], [-94.768287448, 42.719678616], [-94.746659174, 42.693951713], [-94.769330652, 42.67450442], [-94.755937473, 42.666728697], [-94.755622514, 42.614222137], [-94.690801254, 42.623253191], [-94.624065504, 42.574388409], [-94.479135065, 42.536964021], [-94.471368853, 42.519231005], [-94.402110778, 42.496283527], [-94.408203631, 42.484284654], [-94.386526726, 42.470640834], [-94.39360185, 42.454905668], [-94.323440725, 42.381437244], [-94.305845196, 42.409402995], [-94.27188726, 42.413296947], [-94.227474304, 42.37795384], [-94.21612861, 42.329586748], [-94.135013809, 42.299415275], [-94.150602167, 42.2882154], [-94.137357852, 42.255893574], [-94.195165078, 42.19924803], [-94.174048994, 42.180707668], [-94.200212684, 42.179029868], [-94.207505567, 42.146675618], [-94.234605992, 42.130456379], [-94.226271395, 42.121654061], [-94.244861499, 42.103148629], [-94.233965166, 42.089313132], [-94.261431867, 42.02479039], [-94.234891564, 42.017460971], [-94.240950404, 41.989680632], [-94.225424005, 41.978716358], [-94.182789136, 41.996670089], [-94.192854455, 41.954112054], [-94.175465485, 41.917362455], [-94.116062878, 41.917800589], [-94.098607091, 41.844276434], [-94.064506427, 41.817628672], [-94.062618701, 41.769130177], [-94.031153625, 41.766224072], [-94.004749287, 41.710466257], [-93.966131795, 41.683237101], [-93.918499853, 41.695756192], [-93.926364195, 41.709408724], [-93.909038922, 41.717861644], [-93.857404064, 41.722081285], [-93.813048508, 41.667574701], [-93.766517481, 41.688275805], [-93.762342058, 41.666537448], [-93.699428558, 41.634899917], [-93.67807316, 41.594296473], [-93.612389912, 41.578788415]]]}, "properties": {"huc8": "07100006", "name": "North Raccoon", "states": "IA", "areasqkm": 6399.54, "dc_states": "IA", "cluster_count": 1, "data_center_count": 19, "clustered_data_center_count": 19}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-92.998072104, 41.43676625], [-92.968302473, 41.381704992], [-92.98656009, 41.364912309], [-92.983977547, 41.34417069], [-93.019500078, 41.342962796], [-93.081212157, 41.303171167], [-93.133755337, 41.296756266], [-93.224234012, 41.25459342], [-93.247989717, 41.228352366], [-93.249417863, 41.200055648], [-93.284674098, 41.19334243], [-93.310794924, 41.161099378], [-93.288301774, 41.096150591], [-93.244937587, 41.070504983], [-93.252423358, 41.041927749], [-93.235782707, 41.040388646], [-93.212528678, 40.980410496], [-93.246214556, 40.968555722], [-93.342735065, 41.042327133], [-93.366630314, 41.03604448], [-93.374223749, 40.992855845], [-93.426916973, 40.97285152], [-93.534974523, 40.97258448], [-93.630834348, 40.933269014], [-93.666719147, 40.940191283], [-93.770256424, 40.910098353], [-93.804015044, 40.921154375], [-93.802575808, 40.961226323], [-93.818741942, 40.980276437], [-93.877725979, 40.988506567], [-93.895032379, 41.047734565], [-93.911943959, 41.058004629], [-93.953434886, 41.044257851], [-93.98891983, 41.087143888], [-93.986857854, 41.108773186], [-94.037444421, 41.132881783], [-94.077872831, 41.131673997], [-94.081751576, 41.152829213], [-94.126811787, 41.186672734], [-94.161346961, 41.189987521], [-94.192486361, 41.216199229], [-94.195534317, 41.241478273], [-94.22520186, 41.269407561], [-94.263196422, 41.256754016], [-94.288813312, 41.295453695], [-94.318848899, 41.310554668], [-94.31731343, 41.334047167], [-94.402080433, 41.367061405], [-94.47969232, 41.3627993], [-94.544979266, 41.460034972], [-94.567999666, 41.438788383], [-94.612325196, 41.45855535], [-94.614230706, 41.476037424], [-94.637414965, 41.484356316], [-94.667000706, 41.567761129], [-94.696016752, 41.590695641], [-94.651460714, 41.62105983], [-94.563911592, 41.588611111], [-94.495622375, 41.527143506], [-94.460877082, 41.541268895], [-94.434391098, 41.520251563], [-94.370504781, 41.523008636], [-94.329256982, 41.498716632], [-94.285394736, 41.497803098], [-94.242402949, 41.522166765], [-94.06957809, 41.468339093], [-94.00310786, 41.473066877], [-93.996232044, 41.493150048], [-93.942554247, 41.51252413], [-93.88830167, 41.483186961], [-93.84555194, 41.509840694], [-93.764821894, 41.500590052], [-93.674097891, 41.517608244], [-93.593415625, 41.586518039], [-93.597889805, 41.616423842], [-93.615748414, 41.626845489], [-93.583690266, 41.655441641], [-93.601366484, 41.69441812], [-93.586797902, 41.714731334], [-93.612662689, 41.7279123], [-93.608988696, 41.749687864], [-93.671984238, 41.81819951], [-93.711572376, 41.904185992], [-93.669922014, 41.882924787], [-93.649482117, 41.898455757], [-93.612595209, 41.883874063], [-93.597787333, 41.8314341], [-93.547550644, 41.815298508], [-93.492722885, 41.743118739], [-93.464277902, 41.741748581], [-93.441725462, 41.689418186], [-93.374883913, 41.695267156], [-93.353327135, 41.656371769], [-93.289956371, 41.632183634], [-93.26236618, 41.596452227], [-93.188551164, 41.588497343], [-93.114373619, 41.540970764], [-93.109671505, 41.522882369], [-92.998072104, 41.43676625]]]}, "properties": {"huc8": "07100008", "name": "Lake Red Rock", "states": "IA", "areasqkm": 6326.29, "dc_states": "IA", "cluster_count": 1, "data_center_count": 24, "clustered_data_center_count": 24}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-85.914562766, 41.306832348], [-85.993133369, 41.32691452], [-86.004247103, 41.346935039], [-86.092438791, 41.341273343], [-86.123441998, 41.307739948], [-86.155900125, 41.320750183], [-86.211405311, 41.278342371], [-86.230925219, 41.283763507], [-86.223472748, 41.202406829], [-86.240920071, 41.172303682], [-86.27918059, 41.195052718], [-86.316242848, 41.193373954], [-86.333005116, 41.214616463], [-86.357356522, 41.208178854], [-86.395619695, 41.239546662], [-86.515341048, 41.269340581], [-86.554107164, 41.253013229], [-86.581181858, 41.209106808], [-86.635579263, 41.206319262], [-86.630099762, 41.149929746], [-86.647073118, 41.14958424], [-86.662218144, 41.124686378], [-86.703710621, 41.125452017], [-86.71901155, 41.154905802], [-86.750048284, 41.148598677], [-86.75239178, 41.170579109], [-86.793736641, 41.214811747], [-86.940490668, 41.178090041], [-86.962820714, 41.153366243], [-87.069007819, 41.116178011], [-87.090208148, 41.125301277], [-87.088066882, 41.144131665], [-87.156283771, 41.132513111], [-87.160260027, 41.164007937], [-87.177125549, 41.155756122], [-87.176769262, 41.096122628], [-87.212630814, 41.07645381], [-87.239848441, 41.080693161], [-87.237938707, 41.058362847], [-87.263942367, 41.081692552], [-87.317311948, 41.081783479], [-87.297044402, 41.057513153], [-87.325673079, 41.045349811], [-87.314594304, 41.024484311], [-87.345607107, 41.009477293], [-87.374865031, 41.033833956], [-87.440115934, 41.025321847], [-87.448863602, 41.061490481], [-87.480694836, 41.028564043], [-87.480633443, 41.042929327], [-87.526460146, 41.05430079], [-87.53561703, 41.08728004], [-87.608636505, 41.081790541], [-87.663374162, 41.051302855], [-87.737357981, 41.038263028], [-87.763740337, 41.064593201], [-87.785510248, 41.056347674], [-87.812666005, 41.074374055], [-87.862049198, 41.061499988], [-87.876744396, 41.086465334], [-87.893649882, 41.066656297], [-87.970320798, 41.053490763], [-87.987641728, 41.008733218], [-88.035132027, 41.018195753], [-88.054636932, 41.000245934], [-88.084311164, 41.001117295], [-88.110066302, 40.970936542], [-88.18105892, 40.954222952], [-88.210332937, 40.958345299], [-88.208540446, 40.970909034], [-88.157256014, 40.995898401], [-88.133737332, 41.089195435], [-88.136475182, 41.143809443], [-88.195723362, 41.171069895], [-88.180918462, 41.184439784], [-88.200614995, 41.201936518], [-88.191203303, 41.238059198], [-88.226880915, 41.251984363], [-88.170463211, 41.296876705], [-88.209206021, 41.307357377], [-88.208336331, 41.326852059], [-88.27996806, 41.326815044], [-88.296294637, 41.347596204], [-88.264408923, 41.355623221], [-88.285411424, 41.374848908], [-88.269330568, 41.396996414], [-88.246549523, 41.368952161], [-88.20319391, 41.372487997], [-88.179488934, 41.350140577], [-88.137425161, 41.375587886], [-88.102303154, 41.375465011], [-88.086036838, 41.395853257], [-87.952089674, 41.427211201], [-87.938353932, 41.44637779], [-87.851690507, 41.470305568], [-87.781536675, 41.446836865], [-87.753534919, 41.455610311], [-87.75636465, 41.441747582], [-87.736213214, 41.435128396], [-87.746525235, 41.420406049], [-87.718909925, 41.414280212], [-87.716967827, 41.400833195], [-87.666393345, 41.43224386], [-87.644571966, 41.414531714], [-87.682928539, 41.380522167], [-87.659990764, 41.366666442], [-87.663202918, 41.350036597], [-87.621821112, 41.364248908], [-87.624230689, 41.385664439], [-87.608209586, 41.39031834], [-87.541102266, 41.378616994], [-87.512626445, 41.415408587], [-87.526362395, 41.438391095], [-87.502981966, 41.456771051], [-87.440899855, 41.455996966], [-87.451547062, 41.42962355], [-87.434058348, 41.413452956], [-87.435471571, 41.388575619], [-87.365141922, 41.400692138], [-87.32556743, 41.363891249], [-87.306014454, 41.380425191], [-87.257917329, 41.362180555], [-87.255028969, 41.393868959], [-87.162552362, 41.453250414], [-87.081369614, 41.43607164], [-87.029830283, 41.403743749], [-87.027011876, 41.437559193], [-87.012757896, 41.445236346], [-87.053772514, 41.511755233], [-87.052872484, 41.535659319], [-87.000480687, 41.519854551], [-86.999384122, 41.504991811], [-86.975103086, 41.52604059], [-86.98049063, 41.559577412], [-86.893193369, 41.570308959], [-86.868476724, 41.591339326], [-86.838705238, 41.586690261], [-86.820517157, 41.611436165], [-86.836564316, 41.627167515], [-86.783443068, 41.654078728], [-86.739321679, 41.666398727], [-86.69501258, 41.658327791], [-86.701902066, 41.67406038], [-86.680816237, 41.678361809], [-86.67821673, 41.695442117], [-86.61905611, 41.694004035], [-86.58601055, 41.733425594], [-86.513761018, 41.734185643], [-86.473432545, 41.758208222], [-86.487898086, 41.770204341], [-86.45346949, 41.786118662], [-86.437858611, 41.754821233], [-86.387112115, 41.754486358], [-86.353627894, 41.804776079], [-86.338495169, 41.786153651], [-86.341797861, 41.756291881], [-86.360932931, 41.743176353], [-86.344546972, 41.716048697], [-86.35805044, 41.682428368], [-86.295958533, 41.671954876], [-86.276841138, 41.650274312], [-86.306061275, 41.583882245], [-86.280729686, 41.572052127], [-86.24500591, 41.581553376], [-86.227334848, 41.563654817], [-86.193971071, 41.586105829], [-86.160029695, 41.556162635], [-86.099065517, 41.551466991], [-86.080442283, 41.516028648], [-85.96556807, 41.481503581], [-86.055354122, 41.467429614], [-86.036152863, 41.444570398], [-85.968369518, 41.438356286], [-85.976691328, 41.398418457], [-85.892343409, 41.36575119], [-85.914562766, 41.306832348]]]}, "properties": {"huc8": "07120001", "name": "Kankakee", "states": "IL,IN,MI", "areasqkm": 7845.52, "dc_states": "IN", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-87.873146511, 42.349215694], [-87.829346962, 42.219778783], [-87.721980727, 42.079349971], [-87.683249063, 42.074695059], [-87.675917781, 41.991389163], [-87.628042138, 41.889390326], [-87.612615681, 41.889202571], [-87.624204522, 41.778392858], [-87.55255971, 41.726454652], [-87.539544796, 41.733924068], [-87.559158867, 41.695098824], [-87.584695345, 41.707685685], [-87.606831646, 41.674448854], [-87.579071438, 41.655239886], [-87.55396164, 41.666533596], [-87.518587029, 41.628492331], [-87.471556223, 41.629455215], [-87.471407122, 41.61818809], [-87.422976172, 41.616469747], [-87.404465085, 41.630004501], [-87.351997649, 41.610718524], [-87.252003497, 41.608838057], [-87.27132586, 41.590388066], [-87.359446101, 41.580296587], [-87.355876213, 41.548570698], [-87.335508403, 41.540313921], [-87.427598035, 41.520485586], [-87.440899855, 41.481261647], [-87.524363107, 41.441168552], [-87.512626445, 41.415408587], [-87.545997417, 41.376150822], [-87.602412974, 41.391622311], [-87.624230689, 41.385664439], [-87.621821112, 41.364248908], [-87.664198851, 41.350418456], [-87.659990764, 41.366666442], [-87.682928539, 41.380522167], [-87.64461214, 41.41502375], [-87.676276988, 41.434622443], [-87.717151887, 41.400935566], [-87.718909925, 41.414280212], [-87.746525235, 41.420406049], [-87.7260674, 41.453222162], [-87.755134976, 41.463781691], [-87.74394641, 41.491652346], [-87.799241549, 41.504037922], [-87.725598014, 41.545127308], [-87.747468269, 41.572229898], [-87.799819744, 41.577033883], [-87.843641824, 41.555339521], [-87.858453458, 41.575657821], [-87.844774133, 41.632632321], [-87.817263043, 41.639996654], [-87.836620099, 41.668786025], [-87.840471066, 41.720854437], [-87.809184617, 41.747854805], [-87.749252802, 41.754528856], [-87.737178898, 41.771152532], [-87.740855491, 41.896202719], [-87.775391019, 41.898675388], [-87.803540802, 41.92468778], [-87.794918275, 41.943836934], [-87.81956122, 41.959324128], [-87.809980726, 41.976751662], [-87.82892043, 42.010654307], [-87.826546318, 42.054824985], [-87.862175948, 42.084864325], [-87.865937627, 42.134594506], [-87.913773632, 42.217991746], [-87.895815141, 42.238087363], [-87.92019809, 42.265980221], [-87.920572168, 42.306165971], [-87.904828197, 42.311602182], [-87.921293116, 42.341192014], [-87.873146511, 42.349215694]]]}, "properties": {"huc8": "07120003", "name": "Chicago", "states": "IL,IN", "areasqkm": 1698.69, "dc_states": "IL", "cluster_count": 1, "data_center_count": 13, "clustered_data_center_count": 13}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-87.873146511, 42.349215694], [-87.921293116, 42.341192014], [-87.904828197, 42.311602182], [-87.920572168, 42.306165971], [-87.92019809, 42.265980221], [-87.895815141, 42.238087363], [-87.913773632, 42.217991746], [-87.865937627, 42.134594506], [-87.862175948, 42.084864325], [-87.826546318, 42.054824985], [-87.82892043, 42.010654307], [-87.809980726, 41.976751662], [-87.81956122, 41.959324128], [-87.794918275, 41.943836934], [-87.803540802, 41.92468778], [-87.775391019, 41.898675388], [-87.740855491, 41.896202719], [-87.737178898, 41.771152532], [-87.749252802, 41.754528856], [-87.809184617, 41.747854805], [-87.840471066, 41.720854437], [-87.836620099, 41.668786025], [-87.817263043, 41.639996654], [-87.844774133, 41.632632321], [-87.858453458, 41.575657821], [-87.843641824, 41.555339521], [-87.799819744, 41.577033883], [-87.747468269, 41.572229898], [-87.725598014, 41.545127308], [-87.799241549, 41.504037922], [-87.74394641, 41.491652346], [-87.755134976, 41.463781691], [-87.7260674, 41.453222162], [-87.748338974, 41.436335778], [-87.753534919, 41.455610311], [-87.781536675, 41.446836865], [-87.838552004, 41.457524485], [-87.834351814, 41.470320051], [-87.874891585, 41.46854133], [-87.938353932, 41.44637779], [-87.952089674, 41.427211201], [-88.086036838, 41.395853257], [-88.102303154, 41.375465011], [-88.137425161, 41.375587886], [-88.178591019, 41.350328481], [-88.20319391, 41.372487997], [-88.244539118, 41.368044471], [-88.284726924, 41.42986474], [-88.246614851, 41.50522629], [-88.256938941, 41.524634307], [-88.240538514, 41.535569346], [-88.280097998, 41.579077726], [-88.256957687, 41.591882205], [-88.276343502, 41.623744702], [-88.260415292, 41.653304702], [-88.277135052, 41.679733551], [-88.187860168, 41.780899531], [-88.231281884, 41.781567878], [-88.244428851, 41.802742338], [-88.240285969, 41.848284966], [-88.26038868, 41.838426299], [-88.273323126, 41.850750214], [-88.266386933, 41.880811638], [-88.279598482, 41.904635078], [-88.263558127, 41.924424863], [-88.205744274, 41.926763482], [-88.218702681, 41.944423622], [-88.193313367, 41.965670771], [-88.194799132, 42.007701583], [-88.156893797, 42.005217082], [-88.102028017, 42.033905602], [-88.096900053, 42.049807317], [-88.127496697, 42.055221833], [-88.093264229, 42.094547517], [-88.124645567, 42.09808246], [-88.104969926, 42.126731253], [-88.112506903, 42.140133537], [-88.080976492, 42.172844685], [-88.091366685, 42.189484096], [-88.070063091, 42.209834105], [-88.074522621, 42.255902058], [-88.048220373, 42.267697192], [-88.038462169, 42.296123303], [-88.061614729, 42.307383306], [-88.042761332, 42.338429726], [-88.063020147, 42.380487122], [-88.062777287, 42.491892703], [-88.120927579, 42.561741658], [-88.103822178, 42.593535013], [-88.110326565, 42.614260801], [-88.139866925, 42.621257909], [-88.116940177, 42.638722815], [-88.128273315, 42.676444181], [-88.017674095, 42.683489331], [-87.992474205, 42.639557249], [-87.976259953, 42.649684437], [-87.987029619, 42.679120518], [-87.971956319, 42.700268157], [-87.925419724, 42.698790856], [-87.93885032, 42.599958964], [-87.922488577, 42.56121812], [-87.886344201, 42.575304159], [-87.866657472, 42.545114317], [-87.884393967, 42.387435085], [-87.873146511, 42.349215694]]]}, "properties": {"huc8": "07120004", "name": "Des Plaines", "states": "IL,WI", "areasqkm": 3769.72, "dc_states": "IL", "cluster_count": 1, "data_center_count": 33, "clustered_data_center_count": 33}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-88.198962457, 43.202931889], [-88.202246017, 43.190672525], [-88.18236599, 43.181472786], [-88.131415523, 43.181199767], [-88.137431658, 43.164711364], [-88.110040999, 43.15549905], [-88.10574416, 43.136577555], [-88.134792215, 43.076836445], [-88.121394075, 43.051910975], [-88.143246628, 43.039174475], [-88.088669038, 43.026469983], [-88.104898996, 43.005843677], [-88.085785724, 42.965966262], [-88.126158512, 42.931501128], [-88.101569361, 42.921975203], [-88.102871841, 42.900194951], [-88.075108713, 42.903683939], [-88.059805728, 42.855656274], [-88.073220587, 42.83455769], [-88.057502068, 42.817771651], [-88.07335586, 42.801336355], [-88.061046369, 42.766007848], [-88.08167184, 42.74613402], [-88.087018109, 42.686272002], [-88.128273315, 42.676444181], [-88.116940177, 42.638722815], [-88.139866925, 42.621257909], [-88.110326565, 42.614260801], [-88.103822178, 42.593535013], [-88.120927579, 42.561741658], [-88.062777287, 42.491892703], [-88.063020147, 42.380487122], [-88.042761332, 42.338429726], [-88.061614729, 42.307383306], [-88.039267636, 42.297978915], [-88.040913558, 42.277165748], [-88.074354447, 42.256266214], [-88.070063091, 42.209834105], [-88.091366685, 42.189484096], [-88.080976492, 42.172844685], [-88.112506903, 42.140133537], [-88.104969926, 42.126731253], [-88.124645567, 42.09808246], [-88.093264229, 42.094547517], [-88.127496697, 42.055221833], [-88.096900053, 42.049807317], [-88.102485157, 42.03351403], [-88.157711036, 42.005041963], [-88.224469281, 42.019665218], [-88.258698798, 41.991332985], [-88.30795113, 42.019230551], [-88.308997519, 42.03468231], [-88.376601763, 42.036213941], [-88.390011109, 42.064541495], [-88.428598084, 42.018180525], [-88.483750172, 42.023498989], [-88.486684211, 42.08672852], [-88.444842822, 42.104187078], [-88.402491725, 42.098606862], [-88.399492957, 42.125189013], [-88.357741124, 42.112423397], [-88.335592068, 42.124735422], [-88.339049048, 42.141446954], [-88.368991918, 42.147442884], [-88.36119581, 42.216058589], [-88.38146881, 42.258057214], [-88.363938726, 42.28038875], [-88.407818861, 42.307709999], [-88.442268319, 42.294089771], [-88.468118555, 42.321577138], [-88.517724521, 42.332374907], [-88.53222654, 42.361480064], [-88.515628286, 42.396219976], [-88.48015774, 42.403479643], [-88.469835736, 42.428487398], [-88.500295795, 42.462476141], [-88.558477379, 42.442967333], [-88.569591082, 42.460297234], [-88.554825134, 42.488062955], [-88.523244597, 42.492867209], [-88.526290663, 42.535497613], [-88.589602269, 42.532712317], [-88.606311686, 42.545093186], [-88.578492023, 42.559764005], [-88.582120575, 42.574952133], [-88.559394665, 42.573881186], [-88.538019783, 42.609597452], [-88.474666871, 42.625361182], [-88.462864704, 42.672083772], [-88.50615681, 42.661568679], [-88.529452272, 42.680109896], [-88.575257875, 42.671390123], [-88.620509304, 42.692519434], [-88.639431246, 42.704426266], [-88.628615327, 42.722661771], [-88.63896034, 42.73765064], [-88.674364068, 42.752599813], [-88.666627832, 42.792297163], [-88.629939772, 42.808295139], [-88.613623269, 42.788774975], [-88.59619192, 42.82107348], [-88.583123333, 42.808220066], [-88.560139187, 42.828397132], [-88.566141076, 42.850335278], [-88.551979608, 42.8662811], [-88.515726007, 42.860830017], [-88.478280045, 42.884541131], [-88.4574394, 42.934131898], [-88.438608147, 42.94364778], [-88.443204738, 42.960391231], [-88.368557133, 43.00536392], [-88.363567299, 43.026799299], [-88.376173861, 43.026676574], [-88.353298402, 43.047561564], [-88.365118927, 43.061571963], [-88.325103737, 43.080095001], [-88.330949761, 43.116207637], [-88.283030934, 43.120532402], [-88.281401552, 43.149045088], [-88.262152619, 43.159897485], [-88.220551766, 43.155435898], [-88.209840483, 43.164151647], [-88.228229112, 43.181776919], [-88.198962457, 43.202931889]]]}, "properties": {"huc8": "07120006", "name": "Upper Fox", "states": "IL,WI", "areasqkm": 3999.29, "dc_states": "IL, WI", "cluster_count": 2, "data_center_count": 2, "clustered_data_center_count": 2}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-88.194799132, 42.007701583], [-88.193313367, 41.965670771], [-88.218702681, 41.944423622], [-88.205744274, 41.926763482], [-88.263558127, 41.924424863], [-88.279598482, 41.904635078], [-88.266386933, 41.880811638], [-88.273323126, 41.850750214], [-88.26038868, 41.838426299], [-88.240285969, 41.848284966], [-88.244428851, 41.802742338], [-88.231281884, 41.781567878], [-88.187860168, 41.780899531], [-88.276871629, 41.680880344], [-88.277652509, 41.655422724], [-88.357725866, 41.625445878], [-88.342004902, 41.602796232], [-88.356165326, 41.59224937], [-88.396201409, 41.594287491], [-88.404670395, 41.6211851], [-88.487821974, 41.606926418], [-88.489512809, 41.560192054], [-88.554172046, 41.539817905], [-88.540503837, 41.50754661], [-88.553569503, 41.451732641], [-88.5778457, 41.449854499], [-88.59175209, 41.46640054], [-88.617044665, 41.4592211], [-88.638823815, 41.443963534], [-88.650021381, 41.40779615], [-88.740064865, 41.379647677], [-88.787633248, 41.346145487], [-88.841539749, 41.343261486], [-88.851240136, 41.367059535], [-88.898697056, 41.386444902], [-88.894992448, 41.402736878], [-88.930051692, 41.413639164], [-88.938128658, 41.444115615], [-88.957878777, 41.444338119], [-88.962911345, 41.478046303], [-88.924119897, 41.525896794], [-88.946734228, 41.528961963], [-88.948018559, 41.562744743], [-89.00391806, 41.563364183], [-89.091148146, 41.618452823], [-89.085998782, 41.638167238], [-89.021670796, 41.660860902], [-89.008621909, 41.688838995], [-88.94063551, 41.731713599], [-88.925365605, 41.775158054], [-88.896882542, 41.763495571], [-88.854125806, 41.780545748], [-88.843316443, 41.799537665], [-88.775209673, 41.82311458], [-88.762524821, 41.859741485], [-88.724741646, 41.860522813], [-88.67315463, 41.893269813], [-88.627763398, 41.88327936], [-88.46218688, 41.907450414], [-88.486120052, 41.935685433], [-88.477330364, 41.956000186], [-88.448489404, 41.956293172], [-88.440188474, 41.99581427], [-88.472591795, 41.995437449], [-88.483750172, 42.023498989], [-88.428598084, 42.018180525], [-88.396892734, 42.062168992], [-88.376853384, 42.058229155], [-88.376053847, 42.03600604], [-88.308291681, 42.03435514], [-88.30795113, 42.019230551], [-88.26576621, 41.993016786], [-88.24312932, 41.993375428], [-88.224469281, 42.019665218], [-88.194799132, 42.007701583]]]}, "properties": {"huc8": "07120007", "name": "Lower Fox", "states": "IL", "areasqkm": 2857.07, "dc_states": "IL", "cluster_count": 1, "data_center_count": 5, "clustered_data_center_count": 5}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-89.720123776, 39.202748033], [-89.654692092, 39.18397406], [-89.694766084, 39.14583567], [-89.760922411, 39.016372802], [-89.8684266, 38.898928883], [-89.891656766, 38.791914048], [-89.919263819, 38.782336654], [-89.940209577, 38.749945404], [-89.906550625, 38.731562706], [-89.918271939, 38.666679146], [-89.977711388, 38.615201505], [-89.993540416, 38.589738043], [-89.978488812, 38.570922138], [-90.033103058, 38.536436887], [-90.052116165, 38.485258342], [-90.082379738, 38.479931505], [-90.121182689, 38.445829184], [-90.145589361, 38.448992194], [-90.169916786, 38.423239916], [-90.140167455, 38.301893266], [-90.154655854, 38.256791533], [-90.196681181, 38.244484277], [-90.194004752, 38.216890841], [-90.156863013, 38.166251154], [-90.08524702, 38.145445407], [-90.080313752, 38.12206775], [-90.017151156, 38.079198123], [-90.006838093, 38.05572194], [-90.024243096, 38.035692455], [-89.956011155, 37.996620716], [-89.940434292, 37.968256104], [-90.149542271, 37.937904512], [-90.210605059, 37.90692418], [-90.23115724, 37.872627926], [-90.31826941, 37.865093404], [-90.313961249, 37.88341884], [-90.37077373, 37.93117014], [-90.384076339, 37.962029517], [-90.535901663, 38.018794385], [-90.624868042, 38.117754211], [-90.608935007, 38.165859414], [-90.620991437, 38.202241927], [-90.595014986, 38.224945063], [-90.560021479, 38.227607464], [-90.572658657, 38.259062523], [-90.564765965, 38.291571818], [-90.549202055, 38.320821912], [-90.513629251, 38.330396255], [-90.500339621, 38.350568829], [-90.496335964, 38.391840763], [-90.526397592, 38.413592293], [-90.520037542, 38.441053152], [-90.458552169, 38.437338829], [-90.423166557, 38.408581298], [-90.39619794, 38.420379158], [-90.344704673, 38.389889407], [-90.323641288, 38.41076564], [-90.326726903, 38.437526221], [-90.302857241, 38.454732725], [-90.326187188, 38.507135429], [-90.421988352, 38.564663911], [-90.40868751, 38.590693269], [-90.461159555, 38.620931919], [-90.443604133, 38.631575011], [-90.454381274, 38.656415952], [-90.446756332, 38.67056657], [-90.405325881, 38.675288075], [-90.395397709, 38.695486464], [-90.350793442, 38.699999482], [-90.341738889, 38.742818263], [-90.322094817, 38.744136924], [-90.319567508, 38.765488578], [-90.269971204, 38.792531338], [-90.229581416, 38.797364367], [-90.207389664, 38.776307872], [-90.193932925, 38.815411301], [-90.152080749, 38.827264943], [-90.117811632, 38.805600234], [-90.07243938, 38.832793415], [-90.043921061, 38.813977897], [-90.035334415, 38.83854431], [-90.052662947, 38.88766846], [-90.011907468, 38.928602042], [-89.972112009, 39.055352839], [-89.939316282, 39.08464587], [-89.910369138, 39.089965614], [-89.913679102, 39.076319965], [-89.870897272, 39.114538165], [-89.834299365, 39.124646875], [-89.820364365, 39.154832753], [-89.720123776, 39.202748033]]]}, "properties": {"huc8": "07140101", "name": "Cahokia-Joachim", "states": "IL,MO", "areasqkm": 4262.72, "dc_states": "IL, MO", "cluster_count": 0, "data_center_count": 4, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-89.585675282, 34.983566078], [-89.609500223, 34.962057417], [-89.64646291, 34.975545172], [-89.656671462, 34.9615238], [-89.675388999, 34.971900847], [-89.756508546, 34.950676438], [-89.790650656, 34.957632851], [-89.800922591, 34.993260039], [-89.819320678, 34.996719361], [-89.872694706, 34.966309315], [-89.94082214, 34.976276821], [-89.934645621, 34.906262448], [-89.971911132, 34.907773137], [-90.004587734, 34.932321001], [-90.03744056, 34.916392418], [-90.057995346, 34.952918653], [-90.088521633, 34.950644697], [-90.113386147, 34.976890251], [-90.163448452, 34.973072536], [-90.239112854, 34.99981308], [-90.263095555, 34.974933308], [-90.257007545, 34.963529613], [-90.264638172, 34.975403337], [-90.240325928, 35.009914399], [-90.20981598, 35.012252808], [-90.176841736, 35.040008546], [-90.160964966, 35.073898316], [-90.083015442, 35.069469453], [-90.091133117, 35.084346772], [-90.061676026, 35.110168458], [-89.991378784, 35.12413025], [-89.968406677, 35.103065491], [-89.939117431, 35.125766755], [-89.822387695, 35.095390321], [-89.784614563, 35.06206131], [-89.746040344, 35.060859681], [-89.717979431, 35.039550782], [-89.664825439, 35.044773102], [-89.633651733, 35.018699647], [-89.634849547, 35.003204346], [-89.585675282, 34.983566078]]]}, "properties": {"huc8": "08010211", "name": "Horn Lake-Nonconnah", "states": "MS,TN", "areasqkm": 723.16, "dc_states": "TN", "cluster_count": 0, "data_center_count": 4, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-90.818137164, 32.368320773], [-90.788117843, 32.317594338], [-90.811001564, 32.253964363], [-90.845307972, 32.239741558], [-90.840327758, 32.215843478], [-90.904174767, 32.179448605], [-90.919515063, 32.210078367], [-90.969297086, 32.212323498], [-90.992305711, 32.185990827], [-90.980833524, 32.157075616], [-90.989744262, 32.130781345], [-91.02847073, 32.116615795], [-91.030739174, 32.095241405], [-91.057335071, 32.082961475], [-91.055002724, 32.040004648], [-91.011772737, 32.027733311], [-91.012333437, 32.016470166], [-91.176134094, 31.965334847], [-91.186753881, 31.90444877], [-91.1357023, 31.918069856], [-91.128119286, 31.866521762], [-91.102120605, 31.846882438], [-91.169960067, 31.808617355], [-91.225050211, 31.832923034], [-91.262553807, 31.80636473], [-91.297966977, 31.823604901], [-91.346807951, 31.804543961], [-91.376502964, 31.733979555], [-91.350198668, 31.734319307], [-91.328164635, 31.708626421], [-91.345730381, 31.635427421], [-91.28020444, 31.60967466], [-91.236845771, 31.629215222], [-91.227713749, 31.560778925], [-91.429348547, 31.451677235], [-91.428849157, 31.416578105], [-91.501154632, 31.331878478], [-91.499871975, 31.289140285], [-91.514311792, 31.270666129], [-91.50416629, 31.236986097], [-91.527680265, 31.21559908], [-91.527614838, 31.171506791], [-91.554081776, 31.150183764], [-91.594496802, 31.154383797], [-91.588365289, 31.092475642], [-91.5505094, 31.069535122], [-91.511772186, 31.077635242], [-91.512242234, 31.019478277], [-91.560121497, 30.994812159], [-91.626353335, 30.99738947], [-91.63371349, 31.01238243], [-91.574205587, 31.057490381], [-91.636099952, 31.121076612], [-91.62908447, 31.207863395], [-91.659585441, 31.238017122], [-91.659628085, 31.263897554], [-91.62810739, 31.286131722], [-91.542892924, 31.283899359], [-91.528146875, 31.323399548], [-91.575057093, 31.354625386], [-91.586396883, 31.405932275], [-91.526393046, 31.483983449], [-91.522792662, 31.53015654], [-91.44265526, 31.551100542], [-91.41610153, 31.577672865], [-91.497032605, 31.587333597], [-91.520113074, 31.609373252], [-91.520313459, 31.631816062], [-91.495810693, 31.652551394], [-91.463926334, 31.644330401], [-91.41686212, 31.658611244], [-91.391953882, 31.796114899], [-91.35948412, 31.821289345], [-91.34502341, 31.867999552], [-91.319085841, 31.884878722], [-91.259194385, 31.883678634], [-91.205377755, 31.9392405], [-91.184217004, 31.982040027], [-91.190105577, 32.000846282], [-91.121951349, 32.028668601], [-91.177807875, 32.047203352], [-91.167571773, 32.198596611], [-91.128114403, 32.219674996], [-91.119664336, 32.241222144], [-90.998344387, 32.240288684], [-90.985248513, 32.295454272], [-90.925214562, 32.32426969], [-90.899890964, 32.312304838], [-90.87479684, 32.354796762], [-90.818137164, 32.368320773]]]}, "properties": {"huc8": "08060100", "name": "Lower Mississippi-Natchez", "states": "LA,MS", "areasqkm": 1793.03, "dc_states": "MS", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-90.582552873, 31.389750739], [-90.57026994, 31.34057339], [-90.597548967, 31.332383142], [-90.579691637, 31.29807832], [-90.599569417, 31.282524927], [-90.590226413, 31.265351369], [-90.605542521, 31.242474985], [-90.565228221, 31.220915605], [-90.5758245, 31.167691641], [-90.638138366, 31.144191465], [-90.692597252, 31.091173825], [-90.708974489, 31.046124774], [-90.727439001, 31.041484675], [-90.69437206, 31.022067113], [-90.730569507, 30.924310537], [-90.718101423, 30.894452661], [-90.734067564, 30.886306487], [-90.724856465, 30.867427094], [-90.737374705, 30.849208015], [-90.777096391, 30.837218624], [-90.746469806, 30.757065367], [-90.76635651, 30.727593387], [-90.841046484, 30.689012518], [-90.859273971, 30.658943822], [-90.850499964, 30.618278183], [-90.771924539, 30.596305879], [-90.743817575, 30.546245643], [-90.741947491, 30.432460136], [-90.727535886, 30.415415281], [-90.762634878, 30.386235367], [-90.729214915, 30.382857441], [-90.736548859, 30.359911928], [-90.699173963, 30.384817598], [-90.662416537, 30.358039526], [-90.606699359, 30.356858927], [-90.598680296, 30.335282501], [-90.554040869, 30.35327748], [-90.543662193, 30.3123825], [-90.580755283, 30.278645372], [-90.683630039, 30.299407405], [-90.730692245, 30.253994623], [-90.74879701, 30.267873894], [-90.790430255, 30.261671645], [-90.85442925, 30.295239367], [-90.891341878, 30.282080322], [-90.935911723, 30.304641438], [-90.937591359, 30.320675125], [-90.953733285, 30.294279022], [-90.990591896, 30.28935486], [-90.978453745, 30.252773059], [-91.010569032, 30.256063486], [-91.05877728, 30.217942616], [-91.146702826, 30.183698454], [-91.151945213, 30.200181197], [-91.106206564, 30.262376606], [-91.224060573, 30.300957024], [-91.148773677, 30.310963997], [-91.136091647, 30.331176036], [-91.171460844, 30.35193417], [-91.23422455, 30.356801746], [-91.195421845, 30.414713953], [-91.190708029, 30.450169386], [-91.1598275, 30.450224351], [-91.167022995, 30.486165026], [-91.13843682, 30.538796372], [-91.215889252, 30.566748622], [-91.162028035, 30.572312193], [-91.166234074, 30.588033807], [-91.129943091, 30.636508403], [-91.178770126, 30.682366508], [-91.229751917, 30.699902408], [-91.216787046, 30.723561998], [-91.229029287, 30.753931217], [-91.187527243, 30.787982894], [-91.173653865, 30.824886496], [-91.186138804, 30.842008034], [-91.141222464, 30.876374295], [-91.14326814, 30.92522696], [-91.1027975, 30.952064386], [-91.105120115, 30.983246169], [-91.13403249, 31.017743894], [-91.120660085, 31.049450634], [-91.080737769, 31.06396125], [-91.073437314, 31.106084398], [-91.039483824, 31.130983288], [-91.065259367, 31.174601038], [-91.022293902, 31.194384183], [-91.027906469, 31.219554185], [-91.012012658, 31.238623221], [-90.973341574, 31.215679961], [-90.918814397, 31.219188348], [-90.9085788, 31.234652794], [-90.929308559, 31.256603538], [-90.896736236, 31.28840592], [-90.900439255, 31.303543296], [-90.863259694, 31.294867736], [-90.846182861, 31.323558414], [-90.821731142, 31.31575707], [-90.801225857, 31.36667454], [-90.778349222, 31.371070541], [-90.773037416, 31.388798238], [-90.741912171, 31.388693898], [-90.740038487, 31.373341059], [-90.711876881, 31.364460447], [-90.67455618, 31.366267674], [-90.632512792, 31.391382604], [-90.636414961, 31.421431051], [-90.61818602, 31.440482597], [-90.59971801, 31.441353013], [-90.566492005, 31.433458776], [-90.582552873, 31.389750739]]]}, "properties": {"huc8": "08070202", "name": "Amite", "states": "LA,MS", "areasqkm": 4878.9, "dc_states": "LA", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-88.901913757, 30.127568662], [-88.799245234, 30.05223787], [-88.75964792, 29.937228039], [-88.76924033, 29.839032584], [-88.808521001, 29.742201575], [-88.890178907, 29.680297989], [-88.896139785, 29.646769743], [-88.931123506, 29.603856259], [-88.993848976, 29.571033735], [-88.998984375, 29.537611604], [-89.035694733, 29.500622946], [-89.076494365, 29.470409867], [-89.117292447, 29.463281542], [-89.138829065, 29.43841355], [-89.136862234, 29.382045729], [-89.113515484, 29.344320466], [-89.198483995, 29.356591489], [-89.239498327, 29.312737092], [-89.299081368, 29.385210381], [-89.318407222, 29.316802669], [-89.351917093, 29.291101786], [-89.420273952, 29.358742688], [-89.453817585, 29.367078073], [-89.481884244, 29.347091049], [-89.577597068, 29.386491264], [-89.600828349, 29.414155474], [-89.596612511, 29.455555528], [-89.685941651, 29.48559308], [-89.80603172, 29.584837787], [-89.951854201, 29.65140228], [-90.01803733, 29.772973467], [-89.96504809, 29.877610828], [-89.898172066, 29.865913858], [-89.90428457, 29.903294052], [-89.926204478, 29.925925932], [-89.979361072, 29.931889697], [-90.028558093, 29.964005063], [-90.05966297, 29.959056136], [-90.064063145, 29.929369314], [-90.090738373, 29.916990354], [-90.131085149, 29.918231934], [-90.151420409, 29.960169649], [-90.207272532, 29.926524236], [-90.229684724, 29.964288467], [-90.27108551, 29.975018009], [-90.341343349, 29.937519052], [-90.387955417, 29.953670909], [-90.402060565, 29.991120624], [-90.453597683, 30.003845227], [-90.402693497, 30.074219943], [-90.372000405, 30.055708322], [-90.259266102, 30.047520685], [-90.181521578, 30.020562514], [-90.034057937, 30.031506311], [-90.030801333, 30.053037611], [-90.012474824, 30.037875797], [-89.956674434, 30.065961304], [-89.88053948, 30.147448496], [-89.873183094, 30.133594723], [-89.856151448, 30.155206494], [-89.838771111, 30.098958433], [-89.790704305, 30.105281643], [-89.748934075, 30.144976323], [-89.743009621, 30.174867292], [-89.718587677, 30.154561266], [-89.687636926, 30.173293627], [-89.592338851, 30.149453371], [-89.538799384, 30.181734366], [-89.484050313, 30.079286067], [-89.430824151, 30.051947094], [-89.442990112, 30.044834537], [-89.430423125, 30.033787873], [-89.322821272, 30.063153501], [-89.303022562, 30.092915025], [-89.129747624, 30.183600747], [-89.075005372, 30.15535356], [-88.901913757, 30.127568662]]]}, "properties": {"huc8": "08090203", "name": "Eastern Louisiana Coastal", "states": "LA,MS", "areasqkm": 8565.21, "dc_states": "LA", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-96.213167209, 46.508780185], [-96.191539572, 46.493440465], [-96.226200364, 46.482374702], [-96.236219048, 46.461009863], [-96.19688766, 46.395633254], [-96.205203805, 46.382414152], [-96.24393537, 46.396929147], [-96.30141074, 46.38256918], [-96.280649086, 46.355219245], [-96.293362582, 46.325840825], [-96.343013666, 46.311301851], [-96.343124654, 46.325904737], [-96.466324789, 46.325877656], [-96.507552051, 46.297125965], [-96.57152722, 46.296952903], [-96.598850038, 46.263715872], [-96.616570877, 46.264010103], [-96.615591893, 46.29683689], [-96.665725056, 46.312416294], [-96.694371188, 46.369520802], [-96.751264995, 46.39796735], [-96.71504366, 46.398622896], [-96.715094451, 46.427345065], [-96.773662515, 46.504151893], [-96.799698956, 46.506354304], [-96.823624106, 46.616287397], [-96.79186732, 46.7626705], [-96.862252724, 46.731434727], [-96.862468929, 46.702732003], [-96.939467211, 46.702819744], [-96.904325102, 46.731745132], [-96.883886712, 46.822467989], [-96.863115879, 46.838126383], [-96.872628524, 46.872258033], [-96.903943824, 46.887047073], [-96.903794039, 46.935427648], [-96.883775011, 46.94591684], [-96.886331692, 46.980751269], [-96.866089936, 46.988132751], [-96.858336262, 47.020210148], [-96.824340392, 47.023997754], [-96.858345781, 47.03911571], [-96.858241529, 47.072436145], [-96.815569937, 47.087814637], [-96.81315307, 47.072808082], [-96.793054302, 47.071145039], [-96.759756358, 47.020498366], [-96.760573482, 46.964660878], [-96.694347005, 46.9634816], [-96.693812993, 46.898072223], [-96.652618149, 46.896955209], [-96.640496356, 46.833327638], [-96.656432129, 46.684908631], [-96.616443299, 46.673650795], [-96.603692049, 46.61619379], [-96.583343094, 46.616249126], [-96.572121048, 46.558629131], [-96.537414918, 46.542255175], [-96.529633662, 46.519265646], [-96.550615465, 46.49999913], [-96.550691522, 46.471149742], [-96.409211004, 46.456419928], [-96.364838046, 46.471203582], [-96.366312256, 46.510070718], [-96.311853653, 46.520696695], [-96.213167209, 46.508780185]]]}, "properties": {"huc8": "09020104", "name": "Upper Red", "states": "MN,ND", "areasqkm": 1695.55, "dc_states": "ND", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-109.020100242, 46.05720855], [-108.979750311, 45.995574099], [-108.93620441, 45.976209951], [-108.942372299, 45.917301965], [-108.900092876, 45.888182176], [-108.863325602, 45.894978476], [-108.769893742, 45.864191037], [-108.703816151, 45.895886314], [-108.607182121, 45.852352333], [-108.546006327, 45.852150125], [-108.520613795, 45.821458948], [-108.462694889, 45.803906242], [-108.46568877, 45.770974886], [-108.405855273, 45.754100693], [-108.381270771, 45.71289925], [-108.418553447, 45.695117575], [-108.415706967, 45.671792787], [-108.458579367, 45.636121821], [-108.514271206, 45.615322184], [-108.542456573, 45.558534574], [-108.597403531, 45.51907463], [-108.656226492, 45.542878252], [-108.666960275, 45.619869303], [-108.715772545, 45.649916034], [-108.801741486, 45.629849922], [-108.829962768, 45.594398898], [-108.895284509, 45.575383108], [-108.934935337, 45.528600585], [-108.964980549, 45.52944107], [-108.978103941, 45.510022353], [-109.029354906, 45.496449095], [-109.108197099, 45.498636346], [-109.182056224, 45.52568848], [-109.282074637, 45.638045442], [-109.32807008, 45.601516228], [-109.402344502, 45.604168933], [-109.494334496, 45.576682669], [-109.602491446, 45.603664558], [-109.692789889, 45.595329177], [-109.744464107, 45.625321192], [-109.683299489, 45.688171905], [-109.682367183, 45.72134338], [-109.654624171, 45.75182305], [-109.688072927, 45.780187112], [-109.659628726, 45.798397523], [-109.651172973, 45.822413933], [-109.661716409, 45.829797608], [-109.643039234, 45.845437717], [-109.656534887, 45.855703008], [-109.56884522, 45.87223379], [-109.542258806, 45.90618844], [-109.492947317, 45.928554219], [-109.493299998, 45.953570169], [-109.527784533, 45.966708255], [-109.501540221, 46.02215786], [-109.355567372, 46.049169612], [-109.270673997, 46.082050723], [-109.199931062, 46.074728591], [-109.113668806, 46.090268535], [-109.020100242, 46.05720855]]]}, "properties": {"huc8": "10070004", "name": "Upper Yellowstone-Lake Basin", "states": "MT", "areasqkm": 4069.43, "dc_states": "MT", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-105.828225406, 46.899163259], [-105.801672729, 46.878119124], [-105.664815815, 46.838315619], [-105.606731923, 46.838602259], [-105.605854751, 46.812302633], [-105.566565544, 46.755305363], [-105.523221464, 46.730921371], [-105.435201705, 46.741567208], [-105.409653962, 46.693430019], [-105.371064515, 46.669268264], [-105.362977595, 46.623780085], [-105.419725151, 46.581261707], [-105.43078217, 46.530297084], [-105.430015833, 46.504957212], [-105.403654129, 46.480353964], [-105.426737846, 46.405307544], [-105.417622329, 46.388588113], [-105.46040097, 46.373556418], [-105.458517702, 46.338059766], [-105.489656271, 46.328908307], [-105.635040136, 46.40173961], [-105.663081319, 46.403677417], [-105.67555824, 46.378018094], [-105.752982559, 46.390714569], [-105.775950642, 46.377178354], [-105.861465902, 46.413474155], [-105.855215343, 46.373296661], [-105.878604473, 46.290883017], [-105.858468535, 46.261763675], [-105.870810719, 46.23425634], [-105.857196571, 46.220256163], [-105.901299627, 46.185640169], [-105.901791068, 46.148299378], [-106.051195564, 46.115373653], [-106.078793349, 46.122379763], [-106.101306023, 46.104137701], [-106.163291933, 46.108428579], [-106.173166813, 46.091375691], [-106.161433311, 46.063941163], [-106.203872057, 46.034925861], [-106.249863508, 46.035098208], [-106.283730866, 46.072488201], [-106.333227577, 46.089337063], [-106.389834407, 46.140229654], [-106.38991377, 46.168952805], [-106.444463374, 46.198053521], [-106.445907148, 46.227294666], [-106.421501103, 46.242653442], [-106.501206609, 46.274318291], [-106.568724545, 46.215194327], [-106.58872706, 46.165952546], [-106.656150105, 46.167565], [-106.650326433, 46.153770846], [-106.669185314, 46.139312608], [-106.665784869, 46.121933055], [-106.622580082, 46.097556395], [-106.641977253, 46.078338159], [-106.597543629, 45.988644404], [-106.611295047, 45.959919643], [-106.595452967, 45.905855071], [-106.630408051, 45.857896698], [-106.622052076, 45.845279735], [-106.746836337, 45.83619861], [-106.862554524, 45.800874007], [-106.911404493, 45.721458059], [-106.979914579, 45.692226004], [-106.995789978, 45.661026877], [-106.984461966, 45.645747047], [-107.007250222, 45.636743766], [-107.037175033, 45.647622627], [-107.087673846, 45.713893992], [-107.185007575, 45.759706062], [-107.169281128, 45.787287396], [-107.190320972, 45.805576128], [-107.17948449, 45.823019963], [-107.214713935, 45.854943109], [-107.198718521, 45.874608231], [-107.226267669, 45.951674086], [-107.223797921, 45.989362699], [-107.24391577, 46.008023542], [-107.224035535, 46.033069324], [-107.284520898, 46.121619565], [-107.395177755, 46.122993869], [-107.4677586, 46.149309945], [-107.49751291, 46.180830849], [-107.559136007, 46.198574973], [-107.60520256, 46.192323101], [-107.655378078, 46.277476472], [-107.765676056, 46.34331165], [-107.89163727, 46.387473655], [-107.909599994, 46.420558316], [-107.908342872, 46.445713086], [-107.876706337, 46.452983392], [-107.850438093, 46.481576693], [-107.771959786, 46.482181353], [-107.740764652, 46.527139677], [-107.6729039, 46.541805518], [-107.65343136, 46.584078653], [-107.617395345, 46.593110336], [-107.621432279, 46.608231319], [-107.586317931, 46.620106412], [-107.584825699, 46.640823586], [-107.507532779, 46.625504626], [-107.486251001, 46.643888723], [-107.425743852, 46.604900701], [-107.372586344, 46.596336765], [-107.238611136, 46.509809417], [-107.16793755, 46.494850052], [-107.154405687, 46.460357202], [-107.109664742, 46.435816241], [-107.103156301, 46.413008762], [-107.006009522, 46.350076301], [-106.945777211, 46.322281373], [-106.868500861, 46.318971647], [-106.815582606, 46.285700692], [-106.781374547, 46.340126646], [-106.80997059, 46.407829685], [-106.794693085, 46.419923378], [-106.799310687, 46.438080055], [-106.83069903, 46.464720828], [-106.820133928, 46.467576039], [-106.856488499, 46.530336542], [-106.93287808, 46.595763309], [-106.927940074, 46.625756992], [-106.963725004, 46.659315241], [-106.951557669, 46.662529452], [-106.956974986, 46.685844703], [-106.915008488, 46.7076859], [-106.929812971, 46.726286663], [-106.9219977, 46.73814906], [-106.876212153, 46.748979522], [-106.934648279, 46.765348149], [-106.983963284, 46.803574635], [-107.041664663, 46.815707637], [-107.052206639, 46.915787442], [-106.855177256, 46.907292469], [-106.723743858, 46.843117131], [-106.687442901, 46.854579194], [-106.602534893, 46.8079686], [-106.566371861, 46.820635511], [-106.502493861, 46.773409946], [-106.453041288, 46.787471844], [-106.456762406, 46.803968235], [-106.42816207, 46.81250052], [-106.434174689, 46.836273326], [-106.420835646, 46.847578867], [-106.330570193, 46.817689998], [-106.297578814, 46.846398367], [-106.134391012, 46.809889419], [-106.101562949, 46.785237802], [-106.062774094, 46.81197737], [-105.94014758, 46.777521862], [-105.927557678, 46.789827509], [-105.93848023, 46.820278121], [-105.909824463, 46.817682697], [-105.920639487, 46.832166238], [-105.907690199, 46.85073085], [-105.926973494, 46.876673324], [-105.867723586, 46.878637804], [-105.828225406, 46.899163259]]]}, "properties": {"huc8": "10100001", "name": "Lower Yellowstone-Sunday", "states": "MT", "areasqkm": 12444.76, "dc_states": "MT", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-104.364350318, 44.684722344], [-104.321990221, 44.647919784], [-104.319976031, 44.612654101], [-104.384530573, 44.587411741], [-104.384289771, 44.541937898], [-104.416273981, 44.51317973], [-104.407575368, 44.494359741], [-104.443069249, 44.471598605], [-104.431953639, 44.450891415], [-104.452417045, 44.396861205], [-104.398707925, 44.374929945], [-104.378287732, 44.382401268], [-104.344384726, 44.295995237], [-104.298999339, 44.266094008], [-104.302049845, 44.253165791], [-104.180167198, 44.232349674], [-104.148795783, 44.169083039], [-104.106570481, 44.141614923], [-104.045722514, 44.134599308], [-104.034276872, 44.117914149], [-104.106380938, 44.102227399], [-104.133378297, 44.122279445], [-104.195384532, 44.112725834], [-104.285557806, 44.151743958], [-104.327486067, 44.190290371], [-104.382390171, 44.181165257], [-104.399486214, 44.160683791], [-104.401279062, 44.106649378], [-104.438160776, 44.09447054], [-104.490383297, 44.146513234], [-104.557024866, 44.137746999], [-104.584363401, 44.162186155], [-104.665792376, 44.145315061], [-104.712348015, 44.156916479], [-104.747297973, 44.094874958], [-104.781628787, 44.086612919], [-104.763738483, 44.062515268], [-104.768239171, 44.029080609], [-104.724110216, 43.97345207], [-104.722307235, 43.936109015], [-104.852649451, 43.979547004], [-104.905853569, 43.936308483], [-104.902701914, 43.924834857], [-104.984289795, 43.932929346], [-105.035261572, 43.891092846], [-105.110458554, 43.88536779], [-105.187886477, 43.923231611], [-105.185098976, 43.869559357], [-105.211805702, 43.867221394], [-105.243023367, 43.887291948], [-105.259615779, 43.865808138], [-105.249038756, 43.850416818], [-105.313575954, 43.841510484], [-105.318691672, 43.804381618], [-105.433900596, 43.791139611], [-105.449071917, 43.749891081], [-105.498600305, 43.730691651], [-105.503535244, 43.70221714], [-105.595220418, 43.714081475], [-105.623122783, 43.695942679], [-105.619391175, 43.665618727], [-105.638846637, 43.665520826], [-105.660983326, 43.627577522], [-105.687080683, 43.618064054], [-105.717879147, 43.628252366], [-105.812033059, 43.612716952], [-105.810623826, 43.673735031], [-105.83502114, 43.6952687], [-105.863894613, 43.691412071], [-105.857488308, 43.707379886], [-105.898067059, 43.739308008], [-105.88040358, 43.746468314], [-105.892340811, 43.786286631], [-105.859101297, 43.843469062], [-105.829391421, 43.843242505], [-105.81265113, 43.870275445], [-105.776824983, 43.8786637], [-105.8032358, 43.9315056], [-105.786280187, 43.955290059], [-105.768347175, 43.950725356], [-105.772702905, 43.968550632], [-105.750297548, 43.963932077], [-105.730869473, 43.987238178], [-105.768052818, 44.033639113], [-105.744967164, 44.040787795], [-105.752721013, 44.05426986], [-105.735721262, 44.06328539], [-105.744399638, 44.086981544], [-105.727581919, 44.100050131], [-105.726276906, 44.170953522], [-105.677016351, 44.171533863], [-105.672739268, 44.204224], [-105.63345492, 44.214153329], [-105.651565553, 44.264083723], [-105.639831187, 44.284316549], [-105.619073423, 44.279753009], [-105.619281889, 44.305082003], [-105.500956983, 44.309008072], [-105.458263815, 44.288101743], [-105.439625374, 44.300848624], [-105.446417773, 44.317388541], [-105.39199036, 44.313078894], [-105.382752985, 44.33611847], [-105.138135046, 44.344355354], [-105.127076149, 44.39213399], [-105.080000818, 44.408445071], [-105.099978835, 44.421726744], [-105.080323995, 44.430551599], [-105.08641085, 44.449466924], [-105.059825063, 44.45005102], [-105.023646295, 44.481650958], [-105.036808372, 44.541484664], [-104.86806041, 44.542904059], [-104.869068981, 44.585798661], [-104.818378002, 44.633425246], [-104.829483094, 44.644524614], [-104.81063065, 44.657692741], [-104.806677878, 44.711998592], [-104.753474415, 44.728212814], [-104.6844199, 44.715853106], [-104.69398725, 44.767085203], [-104.646365374, 44.798595439], [-104.491140514, 44.793075662], [-104.455271214, 44.776570569], [-104.444917589, 44.750908921], [-104.371201366, 44.724577855], [-104.364350318, 44.684722344]]]}, "properties": {"huc8": "10120201", "name": "Upper Belle Fourche", "states": "SD,WY", "areasqkm": 7607.59, "dc_states": "WY", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-99.085169821, 45.862589689], [-99.060470978, 45.881161059], [-99.004206607, 45.880480605], [-98.995882211, 45.927499388], [-98.95940666, 45.948165322], [-98.970228394, 45.96363094], [-98.909996003, 46.003262325], [-98.926164071, 46.023956218], [-98.910434806, 46.039186306], [-98.953353079, 46.037843711], [-98.970506745, 46.066548553], [-99.052968305, 46.074003496], [-99.093868818, 46.114326895], [-99.190549113, 46.11207744], [-99.214155929, 46.144602676], [-99.210927432, 46.185394939], [-99.138370091, 46.258797803], [-99.159639938, 46.302065221], [-99.238629274, 46.333375029], [-99.240976775, 46.352821685], [-99.224230489, 46.369107512], [-99.183833099, 46.359632499], [-99.165745628, 46.386898577], [-99.086998352, 46.357500862], [-99.057429513, 46.363527572], [-99.043658907, 46.393377708], [-99.011376457, 46.38447365], [-99.017281142, 46.429863158], [-99.040843293, 46.448951123], [-99.01240298, 46.461148308], [-98.96899004, 46.436860774], [-98.928788991, 46.462292641], [-98.916364174, 46.442355653], [-98.863068453, 46.458227507], [-98.840920643, 46.442670205], [-98.721320169, 46.430025347], [-98.684442415, 46.400149167], [-98.664595001, 46.403957553], [-98.664937542, 46.387309549], [-98.632816276, 46.361953443], [-98.579506956, 46.349705673], [-98.561957012, 46.327021466], [-98.577926117, 46.296355457], [-98.558618056, 46.272162235], [-98.46286097, 46.265313249], [-98.442178535, 46.230493838], [-98.424470747, 46.232004268], [-98.418684357, 46.255409959], [-98.3979197, 46.255289188], [-98.398562139, 46.220037171], [-98.377678757, 46.209571625], [-98.372408789, 46.184655687], [-98.385780432, 46.175155109], [-98.314926815, 46.131656883], [-98.360406754, 46.095115361], [-98.369387014, 46.067481072], [-98.33219502, 46.017072809], [-98.365605804, 45.98940448], [-98.393667628, 45.92958733], [-98.415094913, 45.921326458], [-98.429824891, 45.841138347], [-98.470120358, 45.837979787], [-98.540346793, 45.715728562], [-98.470611921, 45.643671911], [-98.380237868, 45.605128926], [-98.308057091, 45.603081625], [-98.305330536, 45.588893068], [-98.329447886, 45.560677838], [-98.329484215, 45.53351329], [-98.339520088, 45.526418071], [-98.354916505, 45.550385815], [-98.36619257, 45.525486004], [-98.453670732, 45.560626489], [-98.457568369, 45.583583665], [-98.494195393, 45.588487071], [-98.495490453, 45.626496416], [-98.533910296, 45.659811657], [-98.586370877, 45.670201969], [-98.61403378, 45.702426595], [-98.680453709, 45.664276165], [-98.741497836, 45.66469888], [-98.757236294, 45.690415454], [-98.848390809, 45.679946047], [-98.84228485, 45.722720128], [-99.042874418, 45.793820989], [-99.055713914, 45.825842333], [-99.081554705, 45.834006113], [-99.085169821, 45.862589689]]]}, "properties": {"huc8": "10160004", "name": "Elm", "states": "ND,SD", "areasqkm": 4010.43, "dc_states": "ND", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-96.351900287, 44.276101197], [-96.26657017, 44.25176964], [-96.148757839, 44.133072998], [-96.17699949, 44.123713512], [-96.22770854, 44.052860283], [-96.210652504, 44.037446131], [-96.243345305, 44.014334504], [-96.23884371, 43.942352669], [-96.294003082, 43.89859057], [-96.29894646, 43.851518925], [-96.228612182, 43.79463993], [-96.233259931, 43.721068836], [-96.210960656, 43.706132815], [-96.234417304, 43.699176028], [-96.231173653, 43.669520837], [-96.272379007, 43.643399142], [-96.25943292, 43.627122157], [-96.330482907, 43.607655048], [-96.405211559, 43.541729664], [-96.394097076, 43.514537052], [-96.41297005, 43.469498548], [-96.384378454, 43.447151921], [-96.391838343, 43.417051799], [-96.363521906, 43.343675585], [-96.411981616, 43.344063032], [-96.42269443, 43.302726637], [-96.45701172, 43.291232043], [-96.446152854, 43.271513714], [-96.461356194, 43.257803793], [-96.402588173, 43.208312386], [-96.406794459, 43.170044805], [-96.424464885, 43.162070504], [-96.414460874, 43.14601086], [-96.454124363, 43.082304147], [-96.435186891, 43.074497], [-96.42562864, 43.097839536], [-96.376662083, 43.111335476], [-96.349775402, 43.136654562], [-96.286706072, 43.144703366], [-96.272620381, 43.161616061], [-96.213988526, 43.156162272], [-96.183201319, 43.189638584], [-96.154300567, 43.153184828], [-96.184587014, 43.117684415], [-96.162337655, 43.083750545], [-96.225200617, 43.058739875], [-96.221144966, 43.02624411], [-96.257424907, 43.007345193], [-96.257233997, 42.97849737], [-96.28422512, 42.958393496], [-96.270504919, 42.923509014], [-96.33322095, 42.887362294], [-96.338407793, 42.870638506], [-96.307534819, 42.832889881], [-96.350821744, 42.805365509], [-96.348311061, 42.771647703], [-96.367310828, 42.76637289], [-96.376565553, 42.730335834], [-96.413536286, 42.703051558], [-96.446047407, 42.584089905], [-96.461289089, 42.577783517], [-96.461485242, 42.522268542], [-96.445499856, 42.490625239], [-96.472621609, 42.487508781], [-96.503490496, 42.494351662], [-96.500788647, 42.539389409], [-96.549996752, 42.598368802], [-96.625722397, 42.619676479], [-96.634935725, 42.6453645], [-96.650816698, 42.647309311], [-96.642601777, 42.665195651], [-96.766165364, 42.734989323], [-96.807149906, 42.789907105], [-96.84251954, 42.802738019], [-96.805292088, 42.831894674], [-96.827136237, 42.906953015], [-96.802898098, 42.92868457], [-96.798766661, 43.040095427], [-96.740098227, 43.104949244], [-96.76631524, 43.160937407], [-96.697681595, 43.171047338], [-96.647316773, 43.156515577], [-96.631943841, 43.171185412], [-96.64763223, 43.188216725], [-96.641501773, 43.207952776], [-96.699410815, 43.205059209], [-96.706599374, 43.228825339], [-96.755735356, 43.26183758], [-96.717563976, 43.308189519], [-96.813687641, 43.351389685], [-96.825970252, 43.378032722], [-96.938736905, 43.441599408], [-96.93219455, 43.455084571], [-97.021907319, 43.497260341], [-97.027862746, 43.507795134], [-96.998262633, 43.535150983], [-97.037855376, 43.551053383], [-97.04029559, 43.575776467], [-97.095187117, 43.61526803], [-97.074028451, 43.645772675], [-97.105550368, 43.695809224], [-97.09284379, 43.7080955], [-97.127485831, 43.731353858], [-97.118320842, 43.741319845], [-97.146042784, 43.759738692], [-97.135555108, 43.774155596], [-97.159054567, 43.78234438], [-97.147592802, 43.811786929], [-97.181574125, 43.838441501], [-97.167763611, 43.847591111], [-97.180146416, 43.889215508], [-97.155850429, 43.909329215], [-97.209158142, 43.914600978], [-97.241464664, 43.936931172], [-97.254410913, 43.972622106], [-97.286954184, 43.979746709], [-97.305205246, 44.045218924], [-97.281098653, 44.045551012], [-97.276581844, 44.059667806], [-97.25934874, 44.049246857], [-97.249393929, 44.101824829], [-97.199244727, 44.128641764], [-97.198765893, 44.112404743], [-97.146919061, 44.113845477], [-97.112895925, 44.082536021], [-97.10011955, 44.015167722], [-97.025345046, 43.9997601], [-97.005022158, 44.028375188], [-96.946401556, 44.059280137], [-96.91329952, 44.045976618], [-96.890839804, 44.060843656], [-96.826284904, 44.048817614], [-96.839078207, 44.057308296], [-96.823384363, 44.08301107], [-96.829297353, 44.121146569], [-96.794248212, 44.161332617], [-96.749617447, 44.176827321], [-96.734367926, 44.21134306], [-96.706983525, 44.207850376], [-96.576894064, 44.256628672], [-96.515948481, 44.232355576], [-96.41335088, 44.239943223], [-96.351900287, 44.276101197]]]}, "properties": {"huc8": "10170203", "name": "Lower Big Sioux", "states": "IA,MN,NE,SD", "areasqkm": 8854.54, "dc_states": "SD", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-104.840633758, 39.121360226], [-104.915659541, 39.118677285], [-104.940840066, 39.138604168], [-105.012523533, 39.119439405], [-105.028146519, 39.088363463], [-105.01547017, 39.003296121], [-105.071802632, 38.992391177], [-105.078495145, 38.949801134], [-105.12655669, 38.896013282], [-105.179418936, 38.893399414], [-105.185771, 38.904267114], [-105.165544511, 38.914061232], [-105.157201118, 38.947404369], [-105.252902331, 39.021565246], [-105.27722506, 39.025206434], [-105.291133149, 39.055016503], [-105.273008469, 39.080952099], [-105.371563579, 39.105862936], [-105.41238667, 39.132385789], [-105.437259252, 39.154673113], [-105.428852061, 39.174606285], [-105.445924288, 39.20785616], [-105.463130969, 39.203117269], [-105.469317631, 39.223353071], [-105.54350173, 39.230228296], [-105.613219456, 39.317491384], [-105.588181657, 39.331199241], [-105.603206459, 39.345234995], [-105.589903819, 39.360726575], [-105.656745642, 39.420558654], [-105.733361667, 39.393501266], [-105.785233086, 39.419830715], [-105.802661171, 39.446094222], [-105.8474672, 39.456156404], [-105.868132947, 39.51987339], [-105.823093, 39.529904232], [-105.815907607, 39.552172304], [-105.832270272, 39.577948423], [-105.776094822, 39.60515947], [-105.711459381, 39.591150473], [-105.660556586, 39.617291523], [-105.655213819, 39.600859843], [-105.638334524, 39.602399924], [-105.607622722, 39.623420123], [-105.581549204, 39.670140691], [-105.499967751, 39.682495201], [-105.3950283, 39.666086681], [-105.38977579, 39.688370654], [-105.339531931, 39.692707529], [-105.326505408, 39.71144708], [-105.297764827, 39.699822658], [-105.292371872, 39.719376783], [-105.171610414, 39.699885839], [-105.145756845, 39.736854607], [-105.083903703, 39.763540586], [-105.011578929, 39.754872863], [-105.001455765, 39.730974669], [-104.924242359, 39.682704424], [-104.920854858, 39.645844207], [-104.878169358, 39.59116112], [-104.868907627, 39.530759888], [-104.922246316, 39.47297098], [-104.899562777, 39.465241145], [-104.897577792, 39.446291652], [-104.86616664, 39.443567303], [-104.812672961, 39.362452668], [-104.815812189, 39.30265647], [-104.854187239, 39.258359668], [-104.843540607, 39.220826367], [-104.810089194, 39.185032259], [-104.81534507, 39.143800393], [-104.840633758, 39.121360226]]]}, "properties": {"huc8": "10190002", "name": "Upper South Platte", "states": "CO", "areasqkm": 4790.8, "dc_states": "CO", "cluster_count": 1, "data_center_count": 1, "clustered_data_center_count": 1}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-104.259111697, 40.639635495], [-104.193229878, 40.620395784], [-104.19111073, 40.58377149], [-104.165959919, 40.560859914], [-104.097612605, 40.5336633], [-104.081331932, 40.549124329], [-104.0434381, 40.534313793], [-103.972396553, 40.464591567], [-103.924955615, 40.452938185], [-103.8490272, 40.364316238], [-103.839353877, 40.327393206], [-103.863351968, 40.305198625], [-103.860734391, 40.285297253], [-103.953742855, 40.267686205], [-104.01718721, 40.284444392], [-104.064275594, 40.22713886], [-104.064194068, 40.305610236], [-104.089217599, 40.337656079], [-104.107143022, 40.198039536], [-104.124626202, 40.191406742], [-104.163301089, 40.22587098], [-104.212867056, 40.185606549], [-104.212803207, 40.156172754], [-104.246140072, 40.135631416], [-104.263314993, 40.080893243], [-104.284173633, 40.074324085], [-104.29195114, 40.041894419], [-104.308680796, 40.036008755], [-104.317532997, 39.96580437], [-104.347953852, 39.945499888], [-104.351004414, 39.875798404], [-104.402367607, 39.812474645], [-104.454649999, 39.694278343], [-104.495302081, 39.667283612], [-104.505013617, 39.496499741], [-104.516536696, 39.490214049], [-104.507144149, 39.451467666], [-104.548873961, 39.422541004], [-104.574525789, 39.375322821], [-104.552952536, 39.256392746], [-104.578729303, 39.245506358], [-104.576685267, 39.202179036], [-104.655602127, 39.118300428], [-104.642665387, 39.092400956], [-104.674692824, 39.032505663], [-104.716519399, 39.039913657], [-104.740133195, 39.069068094], [-104.800384503, 39.07358558], [-104.811474899, 39.103666145], [-104.840633758, 39.121360226], [-104.81534507, 39.143800393], [-104.810089194, 39.185032259], [-104.843540607, 39.220826367], [-104.854187239, 39.258359668], [-104.815812189, 39.30265647], [-104.812672961, 39.362452668], [-104.86616664, 39.443567303], [-104.897577792, 39.446291652], [-104.899384536, 39.465027116], [-104.924883768, 39.480999713], [-104.868907627, 39.530759888], [-104.878169358, 39.59116112], [-104.920854858, 39.645844207], [-104.924242359, 39.682704424], [-105.001455765, 39.730974669], [-105.00951992, 39.753926448], [-105.049460803, 39.763965271], [-104.949358954, 39.830433316], [-105.056907047, 39.862654468], [-105.169031513, 39.850829593], [-105.274548283, 39.871469564], [-105.188046722, 39.911277205], [-105.109174895, 39.91376878], [-105.106013856, 39.929646204], [-105.025204661, 39.976676998], [-105.003345431, 40.017727751], [-105.016983683, 40.032808558], [-104.956313195, 40.052539681], [-104.903206328, 40.096665319], [-104.870753231, 40.170769591], [-104.873934236, 40.271808297], [-104.88889103, 40.279817449], [-104.760531243, 40.354399319], [-104.82196106, 40.381222956], [-104.81425865, 40.390715118], [-104.734441729, 40.388413579], [-104.70530002, 40.405712858], [-104.675391899, 40.393298187], [-104.603162126, 40.418372202], [-104.596725253, 40.435213892], [-104.58854094, 40.424563171], [-104.58362765, 40.468496433], [-104.55491739, 40.506881922], [-104.528967674, 40.437579941], [-104.489804899, 40.38644852], [-104.474803833, 40.408823173], [-104.450702072, 40.408965177], [-104.445200219, 40.439438718], [-104.34465889, 40.490499173], [-104.351361601, 40.507522984], [-104.334652107, 40.537383775], [-104.26487632, 40.596558139], [-104.259111697, 40.639635495]]]}, "properties": {"huc8": "10190003", "name": "Middle South Platte-Cherry Creek", "states": "CO", "areasqkm": 7439.9, "dc_states": "CO", "cluster_count": 1, "data_center_count": 21, "clustered_data_center_count": 21}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-104.095689997, 40.907610002], [-104.106039998, 40.895229998], [-104.084990003, 40.886719999], [-104.107699995, 40.842919995], [-104.047480001, 40.810989997], [-104.081080002, 40.790320001], [-104.150769999, 40.806860003], [-104.172549998, 40.774730001], [-104.155560003, 40.760670001], [-104.18981, 40.741030007], [-104.159310005, 40.686590004], [-104.185239996, 40.643580001], [-104.259111697, 40.639635495], [-104.26487632, 40.596558139], [-104.334652107, 40.537383775], [-104.351361601, 40.507522984], [-104.34465889, 40.490499173], [-104.445200219, 40.439438718], [-104.450702072, 40.408965177], [-104.474803833, 40.408823173], [-104.491965139, 40.386097395], [-104.558011733, 40.509655823], [-104.546368626, 40.556563604], [-104.602238188, 40.649169844], [-104.590721599, 40.672498079], [-104.602999613, 40.717250977], [-104.634456089, 40.749516464], [-104.61571438, 40.765926446], [-104.663136747, 40.836027055], [-104.646603273, 40.855386745], [-104.677130014, 40.919839996], [-104.671529997, 40.936629997], [-104.695099997, 40.940390003], [-104.710310003, 40.969390008], [-104.761910005, 40.975919997], [-104.76886, 40.992380004], [-104.832980002, 40.990430001], [-104.823500004, 41.003499999], [-104.835790001, 41.021650003], [-104.866539997, 41.020510004], [-104.894270003, 41.054320003], [-104.943209995, 41.074009998], [-105.099501909, 41.100368803], [-105.244175822, 41.101819998], [-105.399729461, 41.148068046], [-105.446220042, 41.210178858], [-105.443607182, 41.234901463], [-105.358016283, 41.251961952], [-105.218051435, 41.25174514], [-105.212724954, 41.265989368], [-105.156124355, 41.281168228], [-105.107634098, 41.281119769], [-105.094878883, 41.254603481], [-105.072718383, 41.24926204], [-105.05757159, 41.20919854], [-104.886612982, 41.212379967], [-104.865411848, 41.188935375], [-104.376530003, 41.09203], [-104.259469997, 41.002009997], [-104.133590005, 41.004610002], [-104.125740006, 40.993219997], [-104.157520001, 40.989170012], [-104.144109999, 40.936140002], [-104.154430005, 40.925959996], [-104.095689997, 40.907610002]]]}, "properties": {"huc8": "10190009", "name": "Crow", "states": "CO,WY", "areasqkm": 3599.45, "dc_states": "WY", "cluster_count": 1, "data_center_count": 20, "clustered_data_center_count": 20}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-104.491856396, 41.414080984], [-104.402641147, 41.379633671], [-104.297528743, 41.369954711], [-104.202236652, 41.341309732], [-104.121677785, 41.290488457], [-104.109297006, 41.26064018], [-104.013425439, 41.286845839], [-103.986320346, 41.275307333], [-103.893885612, 41.29374594], [-103.864193229, 41.279444581], [-103.867463588, 41.220911657], [-103.893883674, 41.213865196], [-103.89473462, 41.172794527], [-103.929911374, 41.149564718], [-104.068312972, 41.097368931], [-104.061757266, 41.081090187], [-104.091620005, 41.058840003], [-104.093570016, 41.026560004], [-104.107400005, 41.019369993], [-104.071210003, 40.979109998], [-104.087110001, 40.959239998], [-104.057929998, 40.93483], [-104.095689997, 40.907610002], [-104.154430005, 40.925959996], [-104.144109999, 40.936140002], [-104.157520001, 40.989170012], [-104.125740006, 40.993219997], [-104.133590005, 41.004610002], [-104.259469997, 41.002009997], [-104.377430005, 41.092289991], [-104.865411848, 41.188935375], [-104.886612982, 41.212379967], [-105.05757159, 41.20919854], [-105.072718383, 41.24926204], [-105.094878883, 41.254603481], [-105.107634098, 41.281119769], [-105.156124355, 41.281168228], [-105.212724954, 41.265989368], [-105.218051435, 41.25174514], [-105.358016283, 41.251961952], [-105.407082529, 41.234854912], [-105.433704646, 41.244201636], [-105.443664969, 41.286689644], [-105.391005249, 41.31981731], [-105.215136618, 41.338953649], [-105.071584911, 41.395365452], [-104.830628068, 41.417281336], [-104.57008773, 41.404247349], [-104.491856396, 41.414080984]]]}, "properties": {"huc8": "10190015", "name": "Upper Lodgepole", "states": "CO,NE,WY", "areasqkm": 3062.79, "dc_states": "WY", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-98.858616284, 40.865946208], [-98.805053941, 40.83185557], [-98.809521876, 40.806787913], [-98.786147646, 40.800670628], [-98.673689178, 40.835106705], [-98.487808725, 40.860427831], [-98.348895719, 40.923573618], [-98.355085245, 40.933328306], [-98.333765438, 40.945522522], [-98.284886142, 40.947637623], [-98.125870875, 41.008257483], [-98.335974565, 40.861443077], [-98.435675493, 40.819303667], [-98.517102829, 40.809511488], [-98.658795766, 40.738226985], [-98.824469141, 40.713452701], [-98.967003218, 40.724273179], [-99.119741015, 40.705411618], [-99.199468814, 40.736485396], [-99.237234972, 40.726065432], [-99.267059229, 40.757527684], [-99.292008183, 40.747376447], [-99.321097336, 40.778581118], [-99.367490642, 40.792938774], [-99.38190832, 40.833015774], [-99.418161594, 40.830853348], [-99.430863909, 40.874735479], [-99.471866242, 40.871512448], [-99.563779734, 40.924477225], [-99.648485028, 40.892347371], [-99.680622154, 40.895896172], [-99.698263161, 40.930113559], [-99.738537751, 40.939609742], [-99.764899486, 40.969492798], [-99.832234674, 41.10158739], [-99.907404476, 41.136460637], [-99.899425202, 41.209006226], [-99.881474638, 41.22056765], [-99.854995036, 41.208090579], [-99.856788777, 41.230148291], [-99.835359269, 41.214648818], [-99.813683443, 41.219722217], [-99.80658161, 41.190602726], [-99.672939801, 41.103414422], [-99.602926933, 41.027456765], [-99.572643094, 41.046406722], [-99.545484267, 41.020776009], [-99.533777856, 41.034708893], [-99.49901607, 40.997723078], [-99.423128478, 40.990724211], [-99.403730892, 40.965531891], [-99.332228921, 40.955522482], [-99.293929182, 40.899271702], [-99.257923447, 40.898661857], [-99.225778066, 40.864346807], [-99.205594592, 40.881053989], [-99.137514286, 40.869008993], [-99.096810542, 40.887494599], [-99.074673645, 40.85996217], [-99.024773083, 40.871180003], [-98.963987909, 40.843398158], [-98.928936384, 40.861315464], [-98.87340366, 40.835873251], [-98.858616284, 40.865946208]]]}, "properties": {"huc8": "10200102", "name": "Wood", "states": "NE", "areasqkm": 1891.53, "dc_states": "NE", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-96.794631708, 41.56416837], [-96.69525205, 41.539305752], [-96.65130933, 41.554582929], [-96.639170248, 41.530213153], [-96.655107666, 41.502897119], [-96.597095836, 41.451539791], [-96.50671075, 41.43954237], [-96.482627075, 41.408544434], [-96.374741394, 41.353456651], [-96.344647396, 41.312478846], [-96.345407564, 41.237527316], [-96.313765902, 41.199950164], [-96.311309922, 41.120397662], [-96.307038206, 41.153677617], [-96.255627502, 41.161629384], [-96.239748556, 41.147939985], [-96.251480508, 41.128432428], [-96.215459365, 41.118085807], [-96.175073403, 41.114874964], [-96.155543733, 41.135569816], [-96.107934523, 41.135956978], [-96.087086725, 41.111609941], [-96.002930627, 41.125978474], [-95.959026056, 41.084223276], [-95.882785187, 41.05639184], [-95.92248504, 41.026264375], [-95.881567732, 40.973427452], [-95.917808461, 40.953377131], [-95.9178731, 40.927072769], [-95.952830632, 40.919717227], [-95.960166772, 40.902419453], [-96.087844271, 40.921174054], [-96.092402059, 40.905450618], [-96.127959806, 40.902674054], [-96.171607751, 40.930856114], [-96.205564695, 40.911638265], [-96.29716407, 40.92657954], [-96.334682065, 40.969098036], [-96.33852731, 41.006768143], [-96.312478322, 41.035473739], [-96.344344544, 41.059716171], [-96.364092279, 41.11401478], [-96.338189918, 41.195430404], [-96.368964959, 41.210568255], [-96.372709441, 41.241966462], [-96.434357483, 41.310772782], [-96.487866063, 41.297572469], [-96.532096881, 41.319535887], [-96.554674554, 41.358599251], [-96.541468877, 41.386329716], [-96.576450634, 41.417789018], [-96.605693478, 41.428362614], [-96.685657491, 41.406956023], [-96.810132641, 41.428565418], [-96.773428786, 41.449291831], [-96.780160893, 41.46177808], [-96.857270826, 41.466607904], [-96.896215786, 41.503084546], [-97.0716631, 41.497606492], [-97.069348563, 41.50989399], [-96.955278892, 41.506213253], [-96.900749911, 41.541089332], [-96.82206275, 41.538032895], [-96.794631708, 41.56416837]]]}, "properties": {"huc8": "10200202", "name": "Lower Platte", "states": "NE", "areasqkm": 1365.69, "dc_states": "NE", "cluster_count": 1, "data_center_count": 9, "clustered_data_center_count": 9}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-95.430883823, 41.88900096], [-95.384182705, 41.859270501], [-95.384290909, 41.808127366], [-95.36352885, 41.78916961], [-95.397222135, 41.769362745], [-95.387926008, 41.749513532], [-95.410780752, 41.732722778], [-95.396628611, 41.711958984], [-95.468198865, 41.672011957], [-95.489792761, 41.641049612], [-95.484229583, 41.618416779], [-95.540802729, 41.556887216], [-95.5442105, 41.492610855], [-95.579791036, 41.427950187], [-95.727116594, 41.280636538], [-95.713126185, 41.236649081], [-95.76853934, 41.139410125], [-95.792759495, 41.131218534], [-95.800382196, 41.075682181], [-95.873922366, 41.052063048], [-95.959026056, 41.084223276], [-96.003302353, 41.126095004], [-96.087086725, 41.111609941], [-96.107934523, 41.135956978], [-96.156033147, 41.135477131], [-96.182319241, 41.113578474], [-96.251480508, 41.128432428], [-96.23981242, 41.148142194], [-96.26685797, 41.168879514], [-96.250278461, 41.209244971], [-96.265825976, 41.235312586], [-96.243679154, 41.269407218], [-96.270941245, 41.313799297], [-96.251068371, 41.336054748], [-96.267628062, 41.352644956], [-96.261058408, 41.406592374], [-96.313387532, 41.459806179], [-96.313167829, 41.510632819], [-96.271680612, 41.544374591], [-96.261163997, 41.572690344], [-96.282013315, 41.594581401], [-96.245980758, 41.605544873], [-96.234893282, 41.588428028], [-96.214771644, 41.590107239], [-96.182522018, 41.52253098], [-96.151548282, 41.510225004], [-96.110871659, 41.522641545], [-96.108538648, 41.547622419], [-96.039215688, 41.57014764], [-96.022568069, 41.59669633], [-96.044353188, 41.621702845], [-96.012349908, 41.613730036], [-96.002354609, 41.571736862], [-95.969991074, 41.558110459], [-95.954802497, 41.526805796], [-95.97451834, 41.5105347], [-95.936664316, 41.506575766], [-95.949673043, 41.470017545], [-95.918183757, 41.452990355], [-95.908993212, 41.461651504], [-95.908923724, 41.430472396], [-95.868158529, 41.434333818], [-95.866504462, 41.496459663], [-95.806549766, 41.521368689], [-95.779875223, 41.566614557], [-95.744705715, 41.552472072], [-95.684360017, 41.62113767], [-95.639820539, 41.628331915], [-95.596139409, 41.714822211], [-95.545571931, 41.728967141], [-95.520340654, 41.769455616], [-95.484628425, 41.778869437], [-95.480971416, 41.808843772], [-95.456072991, 41.83587163], [-95.423356096, 41.849877539], [-95.430883823, 41.88900096]]]}, "properties": {"huc8": "10230006", "name": "Big Papillion-Mosquito", "states": "IA,NE", "areasqkm": 2884.81, "dc_states": "IA, NE", "cluster_count": 1, "data_center_count": 36, "clustered_data_center_count": 36}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-94.788053646, 39.741925558], [-94.799685481, 39.702861761], [-94.784384887, 39.684349484], [-94.827803561, 39.676368884], [-94.836485874, 39.660637188], [-94.782755002, 39.636948373], [-94.753155035, 39.589538236], [-94.7395507, 39.519915588], [-94.7678555, 39.504646817], [-94.765537353, 39.47260085], [-94.800435686, 39.400073328], [-94.849846834, 39.353316226], [-94.82848115, 39.274241002], [-94.839171625, 39.266657609], [-94.699989431, 39.29122458], [-94.648629141, 39.248828523], [-94.585737749, 39.257044786], [-94.56629384, 39.217343577], [-94.602373478, 39.116907324], [-94.65505688, 39.106573702], [-94.697917269, 39.148121775], [-94.730094864, 39.151405902], [-94.797882454, 39.115156591], [-94.823471145, 39.132878989], [-94.858090328, 39.120426775], [-94.856979118, 39.152400256], [-94.879974739, 39.154590309], [-94.902830259, 39.188274444], [-94.928604321, 39.179106505], [-94.92968987, 39.198508981], [-94.949860738, 39.204333457], [-94.983138608, 39.290508392], [-95.059120255, 39.308884236], [-95.06122859, 39.35816932], [-95.04731773, 39.370703044], [-95.060448126, 39.416520837], [-95.095825063, 39.443642053], [-95.130991744, 39.443996253], [-95.184516745, 39.487764242], [-95.22586088, 39.556774649], [-95.274528938, 39.576365325], [-95.300590383, 39.570286247], [-95.344535129, 39.605518433], [-95.330169724, 39.631761048], [-95.339836137, 39.671669039], [-95.316276537, 39.687690708], [-95.31742193, 39.704015109], [-95.244590538, 39.743607644], [-95.15368654, 39.747108463], [-95.140808063, 39.777526859], [-95.101724194, 39.767174366], [-95.069706546, 39.811568919], [-95.021825924, 39.819641862], [-95.019676255, 39.884342167], [-94.966230468, 39.897574578], [-94.963684784, 39.939064648], [-94.933666914, 39.962889874], [-94.857156263, 39.966123987], [-94.840400516, 39.946055648], [-94.804972715, 39.943576017], [-94.819987997, 39.800436617], [-94.788053646, 39.741925558]]]}, "properties": {"huc8": "10240011", "name": "Independence-Sugar", "states": "KS,MO", "areasqkm": 2699.63, "dc_states": "MO", "cluster_count": 1, "data_center_count": 1, "clustered_data_center_count": 1}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-94.283954866, 41.025546452], [-94.285368717, 40.968023059], [-94.337930043, 40.927740461], [-94.387483514, 40.916272855], [-94.366155096, 40.846369253], [-94.39446904, 40.770864545], [-94.390677369, 40.680579029], [-94.505571576, 40.568849905], [-94.571486729, 40.542879219], [-94.604831156, 40.439131725], [-94.649999325, 40.388603943], [-94.659361591, 40.300996876], [-94.677675654, 40.288027134], [-94.703027277, 40.218640365], [-94.666541711, 40.190990869], [-94.666031624, 40.150368949], [-94.642510918, 40.108057078], [-94.592204253, 40.115848181], [-94.565060797, 40.080658242], [-94.50623365, 40.091297463], [-94.521735132, 40.071464449], [-94.517815972, 40.046390664], [-94.499378066, 40.012076592], [-94.465336224, 39.994591772], [-94.479860025, 39.928764312], [-94.453789865, 39.881044179], [-94.432300684, 39.879588246], [-94.432287749, 39.8560875], [-94.405138325, 39.841856166], [-94.415720122, 39.776389008], [-94.373790771, 39.780385086], [-94.370414673, 39.724404376], [-94.314304849, 39.700359348], [-94.327689197, 39.666739061], [-94.313872929, 39.654168744], [-94.318498394, 39.626618908], [-94.339171847, 39.577123196], [-94.332437367, 39.539367975], [-94.357951298, 39.542940258], [-94.41270988, 39.508394226], [-94.418875807, 39.481990547], [-94.398842501, 39.456850526], [-94.431212351, 39.414726299], [-94.416957725, 39.390253756], [-94.493048504, 39.358799455], [-94.497702833, 39.320976279], [-94.516116923, 39.302999976], [-94.648265981, 39.248765783], [-94.68578219, 39.290498943], [-94.837023188, 39.263887181], [-94.849846834, 39.353316226], [-94.800435686, 39.400073328], [-94.765537353, 39.47260085], [-94.7678555, 39.504646817], [-94.7395507, 39.519915588], [-94.753155035, 39.589538236], [-94.782755002, 39.636948373], [-94.836905184, 39.669244174], [-94.784384887, 39.684349484], [-94.799685481, 39.702861761], [-94.784457469, 39.745363219], [-94.758939774, 39.761862146], [-94.730916723, 39.75237379], [-94.74631125, 39.772911114], [-94.744659621, 39.83012641], [-94.714732641, 39.930561135], [-94.760709439, 40.010961525], [-94.774060286, 40.122942172], [-94.800626972, 40.179622883], [-94.784521021, 40.290492265], [-94.754466222, 40.346240022], [-94.759815735, 40.405809304], [-94.743559158, 40.468108915], [-94.70991221, 40.495792993], [-94.708374298, 40.618921834], [-94.684824754, 40.66338123], [-94.65001939, 40.689124762], [-94.653223197, 40.702820781], [-94.496578366, 40.801510717], [-94.499666517, 40.83021547], [-94.468749213, 40.865537972], [-94.505948345, 40.897962554], [-94.558335079, 40.881597891], [-94.559192925, 40.918199418], [-94.588302727, 40.922728728], [-94.578420673, 40.937163865], [-94.6057387, 40.96506651], [-94.560723829, 40.987968187], [-94.567417945, 41.009714076], [-94.516001538, 41.01924148], [-94.509637529, 41.046432156], [-94.42396457, 41.090836707], [-94.398877064, 41.153703229], [-94.38229682, 41.162175808], [-94.317561107, 41.08069704], [-94.316954937, 41.046833513], [-94.283954866, 41.025546452]]]}, "properties": {"huc8": "10240012", "name": "Platte", "states": "IA,MO", "areasqkm": 4310.52, "dc_states": "MO", "cluster_count": 1, "data_center_count": 6, "clustered_data_center_count": 6}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-98.975860678, 38.89210731], [-98.910186879, 38.849982234], [-98.927589259, 38.824942114], [-98.915451191, 38.797178032], [-98.925148062, 38.781864853], [-98.966675006, 38.809301974], [-98.976249538, 38.791204454], [-99.101264857, 38.767349573], [-99.12540441, 38.745301576], [-99.260627799, 38.735147329], [-99.293617122, 38.770395043], [-99.320747547, 38.769832584], [-99.314613185, 38.804174723], [-99.365623586, 38.825063767], [-99.392639004, 38.860337439], [-99.419845544, 38.849487575], [-99.467575006, 38.872091862], [-99.51806625, 38.863547596], [-99.584381066, 38.894130322], [-99.627006732, 38.883595707], [-99.675781272, 38.900265129], [-99.694862389, 38.884229901], [-99.790191614, 38.875612648], [-99.818519675, 38.901613386], [-99.864021324, 38.900294306], [-99.892341518, 38.930728586], [-100.003143333, 38.962976518], [-100.05182659, 38.962669524], [-100.070426726, 38.947248968], [-100.093460196, 38.967540236], [-100.189918392, 38.966997506], [-100.193412745, 38.985362234], [-100.225379937, 38.994582447], [-100.343483144, 39.021161588], [-100.355903739, 39.006753775], [-100.393180812, 39.035730245], [-100.424240136, 39.029502632], [-100.553169006, 39.065615716], [-100.660148734, 39.07244465], [-100.797401544, 39.118366572], [-100.791603053, 39.130709859], [-100.717597985, 39.124633791], [-100.687522674, 39.148256901], [-100.554893518, 39.120782169], [-100.460136259, 39.120255324], [-100.415603542, 39.099129709], [-100.34908306, 39.11708838], [-100.267761403, 39.092509838], [-100.25042733, 39.064691576], [-100.18238821, 39.063828917], [-100.131393337, 39.023339661], [-100.112243735, 39.045379909], [-100.044326656, 39.034798178], [-100.031150991, 39.052369716], [-99.893112205, 39.023501637], [-99.854568386, 39.05156705], [-99.823738002, 39.03462279], [-99.81870287, 39.048463257], [-99.739662134, 39.03583506], [-99.712120258, 39.051388505], [-99.626579396, 39.016114058], [-99.560775601, 39.025401505], [-99.493194722, 38.999560656], [-99.473434471, 39.019647452], [-99.450843655, 39.009315523], [-99.42644512, 39.019008787], [-99.387191854, 38.99938378], [-99.379768334, 39.013258638], [-99.370475672, 39.004141929], [-99.309119992, 39.026010903], [-99.262237332, 39.011685105], [-99.251083396, 39.029047373], [-99.232536338, 39.008567127], [-99.202552788, 39.018855365], [-99.123306326, 38.996843192], [-99.066566399, 38.954666527], [-99.059463612, 38.912379595], [-98.975860678, 38.89210731]]]}, "properties": {"huc8": "10260007", "name": "Big", "states": "KS", "areasqkm": 2231.72, "dc_states": "KS", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-95.337895736, 39.600306127], [-95.300590383, 39.570286247], [-95.274528938, 39.576365325], [-95.22586088, 39.556774649], [-95.184516745, 39.487764242], [-95.130991744, 39.443996253], [-95.095825063, 39.443642053], [-95.060448126, 39.416520837], [-95.04731773, 39.370703044], [-95.06122859, 39.35816932], [-95.059120255, 39.308884236], [-94.983138608, 39.290508392], [-94.949860738, 39.204333457], [-94.92968987, 39.198508981], [-94.928604321, 39.179106505], [-94.902830259, 39.188274444], [-94.879974739, 39.154590309], [-94.856979118, 39.152400256], [-94.858090328, 39.120426775], [-94.823471145, 39.132878989], [-94.797882454, 39.115156591], [-94.763633476, 39.142662317], [-94.699271069, 39.148624659], [-94.65505688, 39.106573702], [-94.610554532, 39.116366447], [-94.608611927, 39.086021454], [-94.554144705, 39.111779432], [-94.54847055, 39.078226733], [-94.660422937, 39.033115447], [-94.68090801, 38.975365252], [-94.748123185, 38.957493246], [-94.759002404, 38.91882524], [-94.790718125, 38.895608515], [-94.805054204, 38.814004928], [-94.859127598, 38.804962307], [-94.893432604, 38.829250632], [-94.91980739, 38.800404727], [-94.933921592, 38.812682838], [-94.963394331, 38.804663718], [-94.978881465, 38.827233911], [-95.127883719, 38.754682841], [-95.18013774, 38.785165312], [-95.176849143, 38.802446248], [-95.22891994, 38.807284447], [-95.245025532, 38.835902633], [-95.296539145, 38.835518243], [-95.31223266, 38.811010303], [-95.465811657, 38.784865173], [-95.477701532, 38.769583317], [-95.53737654, 38.768796505], [-95.590759264, 38.775961789], [-95.611533928, 38.796844305], [-95.650123464, 38.781072171], [-95.670979517, 38.812056395], [-95.704612332, 38.798734637], [-95.847366201, 38.85203618], [-95.865539211, 38.838057699], [-96.045929122, 38.871848914], [-96.058509994, 38.892067643], [-96.048195052, 38.903991791], [-95.989120322, 38.882257047], [-95.918655264, 38.947847518], [-95.879638719, 38.945886584], [-95.877830403, 38.980850044], [-95.759589988, 38.976371172], [-95.755942988, 38.958162906], [-95.706770408, 38.956010195], [-95.690136212, 38.934692325], [-95.673057722, 38.938247504], [-95.672055739, 38.971995505], [-95.564972001, 38.955462309], [-95.52921279, 38.997037652], [-95.489219742, 39.01314831], [-95.383132743, 38.998522254], [-95.400283204, 39.056368591], [-95.347499655, 39.105560186], [-95.327522265, 39.181659582], [-95.284714, 39.20021564], [-95.234344917, 39.190237644], [-95.216087328, 39.204169187], [-95.249259936, 39.22280279], [-95.276908862, 39.307578984], [-95.321777271, 39.281247053], [-95.349289076, 39.302231791], [-95.335731731, 39.329723033], [-95.35578187, 39.350214246], [-95.329269008, 39.368596795], [-95.327629345, 39.403190914], [-95.401863204, 39.442992661], [-95.404847609, 39.476135256], [-95.433563607, 39.510939035], [-95.410148876, 39.56717864], [-95.337895736, 39.600306127]]]}, "properties": {"huc8": "10270104", "name": "Lower Kansas, Kansas", "states": "KS,MO", "areasqkm": 4287.72, "dc_states": "KS, MO", "cluster_count": 1, "data_center_count": 10, "clustered_data_center_count": 10}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-93.508938287, 39.832775758], [-93.514763552, 39.76824603], [-93.537633813, 39.76431407], [-93.532415524, 39.743378472], [-93.555069124, 39.730506062], [-93.567011084, 39.6776876], [-93.541313629, 39.656943694], [-93.612048251, 39.543911667], [-93.677520498, 39.559661638], [-93.734309941, 39.55383205], [-93.748908752, 39.525922201], [-93.78168678, 39.514162743], [-93.786913346, 39.489853795], [-93.831432148, 39.49249679], [-93.887685347, 39.456605011], [-93.938177358, 39.543888333], [-93.976917606, 39.570701561], [-94.001729766, 39.552115915], [-94.043240504, 39.553350014], [-94.065590823, 39.518858067], [-94.120948831, 39.541142989], [-94.165095305, 39.587597099], [-94.213841071, 39.590909728], [-94.269054422, 39.574088178], [-94.31358257, 39.523781236], [-94.33501407, 39.535777371], [-94.314304849, 39.700359348], [-94.370414673, 39.724404376], [-94.373790771, 39.780385086], [-94.415720122, 39.776389008], [-94.405138325, 39.841856166], [-94.432287749, 39.8560875], [-94.432300684, 39.879588246], [-94.453789865, 39.881044179], [-94.479860025, 39.928764312], [-94.465336224, 39.994591772], [-94.499378066, 40.012076592], [-94.517815972, 40.046390664], [-94.521735132, 40.071464449], [-94.50623365, 40.091297463], [-94.565060797, 40.080658242], [-94.592204253, 40.115848181], [-94.642510918, 40.108057078], [-94.666031624, 40.150368949], [-94.666541711, 40.190990869], [-94.703027277, 40.218640365], [-94.677675654, 40.288027134], [-94.659361591, 40.300996876], [-94.649999325, 40.388603943], [-94.604831156, 40.439131725], [-94.571486729, 40.542879219], [-94.505571576, 40.568849905], [-94.390677369, 40.680579029], [-94.39446904, 40.770864545], [-94.366155096, 40.846369253], [-94.387483514, 40.916272855], [-94.337930043, 40.927740461], [-94.285368717, 40.968023059], [-94.283954866, 41.025546452], [-94.247296171, 41.010054428], [-94.233106748, 40.967952603], [-94.21251416, 40.971619486], [-94.217984719, 40.951857884], [-94.182683017, 40.955220009], [-94.112869503, 40.906242253], [-94.115622279, 40.84348482], [-94.072597899, 40.838600204], [-94.043559964, 40.801321302], [-94.066085372, 40.758613021], [-94.052311029, 40.733433486], [-93.999897625, 40.697570156], [-93.983882658, 40.667664105], [-93.957078675, 40.651300748], [-93.91754972, 40.655200024], [-93.887253519, 40.617314771], [-93.900166519, 40.597096515], [-93.894698592, 40.55774618], [-93.914015494, 40.545044658], [-93.902838984, 40.499890131], [-93.92612108, 40.476918074], [-93.914524738, 40.424660765], [-93.944456064, 40.390102825], [-93.937156566, 40.351736103], [-93.919308067, 40.339608601], [-93.923219256, 40.292744492], [-93.94976114, 40.265860986], [-93.953748928, 40.237503255], [-93.921409048, 40.188189708], [-93.933755987, 40.167734157], [-93.914324744, 40.16762464], [-93.906745256, 40.145792832], [-93.87668474, 40.144628352], [-93.877914771, 40.118377971], [-93.855688114, 40.110152522], [-93.850716276, 40.080105484], [-93.820687914, 40.075437485], [-93.786641523, 39.978494344], [-93.732510516, 39.965193302], [-93.730339117, 39.942507671], [-93.658335633, 39.910647187], [-93.65313339, 39.869680872], [-93.628993556, 39.856788231], [-93.643992988, 39.812120198], [-93.624601768, 39.796246175], [-93.636846396, 39.790489114], [-93.624558328, 39.764964778], [-93.608982061, 39.782103331], [-93.625578049, 39.806230327], [-93.596097002, 39.82642834], [-93.543857292, 39.853549203], [-93.508938287, 39.832775758]]]}, "properties": {"huc8": "10280101", "name": "Upper Grand", "states": "IA,MO", "areasqkm": 8613.89, "dc_states": "MO", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-92.457195936, 39.359860181], [-92.438377873, 39.339442312], [-92.393467668, 39.332071618], [-92.358957139, 39.27891635], [-92.321760082, 39.271536172], [-92.326017767, 39.22656786], [-92.299205671, 39.197640561], [-92.249680489, 39.216668057], [-92.144097335, 39.190821708], [-92.137003585, 39.106763313], [-92.11990167, 39.114517647], [-92.077353536, 39.082825684], [-91.98004111, 39.084907187], [-91.892451656, 39.021136899], [-91.835806434, 39.031588704], [-91.795932247, 39.064598248], [-91.77360201, 39.035812334], [-91.805398731, 39.008922598], [-91.790433188, 38.978641683], [-91.813330528, 38.955023403], [-91.808793629, 38.938951845], [-91.74427254, 38.897783863], [-91.736629891, 38.878304675], [-91.750384344, 38.855050808], [-91.727015269, 38.830125288], [-91.626314082, 38.766696423], [-91.59469349, 38.709483456], [-91.572130211, 38.712290147], [-91.577054819, 38.700641798], [-91.55503941, 38.695065051], [-91.5469819, 38.674660536], [-91.606964996, 38.665690124], [-91.666856936, 38.62640929], [-91.687957142, 38.581791202], [-91.680990901, 38.545640879], [-91.768561129, 38.517366889], [-91.761736463, 38.486885106], [-91.830897499, 38.454878772], [-91.905817932, 38.470274851], [-91.952741709, 38.500726992], [-91.965104282, 38.542131914], [-91.949878827, 38.549741605], [-91.957620755, 38.57106331], [-91.941283216, 38.593256632], [-92.051050515, 38.55695341], [-92.048032355, 38.517867258], [-92.091556714, 38.493284011], [-92.202677469, 38.484257778], [-92.214949186, 38.457039006], [-92.278047759, 38.428992535], [-92.303521026, 38.440583644], [-92.415845361, 38.365367606], [-92.472586892, 38.367473196], [-92.506835529, 38.348521398], [-92.528361717, 38.36382828], [-92.63588132, 38.319543063], [-92.667181173, 38.328483872], [-92.672686811, 38.377069272], [-92.760988615, 38.401803309], [-92.794908548, 38.452899314], [-92.827801289, 38.446517437], [-92.856267039, 38.418623342], [-92.904850816, 38.413913628], [-92.872331539, 38.474389749], [-92.88709772, 38.49895069], [-92.864711119, 38.517342969], [-92.859013884, 38.548525052], [-92.796604729, 38.568413531], [-92.788315132, 38.609632505], [-92.838155893, 38.619569713], [-92.831035702, 38.661762522], [-92.859045137, 38.674754633], [-92.896622747, 38.717765927], [-92.893772958, 38.734716743], [-92.917887085, 38.747912191], [-92.93308306, 38.794084175], [-92.9129, 38.818113707], [-92.945066257, 38.83735936], [-92.948114123, 38.859183565], [-92.869332517, 38.912098896], [-92.847103087, 38.910818943], [-92.851854069, 38.934416567], [-92.829440212, 38.948091099], [-92.832666757, 38.967934993], [-92.859688651, 38.982258139], [-92.908084244, 38.962534262], [-92.941395264, 38.983631375], [-93.00339504, 39.060718869], [-92.99437444, 39.086854432], [-93.014925306, 39.092986352], [-93.025507566, 39.124044831], [-93.01415794, 39.16559742], [-93.037575682, 39.171365118], [-93.046644234, 39.208837838], [-93.022013914, 39.232769116], [-92.96669762, 39.244022059], [-92.905631736, 39.219201089], [-92.854209263, 39.223263628], [-92.842763459, 39.251200539], [-92.821499532, 39.258161453], [-92.740665019, 39.225953272], [-92.729785489, 39.208344351], [-92.702347046, 39.236647637], [-92.685022593, 39.293820204], [-92.516002457, 39.31043113], [-92.484049685, 39.354842349], [-92.457195936, 39.359860181]]]}, "properties": {"huc8": "10300102", "name": "Lower Missouri-Moreau", "states": "MO", "areasqkm": 8808.14, "dc_states": "MO", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-92.376449807, 35.87916073], [-92.342034561, 35.841783999], [-92.322743578, 35.849308876], [-92.267478866, 35.830664245], [-92.235113127, 35.847214219], [-92.11657424, 35.850571005], [-92.102501226, 35.826358376], [-92.056580377, 35.822229056], [-92.052359981, 35.795148311], [-92.022149038, 35.784355608], [-91.989066166, 35.79891753], [-92.00144003, 35.827111898], [-91.989999783, 35.832466332], [-91.961403621, 35.805008558], [-91.96323381, 35.782336113], [-91.916424764, 35.751260755], [-91.953755033, 35.693109749], [-91.924078983, 35.651057092], [-91.906925601, 35.673744437], [-91.850783181, 35.658899931], [-91.818243039, 35.637697485], [-91.823945594, 35.610633492], [-91.798676502, 35.584546861], [-91.757898044, 35.591402528], [-91.701080334, 35.571529923], [-91.616469544, 35.580584615], [-91.627272379, 35.539598522], [-91.591802102, 35.525289444], [-91.595573229, 35.493196633], [-91.56846587, 35.483855453], [-91.584071767, 35.464590219], [-91.57029916, 35.428779183], [-91.579691243, 35.416538266], [-91.528758955, 35.386599836], [-91.491414022, 35.334690181], [-91.498451155, 35.281446245], [-91.475369166, 35.251174894], [-91.489204716, 35.213149723], [-91.448982072, 35.221179214], [-91.463300299, 35.212832686], [-91.431741607, 35.196803596], [-91.436802458, 35.181374607], [-91.472408426, 35.180050579], [-91.487748366, 35.196454045], [-91.542937976, 35.187251356], [-91.542268526, 35.207662609], [-91.589204651, 35.194338259], [-91.616410535, 35.204087731], [-91.623539251, 35.224493858], [-91.651490402, 35.217705932], [-91.663790595, 35.194886831], [-91.69090895, 35.216445831], [-91.699768376, 35.255994436], [-91.715132993, 35.222570506], [-91.739866032, 35.223333207], [-91.876514357, 35.266400245], [-91.884599578, 35.315346387], [-91.93468867, 35.294834819], [-91.968034726, 35.302330401], [-91.975882125, 35.341222074], [-91.998188419, 35.341404495], [-92.033898724, 35.366871473], [-92.036656571, 35.38766965], [-92.066990387, 35.397810069], [-92.041641277, 35.416591165], [-92.053495956, 35.462197093], [-92.162237388, 35.451915113], [-92.177154911, 35.476508615], [-92.150141252, 35.48874825], [-92.160762054, 35.513759641], [-92.246424181, 35.514485238], [-92.285447669, 35.493795512], [-92.36082114, 35.511577366], [-92.466405643, 35.440762517], [-92.514862848, 35.471366612], [-92.527941329, 35.507762162], [-92.59321673, 35.508964687], [-92.597890063, 35.494623658], [-92.637206925, 35.510788855], [-92.644696666, 35.54661831], [-92.749016596, 35.525535969], [-92.840483559, 35.546598939], [-92.841219349, 35.571388778], [-92.804133637, 35.589272675], [-92.810113324, 35.610171285], [-92.776741548, 35.640168277], [-92.788870586, 35.661885975], [-92.853671292, 35.670824933], [-92.848295106, 35.71475753], [-92.823994471, 35.720519689], [-92.786570234, 35.690885452], [-92.783199889, 35.757221666], [-92.75129099, 35.777261673], [-92.730043872, 35.837214169], [-92.692514075, 35.858503518], [-92.667721761, 35.84830114], [-92.654088838, 35.87139797], [-92.617169482, 35.887068628], [-92.610432519, 35.910655467], [-92.574416919, 35.881273953], [-92.506214542, 35.888965068], [-92.49659927, 35.835669664], [-92.446930809, 35.842972992], [-92.450212074, 35.867919621], [-92.376449807, 35.87916073]]]}, "properties": {"huc8": "11010014", "name": "Little Red", "states": "AR", "areasqkm": 4666.06, "dc_states": "AR", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-104.938888074, 39.135180792], [-104.915659541, 39.118677285], [-104.841369579, 39.121669934], [-104.811474899, 39.103666145], [-104.800384503, 39.07358558], [-104.740133195, 39.069068094], [-104.723475903, 39.043616388], [-104.673229322, 39.031305705], [-104.576018195, 38.848248551], [-104.554833638, 38.737067392], [-104.570656845, 38.716370754], [-104.560028325, 38.65443292], [-104.58084379, 38.53036756], [-104.545436302, 38.484164653], [-104.524729628, 38.47892137], [-104.521902827, 38.443092355], [-104.556688644, 38.391138175], [-104.550110306, 38.342836497], [-104.581487123, 38.30296544], [-104.589178856, 38.254020405], [-104.624160651, 38.289156854], [-104.64083324, 38.356398629], [-104.708172344, 38.489911601], [-104.748606236, 38.473759955], [-104.777652904, 38.487717414], [-104.831302172, 38.601359263], [-104.858458601, 38.623416941], [-104.860319155, 38.651413295], [-104.892611096, 38.661569174], [-104.920988201, 38.699719369], [-104.969535657, 38.697405399], [-104.946481624, 38.726178944], [-104.946446361, 38.753018543], [-104.983470291, 38.765797893], [-104.994264527, 38.792367726], [-105.01684656, 38.793549282], [-105.022079603, 38.81933504], [-105.086129728, 38.882035274], [-105.121660381, 38.888970189], [-105.124196571, 38.908494568], [-105.066382984, 38.972755546], [-105.071802632, 38.992391177], [-105.01547017, 39.003296121], [-105.024745608, 39.104703608], [-104.99944016, 39.126687441], [-104.938888074, 39.135180792]]]}, "properties": {"huc8": "11020003", "name": "Fountain", "states": "CO", "areasqkm": 2404.55, "dc_states": "CO", "cluster_count": 0, "data_center_count": 4, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-104.482591134, 39.082904202], [-104.436590632, 39.054026109], [-104.37353343, 39.048697261], [-104.314165527, 39.023441386], [-104.304010136, 39.001515123], [-104.321468412, 38.995422105], [-104.318405521, 38.96913479], [-104.243904674, 38.928405395], [-104.227450022, 38.893140698], [-104.264712832, 38.846886592], [-104.297148898, 38.845168596], [-104.26970781, 38.768577525], [-104.295576519, 38.739824635], [-104.312066971, 38.741749469], [-104.339238322, 38.686152658], [-104.322402821, 38.586866274], [-104.356903368, 38.512688245], [-104.346725014, 38.462211274], [-104.37396321, 38.424737729], [-104.365584206, 38.37599611], [-104.3433291, 38.350007953], [-104.3424908, 38.275136762], [-104.365589257, 38.268743008], [-104.365120999, 38.242252668], [-104.399370645, 38.294460532], [-104.456985461, 38.303176009], [-104.534097007, 38.358876373], [-104.554057358, 38.392633616], [-104.521901837, 38.443242566], [-104.524729628, 38.47892137], [-104.545436302, 38.484164653], [-104.58086407, 38.530534544], [-104.560028325, 38.65443292], [-104.570656845, 38.716370754], [-104.554833638, 38.737067392], [-104.559999509, 38.779677279], [-104.576018195, 38.848248551], [-104.601767426, 38.87716803], [-104.64813563, 39.004145327], [-104.66905422, 39.0139173], [-104.633404979, 39.046103185], [-104.618663993, 39.038283332], [-104.549961992, 39.072212538], [-104.482591134, 39.082904202]]]}, "properties": {"huc8": "11020004", "name": "Chico", "states": "CO", "areasqkm": 1874.22, "dc_states": "CO", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-98.837585411, 37.540275455], [-98.765998802, 37.572216451], [-98.704269252, 37.532084793], [-98.693748794, 37.501835317], [-98.628212205, 37.496078968], [-98.567367604, 37.410449386], [-98.522651934, 37.381919981], [-98.521140865, 37.334307582], [-98.486342988, 37.301087588], [-98.520507595, 37.238804907], [-98.44987481, 37.185139447], [-98.379211745, 37.032093405], [-98.328064284, 37.00058043], [-98.329899958, 36.968389957], [-98.314189962, 36.955070019], [-98.332710019, 36.870299965], [-98.323227457, 36.831002532], [-98.376069984, 36.840400009], [-98.393959961, 36.824310033], [-98.49143996, 36.877339958], [-98.512620023, 36.869049966], [-98.564380041, 36.908559918], [-98.644879958, 36.848280012], [-98.674319974, 36.908039956], [-98.740720025, 36.983039975], [-98.743453942, 37.039427698], [-98.77595519, 37.083652407], [-98.764938347, 37.123985648], [-98.794860683, 37.156199365], [-98.798980585, 37.211276054], [-98.893821738, 37.242405236], [-98.912780933, 37.266422838], [-99.008071921, 37.306605249], [-99.053405873, 37.362914712], [-99.231018058, 37.397503585], [-99.304206871, 37.455336839], [-99.327964924, 37.457323909], [-99.359069876, 37.499065906], [-99.30295553, 37.537474573], [-99.232345812, 37.542328447], [-99.199531786, 37.585232169], [-99.209297143, 37.599026174], [-99.184814475, 37.610126585], [-99.157310329, 37.590003252], [-99.131340138, 37.601058573], [-99.122321866, 37.583485186], [-99.038741998, 37.615501792], [-99.00948327, 37.592174114], [-98.954254142, 37.618277729], [-98.937003992, 37.574833632], [-98.910469136, 37.557197244], [-98.89266207, 37.565459103], [-98.837585411, 37.540275455]]]}, "properties": {"huc8": "11060003", "name": "Medicine Lodge", "states": "KS,OK", "areasqkm": 3313.18, "dc_states": "KS", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-96.515330035, 36.867260039], [-96.479199964, 36.858009964], [-96.381940025, 36.776650011], [-96.385380018, 36.750069975], [-96.315350044, 36.708849966], [-96.249480027, 36.69377002], [-96.22719996, 36.705659954], [-96.113090026, 36.631300031], [-96.027089971, 36.660680025], [-96.007720041, 36.624170034], [-96.023020047, 36.596199959], [-96.017599958, 36.547969966], [-95.929460037, 36.478689937], [-95.946759956, 36.439539967], [-95.925799953, 36.41970995], [-95.925210017, 36.362629949], [-95.830840039, 36.302789955], [-95.776330041, 36.329249947], [-95.779880035, 36.285580037], [-95.749640035, 36.257280021], [-95.758840042, 36.241629956], [-95.727199393, 36.22142735], [-95.747450041, 36.188600032], [-95.780170041, 36.189619956], [-95.804450023, 36.155039905], [-95.788839953, 36.123200027], [-95.789630043, 36.108969955], [-95.80518003, 36.109579949], [-95.797260034, 36.087560026], [-95.893379974, 36.060409962], [-95.893080044, 36.089289962], [-95.954839963, 36.164390026], [-96.012509959, 36.172049938], [-96.054600019, 36.210299967], [-96.059519964, 36.187569974], [-96.09670003, 36.191539971], [-96.098270016, 36.208969949], [-96.134740102, 36.22355002], [-96.156590062, 36.20921996], [-96.189760017, 36.228949963], [-96.174490023, 36.273620037], [-96.212260085, 36.305340021], [-96.259089965, 36.295149951], [-96.268870044, 36.279439954], [-96.319760042, 36.285749971], [-96.348840046, 36.326459973], [-96.394459981, 36.339259921], [-96.469139982, 36.392580031], [-96.492600042, 36.428880035], [-96.477899958, 36.444650023], [-96.498520035, 36.466759949], [-96.492630023, 36.480569898], [-96.553269971, 36.52831003], [-96.574250001, 36.623049973], [-96.592710037, 36.63867995], [-96.571390021, 36.663030027], [-96.574390043, 36.706729947], [-96.553320039, 36.714079975], [-96.540989954, 36.764260023], [-96.555080045, 36.807260036], [-96.524890024, 36.829710036], [-96.536530037, 36.839260012], [-96.515330035, 36.867260039]]]}, "properties": {"huc8": "11070107", "name": "Bird", "states": "OK", "areasqkm": 2945.89, "dc_states": "OK", "cluster_count": 1, "data_center_count": 3, "clustered_data_center_count": 3}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-98.729609958, 36.221869974], [-98.584219954, 36.199040083], [-98.581280044, 36.178489952], [-98.534819981, 36.150279967], [-98.544359973, 36.133609949], [-98.533379964, 36.102369963], [-98.495079955, 36.072599975], [-98.487779966, 36.031519947], [-98.500930063, 36.009500025], [-98.460659972, 35.967669962], [-98.441829971, 35.898620037], [-98.412660023, 35.913959948], [-98.408220014, 35.898709951], [-98.38798996, 35.906739948], [-98.384680024, 35.877749888], [-98.372069975, 35.885019956], [-98.347309938, 35.853849976], [-98.347949972, 35.826639949], [-98.327139965, 35.828129975], [-98.336830041, 35.813729969], [-98.28418996, 35.761120019], [-98.262950024, 35.759330062], [-98.248449973, 35.725330023], [-98.18284004, 35.714059947], [-98.15828996, 35.682769952], [-98.044859967, 35.638939974], [-98.026759973, 35.614629952], [-97.938250026, 35.595979956], [-97.906660041, 35.571299968], [-97.83394002, 35.573969957], [-97.807419976, 35.591459957], [-97.761520018, 35.558239904], [-97.699869981, 35.570439962], [-97.639389982, 35.545709965], [-97.633939971, 35.509139982], [-97.617970039, 35.503239957], [-97.633229961, 35.400129971], [-97.720739981, 35.37832996], [-97.795609971, 35.417240021], [-97.826430043, 35.407519964], [-97.845950027, 35.42472997], [-97.876519969, 35.418740031], [-97.904849967, 35.444349972], [-97.999749979, 35.45399001], [-98.045709958, 35.497779963], [-98.07946997, 35.49031007], [-98.137519976, 35.529220013], [-98.159369966, 35.524829951], [-98.195059976, 35.572480021], [-98.24869003, 35.58364996], [-98.261999956, 35.607469974], [-98.297059914, 35.605619905], [-98.366314105, 35.654796718], [-98.403549961, 35.645529953], [-98.44561123, 35.686927972], [-98.464019975, 35.677060035], [-98.476140043, 35.710039971], [-98.493870041, 35.711959956], [-98.529179981, 35.758600024], [-98.54942002, 35.821339963], [-98.606509975, 35.850160031], [-98.606879971, 35.867909966], [-98.659029982, 35.884800015], [-98.653889975, 35.909740029], [-98.683839969, 35.971640019], [-98.716310046, 35.982079921], [-98.700320027, 36.01409003], [-98.707699976, 36.036519972], [-98.734299979, 36.043560026], [-98.742349974, 36.073790012], [-98.775806955, 36.087290702], [-98.871579966, 36.101629971], [-98.941250018, 36.088679968], [-98.973620019, 36.108380018], [-99.025519959, 36.072519957], [-99.058099978, 36.077669946], [-99.107089959, 36.059770016], [-99.131480031, 36.027509956], [-99.178209983, 36.006880013], [-99.184780024, 36.031249998], [-99.216770045, 36.046599983], [-99.217720084, 36.070560037], [-99.24452003, 36.09911996], [-99.263299904, 36.096899954], [-99.294999979, 36.150500027], [-99.346380018, 36.153969972], [-99.411669962, 36.130560009], [-99.418729983, 36.151249973], [-99.449269973, 36.138499973], [-99.489409976, 36.169739958], [-99.517930024, 36.156930028], [-99.560830019, 36.16597995], [-99.568629973, 36.190889953], [-99.535039954, 36.222750036], [-99.524609976, 36.274599968], [-99.480180017, 36.33328989], [-99.533059977, 36.420210062], [-99.510599963, 36.472260027], [-99.528199963, 36.554280012], [-99.50135728, 36.589039265], [-99.502759956, 36.638409971], [-99.453109973, 36.63066995], [-99.442450039, 36.604019968], [-99.412819974, 36.593699961], [-99.389884971, 36.602014958], [-99.35515996, 36.561899959], [-99.303100042, 36.568449973], [-99.284249983, 36.548250018], [-99.271579973, 36.560949951], [-99.243789964, 36.555129976], [-99.230270021, 36.524269937], [-99.164409958, 36.523729951], [-99.166979961, 36.486400037], [-99.147539966, 36.463620036], [-99.124519966, 36.464219986], [-99.109999917, 36.383389949], [-99.087429963, 36.35118997], [-99.044699959, 36.333619951], [-99.048150024, 36.320100037], [-99.011709981, 36.312629907], [-99.015509985, 36.300369947], [-98.931090019, 36.292310028], [-98.869629971, 36.244759975], [-98.847960047, 36.254999964], [-98.814239971, 36.235790013], [-98.785080037, 36.246999948], [-98.760869972, 36.231539964], [-98.740600042, 36.239250062], [-98.729609958, 36.221869974]]]}, "properties": {"huc8": "11100301", "name": "Middle North Canadian", "states": "OK", "areasqkm": 4813.33, "dc_states": "OK", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-97.323760023, 35.610950021], [-97.202819963, 35.56981003], [-97.19855996, 35.534100023], [-97.147890021, 35.539009956], [-97.072620023, 35.476379958], [-97.043550034, 35.482049969], [-97.014129956, 35.431519983], [-96.977030028, 35.420340028], [-96.958660026, 35.419010011], [-96.944679965, 35.446919975], [-96.913180042, 35.445309964], [-96.894279976, 35.472349999], [-96.870769966, 35.455629972], [-96.844730038, 35.466899958], [-96.826870043, 35.457290021], [-96.825010021, 35.471739975], [-96.752869982, 35.462919948], [-96.687930036, 35.502360073], [-96.664349962, 35.477409956], [-96.64086004, 35.508140025], [-96.596589971, 35.515719948], [-96.535070021, 35.489909974], [-96.522410024, 35.512090025], [-96.493640024, 35.517539946], [-96.481710035, 35.545349894], [-96.459929962, 35.526880023], [-96.439730037, 35.53122997], [-96.425319958, 35.493869957], [-96.373600024, 35.465519962], [-96.314670044, 35.470779982], [-96.296290029, 35.455310015], [-96.301799971, 35.432459948], [-96.271030027, 35.430389938], [-96.231030035, 35.456810025], [-96.188019979, 35.435499964], [-96.158450026, 35.477619973], [-96.123680044, 35.423479972], [-96.03784998, 35.429399965], [-95.988950002, 35.366169957], [-95.986870039, 35.329660025], [-95.903379965, 35.355220047], [-95.923879969, 35.375050036], [-95.918030041, 35.388199983], [-95.856649952, 35.408419904], [-95.829899954, 35.437789974], [-95.791609961, 35.429380027], [-95.775879967, 35.447010007], [-95.727620023, 35.418049959], [-95.72395997, 35.444319961], [-95.699640023, 35.446479973], [-95.691200035, 35.467419949], [-95.654000032, 35.45507997], [-95.645359981, 35.428629962], [-95.611369955, 35.420779971], [-95.618429976, 35.41088995], [-95.60392003, 35.409719971], [-95.598900037, 35.378019956], [-95.581099975, 35.367100027], [-95.552749979, 35.393129972], [-95.553630041, 35.426729974], [-95.468089955, 35.414289948], [-95.498950022, 35.378129957], [-95.482020037, 35.375330028], [-95.491310017, 35.353190002], [-95.456319975, 35.353789952], [-95.456140088, 35.333989945], [-95.499510037, 35.316449938], [-95.564610021, 35.252039966], [-95.665310042, 35.265549955], [-95.751470017, 35.314469961], [-95.82831003, 35.299360034], [-95.833600031, 35.326899972], [-95.904519963, 35.301790026], [-95.925019967, 35.267150012], [-95.950560021, 35.274399963], [-96.005969959, 35.249730018], [-96.023689973, 35.218130019], [-96.063850033, 35.213240025], [-96.095840025, 35.239660021], [-96.113229978, 35.216119971], [-96.092239964, 35.183219966], [-96.144940036, 35.103090015], [-96.140629965, 35.085629966], [-96.176469969, 35.081149962], [-96.210590023, 35.059390035], [-96.208740043, 35.045569953], [-96.293200093, 35.078779962], [-96.315210063, 35.058479961], [-96.33065002, 35.077899959], [-96.34983002, 35.065289971], [-96.418749976, 35.090299961], [-96.441770036, 35.083899972], [-96.446090001, 35.066690025], [-96.485959966, 35.068229971], [-96.498949874, 35.095169958], [-96.527560044, 35.088330027], [-96.563330043, 35.115370062], [-96.595789957, 35.116049974], [-96.618540038, 35.143030014], [-96.658789981, 35.136310008], [-96.673369962, 35.156700012], [-96.696989972, 35.157340046], [-96.776680041, 35.22771996], [-96.814879973, 35.289250013], [-96.866189976, 35.280339954], [-96.921689977, 35.247379986], [-96.970540036, 35.264409957], [-96.986040045, 35.252090034], [-97.028029938, 35.260729966], [-97.064570029, 35.287020024], [-97.122130025, 35.283870009], [-97.150959958, 35.325629947], [-97.195190002, 35.329459963], [-97.237339963, 35.421420095], [-97.268269975, 35.433859971], [-97.341880043, 35.432399955], [-97.352539976, 35.405739961], [-97.437469979, 35.371059921], [-97.464330037, 35.381810126], [-97.517099966, 35.363850024], [-97.633229961, 35.400129971], [-97.618979981, 35.453000037], [-97.626740029, 35.493340013], [-97.509460022, 35.481750008], [-97.453619977, 35.493129966], [-97.377599974, 35.592899946], [-97.323760023, 35.610950021]]]}, "properties": {"huc8": "11100302", "name": "Lower North Canadian", "states": "OK", "areasqkm": 4842.7, "dc_states": "OK", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-96.187230038, 36.226110009], [-96.156590062, 36.20921996], [-96.134740102, 36.22355002], [-96.107960033, 36.216109959], [-96.092320043, 36.19090995], [-96.059519964, 36.187569974], [-96.054600019, 36.210299967], [-96.012509959, 36.172049938], [-95.954839963, 36.164390026], [-95.893080044, 36.089289962], [-95.893379974, 36.060409962], [-95.797260034, 36.087560026], [-95.779290038, 36.052840022], [-95.757720041, 36.057399957], [-95.697210001, 36.000870017], [-95.66149004, 36.014489947], [-95.649909961, 35.981889961], [-95.628500032, 35.988279967], [-95.62821998, 35.929969964], [-95.594050037, 35.921269952], [-95.570120024, 35.872409938], [-95.528520035, 35.878399966], [-95.518119978, 35.860100029], [-95.447690027, 35.845840035], [-95.429789977, 35.826229958], [-95.411580043, 35.838339982], [-95.340499954, 35.826890019], [-95.333610015, 35.801159944], [-95.295066165, 35.79367396], [-95.328609901, 35.785609899], [-95.337310093, 35.759900031], [-95.366300033, 35.748539982], [-95.414340036, 35.763880012], [-95.446600037, 35.754419951], [-95.434270041, 35.692069975], [-95.45571004, 35.702029971], [-95.504120039, 35.683749972], [-95.498029964, 35.648620037], [-95.591310041, 35.631619957], [-95.599880027, 35.599409966], [-95.670570093, 35.580639896], [-95.731930035, 35.590020028], [-95.743499982, 35.620779959], [-95.778549957, 35.611349937], [-95.830799954, 35.633519975], [-95.876199978, 35.672569958], [-95.865810024, 35.696920035], [-95.883040028, 35.723609892], [-95.906509953, 35.710439948], [-95.997640031, 35.732519982], [-95.976829964, 35.780389962], [-96.044250029, 35.772169976], [-96.042550016, 35.791859982], [-96.084660042, 35.805360047], [-96.12336998, 35.844760029], [-96.14141004, 35.830680011], [-96.169130015, 35.832610009], [-96.169760036, 35.845920025], [-96.227150041, 35.838369963], [-96.252400029, 35.853650002], [-96.247680027, 35.865970013], [-96.326839971, 35.882599947], [-96.362530041, 35.907010017], [-96.415509958, 35.897759972], [-96.463100035, 35.929619966], [-96.508770038, 35.931509969], [-96.538090039, 35.99877995], [-96.47028004, 36.018189965], [-96.462020028, 36.052969961], [-96.406020093, 36.049709706], [-96.38532998, 36.032230018], [-96.37913998, 36.054399966], [-96.319370019, 36.034589974], [-96.29988997, 36.046249954], [-96.282310027, 36.068229971], [-96.287089903, 36.099199949], [-96.25190996, 36.11415997], [-96.266170043, 36.135390012], [-96.245170045, 36.176099954], [-96.187230038, 36.226110009]]]}, "properties": {"huc8": "11110101", "name": "Polecat-Snake", "states": "OK", "areasqkm": 3424.84, "dc_states": "OK", "cluster_count": 1, "data_center_count": 4, "clustered_data_center_count": 4}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-95.022200035, 35.894909946], [-95.029110031, 35.882479964], [-94.99821003, 35.88235995], [-95.029400037, 35.849809972], [-95.01257004, 35.841470031], [-95.026570038, 35.822519956], [-94.973709957, 35.819259969], [-94.96222003, 35.79266995], [-95.000530021, 35.771830021], [-95.013299959, 35.71591997], [-95.049560026, 35.696889934], [-95.048810082, 35.675239948], [-95.103730039, 35.639590023], [-95.089880036, 35.617600022], [-95.112670021, 35.600030062], [-95.103359954, 35.562870023], [-95.121920036, 35.548310009], [-95.120789962, 35.516450015], [-95.086760031, 35.489960013], [-95.016290025, 35.496370015], [-95.020950036, 35.515899953], [-95.006169961, 35.518189965], [-94.998600022, 35.475280014], [-95.035640018, 35.46982002], [-95.045169966, 35.425040034], [-95.093139963, 35.437589971], [-95.128340022, 35.423440037], [-95.128287541, 35.406641332], [-95.19770609, 35.405644385], [-95.19646983, 35.390025821], [-95.174720602, 35.385439274], [-95.197169976, 35.379909274], [-95.196969973, 35.356499282], [-95.21466996, 35.349549083], [-95.207570063, 35.329499212], [-95.232710021, 35.325319288], [-95.291960018, 35.348339972], [-95.331529961, 35.385899959], [-95.375670062, 35.386870024], [-95.374470043, 35.420670029], [-95.403920042, 35.423439947], [-95.407090025, 35.443379966], [-95.446820037, 35.445460019], [-95.494570034, 35.412690011], [-95.563540029, 35.429599968], [-95.571140038, 35.457030025], [-95.589730041, 35.457479921], [-95.615300046, 35.542570022], [-95.639950024, 35.554319946], [-95.653540033, 35.583989946], [-95.599880027, 35.599409966], [-95.591310041, 35.631619957], [-95.498029964, 35.648620037], [-95.504120039, 35.683749972], [-95.45571004, 35.702029971], [-95.434270041, 35.692069975], [-95.446600037, 35.754419951], [-95.414340036, 35.763880012], [-95.366300033, 35.748539982], [-95.314000027, 35.79255995], [-95.221850024, 35.809019951], [-95.225710021, 35.834739921], [-95.159149962, 35.863580046], [-95.110140042, 35.872900037], [-95.087569998, 35.893439946], [-95.022200035, 35.894909946]]]}, "properties": {"huc8": "11110102", "name": "Dirty-Greenleaf", "states": "OK", "areasqkm": 2064.43, "dc_states": "OK", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-92.429965837, 34.897151675], [-92.273851586, 34.898690995], [-92.306805742, 34.887666938], [-92.280043912, 34.872324254], [-92.31693883, 34.833171663], [-92.251296682, 34.813464876], [-92.209419918, 34.78355905], [-92.214358074, 34.764574643], [-92.188737673, 34.772396978], [-92.182049138, 34.794619705], [-92.156185252, 34.772829142], [-92.131676358, 34.779175605], [-92.07574862, 34.759533458], [-92.102710587, 34.671467539], [-92.045655829, 34.665813085], [-91.976322872, 34.594555821], [-91.955144094, 34.463584167], [-91.959143115, 34.387737687], [-91.878812556, 34.32814922], [-91.897598457, 34.281263467], [-91.863762599, 34.2623302], [-91.854659122, 34.222023394], [-91.902779829, 34.224064107], [-91.925043893, 34.267610665], [-91.962503296, 34.230172868], [-92.067045701, 34.213647272], [-92.093552125, 34.271017577], [-92.125228775, 34.260748203], [-92.177529199, 34.296601202], [-92.184733939, 34.350037094], [-92.158668501, 34.420373227], [-92.18208639, 34.413164075], [-92.227202399, 34.443268623], [-92.275260491, 34.426646914], [-92.282024574, 34.487398441], [-92.316372855, 34.49569359], [-92.350746734, 34.482903893], [-92.38874243, 34.560969111], [-92.418641848, 34.551471885], [-92.434346748, 34.582912739], [-92.502662463, 34.607682761], [-92.504377736, 34.654600885], [-92.52408315, 34.68415847], [-92.568099332, 34.707724568], [-92.562541796, 34.721248683], [-92.580195142, 34.724757995], [-92.591142012, 34.760859277], [-92.660148515, 34.778994587], [-92.681407554, 34.824741598], [-92.724241031, 34.819159206], [-92.756221368, 34.842534151], [-92.839237166, 34.862324502], [-92.908337159, 34.852547166], [-92.911752297, 34.879016902], [-92.976182921, 34.887596931], [-92.969213946, 34.90361872], [-92.851535751, 34.930942741], [-92.681812359, 34.928846296], [-92.630729778, 34.941587802], [-92.567865682, 34.926620868], [-92.511508716, 34.941621181], [-92.429965837, 34.897151675]]]}, "properties": {"huc8": "11110207", "name": "Lower Arkansas-Maumelle", "states": "AR", "areasqkm": 2845.03, "dc_states": "AR", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-100.124613022, 34.238309884], [-100.132813738, 34.223852853], [-100.109926896, 34.201738968], [-100.142213634, 34.174750551], [-100.170856814, 34.118204574], [-100.309140425, 34.077329051], [-100.314008001, 34.055877604], [-100.349689064, 34.044352916], [-100.346953003, 34.019681691], [-100.363563349, 34.002050022], [-100.399953309, 33.999635276], [-100.440320881, 33.972896599], [-100.455237375, 33.939915775], [-100.442853517, 33.919066446], [-100.453489635, 33.879250108], [-100.540065046, 33.866876953], [-100.578419212, 33.831979093], [-100.646514971, 33.811952785], [-100.688033005, 33.753186787], [-100.695624542, 33.705526897], [-100.75134751, 33.724730857], [-100.847677129, 33.666204999], [-100.887913719, 33.711475857], [-100.936785287, 33.725388401], [-100.956976743, 33.756726043], [-101.021448341, 33.761271583], [-101.040040018, 33.798727496], [-101.160637687, 33.889451244], [-101.174731393, 33.915652646], [-101.157897672, 33.959243839], [-101.188810645, 33.97519542], [-101.242829977, 33.974868574], [-101.239584391, 33.999312257], [-101.272660649, 34.013640114], [-101.30307584, 34.054035828], [-101.370237939, 34.079119126], [-101.422048099, 34.151165602], [-101.407271332, 34.17850935], [-101.381433171, 34.184763852], [-101.3198592, 34.171502479], [-101.306102507, 34.207667088], [-101.2901166, 34.206493911], [-101.26001976, 34.180398965], [-101.212518315, 34.179759705], [-101.18999586, 34.143484471], [-101.204405888, 34.114435051], [-101.175180833, 34.0728194], [-101.09545922, 34.087299334], [-101.079759492, 34.063264102], [-100.981530836, 34.109307712], [-100.939760687, 34.096269701], [-100.908841612, 34.132292318], [-100.836128455, 34.121155404], [-100.79465498, 34.137296324], [-100.708836595, 34.138889479], [-100.715336696, 34.175922184], [-100.676170822, 34.212208572], [-100.573267925, 34.237757446], [-100.447344169, 34.185168278], [-100.365123186, 34.231502335], [-100.304353968, 34.2250519], [-100.267583927, 34.241207353], [-100.241247886, 34.221864086], [-100.22042249, 34.240018153], [-100.190450351, 34.225113602], [-100.155326712, 34.242755918], [-100.124613022, 34.238309884]]]}, "properties": {"huc8": "11130104", "name": "Middle Pease", "states": "TX", "areasqkm": 3547.96, "dc_states": "TX", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-98.314177098, 34.113201852], [-98.218028443, 34.12000005], [-98.16367165, 34.10341533], [-98.186445728, 34.087810871], [-98.213888204, 34.022179103], [-98.2731446, 33.989737408], [-98.357534335, 33.972077531], [-98.362263715, 33.954191667], [-98.387802842, 33.949500716], [-98.386726231, 33.928003335], [-98.414842099, 33.915889673], [-98.418819429, 33.889902838], [-98.462850448, 33.867132815], [-98.466481106, 33.846418188], [-98.503299932, 33.837808804], [-98.564553135, 33.782239035], [-98.670649576, 33.758561416], [-98.698732481, 33.708819958], [-98.753333855, 33.699110049], [-98.807788384, 33.716751776], [-98.860838794, 33.685363819], [-98.923990139, 33.710233789], [-99.00755783, 33.687980483], [-99.149284264, 33.688401821], [-99.180312464, 33.668130093], [-99.192461508, 33.622575794], [-99.241904747, 33.626857348], [-99.285773071, 33.666844441], [-99.29971425, 33.642215913], [-99.418346542, 33.612022943], [-99.575057325, 33.643165945], [-99.574600195, 33.659430705], [-99.515273199, 33.677791815], [-99.504139317, 33.717299236], [-99.445373436, 33.726229161], [-99.459872593, 33.79263667], [-99.412992736, 33.806007438], [-99.35287033, 33.796358137], [-99.283604117, 33.844249657], [-99.223645868, 33.861291175], [-99.184389945, 33.85896499], [-99.169256351, 33.839586966], [-99.137086577, 33.85338481], [-99.059638697, 33.82172706], [-98.937299092, 33.868517066], [-98.89537114, 33.863517412], [-98.813304215, 33.886779292], [-98.82026144, 33.910449148], [-98.919822704, 33.991816934], [-98.929601739, 34.010543318], [-98.905174467, 34.042801068], [-98.876701351, 34.03749732], [-98.831291487, 34.059406665], [-98.738090373, 34.053295569], [-98.724181563, 34.070488649], [-98.709617284, 34.042668297], [-98.647666727, 34.007206718], [-98.594664855, 34.020542312], [-98.532758762, 34.012049294], [-98.521857499, 34.024506423], [-98.507247084, 34.014739781], [-98.48680311, 34.034845396], [-98.467360823, 34.020717573], [-98.395819867, 34.074611566], [-98.346007224, 34.07597989], [-98.314177098, 34.113201852]]]}, "properties": {"huc8": "11130206", "name": "Wichita", "states": "OK,TX", "areasqkm": 2646.75, "dc_states": "TX", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-96.766900022, 34.683930036], [-96.723339963, 34.655999955], [-96.725830037, 34.63459995], [-96.656700033, 34.567269947], [-96.609630037, 34.543249961], [-96.613610018, 34.517509963], [-96.591439981, 34.509199971], [-96.584190029, 34.464289959], [-96.597269971, 34.404809948], [-96.477839965, 34.351869966], [-96.477380026, 34.311100032], [-96.367139954, 34.220469947], [-96.362669963, 34.181139971], [-96.32215004, 34.158789958], [-96.320559967, 34.134680028], [-96.281540025, 34.116339947], [-96.265420038, 34.131110008], [-96.199610042, 34.131529952], [-96.192270029, 34.116549964], [-96.168560046, 34.129490014], [-96.135150033, 34.119409944], [-96.097560036, 34.070749964], [-96.057769972, 34.065799947], [-95.989730018, 33.95216989], [-95.935709971, 33.921869959], [-95.929710022, 33.895309996], [-95.94747487, 33.864707305], [-95.975779856, 33.85825996], [-95.979387105, 33.87525384], [-96.006870047, 33.881240026], [-96.059627592, 33.867124164], [-96.059832508, 33.897593486], [-96.115860033, 33.924719955], [-96.311639983, 33.931959982], [-96.457579959, 33.968799944], [-96.454040039, 33.997850026], [-96.483380038, 34.043490018], [-96.4748299, 34.065959955], [-96.509209979, 34.178369965], [-96.542720039, 34.210589971], [-96.58012997, 34.218119945], [-96.627580035, 34.356729951], [-96.681870061, 34.401659961], [-96.681259978, 34.44287997], [-96.718849976, 34.480139967], [-96.818650026, 34.519840028], [-96.825590033, 34.541509953], [-96.851990033, 34.548109885], [-96.844800044, 34.572679963], [-96.852639962, 34.601069954], [-96.872720022, 34.601950016], [-96.87224998, 34.633259948], [-96.825700034, 34.669089969], [-96.805100042, 34.661629971], [-96.766900022, 34.683930036]]]}, "properties": {"huc8": "11140102", "name": "Blue", "states": "OK", "areasqkm": 1769.42, "dc_states": "OK", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-93.906049534, 33.13973766], [-93.827989116, 33.020265901], [-93.849126294, 32.950420322], [-93.82307877, 32.929133953], [-93.815165734, 32.849042324], [-93.789529914, 32.846201857], [-93.796265203, 32.817035251], [-93.828860974, 32.790298735], [-93.78866286, 32.78353732], [-93.791756652, 32.763486204], [-93.832938286, 32.72927413], [-93.818875755, 32.707168858], [-93.786177311, 32.717500807], [-93.79231324, 32.644881585], [-93.765477281, 32.633565159], [-93.769977288, 32.590660824], [-93.74417295, 32.582863859], [-93.772403174, 32.549453252], [-93.731168264, 32.501919211], [-93.859991934, 32.451673635], [-93.948544143, 32.444481719], [-93.964045875, 32.413556599], [-94.040820008, 32.382939985], [-94.085570065, 32.414207372], [-94.144320028, 32.412160002], [-94.157089932, 32.43701], [-94.176219952, 32.432850018], [-94.189179955, 32.448589954], [-94.210366238, 32.509220159], [-94.137080457, 32.566315488], [-94.041729993, 32.586810057], [-93.980299972, 32.63553997], [-93.948889978, 32.626060083], [-93.930319944, 32.644689998], [-93.939049969, 32.680239971], [-93.914299989, 32.715459953], [-93.982470054, 32.754189956], [-93.932629962, 32.79375], [-93.928070003, 32.818320017], [-93.936619969, 32.849069966], [-94.025960009, 32.898149979], [-94.030449957, 32.917099995], [-94.139952349, 32.993679898], [-94.139062317, 33.010489163], [-94.195494942, 33.044452292], [-94.213419978, 33.038499958], [-94.213415544, 33.08529548], [-94.259722495, 33.147756958], [-94.257390002, 33.191990016], [-94.243049427, 33.208379358], [-94.214069985, 33.197069956], [-94.202222679, 33.21899136], [-94.173732477, 33.222920168], [-94.142003226, 33.189453082], [-94.156761661, 33.174701186], [-94.130577415, 33.136643968], [-94.078335422, 33.145738631], [-94.06767002, 33.133310001], [-94.046469993, 33.146120034], [-93.975556925, 33.128598833], [-93.945289746, 33.149769091], [-93.906049534, 33.13973766]]]}, "properties": {"huc8": "11140304", "name": "Cross Bayou", "states": "AR,LA,TX", "areasqkm": 2017.84, "dc_states": "LA", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-94.769209977, 31.393510017], [-94.760840002, 31.363879984], [-94.698869992, 31.335310015], [-94.67101998, 31.350419964], [-94.603263708, 31.334591348], [-94.588130097, 31.281832583], [-94.559639986, 31.285409988], [-94.513636919, 31.236423249], [-94.476590042, 31.232790004], [-94.478780047, 31.201700003], [-94.460300012, 31.178799979], [-94.402615875, 31.173796312], [-94.438643722, 31.088731481], [-94.422338899, 31.045388433], [-94.50149318, 30.997354579], [-94.509488144, 30.967112423], [-94.523931787, 30.965113596], [-94.522789565, 30.93144518], [-94.546061196, 30.912838091], [-94.540159838, 30.872340847], [-94.599909966, 30.842539959], [-94.629619957, 30.861709971], [-94.651278649, 30.849296231], [-94.666900968, 30.872766383], [-94.72761759, 30.862685767], [-94.731919949, 30.876029995], [-94.796703591, 30.887773723], [-94.85890668, 30.949071208], [-94.918193468, 30.934690545], [-94.947321076, 30.944295346], [-94.956507511, 30.968133795], [-95.009455381, 30.996409924], [-95.023336233, 31.026957075], [-95.051611504, 31.023820214], [-95.158201842, 31.072029476], [-95.172948168, 31.112133927], [-95.196034215, 31.124455229], [-95.175949176, 31.188147197], [-95.221569158, 31.225441935], [-95.219863374, 31.272383658], [-95.249141532, 31.284404257], [-95.259004867, 31.350589792], [-95.327907385, 31.354430915], [-95.367769091, 31.395631923], [-95.290890982, 31.467098273], [-95.229429987, 31.488110015], [-95.227480048, 31.54550003], [-95.151560986, 31.568498449], [-95.1621039, 31.583618019], [-95.143730033, 31.613330013], [-95.089159971, 31.641859995], [-95.096151866, 31.672602124], [-95.05564999, 31.717699984], [-95.022160014, 31.614909989], [-94.989135958, 31.587769452], [-94.980730029, 31.528979986], [-94.949649993, 31.526859948], [-94.896734048, 31.475201628], [-94.825190026, 31.45721002], [-94.79298994, 31.40052], [-94.769209977, 31.393510017]]]}, "properties": {"huc8": "12020002", "name": "Middle Neches", "states": "TX", "areasqkm": 4165.13, "dc_states": "TX", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-97.411779921, 32.954962957], [-97.344133808, 32.937857123], [-97.217453485, 32.965807512], [-97.178520454, 32.944571887], [-97.13657495, 32.948076475], [-97.036873565, 32.903543647], [-96.983115934, 32.849208116], [-96.956433289, 32.858277171], [-96.937906532, 32.810433605], [-96.89820654, 32.798287348], [-96.924646175, 32.778625927], [-96.90099708, 32.735824901], [-96.924207977, 32.70460771], [-96.909102223, 32.667240937], [-96.955602861, 32.646961634], [-96.94997051, 32.606038028], [-97.008566838, 32.437975573], [-97.028701796, 32.41868513], [-97.066018777, 32.407471909], [-97.074164518, 32.426038029], [-97.113142562, 32.417178201], [-97.146858549, 32.437598195], [-97.16442009, 32.410822955], [-97.29349189, 32.458485232], [-97.333587733, 32.438705179], [-97.402528025, 32.476914103], [-97.453540572, 32.457030369], [-97.473314908, 32.488033808], [-97.578099805, 32.494628165], [-97.601231461, 32.529171451], [-97.672470872, 32.557212084], [-97.694628054, 32.632280511], [-97.738196415, 32.650097101], [-97.733454607, 32.676759166], [-97.770319184, 32.696493333], [-97.836711744, 32.777382706], [-97.879703598, 32.79855706], [-97.888207037, 32.853452659], [-97.866901519, 32.895212329], [-97.905310081, 32.92791328], [-97.933510388, 32.990523157], [-97.901470924, 33.004915088], [-97.876556429, 32.991663289], [-97.830488041, 33.003697496], [-97.762349512, 32.959597928], [-97.7499215, 32.923323632], [-97.722743851, 32.916811822], [-97.701578842, 32.875904732], [-97.589593703, 32.881994339], [-97.554068213, 32.858507551], [-97.477250421, 32.878822532], [-97.427267245, 32.866678006], [-97.401668207, 32.905331676], [-97.411779921, 32.954962957]]]}, "properties": {"huc8": "12030102", "name": "Lower West Fork Trinity", "states": "TX", "areasqkm": 3921.41, "dc_states": "TX", "cluster_count": 1, "data_center_count": 7, "clustered_data_center_count": 2}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-97.148680332, 33.712071484], [-97.140196958, 33.685982746], [-97.121507824, 33.688980965], [-97.113132016, 33.709879554], [-97.050405499, 33.686551974], [-96.995170879, 33.713403112], [-96.947626726, 33.655534827], [-96.90250103, 33.655721836], [-96.903030178, 33.639555297], [-96.857395381, 33.609513697], [-96.720120789, 33.592744758], [-96.698282976, 33.562337995], [-96.785454035, 33.235796891], [-96.759783652, 33.1986102], [-96.787799683, 33.133090618], [-96.815955043, 33.113317044], [-96.825755874, 33.042741316], [-96.848401696, 33.000559205], [-96.792103753, 32.886459371], [-96.809981846, 32.854030185], [-96.884314938, 32.837408572], [-96.90403532, 32.814175229], [-96.89820654, 32.798287348], [-96.937906532, 32.810433605], [-96.956433289, 32.858277171], [-96.983115934, 32.849208116], [-97.065001652, 32.914298148], [-97.027244714, 32.955215197], [-96.963442035, 32.960481309], [-96.945073134, 32.981102229], [-96.985301753, 33.004538109], [-97.073706704, 33.011864748], [-97.102889348, 33.045236476], [-97.125128279, 33.04663219], [-97.149319462, 33.086364422], [-97.232740947, 33.131298879], [-97.245680739, 33.171941105], [-97.310460685, 33.193911798], [-97.346078371, 33.259360582], [-97.365843656, 33.268641664], [-97.366394516, 33.295793742], [-97.386964976, 33.30796174], [-97.407811801, 33.350735708], [-97.403452592, 33.383923348], [-97.438196101, 33.40166306], [-97.47196887, 33.449049369], [-97.549873801, 33.486048173], [-97.557181529, 33.532553415], [-97.624552226, 33.598321231], [-97.622398834, 33.625933017], [-97.654907882, 33.655235422], [-97.595021463, 33.695343033], [-97.56635549, 33.68882887], [-97.542188922, 33.718123], [-97.500028682, 33.697547488], [-97.477725557, 33.728770415], [-97.438750884, 33.71974852], [-97.3854591, 33.735243116], [-97.311066169, 33.6982005], [-97.211162335, 33.718925831], [-97.166362443, 33.681864823], [-97.148680332, 33.712071484]]]}, "properties": {"huc8": "12030103", "name": "Elm Fork Trinity", "states": "TX", "areasqkm": 4813.39, "dc_states": "TX", "cluster_count": 1, "data_center_count": 5, "clustered_data_center_count": 5}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-97.676937712, 33.65879], [-97.622398834, 33.625933017], [-97.624552226, 33.598321231], [-97.557181529, 33.532553415], [-97.549873801, 33.486048173], [-97.47196887, 33.449049369], [-97.438196101, 33.40166306], [-97.403452592, 33.383923348], [-97.407811801, 33.350735708], [-97.386964976, 33.30796174], [-97.366394516, 33.295793742], [-97.365843656, 33.268641664], [-97.346078371, 33.259360582], [-97.310460685, 33.193911798], [-97.245680739, 33.171941105], [-97.232740947, 33.131298879], [-97.149319462, 33.086364422], [-97.125128279, 33.04663219], [-97.102889348, 33.045236476], [-97.073706704, 33.011864748], [-96.985301753, 33.004538109], [-96.940560922, 32.971854084], [-97.027244714, 32.955215197], [-97.064956392, 32.916538691], [-97.217453485, 32.965807512], [-97.344133808, 32.937857123], [-97.411779921, 32.954962957], [-97.418969949, 33.004726335], [-97.472226863, 33.052491512], [-97.467965367, 33.103804645], [-97.505902923, 33.127803459], [-97.50854526, 33.152661794], [-97.546593693, 33.161559108], [-97.586592562, 33.233928154], [-97.61862524, 33.3669465], [-97.640699634, 33.378449954], [-97.637752911, 33.404144503], [-97.680981982, 33.433413493], [-97.677174831, 33.45360809], [-97.710605693, 33.482291542], [-97.711240624, 33.502451713], [-97.755146196, 33.521254114], [-97.7525338, 33.53652352], [-97.835075121, 33.600729805], [-97.818395939, 33.62980272], [-97.768120816, 33.638785284], [-97.755947966, 33.659263699], [-97.73165559, 33.634887608], [-97.676937712, 33.65879]]]}, "properties": {"huc8": "12030104", "name": "Denton", "states": "TX", "areasqkm": 1863.31, "dc_states": "TX", "cluster_count": 1, "data_center_count": 8, "clustered_data_center_count": 8}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-96.778527209, 33.135095439], [-96.762501614, 33.100996327], [-96.777713865, 33.027624577], [-96.687515894, 32.909407848], [-96.662283098, 32.832284493], [-96.669443719, 32.788939732], [-96.596013281, 32.718688359], [-96.578784944, 32.67759209], [-96.483907978, 32.570795807], [-96.49963606, 32.53646733], [-96.482848299, 32.508246366], [-96.500645298, 32.496755584], [-96.474393562, 32.506675892], [-96.47121961, 32.587976624], [-96.395474011, 32.617341973], [-96.36987263, 32.573395607], [-96.382417913, 32.521687244], [-96.356839342, 32.499708879], [-96.341564564, 32.456242929], [-96.322236798, 32.448704494], [-96.325195671, 32.433189631], [-96.287189234, 32.385629259], [-96.200921311, 32.318784949], [-96.175616189, 32.266931255], [-96.129441957, 32.236067391], [-96.073788686, 32.127485274], [-96.088380077, 32.076402823], [-96.07202357, 32.107994705], [-96.043610499, 32.104960156], [-96.005037033, 32.136258068], [-95.898245581, 32.156379192], [-95.8923031, 32.122283671], [-95.93190677, 32.10080778], [-95.905318714, 32.049578853], [-95.927045119, 32.013210028], [-96.05840332, 31.95755331], [-96.088720027, 31.988958021], [-96.066630308, 32.010365071], [-96.074285406, 32.028467152], [-96.176831116, 32.076681278], [-96.221684612, 32.064253002], [-96.289654683, 32.120038567], [-96.325255882, 32.11762411], [-96.384318502, 32.161818549], [-96.417904667, 32.234255717], [-96.508408104, 32.259460595], [-96.536859516, 32.30502208], [-96.571722822, 32.292108395], [-96.659707517, 32.370142585], [-96.683712298, 32.360221044], [-96.822803246, 32.415042601], [-96.88610829, 32.457195619], [-96.891016976, 32.49655014], [-96.974495227, 32.553852809], [-96.949262809, 32.60888991], [-96.955602861, 32.646961634], [-96.908421282, 32.670180049], [-96.924207977, 32.70460771], [-96.90099708, 32.735824901], [-96.92431451, 32.779424544], [-96.898239448, 32.79620072], [-96.90403532, 32.814175229], [-96.884314938, 32.837408572], [-96.796795301, 32.868899364], [-96.802524155, 32.921857705], [-96.848401696, 33.000559205], [-96.825755874, 33.042741316], [-96.815451995, 33.114396245], [-96.778527209, 33.135095439]]]}, "properties": {"huc8": "12030105", "name": "Upper Trinity", "states": "TX", "areasqkm": 3547.53, "dc_states": "TX", "cluster_count": 2, "data_center_count": 37, "clustered_data_center_count": 37}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-96.249339919, 33.405390036], [-96.217178066, 33.319050846], [-96.238170489, 33.303089662], [-96.246989975, 33.24308002], [-96.293506002, 33.235005775], [-96.340078754, 33.201487192], [-96.33403996, 33.118439994], [-96.354662587, 33.105984644], [-96.376996707, 33.046883891], [-96.371552411, 33.001308962], [-96.413816526, 32.906875541], [-96.43054753, 32.74597743], [-96.401469215, 32.71375112], [-96.391865864, 32.621281012], [-96.47121961, 32.587976624], [-96.474393562, 32.506675892], [-96.500645298, 32.496755584], [-96.482848299, 32.508246366], [-96.49963606, 32.53646733], [-96.483909207, 32.570798184], [-96.578784944, 32.67759209], [-96.596013281, 32.718688359], [-96.669443719, 32.788939732], [-96.662283098, 32.832284493], [-96.687515894, 32.909407848], [-96.777713865, 33.027624577], [-96.762501614, 33.100996327], [-96.767764441, 33.132784301], [-96.789784145, 33.150543198], [-96.759783652, 33.1986102], [-96.785454035, 33.235796891], [-96.751099577, 33.341252945], [-96.753390957, 33.380831484], [-96.734322788, 33.389026176], [-96.723809902, 33.431066467], [-96.726833294, 33.483268472], [-96.708221416, 33.499277977], [-96.697278134, 33.554836156], [-96.686938306, 33.536837686], [-96.64539781, 33.530729617], [-96.619972733, 33.493056005], [-96.60079312, 33.521943223], [-96.56097573, 33.504876292], [-96.547977033, 33.518675488], [-96.514819096, 33.509340359], [-96.438289983, 33.522029965], [-96.371210037, 33.443539999], [-96.351739982, 33.449929947], [-96.322885057, 33.421163185], [-96.249339919, 33.405390036]]]}, "properties": {"huc8": "12030106", "name": "East Fork Trinity", "states": "TX", "areasqkm": 3375.35, "dc_states": "TX", "cluster_count": 1, "data_center_count": 26, "clustered_data_center_count": 26}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-95.541092461, 30.702806428], [-95.494853624, 30.646051707], [-95.475473831, 30.593590071], [-95.521661462, 30.550993437], [-95.504553512, 30.528178781], [-95.509281625, 30.503954572], [-95.474877713, 30.462686833], [-95.473109983, 30.447560024], [-95.496090031, 30.43552999], [-95.441377159, 30.417122358], [-95.355549993, 30.354469956], [-95.338469992, 30.316460035], [-95.35429996, 30.244290065], [-95.330470185, 30.154410269], [-95.256212017, 30.131416136], [-95.209307797, 30.07239638], [-95.139299148, 30.042050458], [-95.089079961, 30.041889977], [-95.125260841, 29.940697969], [-95.114794492, 29.923963523], [-95.169306796, 29.911097825], [-95.219683319, 29.933786696], [-95.188734328, 29.975971042], [-95.191611139, 29.994977328], [-95.252505254, 29.984558277], [-95.267744785, 30.004971092], [-95.305805097, 30.010883518], [-95.312348455, 30.020651922], [-95.263632433, 30.032384098], [-95.400234887, 30.122477318], [-95.469164845, 30.20433038], [-95.50481345, 30.22417966], [-95.514240029, 30.25414], [-95.567089862, 30.23344238], [-95.585726754, 30.240771705], [-95.599241477, 30.220769694], [-95.691929994, 30.229389937], [-95.732318304, 30.267646223], [-95.84826444, 30.316758013], [-95.897263936, 30.362966965], [-95.916869967, 30.360440034], [-95.96508633, 30.422568743], [-95.933165459, 30.492607202], [-95.961540538, 30.523955974], [-95.92649405, 30.572620308], [-95.936894632, 30.59787903], [-95.899831396, 30.637136796], [-95.907918637, 30.653505581], [-95.858703552, 30.6600972], [-95.831323835, 30.735570886], [-95.751850978, 30.773863448], [-95.70559305, 30.745408324], [-95.603451764, 30.753417438], [-95.563627054, 30.73061226], [-95.57687611, 30.721401922], [-95.566056071, 30.708006459], [-95.541092461, 30.702806428]]]}, "properties": {"huc8": "12040101", "name": "West Fork San Jacinto", "states": "TX", "areasqkm": 2801.38, "dc_states": "TX", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-95.263632433, 30.032384098], [-95.353357241, 29.995583298], [-95.423167111, 29.985224958], [-95.446548345, 30.020966227], [-95.508854947, 29.978346922], [-95.571860174, 29.973645312], [-95.653433947, 29.93807467], [-95.673292786, 29.952103345], [-95.728051488, 29.935536577], [-95.764773463, 29.946290065], [-95.829292587, 29.926222283], [-95.831399873, 29.905068587], [-95.868549878, 29.879621167], [-95.955469515, 29.91119252], [-95.952596885, 29.93262094], [-95.980550036, 29.955280011], [-95.967149743, 29.994632517], [-95.987919945, 30.071779978], [-95.983741481, 30.087556182], [-95.958543315, 30.087891113], [-95.945339859, 30.119996457], [-95.980350005, 30.202789971], [-95.915627695, 30.27408535], [-95.910983012, 30.334860238], [-95.928674239, 30.35637319], [-95.897263936, 30.362966965], [-95.861089982, 30.324480004], [-95.732318304, 30.267646223], [-95.691929994, 30.229389937], [-95.599241477, 30.220769694], [-95.585726754, 30.240771705], [-95.567089862, 30.23344238], [-95.514240029, 30.25414], [-95.50481345, 30.22417966], [-95.469164845, 30.20433038], [-95.400234887, 30.122477318], [-95.263632433, 30.032384098]]]}, "properties": {"huc8": "12040102", "name": "Spring", "states": "TX", "areasqkm": 1960.24, "dc_states": "TX", "cluster_count": 1, "data_center_count": 6, "clustered_data_center_count": 5}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-95.312348455, 30.020651922], [-95.252505254, 29.984558277], [-95.191611139, 29.994977328], [-95.188734328, 29.975971042], [-95.219683319, 29.933786696], [-95.169306796, 29.911097825], [-95.114794492, 29.923963523], [-95.125260841, 29.940697969], [-95.096908552, 30.003995166], [-95.058043677, 29.987050961], [-95.036044325, 29.901076929], [-95.045137298, 29.863912598], [-94.97877476, 29.822166776], [-94.948300098, 29.763570904], [-94.983016809, 29.682017322], [-95.061181484, 29.672255639], [-95.073717391, 29.681929689], [-95.06628694, 29.695687853], [-95.104286251, 29.704763962], [-95.16463311, 29.681060104], [-95.196032855, 29.621286294], [-95.246679002, 29.620242725], [-95.248677511, 29.630933595], [-95.329093874, 29.609068273], [-95.373695189, 29.616733184], [-95.424910601, 29.588178076], [-95.518069473, 29.580074783], [-95.548688751, 29.615691476], [-95.670305683, 29.678289757], [-95.699267747, 29.667266003], [-95.820876942, 29.696683324], [-95.873143113, 29.743783855], [-95.920597394, 29.753115395], [-95.920921073, 29.791254007], [-95.959760328, 29.874158586], [-95.955469515, 29.91119252], [-95.868549878, 29.879621167], [-95.831399873, 29.905068587], [-95.829292587, 29.926222283], [-95.764773463, 29.946290065], [-95.728051488, 29.935536577], [-95.673292786, 29.952103345], [-95.653433947, 29.93807467], [-95.571860174, 29.973645312], [-95.508854947, 29.978346922], [-95.446548345, 30.020966227], [-95.423167111, 29.985224958], [-95.353357241, 29.995583298], [-95.312348455, 30.020651922]]]}, "properties": {"huc8": "12040104", "name": "Buffalo-San Jacinto", "states": "TX", "areasqkm": 3062.54, "dc_states": "TX", "cluster_count": 1, "data_center_count": 5, "clustered_data_center_count": 5}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-98.732828624, 33.42080107], [-98.7267551, 33.397930177], [-98.699519965, 33.399514852], [-98.694796327, 33.362933427], [-98.608008319, 33.365330824], [-98.583647967, 33.329522589], [-98.591495038, 33.301436982], [-98.576490375, 33.278909594], [-98.544354324, 33.285861185], [-98.531134243, 33.254473243], [-98.502586567, 33.265565662], [-98.499752755, 33.245729333], [-98.462406836, 33.237902563], [-98.456583377, 33.216935907], [-98.397411626, 33.227865664], [-98.371375017, 33.20311266], [-98.298426116, 33.205248441], [-98.189297129, 33.161426807], [-98.126926371, 33.111080706], [-98.099859636, 33.119389289], [-98.074362354, 33.110105993], [-98.062697436, 33.083566205], [-98.004794246, 33.068333801], [-97.98754321, 33.026819527], [-97.941589383, 33.001543669], [-97.905310081, 32.92791328], [-97.869604375, 32.902480026], [-97.888207037, 32.853452659], [-97.879703598, 32.79855706], [-97.836711744, 32.777382706], [-97.770319184, 32.696493333], [-97.733454607, 32.676759166], [-97.738196415, 32.650097101], [-97.694628054, 32.632280511], [-97.672470872, 32.557212084], [-97.601231461, 32.529171451], [-97.571424477, 32.492491918], [-97.55623549, 32.427816847], [-97.569065358, 32.40709241], [-97.548181174, 32.367925151], [-97.556085837, 32.301646957], [-97.649646587, 32.256100041], [-97.712565759, 32.284016205], [-97.75524018, 32.349715913], [-97.794071001, 32.355829182], [-97.805466465, 32.382266037], [-97.841391474, 32.383059024], [-97.896327257, 32.413118559], [-97.939258991, 32.404923413], [-98.042124133, 32.457647062], [-98.173532702, 32.465590789], [-98.205484085, 32.43573184], [-98.235791354, 32.442374381], [-98.232751562, 32.426753207], [-98.279947765, 32.39772794], [-98.290042287, 32.367085396], [-98.31744884, 32.359681966], [-98.319979971, 32.341005102], [-98.36217334, 32.314415939], [-98.42879123, 32.348169097], [-98.459318504, 32.334659187], [-98.493292934, 32.345569149], [-98.50438593, 32.327077603], [-98.522082199, 32.339846073], [-98.565121078, 32.318491808], [-98.61706265, 32.401020935], [-98.612233597, 32.426829154], [-98.696198188, 32.455828665], [-98.748546076, 32.613784855], [-98.810650267, 32.649746218], [-98.804787472, 32.670389353], [-98.83884994, 32.7223525], [-98.82401107, 32.768035815], [-98.831796802, 32.798568092], [-98.774075786, 32.821418212], [-98.779775378, 32.841684466], [-98.755770593, 32.898384692], [-98.701852368, 32.904293967], [-98.708408563, 32.932893041], [-98.681248845, 32.951558105], [-98.679108245, 32.979543933], [-98.647922453, 32.991834676], [-98.691461327, 33.022026406], [-98.664414144, 33.030496034], [-98.660134784, 33.098832527], [-98.677465121, 33.113623479], [-98.668313355, 33.142526673], [-98.6999313, 33.162241337], [-98.693879827, 33.1939072], [-98.714934629, 33.201862547], [-98.730176828, 33.233416032], [-98.732654725, 33.273333878], [-98.760105453, 33.292052593], [-98.773058619, 33.283008108], [-98.844632681, 33.363885081], [-98.831588368, 33.390959173], [-98.785741233, 33.403267792], [-98.766032885, 33.428103591], [-98.753009473, 33.413957905], [-98.732828624, 33.42080107]]]}, "properties": {"huc8": "12060201", "name": "Middle Brazos-Palo Pinto", "states": "TX", "areasqkm": 8163.23, "dc_states": "TX", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-96.845575346, 30.738143834], [-96.918068541, 30.643655497], [-97.000834346, 30.676043672], [-97.014214235, 30.760526154], [-97.085992089, 30.757985162], [-97.112927579, 30.741325567], [-97.143315683, 30.757830044], [-97.268495697, 30.765706153], [-97.286396334, 30.784860194], [-97.296363588, 30.772858476], [-97.343568726, 30.794389473], [-97.45234397, 30.745108718], [-97.502958606, 30.764746032], [-97.540520941, 30.804016048], [-97.609254695, 30.809199959], [-97.594258364, 30.851387836], [-97.531812323, 30.884914695], [-97.525458385, 30.908177212], [-97.421736502, 30.932998564], [-97.411508826, 30.979452465], [-97.391018371, 30.988554053], [-97.375183047, 31.038341901], [-97.359123978, 31.03794419], [-97.342733054, 31.124011579], [-97.356959636, 31.126635806], [-97.361647203, 31.167455782], [-97.335210085, 31.200404204], [-97.368303983, 31.237885714], [-97.369990495, 31.283787041], [-97.353181328, 31.316349062], [-97.324333199, 31.308741442], [-97.271933931, 31.250296217], [-97.230673169, 31.153012341], [-97.185161345, 31.152264238], [-97.159621087, 31.127931026], [-97.141262508, 31.135484288], [-97.089268597, 31.046595255], [-97.008811458, 31.00962082], [-97.000602396, 31.025031178], [-96.980309574, 31.01672452], [-96.971899214, 30.98746541], [-96.90867511, 30.96895787], [-96.902003344, 30.951060571], [-96.864843328, 30.979474502], [-96.820960982, 30.966190447], [-96.807838703, 30.977903974], [-96.803228604, 30.936506402], [-96.712364717, 30.89031142], [-96.700621643, 30.855049769], [-96.677632129, 30.842006842], [-96.698309954, 30.833701707], [-96.703621261, 30.812003336], [-96.73287075, 30.820478924], [-96.726764516, 30.809231416], [-96.756511398, 30.789903038], [-96.772493966, 30.735506109], [-96.796643932, 30.726180972], [-96.845575346, 30.738143834]]]}, "properties": {"huc8": "12070204", "name": "Little", "states": "TX", "areasqkm": 2598.58, "dc_states": "TX", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-97.609609701, 30.810020926], [-97.540520941, 30.804016048], [-97.502958606, 30.764746032], [-97.45234397, 30.745108718], [-97.343568726, 30.794389473], [-97.296363588, 30.772858476], [-97.286396334, 30.784860194], [-97.268495697, 30.765706153], [-97.143315683, 30.757830044], [-97.112927579, 30.741325567], [-97.085992089, 30.757985162], [-97.014214235, 30.760526154], [-97.002845595, 30.681302298], [-97.071130367, 30.605328504], [-97.098537052, 30.595735726], [-97.121653217, 30.552502863], [-97.13723356, 30.558142693], [-97.219380124, 30.512974801], [-97.237975612, 30.483466033], [-97.35565021, 30.404297468], [-97.436242677, 30.459534034], [-97.51078313, 30.484449877], [-97.547481328, 30.47496126], [-97.576717469, 30.501686822], [-97.652477465, 30.474148813], [-97.685119149, 30.480280091], [-97.68895989, 30.461574915], [-97.748460811, 30.449219573], [-97.760632168, 30.429918602], [-97.845641485, 30.469561943], [-97.871637443, 30.527950046], [-97.861855527, 30.543823157], [-97.891710769, 30.566680614], [-97.927008999, 30.566764528], [-97.915462484, 30.604476687], [-97.953285929, 30.628967863], [-97.983696857, 30.608587946], [-98.036188918, 30.612551235], [-98.068534262, 30.648915315], [-98.146363267, 30.678489578], [-98.147980992, 30.71021756], [-98.20771789, 30.769970998], [-98.211100818, 30.791353517], [-98.267057046, 30.820595052], [-98.23107199, 30.849176519], [-98.241136702, 30.884317714], [-98.228824298, 30.9110177], [-98.198106198, 30.918903955], [-98.131416004, 30.877869323], [-98.026330109, 30.856642552], [-97.963862132, 30.852287716], [-97.941849476, 30.892530477], [-97.845776009, 30.857084163], [-97.775826007, 30.794994094], [-97.715270506, 30.810844047], [-97.624065667, 30.792855565], [-97.609609701, 30.810020926]]]}, "properties": {"huc8": "12070205", "name": "San Gabriel", "states": "TX", "areasqkm": 3539.87, "dc_states": "TX", "cluster_count": 1, "data_center_count": 1, "clustered_data_center_count": 1}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-98.267057046, 30.820595052], [-98.211100818, 30.791353517], [-98.20771789, 30.769970998], [-98.147980992, 30.71021756], [-98.146363267, 30.678489578], [-98.068534262, 30.648915315], [-98.036188918, 30.612551235], [-97.983696857, 30.608587946], [-97.953285929, 30.628967863], [-97.915462484, 30.604476687], [-97.927008999, 30.566764528], [-97.891710769, 30.566680614], [-97.863533488, 30.545676502], [-97.862674412, 30.491892878], [-97.81279864, 30.447112837], [-97.760632168, 30.429918602], [-97.748460811, 30.449219573], [-97.669579863, 30.455600029], [-97.644020263, 30.36933748], [-97.622998095, 30.355911062], [-97.641403935, 30.314793664], [-97.625377525, 30.299217669], [-97.640931866, 30.284393344], [-97.623195592, 30.242553817], [-97.590633455, 30.232843168], [-97.593260702, 30.194420391], [-97.645312843, 30.158260907], [-97.712747776, 30.158750163], [-97.718862213, 30.135868765], [-97.763199496, 30.105030961], [-97.768095418, 30.080579274], [-97.819137642, 30.079778681], [-97.919030133, 30.023609101], [-97.998996008, 30.052965521], [-98.057785802, 30.052630733], [-98.089130057, 30.078235188], [-98.139417956, 30.086837454], [-98.141905822, 30.10601768], [-98.210544, 30.095859333], [-98.231430427, 30.123142955], [-98.297671044, 30.136450788], [-98.255553106, 30.179031183], [-98.187445758, 30.208356095], [-98.188507587, 30.225270351], [-98.159721318, 30.230125663], [-98.157095783, 30.251864512], [-98.111790724, 30.289185113], [-98.084154604, 30.295651225], [-98.090283627, 30.314642356], [-98.053875691, 30.402724361], [-98.076704249, 30.453419898], [-98.098729938, 30.458876673], [-98.119514248, 30.438883424], [-98.227039485, 30.451501587], [-98.296527019, 30.428060937], [-98.36866114, 30.453590411], [-98.333030709, 30.548441767], [-98.353746172, 30.667745821], [-98.301273091, 30.70844113], [-98.307487857, 30.733963324], [-98.262200996, 30.75808316], [-98.280898611, 30.777027194], [-98.267057046, 30.820595052]]]}, "properties": {"huc8": "12090205", "name": "Austin-Travis Lakes", "states": "TX", "areasqkm": 3213.91, "dc_states": "TX", "cluster_count": 1, "data_center_count": 16, "clustered_data_center_count": 16}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-97.322476697, 30.417120297], [-97.300610036, 30.389850037], [-97.272599974, 30.391869981], [-97.26655568, 30.348770352], [-97.228319932, 30.32433912], [-97.246696038, 30.29370723], [-97.208726617, 30.234212693], [-97.15156995, 30.205490002], [-97.087258867, 30.21529851], [-97.026459025, 30.180434541], [-97.001293686, 30.19070886], [-96.918853507, 30.175476934], [-96.913018545, 30.188981536], [-96.866509328, 30.176698058], [-96.845630886, 30.189302997], [-96.766110033, 30.141100036], [-96.716028688, 30.144892084], [-96.689185884, 30.165444431], [-96.647070017, 30.145940027], [-96.656599957, 30.132369974], [-96.6395612, 30.121675236], [-96.62179702, 30.043207315], [-96.587742765, 30.014282447], [-96.588175472, 29.992323196], [-96.568192105, 29.984709425], [-96.526418227, 29.90070322], [-96.495468748, 29.89045479], [-96.490605865, 29.830063135], [-96.455827023, 29.803879589], [-96.448959026, 29.754887866], [-96.523694534, 29.699184059], [-96.56833582, 29.709732904], [-96.615660018, 29.692810028], [-96.639090001, 29.704409999], [-96.740160012, 29.68038996], [-96.750647104, 29.697177674], [-96.77714996, 29.691749981], [-96.802416094, 29.728867658], [-96.795950016, 29.747149969], [-96.830277586, 29.777678198], [-96.941590029, 29.821820017], [-97.018165969, 29.79248792], [-97.092175162, 29.708412014], [-97.147033621, 29.758835952], [-97.169273793, 29.754504845], [-97.220530853, 29.793018614], [-97.254600002, 29.883290031], [-97.281650023, 29.906382675], [-97.376110002, 29.853159984], [-97.409053427, 29.880307319], [-97.470471489, 29.877703256], [-97.518751719, 29.919556088], [-97.59043074, 29.926728247], [-97.634663984, 29.972748299], [-97.628470227, 30.001733903], [-97.684963137, 30.003827085], [-97.700475909, 30.0536018], [-97.762389743, 30.064226472], [-97.763199496, 30.105030961], [-97.718862213, 30.135868765], [-97.712747776, 30.158750163], [-97.643828667, 30.158776063], [-97.587070738, 30.205204399], [-97.590633455, 30.232843168], [-97.623195592, 30.242553817], [-97.640773944, 30.283876014], [-97.625377525, 30.299217669], [-97.641403935, 30.314793664], [-97.622998095, 30.355911062], [-97.644020263, 30.36933748], [-97.669160006, 30.426559964], [-97.664541635, 30.449103152], [-97.689012573, 30.46124006], [-97.687947917, 30.478990741], [-97.652477465, 30.474148813], [-97.576717469, 30.501686822], [-97.547481328, 30.47496126], [-97.51078313, 30.484449877], [-97.436242677, 30.459534034], [-97.360743928, 30.403731027], [-97.322476697, 30.417120297]]]}, "properties": {"huc8": "12090301", "name": "Lower Colorado-Cummins", "states": "TX", "areasqkm": 5688.12, "dc_states": "TX", "cluster_count": 1, "data_center_count": 1, "clustered_data_center_count": 1}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-98.220410299, 29.290616743], [-98.24189212, 29.2769722], [-98.23272736, 29.248158811], [-98.255867889, 29.22251055], [-98.289285742, 29.207498664], [-98.353560454, 29.214462178], [-98.391486671, 29.148412677], [-98.415095117, 29.151125559], [-98.427596432, 29.169024841], [-98.410515916, 29.17743452], [-98.409760151, 29.23743676], [-98.458363573, 29.263699288], [-98.476643446, 29.321968021], [-98.53750375, 29.323974934], [-98.562808898, 29.387917087], [-98.614527856, 29.442617122], [-98.601024574, 29.505897784], [-98.575127919, 29.523899704], [-98.593063558, 29.580057402], [-98.582669445, 29.629498905], [-98.608883166, 29.649568882], [-98.617537832, 29.688855498], [-98.648397117, 29.723995627], [-98.620003429, 29.731587682], [-98.552091795, 29.697588816], [-98.437951364, 29.708199715], [-98.391960997, 29.657464796], [-98.370259792, 29.656846009], [-98.37712662, 29.597337734], [-98.350206215, 29.5672595], [-98.365389711, 29.524395116], [-98.349993185, 29.480639258], [-98.363381662, 29.468371333], [-98.344960763, 29.422778417], [-98.261974375, 29.418892866], [-98.261118587, 29.382695638], [-98.223493103, 29.339154771], [-98.23617575, 29.329208476], [-98.220410299, 29.290616743]]]}, "properties": {"huc8": "12100301", "name": "Upper San Antonio", "states": "TX", "areasqkm": 1312.77, "dc_states": "TX", "cluster_count": 1, "data_center_count": 5, "clustered_data_center_count": 5}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-98.929068604, 29.850400458], [-98.857489637, 29.803885181], [-98.857635011, 29.769589079], [-98.780941582, 29.739250563], [-98.798475321, 29.713001967], [-98.756549624, 29.684514057], [-98.669116839, 29.725836101], [-98.648397117, 29.723995627], [-98.617537832, 29.688855498], [-98.608883166, 29.649568882], [-98.582669445, 29.629498905], [-98.593063558, 29.580057402], [-98.573146112, 29.539010067], [-98.608632356, 29.490092118], [-98.614527856, 29.442617122], [-98.562808898, 29.387917087], [-98.53750375, 29.323974934], [-98.476643446, 29.321968021], [-98.458363573, 29.263699288], [-98.410417224, 29.238345763], [-98.410515916, 29.17743452], [-98.471236383, 29.16780262], [-98.485047218, 29.185666222], [-98.581168189, 29.176253401], [-98.583262417, 29.189725715], [-98.602518271, 29.189972769], [-98.656676673, 29.151730402], [-98.710576084, 29.200095359], [-98.742616358, 29.204024829], [-98.778479926, 29.279326176], [-98.866574421, 29.29063488], [-98.882241199, 29.333822683], [-98.957209382, 29.385411565], [-98.964846626, 29.404886766], [-98.92028086, 29.469661379], [-98.950210369, 29.496967176], [-98.942098818, 29.522761595], [-98.984532956, 29.526638424], [-99.024150403, 29.571909469], [-99.052472038, 29.574743415], [-99.048291633, 29.619256143], [-99.07571926, 29.666879854], [-99.115146555, 29.661150594], [-99.147363999, 29.687009415], [-99.193718236, 29.672975492], [-99.317433085, 29.747528164], [-99.338003447, 29.747525791], [-99.337028112, 29.731134311], [-99.358919033, 29.719398505], [-99.372991385, 29.735529627], [-99.408687923, 29.725081293], [-99.449354785, 29.736740208], [-99.471294228, 29.762481868], [-99.465241352, 29.783523425], [-99.514776693, 29.79844269], [-99.522969595, 29.825082713], [-99.571790603, 29.861006462], [-99.587467779, 29.918215545], [-99.507228739, 29.899906659], [-99.361373806, 29.948062067], [-99.343457458, 29.941389087], [-99.323550614, 29.960675345], [-99.263312854, 29.937722143], [-99.224260265, 29.904544074], [-99.23036477, 29.878455442], [-99.177816112, 29.84957105], [-99.106668574, 29.863139336], [-99.076614533, 29.852255753], [-99.040123594, 29.877198213], [-98.988673472, 29.866465193], [-98.986336117, 29.847988729], [-98.929068604, 29.850400458]]]}, "properties": {"huc8": "12100302", "name": "Medina", "states": "TX", "areasqkm": 3491.9, "dc_states": "TX", "cluster_count": 1, "data_center_count": 32, "clustered_data_center_count": 32}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-105.764189007, 35.794921783], [-105.753123285, 35.760870127], [-105.796275319, 35.705120382], [-105.807006391, 35.632413504], [-105.775892021, 35.596611825], [-105.770891936, 35.550979373], [-105.720132799, 35.544568953], [-105.682608129, 35.46803951], [-105.624846579, 35.432338712], [-105.675379516, 35.410116103], [-105.676999153, 35.346261857], [-105.768120201, 35.322981832], [-105.750976772, 35.275936064], [-105.773103716, 35.25743666], [-105.774554135, 35.220986065], [-105.89507729, 35.218455938], [-105.929753663, 35.259559598], [-105.951219143, 35.253825334], [-105.987469079, 35.282548693], [-106.018526079, 35.286020783], [-106.043610336, 35.265175697], [-106.086135508, 35.25750142], [-106.113428774, 35.27219325], [-106.187242033, 35.25256997], [-106.209766599, 35.216315356], [-106.199718478, 35.204207596], [-106.212854746, 35.196565627], [-106.219931307, 35.211842355], [-106.256086233, 35.182992157], [-106.277599427, 35.183832613], [-106.24636239, 35.135079261], [-106.281855734, 35.112720486], [-106.313480618, 35.14037585], [-106.413126859, 35.154490766], [-106.414957407, 35.182167378], [-106.45189515, 35.216815081], [-106.437753412, 35.27715334], [-106.447999838, 35.312007604], [-106.521751168, 35.375912306], [-106.555143717, 35.455258367], [-106.589949134, 35.46373236], [-106.587620052, 35.548899469], [-106.62483466, 35.602901516], [-106.612030806, 35.638447551], [-106.630766067, 35.643919912], [-106.632708286, 35.679289815], [-106.593410346, 35.726858405], [-106.539199921, 35.739342538], [-106.523860487, 35.801725117], [-106.420222911, 35.858262566], [-106.401017191, 35.887637285], [-106.223028185, 35.859300641], [-106.166522087, 35.861816821], [-106.153668733, 35.878989486], [-106.112710329, 35.834212123], [-106.038692327, 35.809991179], [-105.983145058, 35.740282265], [-105.914494934, 35.719220159], [-105.823340835, 35.717650411], [-105.764189007, 35.794921783]]]}, "properties": {"huc8": "13020201", "name": "Rio Grande-Santa Fe", "states": "NM", "areasqkm": 4847.54, "dc_states": "NM", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-106.538979414, 35.386540142], [-106.447999838, 35.312007604], [-106.437753412, 35.27715334], [-106.45189515, 35.216815081], [-106.414957407, 35.182167378], [-106.413126859, 35.154490766], [-106.313480618, 35.14037585], [-106.278889569, 35.109087077], [-106.29136041, 35.070882436], [-106.327459665, 35.041265663], [-106.317741307, 34.903969612], [-106.361528459, 34.868463572], [-106.344295146, 34.853215333], [-106.346036884, 34.820440796], [-106.400141748, 34.81338301], [-106.428353432, 34.765920546], [-106.403374228, 34.736275193], [-106.404291513, 34.698023435], [-106.429980042, 34.671734866], [-106.446831378, 34.59106731], [-106.402839424, 34.589257147], [-106.256378891, 34.528705116], [-106.209553751, 34.457760211], [-106.261808726, 34.43577009], [-106.254706564, 34.369808014], [-106.310082169, 34.34942999], [-106.345980259, 34.358134534], [-106.435440185, 34.284084495], [-106.459436956, 34.306149955], [-106.530795875, 34.306126382], [-106.546992602, 34.220373358], [-106.681461665, 34.108876939], [-106.688404533, 33.929481561], [-106.697521839, 33.884594614], [-106.717978003, 33.867273594], [-106.715983424, 33.82292005], [-106.700668099, 33.811507906], [-106.717111054, 33.771468813], [-106.695040974, 33.741825188], [-106.786939147, 33.733216549], [-106.791738811, 33.747573966], [-106.834018472, 33.760101671], [-106.861444894, 33.719955529], [-106.867507788, 33.672054524], [-106.974458995, 33.659467543], [-107.055543873, 33.719788665], [-107.101842079, 33.834984328], [-107.173401687, 33.881056155], [-107.197991702, 33.927145238], [-107.1803, 34.054479177], [-107.189915422, 34.137508477], [-107.04345173, 34.173995431], [-107.060728107, 34.196923758], [-107.059252414, 34.261949803], [-107.022562329, 34.2592591], [-106.966017548, 34.293047096], [-106.926560435, 34.296316024], [-106.858817938, 34.271344449], [-106.861090872, 34.299133923], [-106.895122561, 34.313976195], [-106.899101141, 34.349168595], [-106.886002454, 34.387233014], [-106.851414893, 34.392604168], [-106.840936932, 34.376085217], [-106.851767007, 34.547233518], [-106.834091846, 34.563603665], [-106.853591744, 34.643538412], [-106.839554999, 34.705677357], [-106.8684634, 34.78030577], [-106.853710774, 34.831447329], [-106.862525585, 34.864924427], [-106.873283538, 34.882822985], [-106.916805181, 34.891044614], [-106.928134773, 34.923155483], [-106.865721946, 34.987874505], [-106.870104792, 35.074660596], [-106.854991499, 35.100488063], [-106.871919158, 35.125213501], [-106.859551999, 35.220634397], [-106.868886206, 35.265074191], [-106.853872302, 35.411733505], [-106.832959029, 35.418394205], [-106.8081435, 35.400244323], [-106.736246619, 35.409208116], [-106.699346098, 35.361883191], [-106.664970461, 35.354923931], [-106.538979414, 35.386540142]]]}, "properties": {"huc8": "13020203", "name": "Rio Grande-Albuquerque", "states": "NM", "areasqkm": 8328.17, "dc_states": "NM", "cluster_count": 1, "data_center_count": 15, "clustered_data_center_count": 15}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-106.57441974, 32.356821351], [-106.544288668, 32.335782491], [-106.577362034, 32.294440083], [-106.539510878, 32.224311374], [-106.561429444, 32.131487243], [-106.552223894, 32.064981634], [-106.507047149, 32.003880374], [-106.517972711, 31.991790138], [-106.498235288, 31.959273569], [-106.498934897, 31.840716861], [-106.485120344, 31.807092007], [-106.509791163, 31.777096555], [-106.546062004, 31.78723185], [-106.550933838, 31.76864624], [-106.578636168, 31.764719009], [-106.580863951, 31.701078415], [-106.523735046, 31.66996193], [-106.53743744, 31.637248993], [-106.522499084, 31.623548509], [-106.528007508, 31.579313278], [-106.46192971, 31.493743445], [-106.478620848, 31.476510256], [-106.477119444, 31.438472749], [-106.361015319, 31.355466842], [-106.294036864, 31.278182983], [-106.23510291, 31.173196417], [-106.303183518, 31.150539093], [-106.312512886, 31.124245025], [-106.34828067, 31.131956241], [-106.389769618, 31.092090544], [-106.523421854, 31.088259429], [-106.510022566, 31.063691286], [-106.554887463, 31.029704491], [-106.541123151, 30.994341603], [-106.640610051, 30.984026585], [-106.728736694, 30.92301499], [-106.776817661, 30.929753096], [-106.810620219, 30.895706729], [-106.774896097, 30.848313796], [-106.776042744, 30.813477538], [-106.747072804, 30.789164516], [-106.735926927, 30.745441719], [-106.693472469, 30.691742921], [-106.746468946, 30.684392298], [-106.739173153, 30.662341893], [-106.759340101, 30.655414986], [-106.784211778, 30.5983659], [-106.849508475, 30.559677388], [-106.839032746, 30.534054642], [-106.854226276, 30.522882928], [-106.849399827, 30.470209495], [-106.832541187, 30.444511852], [-106.848603921, 30.421470865], [-106.819795545, 30.398297813], [-106.825597864, 30.384906923], [-106.945149706, 30.407306864], [-106.972335238, 30.356470981], [-106.959714647, 30.336108345], [-106.976423094, 30.318384965], [-106.970423731, 30.292450797], [-107.019710848, 30.266841225], [-107.048608967, 30.271835708], [-107.053671772, 30.245469658], [-107.08558287, 30.241840074], [-107.2131053, 30.359051654], [-107.200029302, 30.392092434], [-107.181651802, 30.385664013], [-107.180207139, 30.42882308], [-107.16206668, 30.443075638], [-107.165420319, 30.512630664], [-107.134841459, 30.553349665], [-107.152981739, 30.576621301], [-107.140513813, 30.626383972], [-107.151246018, 30.653792935], [-107.194297738, 30.68962591], [-107.173504728, 30.719983073], [-107.171349948, 30.775814205], [-107.14631725, 30.796952509], [-107.175843475, 30.807456132], [-107.192791915, 30.879937856], [-107.078992338, 30.970094884], [-107.077203841, 30.999879009], [-107.122982008, 31.053962235], [-107.125421707, 31.083267556], [-107.159288212, 31.126343428], [-107.158282619, 31.157402928], [-107.180326113, 31.153580772], [-107.219560198, 31.176125244], [-107.22999008, 31.174903105], [-107.222105385, 31.154638476], [-107.23912479, 31.15509521], [-107.313067849, 31.201081256], [-107.291841673, 31.225648814], [-107.305065524, 31.283798168], [-107.271577697, 31.299235951], [-107.249678642, 31.343429553], [-107.214496787, 31.327590898], [-107.132882522, 31.400642424], [-107.020292755, 31.40561822], [-106.967357033, 31.427913605], [-106.949771034, 31.420710028], [-106.943558026, 31.434883455], [-106.913269605, 31.426243489], [-106.895989673, 31.443717577], [-106.927836753, 31.475022258], [-106.90915553, 31.536644119], [-106.922422438, 31.645047236], [-106.901703664, 31.696606944], [-106.946049425, 31.740277389], [-106.940646897, 31.754121371], [-107.012045416, 31.809555076], [-106.994297835, 31.836938255], [-107.027498606, 31.897044562], [-107.064345571, 31.927056067], [-107.114210788, 31.921814464], [-107.193526033, 31.965268902], [-107.168880973, 32.007873856], [-107.186708812, 32.059761725], [-107.134909335, 32.114540152], [-107.135176513, 32.145493202], [-107.037895653, 32.252216838], [-107.032572183, 32.270214133], [-107.053186986, 32.302556209], [-107.030393187, 32.320439779], [-107.049579028, 32.332873814], [-107.045901897, 32.347127282], [-107.074148449, 32.349288219], [-107.086552385, 32.366714142], [-107.086153332, 32.430052065], [-107.184641157, 32.502683961], [-107.188997362, 32.561842286], [-107.250816974, 32.568273508], [-107.277478102, 32.606317573], [-107.276563261, 32.632436596], [-107.421446923, 32.653668546], [-107.438467328, 32.619811945], [-107.594784353, 32.662053221], [-107.63319603, 32.720191413], [-107.69667909, 32.775839442], [-107.741879736, 32.789446198], [-107.776060258, 32.884280556], [-107.639115039, 32.907827789], [-107.582789336, 32.89186173], [-107.539171372, 32.901646309], [-107.514897439, 32.881427609], [-107.288793895, 32.898182654], [-107.260677579, 32.889694833], [-107.248709087, 32.863723302], [-107.193638924, 32.90593102], [-107.224290702, 32.924188786], [-107.214430395, 32.952869797], [-107.081732425, 32.912228101], [-107.06026173, 32.895564371], [-107.044695619, 32.845969849], [-107.003917787, 32.815063411], [-107.012772742, 32.796090924], [-106.972203735, 32.792560989], [-106.957728836, 32.775957519], [-106.945797983, 32.743320727], [-106.964886877, 32.705460244], [-106.962535027, 32.6531237], [-106.925135348, 32.633311563], [-106.887327645, 32.64047178], [-106.867694858, 32.587860637], [-106.84148598, 32.571548843], [-106.83867124, 32.516257667], [-106.807877662, 32.497137718], [-106.79960266, 32.460180276], [-106.750969592, 32.430470787], [-106.76120207, 32.404702537], [-106.668576989, 32.398167484], [-106.612317982, 32.356904053], [-106.57441974, 32.356821351]]]}, "properties": {"huc8": "13030102", "name": "El Paso-Las Cruces", "states": "MX,NM,TX", "areasqkm": 14293.93, "dc_states": "NM", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-105.964611817, 31.899233941], [-105.884206628, 31.889637182], [-105.881879005, 31.864312695], [-105.85164251, 31.866883651], [-105.837119488, 31.841201657], [-105.844565622, 31.817190299], [-105.784990342, 31.805244161], [-105.761104596, 31.722269131], [-105.771794129, 31.681746345], [-105.750116208, 31.69146973], [-105.738932996, 31.679463166], [-105.758281642, 31.62195673], [-105.678213588, 31.55408767], [-105.692380631, 31.526431708], [-105.658194506, 31.495292452], [-105.645996084, 31.457106767], [-105.624224742, 31.459370632], [-105.610684489, 31.424817697], [-105.561072585, 31.409554922], [-105.537996849, 31.381342534], [-105.508617593, 31.392159399], [-105.443810049, 31.368304022], [-105.409752549, 31.321264545], [-105.321591953, 31.302457849], [-105.390055482, 31.265281143], [-105.38559284, 31.246783228], [-105.433804221, 31.250143261], [-105.424824127, 31.227053244], [-105.440185035, 31.174586485], [-105.477294859, 31.189081746], [-105.493455739, 31.162776033], [-105.515426229, 31.199454765], [-105.592444434, 31.150761488], [-105.642286934, 31.088967145], [-105.64729309, 31.060197831], [-105.713012694, 31.015853882], [-105.736536805, 30.983671547], [-105.700394192, 30.926440001], [-105.665039063, 30.902683258], [-105.67147827, 30.882493972], [-105.693144744, 30.881382229], [-105.714714049, 30.832389831], [-105.704604469, 30.802185563], [-105.787002561, 30.838157654], [-105.816070557, 30.914899826], [-105.918289185, 30.880836486], [-105.951080322, 30.883935928], [-106.031158447, 30.907770156], [-106.057510376, 30.934066773], [-106.104324341, 30.94601822], [-106.127650289, 30.975098553], [-106.155143736, 30.968513489], [-106.148994445, 31.008859635], [-106.215087889, 31.082315446], [-106.205619813, 31.107166289], [-106.245643614, 31.151950836], [-106.239746093, 31.195941924], [-106.294036864, 31.278182983], [-106.383104111, 31.375228507], [-106.477119444, 31.438472749], [-106.478620848, 31.476510256], [-106.46192971, 31.493743445], [-106.528007508, 31.579313278], [-106.522499084, 31.623548509], [-106.53743744, 31.637248993], [-106.523063659, 31.668251037], [-106.564041137, 31.684787751], [-106.583885192, 31.712434771], [-106.578636168, 31.764719009], [-106.550933838, 31.76864624], [-106.546062004, 31.78723185], [-106.49209579, 31.785743214], [-106.501532974, 31.968721234], [-106.473872366, 31.985204152], [-106.36164427, 31.990952961], [-106.293588611, 31.942726962], [-106.254252644, 31.970897041], [-106.194850536, 31.961294375], [-106.142651471, 31.974251055], [-106.117174627, 31.958862387], [-106.098432738, 31.907251922], [-106.048452691, 31.906837955], [-105.999368772, 31.928422859], [-105.964611817, 31.899233941]]]}, "properties": {"huc8": "13040100", "name": "Rio Grande-Fort Quitman", "states": "MX,NM,TX", "areasqkm": 8041.36, "dc_states": "TX", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-103.099060785, 31.374887443], [-103.176706671, 31.334242652], [-103.181527773, 31.284505092], [-103.220121743, 31.248742497], [-103.221362, 31.166660055], [-103.263248444, 31.156851956], [-103.294098452, 31.125694425], [-103.285732377, 31.080121524], [-103.334967559, 30.957842032], [-103.300642971, 30.839753912], [-103.326808, 30.799310064], [-103.411558442, 30.775711531], [-103.423351975, 30.792768832], [-103.401307875, 30.854349574], [-103.409022503, 30.923342173], [-103.366975617, 30.936563432], [-103.335559871, 30.979468903], [-103.354578639, 31.031386938], [-103.351612967, 31.109968087], [-103.368066057, 31.131277971], [-103.363846565, 31.189354532], [-103.323819129, 31.210140656], [-103.349687682, 31.257569862], [-103.300190587, 31.303900783], [-103.298608041, 31.376444549], [-103.260554844, 31.411366724], [-103.26593506, 31.422271329], [-103.319176719, 31.416285931], [-103.360067954, 31.389196412], [-103.402214593, 31.385631665], [-103.422506471, 31.399206218], [-103.453686573, 31.373621723], [-103.496997558, 31.368576903], [-103.591026729, 31.386220478], [-103.649390692, 31.374198955], [-103.694130509, 31.389251596], [-103.818836582, 31.390110818], [-103.864106395, 31.477792164], [-103.885262749, 31.486433176], [-103.877067246, 31.506012953], [-103.891760681, 31.551049545], [-103.967943342, 31.588510465], [-103.972774732, 31.618781216], [-103.988378316, 31.622124524], [-104.02690951, 31.587002491], [-104.052671289, 31.592008409], [-104.111905, 31.566660076], [-104.13550621, 31.584055815], [-104.227149926, 31.590618803], [-104.24348443, 31.578041061], [-104.330438364, 31.592912561], [-104.356188747, 31.571158595], [-104.434695113, 31.587595191], [-104.470867697, 31.553470567], [-104.594178801, 31.574786078], [-104.486269938, 31.646894947], [-104.482032368, 31.670605856], [-104.443362274, 31.708368808], [-104.316313994, 31.799053831], [-104.230103741, 31.82467309], [-104.142766085, 31.901966095], [-104.07327786, 32.003140799], [-104.016318738, 32.017992191], [-104.02059847, 32.034475496], [-103.99271196, 32.057903103], [-103.865547179, 32.090979598], [-103.85748124, 32.12757226], [-103.832325189, 32.14273002], [-103.807167677, 32.128606133], [-103.794249206, 32.137391322], [-103.813899159, 32.17272868], [-103.78915575, 32.203416072], [-103.699880747, 32.226279162], [-103.672961234, 32.252063982], [-103.66842541, 32.205258571], [-103.632301449, 32.173443698], [-103.623135714, 32.12074142], [-103.599102913, 32.107151979], [-103.591934741, 32.077546411], [-103.507993786, 32.049984508], [-103.518395246, 31.94877708], [-103.494276188, 31.9426044], [-103.445154501, 31.850848918], [-103.464424489, 31.828602763], [-103.402199315, 31.736361663], [-103.404234853, 31.692763302], [-103.376453244, 31.627840668], [-103.299726331, 31.601064328], [-103.279849182, 31.540596777], [-103.300750815, 31.497427424], [-103.26257634, 31.5016239], [-103.252616856, 31.478269831], [-103.202339606, 31.458225417], [-103.158619968, 31.412443151], [-103.103057629, 31.397745427], [-103.099060785, 31.374887443]]]}, "properties": {"huc8": "13070001", "name": "Lower Pecos-Red Bluff Reservoir", "states": "NM,TX", "areasqkm": 6454.59, "dc_states": "TX", "cluster_count": 0, "data_center_count": 5, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-109.039430531, 40.645550246], [-108.978287908, 40.505309584], [-109.038604676, 40.466138699], [-109.041126878, 40.448402118], [-109.018563577, 40.431081111], [-109.031239427, 40.393960855], [-109.021205116, 40.371059334], [-108.94872981, 40.350772868], [-108.94833689, 40.328277898], [-108.904749487, 40.307225313], [-108.980683277, 40.287642519], [-109.009286035, 40.2458594], [-109.0491036, 40.233057017], [-109.069535666, 40.195809095], [-109.087690027, 40.208628011], [-109.118576563, 40.191080604], [-109.213418102, 40.220064554], [-109.267059065, 40.21704695], [-109.339776791, 40.18198267], [-109.475981541, 40.167978082], [-109.523702211, 40.105000709], [-109.590963222, 40.090388302], [-109.621475048, 40.099822764], [-109.674135007, 40.065574679], [-109.68186713, 40.132986728], [-109.70649404, 40.150692914], [-109.722433187, 40.197776143], [-109.696148909, 40.235222314], [-109.713667132, 40.265891436], [-109.700624115, 40.293790732], [-109.766711302, 40.330009613], [-109.757339067, 40.380516831], [-109.7743702, 40.413670961], [-109.699554629, 40.540025596], [-109.765491373, 40.604480448], [-109.803244389, 40.601012711], [-109.829614766, 40.620430742], [-109.889952339, 40.601621364], [-109.910212137, 40.679400627], [-109.966073938, 40.709020441], [-109.954482801, 40.74236009], [-109.913004883, 40.781709646], [-109.855210728, 40.764809971], [-109.764892972, 40.782531833], [-109.752857364, 40.802842712], [-109.676623709, 40.795188015], [-109.632005907, 40.81587327], [-109.52844528, 40.82759345], [-109.513338483, 40.810698336], [-109.516385622, 40.754728441], [-109.48437462, 40.739736919], [-109.436514891, 40.757547204], [-109.433942416, 40.777456854], [-109.409009105, 40.791231518], [-109.373417274, 40.714552692], [-109.327810641, 40.71177498], [-109.277368148, 40.739075435], [-109.258809552, 40.732509251], [-109.245184377, 40.684397702], [-109.143778149, 40.671195486], [-109.118207498, 40.639640478], [-109.102346823, 40.654631536], [-109.039430531, 40.645550246]]]}, "properties": {"huc8": "14060010", "name": "Lower Green-Diamond", "states": "CO,UT", "areasqkm": 4211.03, "dc_states": "UT", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-112.755840038, 37.063396234], [-112.813786596, 36.977717464], [-112.803804899, 36.944971701], [-112.833031297, 36.901644194], [-112.898151853, 36.882721651], [-112.898680481, 36.833637263], [-112.959402031, 36.735391854], [-112.956417932, 36.63658277], [-112.933722262, 36.601579046], [-112.963592885, 36.551725359], [-112.957525915, 36.487044394], [-112.993431975, 36.445248161], [-113.007017216, 36.451266081], [-113.010789654, 36.495245146], [-113.089864092, 36.489144814], [-113.11598546, 36.478665405], [-113.149005346, 36.430500636], [-113.136970288, 36.398520826], [-113.151204781, 36.362698073], [-113.187287283, 36.348605676], [-113.222301471, 36.367077454], [-113.259882891, 36.361391854], [-113.271105294, 36.389776562], [-113.300715114, 36.397524144], [-113.407641047, 36.358901812], [-113.422506236, 36.3928648], [-113.448532984, 36.404446901], [-113.491855366, 36.395059336], [-113.507671704, 36.410756717], [-113.580746624, 36.423109452], [-113.593954013, 36.469994077], [-113.638622986, 36.491525005], [-113.62080969, 36.546701266], [-113.579887842, 36.554340483], [-113.57693243, 36.595292979], [-113.564516283, 36.600264079], [-113.592598739, 36.620950363], [-113.604476866, 36.656091658], [-113.645526582, 36.681237414], [-113.651513724, 36.722451388], [-113.624661276, 36.737404361], [-113.604181136, 36.82165058], [-113.571123936, 36.825168542], [-113.515268412, 36.919436793], [-113.539692535, 37.001780955], [-113.580379426, 37.026695002], [-113.574697141, 37.076962776], [-113.549419146, 37.078845873], [-113.438741187, 37.005964884], [-113.415808535, 37.060041247], [-113.398880794, 37.062168484], [-113.390899969, 37.03803396], [-113.356264482, 37.035174854], [-113.296790694, 37.07371491], [-113.261575126, 37.057251216], [-113.249377523, 37.032483257], [-113.217867882, 37.032191744], [-113.111879515, 37.046666151], [-113.048980378, 37.078592507], [-113.011514446, 37.059930557], [-112.963354782, 37.063374657], [-112.951604024, 37.085389962], [-112.929371198, 37.085185732], [-112.885433413, 37.060428109], [-112.880264331, 37.024792158], [-112.845501481, 37.06807388], [-112.755840038, 37.063396234]]]}, "properties": {"huc8": "15010009", "name": "Fort Pearce Wash", "states": "AZ,UT", "areasqkm": 4326.73, "dc_states": "UT", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-115.180270677, 36.695089924], [-115.187995351, 36.682250251], [-115.138341693, 36.628614415], [-115.06565722, 36.612410248], [-115.065022275, 36.55243544], [-115.105324596, 36.440630542], [-115.058650108, 36.435640053], [-115.059847321, 36.390852003], [-115.040284833, 36.390365582], [-114.996854026, 36.345588772], [-114.953681442, 36.346442953], [-114.951001142, 36.331388954], [-114.909848576, 36.312763403], [-114.928269611, 36.262150435], [-114.974899636, 36.227620058], [-114.994334717, 36.185054139], [-114.966054855, 36.137634416], [-114.952820643, 36.132318417], [-114.944243751, 36.1520414], [-114.891124931, 36.121772891], [-114.893763099, 36.077693189], [-114.851532491, 36.008904787], [-114.945135943, 35.955835191], [-115.03137638, 35.961930723], [-115.0457124, 35.868411269], [-115.097772836, 35.826893049], [-115.133964503, 35.883908888], [-115.168631634, 35.883480014], [-115.206202315, 35.856726236], [-115.324916544, 35.901085296], [-115.364098299, 35.867977006], [-115.406904233, 35.926889371], [-115.425652216, 35.928488005], [-115.432327248, 35.956582958], [-115.517025946, 35.970236692], [-115.527250378, 35.991150467], [-115.483625457, 36.025189928], [-115.482838863, 36.04474052], [-115.52303553, 36.111252841], [-115.520162336, 36.13387242], [-115.542964124, 36.139622788], [-115.531278213, 36.183974637], [-115.577448962, 36.202331473], [-115.612109667, 36.241534283], [-115.646838436, 36.2323789], [-115.695100969, 36.266533677], [-115.706097668, 36.320011981], [-115.691748487, 36.329432605], [-115.685881795, 36.421863793], [-115.656868935, 36.491846404], [-115.666781799, 36.503801244], [-115.611923013, 36.579065174], [-115.617607354, 36.600417677], [-115.570032951, 36.624314658], [-115.535014494, 36.745784139], [-115.494816227, 36.763579604], [-115.420307219, 36.729275352], [-115.345416013, 36.747604675], [-115.340506811, 36.733780254], [-115.314500461, 36.740292699], [-115.277962293, 36.716778792], [-115.234506216, 36.718913349], [-115.180270677, 36.695089924]]]}, "properties": {"huc8": "15010015", "name": "Las Vegas Wash", "states": "NV", "areasqkm": 4865.5, "dc_states": "NV", "cluster_count": 1, "data_center_count": 24, "clustered_data_center_count": 24}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-111.162482359, 33.411377976], [-111.094768736, 33.394308383], [-111.082903019, 33.36136066], [-111.006681228, 33.364781141], [-110.925887092, 33.316707797], [-110.872022805, 33.31568998], [-110.872938372, 33.293547159], [-110.835408983, 33.292994836], [-110.797031767, 33.269545426], [-110.781199218, 33.216039467], [-110.723295202, 33.184993601], [-110.660752415, 33.193357151], [-110.649389836, 33.232652196], [-110.625718832, 33.234281937], [-110.513185582, 33.166351974], [-110.496208335, 33.113414459], [-110.318078148, 33.028114645], [-110.364888864, 33.016086512], [-110.392127894, 32.989170614], [-110.457508153, 32.997815747], [-110.470992106, 32.975485545], [-110.603750036, 32.942989883], [-110.625420748, 32.92102614], [-110.632729947, 32.967827726], [-110.726637109, 33.000574473], [-110.888156342, 32.929676], [-110.883661376, 32.861586411], [-110.95075568, 32.780247066], [-110.902835342, 32.683841827], [-110.92694062, 32.640868022], [-111.028235222, 32.575762218], [-111.033462381, 32.591465787], [-111.094755109, 32.600252404], [-111.125590546, 32.623852965], [-111.35295257, 32.610703694], [-111.414875793, 32.641768531], [-111.413327877, 32.661788893], [-111.485283621, 32.712752751], [-111.498514859, 32.762733652], [-111.52383708, 32.762818529], [-111.52389925, 32.806732955], [-111.550841794, 32.854364162], [-111.636724036, 32.847667633], [-111.678943475, 32.945510968], [-111.674064974, 33.002699194], [-111.733414898, 33.031477995], [-111.727415722, 33.049009848], [-111.80138193, 33.06524049], [-111.806469776, 33.100957611], [-111.979100413, 33.124883068], [-112.161030343, 33.25388236], [-112.19174505, 33.264699321], [-112.237813286, 33.233189569], [-112.321332024, 33.291071779], [-112.341846201, 33.324128263], [-112.305893622, 33.381929685], [-112.22767054, 33.35998497], [-112.132962541, 33.358859336], [-112.099742352, 33.322425006], [-111.97887706, 33.364373976], [-111.773592465, 33.357255282], [-111.767668181, 33.386068145], [-111.701248533, 33.386325485], [-111.744385941, 33.477432821], [-111.71318519, 33.458543592], [-111.675641013, 33.459442354], [-111.640215993, 33.432730651], [-111.580736554, 33.444981637], [-111.528670472, 33.431620654], [-111.507351794, 33.448542817], [-111.51438009, 33.486442513], [-111.452340835, 33.488315216], [-111.447645516, 33.44024759], [-111.383656487, 33.403515119], [-111.3632014, 33.40980139], [-111.356856149, 33.431731907], [-111.305586176, 33.410471371], [-111.217574436, 33.450212676], [-111.162482359, 33.411377976]]]}, "properties": {"huc8": "15050100", "name": "Middle Gila", "states": "AZ", "areasqkm": 8508.08, "dc_states": "AZ", "cluster_count": 1, "data_center_count": 30, "clustered_data_center_count": 30}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-109.986146649, 31.893975999], [-109.87836229, 31.766852164], [-109.898518225, 31.766322497], [-109.93659855, 31.712843883], [-109.926929723, 31.682764152], [-109.95877885, 31.648730945], [-109.951657179, 31.574634449], [-109.974345704, 31.553027348], [-109.939711105, 31.519103876], [-109.959847629, 31.481936791], [-109.938429641, 31.462162075], [-109.958509277, 31.44362094], [-109.861713228, 31.412728228], [-109.883155207, 31.391634363], [-109.876007079, 31.308322907], [-109.908851624, 31.259183885], [-109.993247912, 31.257320829], [-109.999603271, 31.236764907], [-109.913223266, 31.180625916], [-109.935401725, 31.174361362], [-109.94921112, 31.123340606], [-109.924441835, 31.03340823], [-109.935813903, 30.990745544], [-109.951583863, 30.985858916], [-109.975418091, 31.012897492], [-110.072883605, 30.994155884], [-110.212928772, 31.012838364], [-110.3261261, 30.984670639], [-110.335243226, 30.968797684], [-110.383880615, 30.992261886], [-110.391654967, 31.009843826], [-110.374992371, 31.039266587], [-110.418045044, 31.153867722], [-110.456375122, 31.162940979], [-110.46926117, 31.194347383], [-110.489021301, 31.198976517], [-110.49975586, 31.214862824], [-110.487403869, 31.230543137], [-110.514045231, 31.261293044], [-110.470712744, 31.287641541], [-110.407400732, 31.417421819], [-110.345311942, 31.424007694], [-110.346540066, 31.435171998], [-110.385229819, 31.450569148], [-110.39518573, 31.478486529], [-110.464603705, 31.456028422], [-110.520487563, 31.472020516], [-110.594103119, 31.535621908], [-110.590556166, 31.560185298], [-110.652717625, 31.585995148], [-110.611451529, 31.621442112], [-110.604010128, 31.663515712], [-110.549993376, 31.691462738], [-110.524948102, 31.748837968], [-110.48299007, 31.777582478], [-110.439705549, 31.777173887], [-110.426316198, 31.821849083], [-110.406845257, 31.832994851], [-110.438090668, 32.008283567], [-110.46543738, 32.037761737], [-110.454862942, 32.061285196], [-110.479977552, 32.09439414], [-110.506434639, 32.091210198], [-110.520043819, 32.112840364], [-110.372133896, 32.14350079], [-110.329826314, 32.13385099], [-110.292353974, 32.10172545], [-110.258213022, 32.102682612], [-110.232594794, 32.120854762], [-110.200494046, 32.196528928], [-110.204219435, 32.224133565], [-110.112721149, 32.308031507], [-110.068810058, 32.312119439], [-110.042510243, 32.264341681], [-110.078851851, 32.263235724], [-110.086887302, 32.233069798], [-110.044624859, 32.182046855], [-110.021233125, 32.182795357], [-110.049024585, 32.167750737], [-110.041776695, 32.133056305], [-110.125270886, 32.096410276], [-110.076762687, 32.062004868], [-110.065637265, 32.031340101], [-110.002388949, 31.999535717], [-110.001940257, 31.964698358], [-109.975360205, 31.933057379], [-109.986146649, 31.893975999]]]}, "properties": {"huc8": "15050202", "name": "Upper San Pedro", "states": "AZ,MX", "areasqkm": 6423.99, "dc_states": "AZ", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-110.75505261, 32.445884994], [-110.787567872, 32.447545985], [-110.855937186, 32.375280017], [-110.925482798, 32.378188461], [-111.054796102, 32.31431917], [-110.929785342, 32.262059326], [-110.908759818, 32.223619826], [-110.847944026, 32.185260285], [-110.82756091, 32.132068645], [-110.766697976, 32.102538705], [-110.707064082, 32.044432048], [-110.657889738, 31.96561061], [-110.659302621, 31.921246413], [-110.706358057, 31.892085042], [-110.725374368, 31.895519689], [-110.73660175, 31.865758819], [-110.762361285, 31.850597188], [-110.769048769, 31.820485468], [-110.742378005, 31.800805544], [-110.766099435, 31.789493094], [-110.758684493, 31.781535662], [-110.792666772, 31.777925513], [-110.800986011, 31.743383938], [-110.845310574, 31.720601893], [-110.847865629, 31.696381625], [-110.747457071, 31.709854807], [-110.666779727, 31.689440949], [-110.648794399, 31.577294509], [-110.590556166, 31.560185298], [-110.597725297, 31.541145685], [-110.566124288, 31.502509637], [-110.466979128, 31.455975221], [-110.39518573, 31.478486529], [-110.388069837, 31.453161966], [-110.344472211, 31.424514482], [-110.407400732, 31.417421819], [-110.470712744, 31.287641541], [-110.514045231, 31.261293044], [-110.487403869, 31.230543137], [-110.542053221, 31.189662933], [-110.540130858, 31.124900827], [-110.579879762, 31.111587524], [-110.653114318, 31.121438981], [-110.712799072, 31.094024659], [-110.770591736, 31.040424348], [-110.853126527, 31.198915483], [-110.888381957, 31.210824967], [-110.891792297, 31.228086472], [-110.922233582, 31.219078065], [-110.934288026, 31.243265152], [-110.976142884, 31.266040803], [-111.04586029, 31.28168869], [-111.070688879, 31.322908137], [-111.109420777, 31.321601868], [-111.11808014, 31.340724946], [-111.156906129, 31.353124619], [-111.164470616, 31.366503096], [-111.140581575, 31.381847869], [-111.14171949, 31.44876048], [-111.206765063, 31.461672551], [-111.203119302, 31.506832117], [-111.223471645, 31.506506256], [-111.231232716, 31.538881284], [-111.260277311, 31.560343116], [-111.275902772, 31.614099944], [-111.297738677, 31.623823352], [-111.300741296, 31.663583493], [-111.249219308, 31.693211788], [-111.262202097, 31.711267281], [-111.245393589, 31.715650657], [-111.244315402, 31.7657128], [-111.192852372, 31.870179049], [-111.203454917, 31.926635584], [-111.133673921, 31.966165151], [-111.054714347, 32.083973684], [-111.068003351, 32.09783879], [-111.049262998, 32.124430363], [-111.05625357, 32.165038039], [-111.042754744, 32.173557127], [-111.149968998, 32.270933405], [-111.142444631, 32.330773784], [-111.157027097, 32.343061108], [-111.142453741, 32.394910599], [-111.154228957, 32.411330607], [-111.038511318, 32.494613403], [-111.022079411, 32.585279162], [-110.92694062, 32.640868022], [-110.902318656, 32.690034337], [-110.751140728, 32.576371648], [-110.75505261, 32.445884994]]]}, "properties": {"huc8": "15050301", "name": "Upper Santa Cruz", "states": "AZ,MX", "areasqkm": 6800.81, "dc_states": "AZ", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-111.381001683, 33.74762163], [-111.336355677, 33.72048904], [-111.331404688, 33.688485023], [-111.292720909, 33.659927222], [-111.227660872, 33.676061745], [-111.155003925, 33.666964528], [-111.154866088, 33.610559961], [-111.113464023, 33.544253958], [-111.124994079, 33.522356631], [-111.111713959, 33.500123438], [-111.136344984, 33.464426287], [-111.164141687, 33.453924507], [-111.162217213, 33.411395451], [-111.217574436, 33.450212676], [-111.305586176, 33.410471371], [-111.356856149, 33.431731907], [-111.3632014, 33.40980139], [-111.383656487, 33.403515119], [-111.447681204, 33.440292055], [-111.442569027, 33.483848004], [-111.482160623, 33.490139408], [-111.516852152, 33.483893754], [-111.507351794, 33.448542817], [-111.528670472, 33.431620654], [-111.580736554, 33.444981637], [-111.640215993, 33.432730651], [-111.675641013, 33.459442354], [-111.747994887, 33.476781951], [-111.701248533, 33.386325485], [-111.767668181, 33.386068145], [-111.773592465, 33.357255282], [-111.97887706, 33.364373976], [-112.099742352, 33.322425006], [-112.132962541, 33.358859336], [-112.22767054, 33.35998497], [-112.306696367, 33.382575201], [-112.223752081, 33.422889291], [-112.221015503, 33.444326919], [-112.190251607, 33.444713563], [-112.186621073, 33.463699303], [-112.117749712, 33.462599678], [-112.117165509, 33.571264211], [-112.080050304, 33.567648899], [-112.029963829, 33.524221728], [-111.946521199, 33.490285378], [-111.958403873, 33.541715661], [-112.020942996, 33.547285894], [-112.011203934, 33.562718904], [-112.042801409, 33.581483795], [-112.043949925, 33.605744852], [-112.028002496, 33.609598687], [-111.997921872, 33.663588821], [-112.029334479, 33.680723155], [-112.029189063, 33.696012957], [-111.848131528, 33.804832152], [-111.828669249, 33.842058542], [-111.819783562, 33.795114209], [-111.835425325, 33.759279557], [-111.812510221, 33.701960037], [-111.812050475, 33.644312179], [-111.764407693, 33.606701028], [-111.757103358, 33.579771807], [-111.718491278, 33.568557808], [-111.694023093, 33.540992413], [-111.660789949, 33.546733432], [-111.629475815, 33.574456537], [-111.585859545, 33.637108207], [-111.539898313, 33.641133143], [-111.517153282, 33.670708597], [-111.474333888, 33.666782953], [-111.469786622, 33.680542516], [-111.4348599, 33.685466504], [-111.381001683, 33.74762163]]]}, "properties": {"huc8": "15060106", "name": "Lower Salt", "states": "AZ", "areasqkm": 2696.06, "dc_states": "AZ", "cluster_count": 1, "data_center_count": 27, "clustered_data_center_count": 27}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-112.792150963, 33.569398372], [-112.802871205, 33.564756897], [-112.78362727, 33.446360212], [-112.75462474, 33.350660825], [-112.711614667, 33.321720997], [-112.638286504, 33.342935838], [-112.635545421, 33.432601514], [-112.525597503, 33.461486328], [-112.523060037, 33.477370977], [-112.569205014, 33.501415894], [-112.556702552, 33.538754372], [-112.578704663, 33.575875504], [-112.510902976, 33.590282526], [-112.484129313, 33.579215333], [-112.470389929, 33.563693931], [-112.481834371, 33.522754341], [-112.469979347, 33.521598654], [-112.469558601, 33.48651443], [-112.426491555, 33.400968069], [-112.301057839, 33.391695544], [-112.34181434, 33.324009219], [-112.276254018, 33.256344914], [-112.216046202, 33.229452941], [-112.177379175, 33.160767495], [-112.223273217, 33.125664048], [-112.202469815, 33.109929528], [-112.219362062, 33.032839314], [-112.215873684, 32.988670306], [-112.199665963, 32.976866996], [-112.259938601, 32.900815349], [-112.330433354, 32.902505496], [-112.341563724, 32.8805232], [-112.322507042, 32.861631374], [-112.335798563, 32.848372362], [-112.328154939, 32.815436656], [-112.3389786, 32.790947385], [-112.395460216, 32.756884302], [-112.399809844, 32.736984141], [-112.379275096, 32.626954857], [-112.398335276, 32.583037165], [-112.430904749, 32.579610065], [-112.432364683, 32.537669412], [-112.452231321, 32.541734938], [-112.47052646, 32.516702472], [-112.552582517, 32.553504794], [-112.586544484, 32.528904212], [-112.6076781, 32.557814763], [-112.685917545, 32.584716807], [-112.704318054, 32.641573514], [-112.750116611, 32.667511369], [-112.738232492, 32.676957106], [-112.743843184, 32.721968521], [-112.773969359, 32.742724893], [-112.796932734, 32.738537994], [-112.860003203, 32.827924884], [-112.984525114, 32.897391507], [-113.02345947, 32.89223759], [-113.034201727, 32.915639109], [-113.025208424, 32.971197869], [-113.000903773, 32.98510738], [-113.021933442, 33.067852145], [-112.987226058, 33.087117986], [-112.988668615, 33.114607663], [-112.959802793, 33.115388762], [-112.960421982, 33.141867521], [-112.906141879, 33.148208768], [-112.906159137, 33.165005756], [-112.882026285, 33.16970092], [-112.8852175, 33.217432576], [-112.849547889, 33.210910987], [-112.804068674, 33.26117572], [-112.772543853, 33.261517756], [-112.796126115, 33.294432355], [-112.766943314, 33.320261481], [-112.827808902, 33.377431758], [-112.84393046, 33.450037938], [-112.815683881, 33.59266064], [-112.792150963, 33.569398372]]]}, "properties": {"huc8": "15070101", "name": "Lower Gila-Painted Rock Reservoir", "states": "AZ", "areasqkm": 5221.08, "dc_states": "AZ", "cluster_count": 1, "data_center_count": 1, "clustered_data_center_count": 1}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-111.945129751, 34.548244452], [-111.963025893, 34.527629755], [-111.901708695, 34.502774543], [-111.884499893, 34.468836274], [-111.88988405, 34.426872389], [-111.846761719, 34.415875301], [-111.849944466, 34.375348246], [-111.809848851, 34.366976428], [-111.781752109, 34.302893148], [-111.873678649, 34.242184318], [-111.905925392, 34.18782562], [-111.891461843, 34.173390359], [-111.903751377, 34.14510247], [-111.887278298, 34.111481987], [-111.899720836, 34.087312973], [-111.875193012, 34.048765347], [-111.845946044, 34.04755034], [-111.793512705, 33.980222759], [-111.787000761, 33.934322835], [-111.815768237, 33.938417905], [-111.830816672, 33.917254363], [-111.876369982, 33.903916431], [-111.8284499, 33.866198214], [-111.828572099, 33.830902441], [-111.889455808, 33.777492464], [-112.015478954, 33.714838757], [-112.030747471, 33.689384077], [-111.997921872, 33.663588821], [-112.028002496, 33.609598687], [-112.043949925, 33.605744852], [-112.042801409, 33.581483795], [-112.011203934, 33.562718904], [-112.020942996, 33.547285894], [-111.958403873, 33.541715661], [-111.946521199, 33.490285378], [-112.107828097, 33.573304766], [-112.124224831, 33.553646186], [-112.117749712, 33.462599678], [-112.186621073, 33.463699303], [-112.189255131, 33.445397687], [-112.221015503, 33.444326919], [-112.223335111, 33.423237544], [-112.272259208, 33.406414026], [-112.272187009, 33.392251786], [-112.426491555, 33.400968069], [-112.469558601, 33.48651443], [-112.469979347, 33.521598654], [-112.481834371, 33.522754341], [-112.475107116, 33.572685166], [-112.506788849, 33.590319323], [-112.583569668, 33.574563689], [-112.611118533, 33.608931268], [-112.610416455, 33.673547475], [-112.643349131, 33.770629211], [-112.62727545, 33.847926277], [-112.525432141, 33.98813776], [-112.556734996, 34.030104715], [-112.552389482, 34.052592219], [-112.510020302, 34.072088028], [-112.51158412, 34.113850775], [-112.458294116, 34.119744395], [-112.454688413, 34.138949056], [-112.388564746, 34.172905383], [-112.35020784, 34.227854836], [-112.376502521, 34.3135265], [-112.406042236, 34.323563218], [-112.396360292, 34.423787104], [-112.418293094, 34.450744277], [-112.399784703, 34.472218674], [-112.425358934, 34.500090901], [-112.426655129, 34.528011279], [-112.379943236, 34.583977194], [-112.400753055, 34.616608318], [-112.264154596, 34.657270456], [-112.26866909, 34.687264292], [-112.253216864, 34.704088714], [-112.186901608, 34.700027239], [-112.159778879, 34.71816165], [-112.158883489, 34.706546761], [-112.127899553, 34.705299543], [-112.155787451, 34.662366387], [-112.078715886, 34.632792771], [-112.088153617, 34.574026236], [-112.027027517, 34.559073411], [-112.00441067, 34.569936751], [-112.002337106, 34.551165707], [-111.958165577, 34.566305311], [-111.945129751, 34.548244452]]]}, "properties": {"huc8": "15070102", "name": "Aqua Fria", "states": "AZ", "areasqkm": 7115.8, "dc_states": "AZ", "cluster_count": 2, "data_center_count": 8, "clustered_data_center_count": 8}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-111.241159128, 42.602329262], [-111.222238636, 42.571884514], [-111.248811994, 42.495129978], [-111.225762473, 42.46533818], [-111.154519373, 42.448129924], [-111.126393874, 42.400033441], [-111.147474171, 42.379380512], [-111.14171404, 42.313179126], [-111.172063924, 42.305139815], [-111.173183824, 42.259649703], [-111.195652498, 42.230066847], [-111.163510674, 42.19677407], [-111.197536055, 42.148383074], [-111.231425574, 42.134588491], [-111.210740279, 42.094814587], [-111.223432121, 42.081884607], [-111.210192582, 42.045941062], [-111.161709552, 42.033833434], [-111.130154679, 42.042888838], [-111.07897076, 41.992695983], [-111.099779015, 41.966374728], [-111.099312054, 41.922171636], [-111.163402114, 41.927697425], [-111.212333047, 41.873929382], [-111.255490474, 41.862686163], [-111.24529949, 41.814155183], [-111.272870846, 41.793773366], [-111.262292524, 41.764290297], [-111.375577288, 41.72375775], [-111.421355892, 41.674214261], [-111.417509802, 41.720318614], [-111.441914395, 41.735725932], [-111.45684036, 41.812180597], [-111.50782199, 41.852453545], [-111.49221577, 41.883829542], [-111.511649009, 41.908360145], [-111.478140524, 41.913023002], [-111.47159762, 41.928465627], [-111.484577184, 41.975570262], [-111.508698647, 41.992851548], [-111.515093647, 42.068150436], [-111.597037606, 42.095834061], [-111.587135408, 42.141855612], [-111.625652057, 42.190777793], [-111.614431143, 42.24601755], [-111.56225154, 42.276512486], [-111.586516148, 42.287949599], [-111.590005938, 42.322446286], [-111.552105708, 42.35182446], [-111.584345814, 42.394104279], [-111.599463721, 42.39148042], [-111.603897857, 42.411543866], [-111.579971206, 42.429276658], [-111.5827997, 42.446367551], [-111.634455076, 42.569193704], [-111.71373412, 42.663275942], [-111.658141234, 42.697870585], [-111.720027108, 42.760803631], [-111.696858865, 42.798988689], [-111.670291898, 42.806681395], [-111.661011931, 42.854289488], [-111.632140895, 42.848184836], [-111.627897746, 42.80492811], [-111.603910934, 42.807676895], [-111.59192244, 42.778692147], [-111.524176858, 42.785126978], [-111.507779723, 42.728291881], [-111.451650582, 42.688084236], [-111.465446587, 42.672704048], [-111.455400528, 42.6549104], [-111.340269011, 42.586159389], [-111.335836722, 42.566700272], [-111.27935314, 42.552913832], [-111.241159128, 42.602329262]]]}, "properties": {"huc8": "16010201", "name": "Bear Lake", "states": "ID,UT", "areasqkm": 3281.27, "dc_states": "ID", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-111.593652615, 40.57708389], [-111.567690174, 40.547385369], [-111.57477532, 40.486853336], [-111.620435933, 40.455014054], [-111.612578908, 40.432238136], [-111.646583478, 40.391948406], [-111.633271614, 40.372713243], [-111.661298702, 40.348515753], [-111.67618979, 40.276255671], [-111.727951417, 40.235164497], [-111.623365949, 40.265441243], [-111.596525381, 40.240664605], [-111.556960473, 40.244210426], [-111.552307585, 40.219765458], [-111.642886082, 40.193348114], [-111.665822635, 40.16997597], [-111.713290463, 40.160269414], [-111.735376756, 40.179946963], [-111.749734471, 40.137796078], [-111.796986918, 40.128599618], [-111.806242685, 40.145765011], [-111.830696146, 40.049120937], [-111.807743499, 40.026440416], [-111.809856485, 39.992116306], [-111.766242157, 39.947462115], [-111.731506834, 39.946738068], [-111.732798169, 39.932196471], [-111.695590626, 39.901380006], [-111.685997228, 39.863804702], [-111.721997211, 39.839890573], [-111.696116755, 39.805501554], [-111.641529867, 39.810634587], [-111.615346441, 39.772537772], [-111.581754366, 39.770608458], [-111.569836269, 39.717593464], [-111.740399579, 39.656448547], [-111.743374894, 39.641706053], [-111.709682206, 39.613252017], [-111.726307851, 39.584806385], [-111.776950727, 39.58685756], [-111.82259501, 39.618169698], [-111.944614361, 39.632699312], [-111.963986347, 39.657785806], [-111.936665665, 39.686724159], [-111.948506097, 39.69817439], [-111.938410918, 39.761456612], [-111.954627703, 39.811445985], [-111.989561955, 39.811632101], [-112.047555845, 39.776874784], [-112.089579265, 39.781861577], [-112.065364044, 39.829882685], [-112.081306588, 39.865002606], [-112.053566049, 39.89348087], [-112.103531609, 39.928807978], [-112.09404112, 39.95399842], [-112.10978661, 39.973710779], [-112.179770719, 40.011537556], [-112.17201225, 40.039571766], [-112.183727901, 40.059921953], [-112.154124956, 40.107730452], [-112.176229606, 40.13094512], [-112.176272195, 40.155787711], [-112.144313227, 40.17321578], [-112.160470377, 40.198767159], [-112.149588625, 40.212244217], [-112.176707427, 40.227697615], [-112.192132156, 40.264518027], [-112.196240078, 40.326169763], [-112.175605695, 40.335841362], [-112.194716285, 40.361368809], [-112.194777857, 40.420958314], [-112.212325166, 40.458967303], [-112.143083583, 40.470295612], [-112.111754905, 40.438870881], [-112.038152139, 40.464555267], [-111.981849442, 40.414249544], [-111.87372757, 40.476826225], [-111.855567018, 40.466931288], [-111.789413909, 40.497882639], [-111.762662302, 40.529165004], [-111.678427557, 40.531687562], [-111.63782982, 40.568102811], [-111.593652615, 40.57708389]]]}, "properties": {"huc8": "16020201", "name": "Utah Lake", "states": "UT", "areasqkm": 3483.04, "dc_states": "UT", "cluster_count": 1, "data_center_count": 7, "clustered_data_center_count": 6}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-111.957597862, 40.939509695], [-111.925752084, 40.884316807], [-111.849943737, 40.869232898], [-111.817206571, 40.838447725], [-111.738929311, 40.861143326], [-111.663772831, 40.849844342], [-111.66585965, 40.830656236], [-111.63907815, 40.809739207], [-111.649105737, 40.773373907], [-111.621060203, 40.758162891], [-111.623336832, 40.73123381], [-111.593027482, 40.700358783], [-111.604469279, 40.666588996], [-111.553339191, 40.610619878], [-111.563997427, 40.584975009], [-111.605738024, 40.564460222], [-111.63782982, 40.568102811], [-111.678427557, 40.531687562], [-111.762662302, 40.529165004], [-111.789413909, 40.497882639], [-111.855567018, 40.466931288], [-111.87372757, 40.476826225], [-111.959694574, 40.418558751], [-112.006174276, 40.427669857], [-112.036174069, 40.464153622], [-112.11205403, 40.43886799], [-112.138832193, 40.468430642], [-112.171811084, 40.465335641], [-112.187581222, 40.513665412], [-112.175302963, 40.603890901], [-112.197648447, 40.625170146], [-112.203069906, 40.68180353], [-112.227786999, 40.725546633], [-112.139117281, 40.80005086], [-112.136968057, 40.830295538], [-112.164836418, 40.853601758], [-112.154498856, 40.902456378], [-112.093810211, 40.871283924], [-112.049633603, 40.896508877], [-111.993656318, 40.900835013], [-111.956234942, 40.928580259], [-111.993873725, 40.923556363], [-111.972998957, 40.940299635], [-111.966175268, 40.929303681], [-111.957597862, 40.939509695]]]}, "properties": {"huc8": "16020204", "name": "Jordan", "states": "UT", "areasqkm": 2107.79, "dc_states": "UT", "cluster_count": 1, "data_center_count": 8, "clustered_data_center_count": 8}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-119.266407152, 39.633133467], [-119.261184363, 39.583311879], [-119.364395112, 39.556302478], [-119.36180964, 39.510105761], [-119.326142289, 39.48865774], [-119.37264297, 39.472075299], [-119.415490261, 39.482527806], [-119.43549153, 39.463833206], [-119.432946615, 39.437722929], [-119.494386452, 39.421249001], [-119.55914875, 39.349646382], [-119.669274847, 39.33473201], [-119.712434368, 39.252003545], [-119.824759623, 39.207666846], [-119.881856947, 39.165438411], [-119.885845062, 39.188567816], [-119.910628701, 39.203169242], [-119.897162487, 39.290391234], [-119.942197025, 39.325113555], [-119.959972727, 39.290870872], [-120.001965787, 39.277685185], [-120.033041037, 39.291403417], [-120.053190771, 39.267739261], [-120.140076188, 39.241482691], [-120.144130997, 39.220225238], [-120.177160132, 39.216696719], [-120.182619065, 39.190968812], [-120.143678972, 39.166817076], [-120.152387168, 39.153298965], [-120.180841779, 39.144092682], [-120.182252574, 39.158129281], [-120.218570062, 39.162028913], [-120.246421793, 39.148184722], [-120.246184538, 39.174854257], [-120.287209834, 39.198240136], [-120.263861418, 39.222943109], [-120.326802272, 39.288184817], [-120.322090478, 39.32479295], [-120.36550173, 39.384247929], [-120.368923552, 39.424276214], [-120.41811132, 39.418811443], [-120.422210453, 39.435710021], [-120.450234489, 39.423383532], [-120.464922115, 39.437164326], [-120.438217965, 39.482521652], [-120.439543282, 39.514722602], [-120.395011254, 39.514362452], [-120.375393899, 39.496450815], [-120.295929102, 39.499542361], [-120.230156803, 39.523579018], [-120.205463254, 39.549733226], [-120.194168306, 39.539392705], [-120.12288623, 39.557366617], [-120.102504176, 39.593423277], [-120.063648838, 39.601630021], [-119.986226125, 39.574446098], [-119.936390684, 39.592011975], [-119.897855677, 39.570088553], [-119.81777547, 39.596363453], [-119.802177798, 39.634444955], [-119.772495003, 39.648766843], [-119.760965845, 39.679985421], [-119.707143747, 39.727683179], [-119.660175713, 39.69980632], [-119.601091695, 39.703420799], [-119.602660239, 39.65553005], [-119.579841035, 39.637544981], [-119.476686535, 39.636901805], [-119.463930497, 39.651896705], [-119.342075545, 39.627738071], [-119.266407152, 39.633133467]]]}, "properties": {"huc8": "16050102", "name": "Truckee", "states": "CA,NV", "areasqkm": 3152.8, "dc_states": "NV", "cluster_count": 1, "data_center_count": 17, "clustered_data_center_count": 17}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-113.014458579, 46.734478457], [-113.029021752, 46.727504177], [-113.026118409, 46.690989031], [-113.064321738, 46.68675269], [-113.076499951, 46.663379682], [-113.118026745, 46.643615736], [-113.146362316, 46.653327955], [-113.10960285, 46.550857646], [-113.093289774, 46.544536812], [-113.101056945, 46.51125495], [-113.089191479, 46.493842018], [-113.106958371, 46.474417998], [-113.107950729, 46.44204293], [-113.070996415, 46.438966763], [-113.081654888, 46.394877685], [-113.056884181, 46.358774168], [-113.072619122, 46.328190637], [-113.144588334, 46.329714222], [-113.149420273, 46.290524972], [-113.219713074, 46.223965806], [-113.229261172, 46.194900138], [-113.192274434, 46.158076985], [-113.250699264, 46.084236276], [-113.238543284, 46.064381969], [-113.280557078, 46.057371271], [-113.285351736, 46.038155776], [-113.335766655, 46.005371136], [-113.379416091, 46.018526507], [-113.415067506, 45.98974098], [-113.458224309, 45.984422756], [-113.480076296, 45.93961994], [-113.579135669, 45.938638282], [-113.608765049, 45.949765188], [-113.615548236, 45.970167321], [-113.648239118, 45.965018881], [-113.671080274, 46.023057503], [-113.693854881, 46.037332725], [-113.744891627, 46.048791122], [-113.769067539, 46.027766508], [-113.803715659, 46.037653875], [-113.753157747, 46.112750066], [-113.795154137, 46.152338845], [-113.78476317, 46.181119573], [-113.818112475, 46.191375029], [-113.822831524, 46.209211779], [-113.775235726, 46.227851791], [-113.748517675, 46.268068981], [-113.784452809, 46.285048557], [-113.771870805, 46.321233611], [-113.782983733, 46.364280505], [-113.820305659, 46.407267315], [-113.858175201, 46.419885499], [-113.849202944, 46.44824971], [-113.879006757, 46.502678019], [-113.849552018, 46.515406055], [-113.836332781, 46.58326353], [-113.811839087, 46.590005411], [-113.80277483, 46.629749698], [-113.822864843, 46.645996137], [-113.823162956, 46.671094252], [-113.853796108, 46.687833978], [-113.842427714, 46.711864901], [-113.856524391, 46.772886081], [-113.935047401, 46.80312155], [-113.912680431, 46.816169216], [-113.928582502, 46.853477431], [-113.827051981, 46.872304215], [-113.758995814, 46.862590595], [-113.710065645, 46.850749982], [-113.643403155, 46.800647809], [-113.59477709, 46.784341259], [-113.512119633, 46.786609693], [-113.477296723, 46.809108718], [-113.436870945, 46.794084771], [-113.392441553, 46.808777345], [-113.377276701, 46.838013871], [-113.295985323, 46.806065274], [-113.265719604, 46.825982226], [-113.228200328, 46.783403738], [-113.17877121, 46.760371311], [-113.177653175, 46.730810358], [-113.115693372, 46.713518931], [-113.014458579, 46.734478457]]]}, "properties": {"huc8": "17010202", "name": "Flint-Rock", "states": "MT", "areasqkm": 4712.86, "dc_states": "MT", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-116.530185213, 47.899684355], [-116.562499726, 47.847562115], [-116.567543121, 47.78831174], [-116.604742473, 47.764750468], [-116.60066982, 47.748989613], [-116.716588548, 47.730817795], [-116.76989072, 47.747456155], [-116.769772183, 47.726423096], [-116.795164177, 47.712497757], [-116.799930209, 47.699066899], [-116.782711098, 47.688801776], [-116.796349541, 47.677321413], [-116.846832667, 47.682105136], [-116.963846166, 47.658894367], [-116.987290832, 47.634625867], [-116.984912638, 47.615790159], [-117.031642735, 47.57833384], [-117.061804587, 47.586455373], [-117.088946462, 47.568893986], [-117.11717652, 47.584114131], [-117.193427813, 47.58232537], [-117.211919476, 47.551221098], [-117.2577169, 47.545268104], [-117.297195613, 47.592878522], [-117.385217831, 47.595780806], [-117.396996752, 47.607060788], [-117.381076036, 47.613137559], [-117.385625138, 47.626510264], [-117.407680237, 47.620260133], [-117.423641554, 47.655599974], [-117.458194312, 47.65892776], [-117.410498494, 47.670700652], [-117.392486325, 47.700686594], [-117.335361022, 47.693983688], [-117.278462987, 47.727799283], [-117.175069968, 47.721098513], [-117.156725325, 47.758948319], [-117.161402756, 47.812419653], [-117.064957941, 47.895833443], [-116.849141786, 47.925229145], [-116.836302501, 47.950977172], [-116.729926013, 47.966209276], [-116.720031318, 47.94724571], [-116.653012622, 47.953875821], [-116.534628306, 47.935694555], [-116.530185213, 47.899684355]]]}, "properties": {"huc8": "17010305", "name": "Upper Spokane", "states": "ID,WA", "areasqkm": 1523.24, "dc_states": "WA", "cluster_count": 0, "data_center_count": 3, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-117.497787732, 47.657527139], [-117.423641554, 47.655599974], [-117.407680237, 47.620260133], [-117.385625138, 47.626510264], [-117.381076036, 47.613137559], [-117.396996752, 47.607060788], [-117.385217831, 47.595780806], [-117.297195613, 47.592878522], [-117.2577169, 47.545268104], [-117.211919476, 47.551221098], [-117.193427813, 47.58232537], [-117.109845913, 47.581907348], [-117.088946462, 47.568893986], [-117.074753147, 47.526681818], [-117.042827936, 47.505686018], [-117.03451483, 47.469554286], [-116.852228417, 47.417346651], [-116.855164839, 47.382652679], [-116.879133536, 47.373292336], [-116.880220347, 47.357498559], [-116.937630264, 47.346762234], [-116.946525842, 47.325599539], [-116.911751961, 47.311474027], [-116.874702714, 47.260673941], [-116.836432488, 47.247919666], [-116.843306688, 47.204806577], [-116.776231451, 47.154948468], [-116.744462101, 47.150689729], [-116.709620053, 47.098210737], [-116.740245083, 47.060715205], [-116.815597331, 47.039619802], [-116.895822848, 47.077820813], [-116.95509215, 47.06886053], [-116.977196199, 47.088898973], [-116.970732897, 47.119614138], [-117.020566203, 47.136251709], [-117.004936045, 47.165984207], [-117.046588835, 47.161670084], [-117.063832412, 47.184417991], [-117.097574091, 47.188094065], [-117.192840387, 47.278634376], [-117.266817234, 47.307113998], [-117.2989224, 47.371348161], [-117.390700623, 47.385272247], [-117.404895057, 47.411600726], [-117.389664115, 47.426466577], [-117.433707421, 47.415061984], [-117.414235157, 47.443393284], [-117.440040713, 47.450325532], [-117.439691172, 47.47545476], [-117.507954245, 47.474998954], [-117.506473772, 47.499574999], [-117.554131547, 47.453534931], [-117.61549976, 47.434955471], [-117.615907222, 47.447796876], [-117.658481943, 47.443346532], [-117.617530856, 47.459626543], [-117.626113105, 47.471093284], [-117.584431555, 47.502131299], [-117.623695025, 47.519908725], [-117.583483064, 47.607397321], [-117.497787732, 47.657527139]]]}, "properties": {"huc8": "17010306", "name": "Hangman", "states": "ID,WA", "areasqkm": 1794.04, "dc_states": "WA", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-119.978973041, 47.803716948], [-119.905250808, 47.816232061], [-119.897727866, 47.796870325], [-119.955640451, 47.760895738], [-119.997641697, 47.755534089], [-120.009677098, 47.733187642], [-120.060797171, 47.727311909], [-120.056730916, 47.709656556], [-120.115451313, 47.647792083], [-120.10950892, 47.622047765], [-120.130873107, 47.591037029], [-120.058033568, 47.517043547], [-120.062436213, 47.503472048], [-120.025364788, 47.486188661], [-120.056646192, 47.443707124], [-120.045763537, 47.436266884], [-120.060523194, 47.410727456], [-120.051346862, 47.385590001], [-120.064739087, 47.37058677], [-120.05252886, 47.332724937], [-120.087254581, 47.269019055], [-120.043838562, 47.258902683], [-120.039388594, 47.277197568], [-119.991339193, 47.307055759], [-119.997446403, 47.325092597], [-119.846284504, 47.387841076], [-119.801728654, 47.380423496], [-119.740551794, 47.340664339], [-119.754800049, 47.326187185], [-119.903190019, 47.294812625], [-119.975834819, 47.249699806], [-119.957784545, 47.237066295], [-119.96808299, 47.182404854], [-119.948530284, 47.166588028], [-119.881228999, 47.162172156], [-119.878733427, 47.149404565], [-119.90520413, 47.141829985], [-119.873854101, 47.107606182], [-119.955526515, 47.10182651], [-119.995024877, 47.07410713], [-119.914660745, 47.043654672], [-119.925964052, 46.993766947], [-119.719983444, 46.969522186], [-119.706171558, 46.932119893], [-119.725987369, 46.906447604], [-119.884526091, 46.90430837], [-119.875680294, 46.883562651], [-119.923717818, 46.842954459], [-119.935166785, 46.813826621], [-120.017586495, 46.843690555], [-120.150434194, 46.848211561], [-120.21654093, 46.866978655], [-120.216433936, 46.889578022], [-120.242271198, 46.887947519], [-120.199674768, 46.93844452], [-120.197856902, 46.960504376], [-120.216056971, 46.96924669], [-120.202864842, 47.013210459], [-120.224622612, 47.021872802], [-120.238252021, 47.05287597], [-120.224277798, 47.097692172], [-120.243465587, 47.107004835], [-120.241317033, 47.127511315], [-120.288760985, 47.209776153], [-120.323502059, 47.213657585], [-120.333840972, 47.232874819], [-120.370531182, 47.237796], [-120.397655813, 47.268475058], [-120.43785892, 47.28274635], [-120.403656642, 47.346317646], [-120.454164935, 47.399499376], [-120.43988033, 47.431256569], [-120.325160297, 47.454963221], [-120.344366852, 47.469573408], [-120.356257045, 47.540879666], [-120.410995859, 47.594325248], [-120.455830046, 47.60264466], [-120.449738221, 47.64913986], [-120.513808796, 47.705019371], [-120.534295294, 47.769092295], [-120.578264348, 47.805301176], [-120.628128379, 47.899178138], [-120.664623767, 47.932352301], [-120.631609684, 47.945626691], [-120.63750137, 47.961713575], [-120.667553058, 47.955142183], [-120.668111863, 47.981363887], [-120.72438365, 48.01980613], [-120.748661883, 48.079210201], [-120.793148208, 48.10315264], [-120.813827459, 48.152798558], [-120.72265142, 48.16706068], [-120.575446775, 48.0903695], [-120.519465737, 48.053844049], [-120.524401633, 48.020334613], [-120.413376974, 47.975176178], [-120.418182067, 47.939734138], [-120.336655999, 47.888987558], [-120.329561963, 47.861507883], [-120.270819027, 47.847053636], [-120.207927802, 47.867026817], [-120.115306269, 47.819713773], [-119.978973041, 47.803716948]]]}, "properties": {"huc8": "17020010", "name": "Upper Columbia-Entiat", "states": "WA", "areasqkm": 3878.95, "dc_states": "WA", "cluster_count": 1, "data_center_count": 17, "clustered_data_center_count": 17}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-119.29833884, 47.473462958], [-119.297903452, 47.440341728], [-119.256767884, 47.417048144], [-119.214771144, 47.42095521], [-119.164382344, 47.399846724], [-119.137269626, 47.410657837], [-119.113183178, 47.397885786], [-119.117355952, 47.383337323], [-119.068920326, 47.400567209], [-119.051969269, 47.373816215], [-119.000910129, 47.359809283], [-119.003252632, 47.345748737], [-118.982905264, 47.34376772], [-118.958360303, 47.367159528], [-118.848751545, 47.333054538], [-118.856966176, 47.318588509], [-118.841405844, 47.309441872], [-118.855527909, 47.289845672], [-118.836499182, 47.275696761], [-118.782355451, 47.293053892], [-118.7256033, 47.275895275], [-118.619641694, 47.287302458], [-118.541953397, 47.266254092], [-118.447173427, 47.270392732], [-118.397162093, 47.245767821], [-118.408247596, 47.230060452], [-118.360261413, 47.195922818], [-118.294984446, 47.212621829], [-118.257973823, 47.239776177], [-118.227798365, 47.237417973], [-118.222620212, 47.227867724], [-118.261148023, 47.208712563], [-118.310089895, 47.146236102], [-118.278619305, 47.110554772], [-118.297658956, 47.07969803], [-118.289252004, 47.069293044], [-118.316464767, 47.042668654], [-118.276213834, 47.011191298], [-118.302363426, 46.980448623], [-118.345238561, 46.974071832], [-118.435875668, 46.915371921], [-118.513168034, 46.906371303], [-118.55770485, 46.882564463], [-118.570339522, 46.884714647], [-118.564022817, 46.93665932], [-118.590461093, 46.944954377], [-118.638668445, 46.929969688], [-118.649740974, 46.944315482], [-118.695834026, 46.939183813], [-118.733860887, 46.909765298], [-118.800668561, 46.906556869], [-118.843015908, 46.873838101], [-118.889611667, 46.905768766], [-119.073377635, 46.920169128], [-119.125704044, 46.884642545], [-119.154751397, 46.832922774], [-119.267644004, 46.805184247], [-119.294136182, 46.768210495], [-119.369203953, 46.789714935], [-119.649124183, 46.81460965], [-119.771480653, 46.798207233], [-119.769903905, 46.818149004], [-119.784104551, 46.82290768], [-119.923848213, 46.814931721], [-119.923717818, 46.842954459], [-119.875680294, 46.883562651], [-119.884526091, 46.90430837], [-119.725987369, 46.906447604], [-119.706171558, 46.932119893], [-119.719983444, 46.969522186], [-119.934335169, 46.998581373], [-119.914992941, 47.012681975], [-119.914660745, 47.043654672], [-119.995024877, 47.07410713], [-119.950409706, 47.103146133], [-119.877677996, 47.101557341], [-119.876436772, 47.119172141], [-119.905165699, 47.14304532], [-119.87568958, 47.1536331], [-119.967495236, 47.181736947], [-119.971430193, 47.218141945], [-119.957784545, 47.237066295], [-119.975834819, 47.249699806], [-119.903190019, 47.294812625], [-119.676138563, 47.348921573], [-119.628192256, 47.383908317], [-119.588271127, 47.372671968], [-119.57639006, 47.339163071], [-119.549649933, 47.321267622], [-119.501754266, 47.358499518], [-119.447976316, 47.364351481], [-119.427880181, 47.374064016], [-119.451567367, 47.388311307], [-119.434027454, 47.404469925], [-119.457803615, 47.430201437], [-119.434766455, 47.441115781], [-119.441590293, 47.496592323], [-119.40995224, 47.502970823], [-119.379970994, 47.484222351], [-119.29833884, 47.473462958]]]}, "properties": {"huc8": "17020015", "name": "Lower Crab", "states": "WA", "areasqkm": 6425.25, "dc_states": "WA", "cluster_count": 1, "data_center_count": 40, "clustered_data_center_count": 40}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-110.875028254, 44.006861096], [-110.838931161, 43.896126334], [-110.879095961, 43.85571366], [-110.870229799, 43.805397498], [-110.84513229, 43.770347247], [-110.852536733, 43.72504639], [-110.824367762, 43.690081784], [-110.891992965, 43.682114849], [-110.912900349, 43.650353251], [-110.900256945, 43.630740679], [-110.94586171, 43.623060134], [-110.948144033, 43.604748644], [-110.896677621, 43.574041722], [-110.924151625, 43.559672823], [-110.918325979, 43.54764495], [-110.950713818, 43.541337337], [-110.94999038, 43.476959416], [-111.026687452, 43.484651835], [-111.067946676, 43.526205415], [-111.10417767, 43.523965966], [-111.142529999, 43.546498371], [-111.201337622, 43.540373075], [-111.226636396, 43.606698631], [-111.330277145, 43.663369457], [-111.355945807, 43.646517541], [-111.397355691, 43.668662954], [-111.441263721, 43.665747324], [-111.503862421, 43.640877652], [-111.569785411, 43.666590859], [-111.590128326, 43.656937682], [-111.643679718, 43.724636627], [-111.701852475, 43.71728626], [-111.720546371, 43.769216435], [-111.778595603, 43.818897001], [-111.863410444, 43.82558383], [-111.88433327, 43.840552734], [-111.787334037, 43.863837387], [-111.838533575, 43.899085143], [-111.793628885, 43.888647912], [-111.687474046, 43.954348415], [-111.548184739, 43.995221434], [-111.507009014, 43.988258989], [-111.488737501, 43.957814858], [-111.463302853, 43.970825139], [-111.432174942, 43.95471168], [-111.437565353, 43.94577688], [-111.371295613, 43.945270332], [-111.303521827, 43.977573952], [-111.220514897, 43.957343995], [-111.169352645, 43.980913582], [-111.002148684, 43.989165375], [-110.957191142, 44.010021075], [-110.919924668, 43.995912459], [-110.875028254, 44.006861096]]]}, "properties": {"huc8": "17040204", "name": "Teton", "states": "ID,WY", "areasqkm": 2885.92, "dc_states": "ID", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-116.099073825, 43.753448163], [-116.083498941, 43.734055532], [-116.09489914, 43.669220427], [-116.058853171, 43.646200021], [-116.06476747, 43.561106991], [-116.048856449, 43.506986399], [-115.986504695, 43.507285788], [-115.939476085, 43.52759952], [-115.93301537, 43.508638772], [-115.877021525, 43.479422177], [-115.817030706, 43.478512514], [-115.777771478, 43.436712745], [-115.857440005, 43.426100423], [-115.911759975, 43.394284639], [-115.945617999, 43.393443546], [-115.983233546, 43.35188996], [-116.076697123, 43.330251041], [-116.159127832, 43.252049072], [-116.216115639, 43.265004719], [-116.214286988, 43.28235981], [-116.307968134, 43.31627163], [-116.350983407, 43.367474837], [-116.418264402, 43.384997688], [-116.448471097, 43.413437487], [-116.445839842, 43.437345309], [-116.520038174, 43.431402373], [-116.601557209, 43.44348625], [-116.627164364, 43.461601864], [-116.65435151, 43.450150962], [-116.66301076, 43.472008868], [-116.732748749, 43.51582227], [-116.75175775, 43.561989838], [-116.778181542, 43.579715078], [-116.773781558, 43.596040746], [-116.87059848, 43.629165768], [-116.946137862, 43.68215095], [-116.937210206, 43.729552361], [-117.008758495, 43.780236472], [-117.022379758, 43.812882842], [-117.006447476, 43.812154058], [-117.017202439, 43.827382344], [-116.986560185, 43.811099954], [-116.874993425, 43.843011244], [-116.843616197, 43.830346005], [-116.839490529, 43.861077881], [-116.795812296, 43.860816876], [-116.769332357, 43.886175227], [-116.748799121, 43.870111482], [-116.734698808, 43.889450686], [-116.69982357, 43.863453769], [-116.64065898, 43.851901427], [-116.611107285, 43.823149789], [-116.588365124, 43.835788764], [-116.527528742, 43.816387922], [-116.419295929, 43.844648848], [-116.370983124, 43.873798402], [-116.298902988, 43.866388488], [-116.207010434, 43.824362028], [-116.203677851, 43.794291328], [-116.163252008, 43.783121275], [-116.161834765, 43.742845641], [-116.123414582, 43.736660048], [-116.099073825, 43.753448163]]]}, "properties": {"huc8": "17050114", "name": "Lower Boise", "states": "ID", "areasqkm": 3440.77, "dc_states": "ID", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-118.617913938, 46.297031516], [-118.618152845, 46.280885251], [-118.655055569, 46.253511735], [-118.635482945, 46.244927655], [-118.690661174, 46.196160465], [-118.713130978, 46.145727622], [-118.868035764, 46.124460104], [-118.940785908, 46.058423716], [-118.917801782, 46.038940034], [-118.859661077, 46.02749841], [-118.855750929, 46.001729203], [-118.746454443, 45.945310279], [-118.733304198, 45.925081284], [-118.741864399, 45.907413599], [-118.704681742, 45.900437399], [-118.707451362, 45.865633265], [-118.784643899, 45.864399175], [-118.934420905, 45.952032752], [-119.188607989, 45.857804768], [-119.258400917, 45.8711092], [-119.243992272, 45.87528243], [-119.261110216, 45.901511499], [-119.250576928, 45.922363159], [-119.326508818, 45.909633079], [-119.355758386, 45.918948036], [-119.36693155, 45.90158677], [-119.350705182, 45.889645046], [-119.41280958, 45.854328023], [-119.437334277, 45.813958322], [-119.417704655, 45.784347602], [-119.547633572, 45.75656499], [-119.548303785, 45.727314896], [-119.5862526, 45.702541378], [-119.569156051, 45.686243134], [-119.591660511, 45.669362872], [-119.542597395, 45.522448811], [-119.546437154, 45.46719245], [-119.646588479, 45.456687475], [-119.752051581, 45.528584717], [-119.81790411, 45.529100985], [-119.84860522, 45.507640598], [-119.887367732, 45.520586735], [-119.883916539, 45.552821212], [-119.90886268, 45.563176586], [-119.919069667, 45.667303877], [-119.974339452, 45.714814971], [-119.965928736, 45.754084638], [-119.995920715, 45.759912901], [-120.008312141, 45.800052317], [-120.031881147, 45.785092192], [-120.031359763, 45.758524303], [-120.064486095, 45.762077353], [-120.131513489, 45.728496804], [-120.093117391, 45.696145141], [-120.118884872, 45.684253623], [-120.134904516, 45.650040802], [-120.134987965, 45.56034177], [-120.173920187, 45.518794298], [-120.181655151, 45.538456425], [-120.196844125, 45.534846907], [-120.220482001, 45.592171453], [-120.283166389, 45.594425626], [-120.302280374, 45.631045148], [-120.33927754, 45.605362943], [-120.410369092, 45.625977241], [-120.412784944, 45.639396185], [-120.612414017, 45.735470722], [-120.650138801, 45.733858478], [-120.661093278, 45.712275083], [-120.63691557, 45.706974689], [-120.642430246, 45.684505096], [-120.609376734, 45.666247754], [-120.622380782, 45.643647521], [-120.64224183, 45.637875628], [-120.638441477, 45.651179807], [-120.716540582, 45.742729489], [-120.681213616, 45.760646622], [-120.701174674, 45.781958038], [-120.705718214, 45.833213438], [-120.656136926, 45.877533649], [-120.68177695, 45.897525795], [-120.638546899, 45.913859292], [-120.634651868, 45.958517534], [-120.598400728, 45.971823379], [-120.597272602, 45.994185171], [-120.462830461, 45.993301938], [-120.456159851, 46.018768149], [-120.284075187, 46.049265946], [-120.215522328, 46.083642366], [-120.121689066, 46.100409596], [-120.103744966, 46.124864509], [-119.82553203, 46.157648406], [-119.717422726, 46.1930605], [-119.701333498, 46.211125077], [-119.538318675, 46.25306604], [-119.476365773, 46.223173791], [-119.490971882, 46.203823258], [-119.46020123, 46.166169329], [-119.36997686, 46.157090468], [-119.348181125, 46.108946579], [-119.151983795, 46.081607639], [-119.129275752, 46.100340835], [-119.163116145, 46.115286512], [-119.150964439, 46.155778025], [-119.160409325, 46.176546526], [-119.139066293, 46.206827197], [-119.110651582, 46.205478415], [-119.088574647, 46.181268382], [-119.040560986, 46.180263824], [-119.023891806, 46.203092245], [-119.00882679, 46.196503256], [-119.012591572, 46.209546866], [-118.927048515, 46.224396987], [-118.828713031, 46.195206845], [-118.777936584, 46.236993091], [-118.701456946, 46.250543076], [-118.617913938, 46.297031516]]]}, "properties": {"huc8": "17070101", "name": "Middle Columbia-Lake Wallula", "states": "OR,WA", "areasqkm": 6644.5, "dc_states": "OR", "cluster_count": 1, "data_center_count": 44, "clustered_data_center_count": 44}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-118.700740947, 45.889836504], [-118.650099397, 45.880086992], [-118.616866187, 45.906968194], [-118.554310475, 45.908272461], [-118.512164895, 45.880478813], [-118.48717497, 45.829872234], [-118.382466904, 45.760942378], [-118.234443742, 45.766612441], [-118.115282394, 45.793669403], [-118.107360373, 45.768549787], [-118.043179556, 45.755693091], [-118.017510669, 45.70643797], [-118.052796037, 45.707938454], [-118.081052459, 45.681862083], [-118.101902642, 45.682594348], [-118.134993522, 45.626828401], [-118.136030974, 45.588612952], [-118.115930122, 45.554381978], [-118.126898559, 45.539561724], [-118.106810671, 45.49799729], [-118.16111666, 45.495302465], [-118.165915811, 45.47725881], [-118.201338554, 45.470324678], [-118.191881624, 45.458258559], [-118.225426557, 45.428427974], [-118.302314651, 45.420933983], [-118.323677902, 45.456099996], [-118.340327665, 45.439032817], [-118.420671874, 45.436041287], [-118.405556284, 45.407225684], [-118.416045987, 45.380955942], [-118.468334539, 45.346729397], [-118.507924842, 45.343679937], [-118.536572466, 45.379115496], [-118.597235686, 45.382469861], [-118.594892369, 45.366880604], [-118.624313514, 45.352557078], [-118.638449787, 45.324376549], [-118.714379727, 45.312547235], [-118.739311104, 45.273301307], [-118.794445296, 45.278867587], [-118.892850321, 45.249030529], [-118.94513359, 45.282868708], [-119.080443493, 45.213297687], [-119.082821429, 45.197156589], [-119.188912079, 45.208684206], [-119.225862885, 45.190721927], [-119.270427877, 45.202190353], [-119.248156402, 45.242375822], [-119.290284211, 45.249430575], [-119.295494847, 45.308089345], [-119.327573337, 45.339328125], [-119.322880883, 45.359813266], [-119.346262527, 45.386871451], [-119.4986079, 45.398091931], [-119.546635361, 45.465592127], [-119.542597395, 45.522448811], [-119.591660511, 45.669362872], [-119.569156051, 45.686243134], [-119.5862526, 45.702541378], [-119.548303785, 45.727314896], [-119.547633572, 45.75656499], [-119.417704655, 45.784347602], [-119.437334277, 45.813958322], [-119.41280958, 45.854328023], [-119.350705182, 45.889645046], [-119.36693155, 45.90158677], [-119.355758386, 45.918948036], [-119.326508818, 45.909633079], [-119.250576928, 45.922363159], [-119.261110216, 45.901511499], [-119.243992272, 45.87528243], [-119.258400917, 45.8711092], [-119.191843351, 45.85778181], [-118.934720583, 45.95204343], [-118.784643899, 45.864399175], [-118.715538806, 45.862539344], [-118.700740947, 45.889836504]]]}, "properties": {"huc8": "17070103", "name": "Umatilla", "states": "OR", "areasqkm": 6541.57, "dc_states": "OR", "cluster_count": 1, "data_center_count": 29, "clustered_data_center_count": 29}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-121.502496951, 46.205024562], [-121.434274905, 46.111171224], [-121.414763956, 46.013482304], [-121.452192716, 45.97853377], [-121.454249644, 45.9126922], [-121.3917393, 45.886929854], [-121.282083108, 45.950049605], [-121.268873413, 45.920862532], [-121.22401086, 45.910014174], [-121.28429895, 45.866809798], [-121.335391742, 45.790876365], [-121.303727098, 45.75133064], [-121.310615317, 45.721240305], [-121.29239307, 45.696331408], [-121.217366348, 45.689289237], [-121.100930345, 45.71345545], [-121.047465643, 45.687541465], [-120.918253249, 45.678972056], [-120.834252718, 45.709028491], [-120.839385949, 45.72045005], [-120.808826471, 45.745294302], [-120.716540582, 45.742729489], [-120.638441477, 45.651179807], [-120.64224183, 45.637875628], [-120.615057101, 45.623014291], [-120.614508548, 45.561676272], [-120.778212229, 45.515234152], [-120.815406054, 45.532894682], [-120.817425671, 45.571976699], [-120.86203515, 45.598074207], [-120.876485354, 45.624931783], [-120.930593299, 45.640706119], [-120.951740807, 45.623077121], [-120.914737733, 45.594470522], [-120.914189304, 45.570685743], [-120.933945127, 45.560972365], [-120.910780087, 45.547411226], [-120.919023104, 45.521050777], [-120.902563757, 45.481672414], [-120.949270331, 45.44660981], [-120.955662307, 45.419987172], [-121.047328726, 45.37602971], [-121.061119833, 45.356894387], [-121.046459431, 45.312455112], [-121.088028595, 45.299122221], [-121.170272317, 45.322633479], [-121.203729395, 45.359717433], [-121.277923812, 45.337302135], [-121.397785897, 45.363810109], [-121.490889136, 45.331603987], [-121.528428897, 45.342107944], [-121.594148347, 45.28384295], [-121.68208624, 45.33393333], [-121.705532329, 45.383544564], [-121.776203511, 45.402671624], [-121.869151445, 45.51418911], [-121.906627955, 45.521146653], [-121.911685804, 45.601769276], [-121.945062036, 45.632527554], [-121.930087627, 45.656203227], [-121.967092128, 45.713864899], [-122.044015415, 45.734959523], [-122.042763539, 45.751458323], [-122.10486509, 45.799985145], [-122.079941521, 45.825131018], [-122.093069784, 45.842296501], [-122.082686074, 45.884464616], [-122.062763898, 45.897534006], [-122.071684507, 45.910071647], [-122.040876892, 45.937666947], [-122.043545196, 45.958750221], [-122.021007556, 45.957716353], [-121.997378912, 45.980297372], [-121.982461071, 46.01540393], [-121.963070594, 45.997326595], [-121.919372697, 45.99245876], [-121.899450991, 46.007319792], [-121.785887269, 45.999716173], [-121.759946266, 46.018412849], [-121.781201122, 46.038873468], [-121.772923566, 46.081310273], [-121.744855149, 46.09733482], [-121.76986663, 46.132070578], [-121.653332482, 46.154997441], [-121.569324445, 46.197641711], [-121.502496951, 46.205024562]]]}, "properties": {"huc8": "17070105", "name": "Middle Columbia-Hood", "states": "OR,WA", "areasqkm": 5589.01, "dc_states": "OR", "cluster_count": 0, "data_center_count": 4, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-121.172033981, 44.491133206], [-121.249864058, 44.549659644], [-121.25612723, 44.573838469], [-121.278043087, 44.567113628], [-121.276228286, 44.513602202], [-121.310023335, 44.490823711], [-121.30900834, 44.471000007], [-121.245572975, 44.412960947], [-121.226719151, 44.354551729], [-121.171050635, 44.315758041], [-121.172068085, 44.290515738], [-121.142906195, 44.280858984], [-121.149780282, 44.220932748], [-121.163585304, 44.216649754], [-121.134100642, 44.183203174], [-121.135227141, 44.1514166], [-121.152694532, 44.135858642], [-121.142041589, 44.114631741], [-121.192812544, 44.100739075], [-121.222051329, 44.072859438], [-121.234929972, 44.022741581], [-121.182053794, 43.938082942], [-121.210465592, 43.925121158], [-121.219781811, 43.896403593], [-121.201494765, 43.873786065], [-121.207318761, 43.851878464], [-121.238180325, 43.833067364], [-121.237148055, 43.789249578], [-121.312628062, 43.84320063], [-121.366725373, 43.847307574], [-121.389617063, 43.867163358], [-121.44045759, 43.858896989], [-121.5042896, 43.77423032], [-121.606822831, 43.723813543], [-121.60123213, 43.702347698], [-121.635182181, 43.691693295], [-121.63563461, 43.649771407], [-121.686831297, 43.605493873], [-121.728231629, 43.602368392], [-121.766650247, 43.629592594], [-121.789366508, 43.577248066], [-121.898976783, 43.537630449], [-121.902250988, 43.520119069], [-121.928597124, 43.54079972], [-122.001324235, 43.547598557], [-122.065157322, 43.52828008], [-122.140265135, 43.529406445], [-122.131009383, 43.557283695], [-122.104180753, 43.574139468], [-122.010964818, 43.60927423], [-122.00009455, 43.626357348], [-121.964912132, 43.62704485], [-121.987070641, 43.654435582], [-121.966917418, 43.702821204], [-121.981168433, 43.743367964], [-121.960875597, 43.763918466], [-121.975391243, 43.856907699], [-121.928212678, 43.909181445], [-121.869143533, 43.912056763], [-121.859711256, 43.961526062], [-121.83646072, 43.971443541], [-121.822029412, 44.011659121], [-121.834311605, 44.040152312], [-121.802451273, 44.052368341], [-121.769073153, 44.101585739], [-121.784259003, 44.148089514], [-121.771556243, 44.167165251], [-121.778065759, 44.22095868], [-121.789648352, 44.249325782], [-121.841345877, 44.285652353], [-121.84598868, 44.366867162], [-121.849379694, 44.484522788], [-121.809382254, 44.514424785], [-121.816316794, 44.537376043], [-121.793895101, 44.59405581], [-121.811565773, 44.615766792], [-121.795443244, 44.724875725], [-121.70927347, 44.716501539], [-121.694543207, 44.733645926], [-121.626647591, 44.744093598], [-121.564629513, 44.720309644], [-121.558785579, 44.696311242], [-121.49772302, 44.654693616], [-121.395613385, 44.63336211], [-121.395443297, 44.601003076], [-121.328522911, 44.592491013], [-121.238291732, 44.610432609], [-121.21345841, 44.557012367], [-121.176170479, 44.530495139], [-121.162837678, 44.502686881], [-121.172033981, 44.491133206]]]}, "properties": {"huc8": "17070301", "name": "Upper Deschutes", "states": "OR", "areasqkm": 5579.65, "dc_states": "OR", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-121.172033981, 44.491133206], [-121.181960662, 44.478353177], [-121.144283545, 44.463464323], [-121.101282241, 44.416645045], [-121.041018731, 44.441003596], [-120.880910311, 44.45263862], [-120.853785845, 44.485596581], [-120.810703177, 44.49819666], [-120.790644613, 44.528095235], [-120.637724775, 44.523850115], [-120.617426926, 44.503287144], [-120.586909469, 44.501917225], [-120.525503447, 44.522835602], [-120.475338554, 44.494868912], [-120.410915051, 44.511293105], [-120.360355355, 44.50422496], [-120.354358283, 44.479165171], [-120.316594521, 44.45046262], [-120.339213108, 44.412687108], [-120.332069312, 44.400540969], [-120.355090208, 44.382178173], [-120.339087786, 44.364840679], [-120.359668666, 44.327876298], [-120.373414659, 44.330170141], [-120.370399061, 44.298502772], [-120.393481234, 44.276930789], [-120.435179196, 44.281255327], [-120.455595031, 44.263305238], [-120.495358836, 44.275700393], [-120.577080894, 44.217171384], [-120.633644154, 44.225918463], [-120.726986939, 44.200194225], [-120.794649499, 44.093207449], [-120.779163906, 44.022168422], [-120.76284831, 44.008195871], [-120.798882792, 43.963740066], [-120.850001782, 43.959516268], [-120.819975298, 43.945268789], [-120.796909871, 43.896347664], [-120.736919566, 43.881841483], [-120.651034762, 43.91175086], [-120.611946739, 43.883678419], [-120.534272857, 43.900511291], [-120.521314703, 43.89040095], [-120.430916387, 43.940423237], [-120.394384127, 43.911289549], [-120.365019172, 43.919632211], [-120.362968459, 43.893468471], [-120.278450477, 43.864467142], [-120.285708609, 43.837251227], [-120.268218023, 43.819260672], [-120.282396303, 43.774691989], [-120.302504424, 43.801022767], [-120.3867021, 43.797267317], [-120.423759365, 43.825516717], [-120.442101687, 43.806323422], [-120.504302069, 43.827976116], [-120.57860505, 43.820084546], [-120.589896418, 43.794608725], [-120.66794502, 43.759537009], [-120.652704954, 43.747710803], [-120.660464788, 43.724590847], [-120.619985266, 43.697295035], [-120.64383862, 43.679983599], [-120.639606349, 43.645066019], [-120.610688647, 43.64015834], [-120.567689327, 43.589599551], [-120.626318952, 43.572973809], [-120.65798116, 43.596203233], [-120.657652783, 43.612065414], [-120.76400255, 43.609240817], [-120.792017043, 43.636160366], [-120.842606511, 43.610460596], [-120.89250665, 43.634077505], [-120.912235463, 43.614631791], [-120.978049388, 43.612129], [-120.984648577, 43.634253784], [-121.016145778, 43.644886989], [-120.995420626, 43.667202268], [-121.010446175, 43.6830562], [-121.156791371, 43.700710017], [-121.191351496, 43.746627725], [-121.242218696, 43.743666088], [-121.254368565, 43.768201781], [-121.233466582, 43.784756627], [-121.238180325, 43.833067364], [-121.207318761, 43.851878464], [-121.201494765, 43.873786065], [-121.219298885, 43.900830729], [-121.210434015, 43.925184982], [-121.182106828, 43.936829578], [-121.233687638, 44.017051705], [-121.222941196, 44.070450676], [-121.192812544, 44.100739075], [-121.142041589, 44.114631741], [-121.152694532, 44.135858642], [-121.133056993, 44.174581829], [-121.163585304, 44.216649754], [-121.149780282, 44.220932748], [-121.142906195, 44.280858984], [-121.172068085, 44.290515738], [-121.171050635, 44.315758041], [-121.226719151, 44.354551729], [-121.245572975, 44.412960947], [-121.30900834, 44.471000007], [-121.310023335, 44.490823711], [-121.276228286, 44.513602202], [-121.278043087, 44.567113628], [-121.25612723, 44.573838469], [-121.249864058, 44.549659644], [-121.172033981, 44.491133206]]]}, "properties": {"huc8": "17070305", "name": "Lower Crooked", "states": "OR", "areasqkm": 4786.99, "dc_states": "OR", "cluster_count": 1, "data_center_count": 13, "clustered_data_center_count": 13}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-123.059116387, 44.01990915], [-122.955848715, 44.005300998], [-122.938805194, 43.969949346], [-122.886313617, 43.93700782], [-122.907018886, 43.894090224], [-122.892922791, 43.86765561], [-122.901630718, 43.852172529], [-122.830081347, 43.79407502], [-122.789070189, 43.77921749], [-122.670247228, 43.797222657], [-122.596393396, 43.744783712], [-122.591493336, 43.720590075], [-122.568355455, 43.707562182], [-122.565222471, 43.639910014], [-122.529315969, 43.620993795], [-122.548745305, 43.589475363], [-122.653060027, 43.585730934], [-122.71338323, 43.519835024], [-122.757296262, 43.514921587], [-122.784264409, 43.532514703], [-122.840424101, 43.504617705], [-122.894854159, 43.528910862], [-122.993263846, 43.539861026], [-123.122775938, 43.528799012], [-123.102639025, 43.583536543], [-123.135413127, 43.631482765], [-123.132545905, 43.703836469], [-123.154128614, 43.734614618], [-123.118469316, 43.747111154], [-123.140953733, 43.769665382], [-123.132771708, 43.787665201], [-123.164127295, 43.843962935], [-123.12922937, 43.87154845], [-123.160555217, 43.879974136], [-123.172447007, 43.915728121], [-123.100374639, 43.981461883], [-123.066215947, 43.989027435], [-123.059116387, 44.01990915]]]}, "properties": {"huc8": "17090002", "name": "Coast Fork Willamette", "states": "OR", "areasqkm": 1726.16, "dc_states": "OR", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-123.137429998, 44.751489113], [-123.045154849, 44.732383511], [-123.041648533, 44.691069917], [-123.01037174, 44.681998278], [-123.015812266, 44.653592248], [-122.958647271, 44.637281621], [-122.904316559, 44.553202814], [-122.91029372, 44.522909511], [-122.858693034, 44.492354031], [-122.845140236, 44.451979178], [-122.885298605, 44.433283069], [-122.863910619, 44.3988187], [-122.758634613, 44.387582832], [-122.717234369, 44.370405162], [-122.708728845, 44.34608521], [-122.664724383, 44.317217473], [-122.579830512, 44.311148653], [-122.453188439, 44.267134291], [-122.413776201, 44.291882828], [-122.380374784, 44.270200154], [-122.335400859, 44.272146803], [-122.321526776, 44.267253539], [-122.327312618, 44.231189223], [-122.367197139, 44.209379675], [-122.536297153, 44.235036029], [-122.577019409, 44.227881221], [-122.593471333, 44.244427369], [-122.639957908, 44.24939738], [-122.657359564, 44.270963016], [-122.731121143, 44.288230366], [-122.823015409, 44.274319975], [-122.898158538, 44.298123021], [-123.006412835, 44.176741281], [-122.978668047, 44.131443499], [-123.0160654, 44.110800698], [-123.105908979, 44.12595888], [-123.059354794, 44.110392418], [-123.02424219, 44.070919752], [-122.97077507, 44.067659248], [-122.948585903, 44.039787187], [-123.015654025, 44.044212922], [-123.009038913, 44.025634341], [-123.059116387, 44.01990915], [-123.066215947, 43.989027435], [-123.155859423, 43.941234309], [-123.172447007, 43.915728121], [-123.167035606, 43.890756557], [-123.199710844, 43.865950087], [-123.260324696, 43.890887806], [-123.272713001, 43.879529809], [-123.326791618, 43.891142215], [-123.30648131, 43.911263421], [-123.362458132, 43.955010164], [-123.355625502, 43.972309861], [-123.414881811, 43.977328964], [-123.452773055, 43.99931516], [-123.482264182, 44.047731599], [-123.517394233, 44.045206925], [-123.558011844, 44.077488046], [-123.541526542, 44.102314944], [-123.547427202, 44.127021324], [-123.505124793, 44.146759263], [-123.501035648, 44.172091786], [-123.478743227, 44.185214464], [-123.485520754, 44.212220052], [-123.437263478, 44.219711754], [-123.422302222, 44.237835484], [-123.448634793, 44.27506752], [-123.434329681, 44.282093848], [-123.448912421, 44.31512633], [-123.437769655, 44.339398528], [-123.486838563, 44.410387714], [-123.478252488, 44.444898391], [-123.551200651, 44.51060976], [-123.588746079, 44.512593765], [-123.58821841, 44.533614636], [-123.633675458, 44.560604328], [-123.634252766, 44.584279257], [-123.654881253, 44.598742626], [-123.646445469, 44.621344482], [-123.662431167, 44.637020872], [-123.60430271, 44.621024842], [-123.573581391, 44.64417049], [-123.58882118, 44.677245472], [-123.576745693, 44.73770223], [-123.653824767, 44.767027746], [-123.643009517, 44.811294326], [-123.565902209, 44.828523652], [-123.568621252, 44.843064373], [-123.644066509, 44.872317336], [-123.616352995, 44.893678769], [-123.552684708, 44.876520443], [-123.518065643, 44.895403664], [-123.4428888, 44.889149321], [-123.384100561, 44.908939908], [-123.363127643, 44.888215094], [-123.32219517, 44.8949804], [-123.302342411, 44.838846802], [-123.246193077, 44.807491686], [-123.186955947, 44.798205555], [-123.137429998, 44.751489113]]]}, "properties": {"huc8": "17090003", "name": "Upper Willamette", "states": "OR", "areasqkm": 4850.16, "dc_states": "OR", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-122.253992973, 44.899860067], [-122.200064972, 44.878972467], [-122.207952885, 44.864947922], [-122.134655047, 44.8654024], [-122.144782089, 44.810210414], [-122.077571004, 44.810530226], [-122.040329057, 44.846396263], [-122.014082538, 44.849453724], [-121.987866392, 44.818670127], [-121.831667582, 44.812880709], [-121.81224017, 44.781439337], [-121.761057596, 44.765197526], [-121.804694351, 44.729168645], [-121.793496373, 44.695775994], [-121.811565773, 44.615766792], [-121.793895101, 44.59405581], [-121.816316794, 44.537376043], [-121.809382254, 44.514424785], [-121.846879605, 44.491089673], [-121.844112607, 44.471441692], [-121.910730699, 44.464967645], [-122.011120075, 44.488946025], [-122.023775952, 44.508413755], [-122.075139109, 44.506104204], [-122.027814869, 44.537659812], [-122.054334019, 44.540360492], [-122.073265209, 44.563926683], [-122.113648051, 44.5653124], [-122.132823799, 44.594540606], [-122.229625987, 44.616539954], [-122.247946226, 44.647434858], [-122.314915745, 44.672114388], [-122.346359817, 44.661848362], [-122.402577283, 44.672904764], [-122.662417968, 44.76978662], [-122.730243108, 44.753866653], [-122.727053607, 44.741797482], [-122.748931973, 44.734319671], [-122.786968851, 44.749421193], [-122.875023386, 44.735978168], [-123.015461558, 44.68448309], [-123.043886467, 44.694528512], [-123.045154849, 44.732383511], [-123.14281007, 44.749901845], [-123.059705169, 44.763525697], [-123.040650063, 44.780612833], [-122.970397452, 44.772384658], [-122.70279112, 44.820185498], [-122.502428063, 44.834790494], [-122.446563077, 44.860345464], [-122.403912662, 44.855060426], [-122.394073357, 44.878703601], [-122.320875188, 44.865263216], [-122.253992973, 44.899860067]]]}, "properties": {"huc8": "17090005", "name": "North Santiam", "states": "OR", "areasqkm": 1979.34, "dc_states": "OR", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-122.648727278, 45.372742619], [-122.590413224, 45.363251804], [-122.511658709, 45.380135609], [-122.507773523, 45.34309431], [-122.486653149, 45.342649542], [-122.436228011, 45.299270015], [-122.460471376, 45.263566816], [-122.45104927, 45.249585814], [-122.528745157, 45.266367791], [-122.621889342, 45.242890652], [-122.655351675, 45.279724741], [-122.658073519, 45.263111457], [-122.687908, 45.24996886], [-122.709015535, 45.271168563], [-122.694536913, 45.286381452], [-122.746005769, 45.297866505], [-122.733685042, 45.285538049], [-122.75654748, 45.266888965], [-122.833477497, 45.256354975], [-122.828808767, 45.232991492], [-122.927331309, 45.135383393], [-122.931514026, 45.082109151], [-122.976674523, 45.055815546], [-123.002420651, 44.992764057], [-122.960878176, 44.986343967], [-122.981176588, 44.943948721], [-122.976860546, 44.914525601], [-122.942114736, 44.88613725], [-122.89131415, 44.870919369], [-122.842107401, 44.897165705], [-122.624614122, 44.823698215], [-122.89542818, 44.793669482], [-122.970397452, 44.772384658], [-123.040650063, 44.780612833], [-123.059705169, 44.763525697], [-123.137429998, 44.751489113], [-123.186955947, 44.798205555], [-123.246193077, 44.807491686], [-123.302342411, 44.838846802], [-123.32219517, 44.8949804], [-123.363127643, 44.888215094], [-123.384100561, 44.908939908], [-123.4428888, 44.889149321], [-123.518065643, 44.895403664], [-123.552684708, 44.876520443], [-123.617279859, 44.893585284], [-123.592174314, 44.901114413], [-123.58188414, 44.923462427], [-123.533335796, 44.921708187], [-123.495221134, 44.940241861], [-123.461356509, 44.921617744], [-123.442975553, 44.950978383], [-123.376358848, 44.96691081], [-123.34437576, 44.964620459], [-123.336897878, 44.938308201], [-123.293158454, 44.942854159], [-123.280220993, 44.96344755], [-123.289892512, 44.975274594], [-123.275848489, 44.988226002], [-123.250739712, 44.982720436], [-123.240062749, 45.004180977], [-123.195279315, 44.97284973], [-123.198933195, 44.993878336], [-123.175607108, 44.998928266], [-123.14339521, 45.040903214], [-123.152692071, 45.060846907], [-123.070914559, 45.101542685], [-123.054392803, 45.141982626], [-123.054699354, 45.218879003], [-122.997969651, 45.229305835], [-123.06803292, 45.261617966], [-123.066578403, 45.291759551], [-123.105713639, 45.287397776], [-123.117363339, 45.309906592], [-123.103734966, 45.326615544], [-123.108938953, 45.352805611], [-123.132232159, 45.37191654], [-123.122970186, 45.382968955], [-123.080062436, 45.36848246], [-123.048081192, 45.386050955], [-122.92453036, 45.337348137], [-122.895830558, 45.304398403], [-122.849030572, 45.329173967], [-122.800500178, 45.325025523], [-122.813172714, 45.3666299], [-122.770023675, 45.359447964], [-122.761600544, 45.343964621], [-122.712777716, 45.359451134], [-122.67721078, 45.334415583], [-122.649966066, 45.338598782], [-122.661028898, 45.346738961], [-122.648727278, 45.372742619]]]}, "properties": {"huc8": "17090007", "name": "Middle Willamette", "states": "OR", "areasqkm": 1841.48, "dc_states": "OR", "cluster_count": 1, "data_center_count": 3, "clustered_data_center_count": 1}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-123.047447884, 45.793773689], [-123.011116307, 45.736156157], [-122.915671215, 45.699218728], [-122.912074322, 45.669897711], [-122.870262959, 45.614549208], [-122.830635769, 45.608801716], [-122.735722031, 45.507642621], [-122.698500312, 45.492681062], [-122.692946204, 45.477753148], [-122.728821953, 45.452527272], [-122.716012691, 45.427980658], [-122.746666595, 45.397065175], [-122.670018992, 45.400339726], [-122.648727278, 45.372742619], [-122.661028898, 45.346738961], [-122.649966066, 45.338598782], [-122.67721078, 45.334415583], [-122.712777716, 45.359451134], [-122.762120371, 45.344039064], [-122.770023675, 45.359447964], [-122.813172714, 45.3666299], [-122.800500178, 45.325025523], [-122.849030572, 45.329173967], [-122.901902118, 45.305253334], [-122.92453036, 45.337348137], [-123.048081192, 45.386050955], [-123.080183262, 45.368506701], [-123.239125152, 45.427525981], [-123.287531264, 45.425693754], [-123.415669081, 45.464140557], [-123.393442814, 45.541174808], [-123.366798352, 45.568906513], [-123.29342472, 45.589171926], [-123.342180371, 45.629679321], [-123.38731847, 45.627354192], [-123.405962412, 45.686396199], [-123.385923364, 45.69582106], [-123.334597191, 45.680665572], [-123.299056685, 45.711105202], [-123.263793158, 45.706496467], [-123.235444339, 45.752262464], [-123.14500647, 45.755384344], [-123.103508033, 45.787895354], [-123.047447884, 45.793773689]]]}, "properties": {"huc8": "17090010", "name": "Tualatin", "states": "OR", "areasqkm": 1835.95, "dc_states": "OR", "cluster_count": 1, "data_center_count": 39, "clustered_data_center_count": 39}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-122.526183388, 45.565905164], [-122.384899819, 45.554407713], [-122.422313954, 45.50602671], [-122.401233494, 45.477407554], [-122.299147096, 45.466450986], [-122.286906627, 45.443600767], [-122.358489156, 45.453277528], [-122.359063304, 45.438760758], [-122.435793814, 45.427992592], [-122.438116331, 45.453576052], [-122.482168539, 45.454636319], [-122.529305797, 45.438329362], [-122.533815872, 45.416954289], [-122.594327246, 45.398043458], [-122.596104884, 45.381385832], [-122.63098502, 45.364607615], [-122.670018992, 45.400339726], [-122.745228684, 45.395712469], [-122.715911693, 45.428185798], [-122.728580416, 45.453009762], [-122.69362206, 45.486887073], [-122.735722031, 45.507642621], [-122.830635769, 45.608801716], [-122.848986833, 45.602888976], [-122.878630309, 45.622129161], [-122.915671215, 45.699218728], [-123.011116307, 45.736156157], [-123.051774198, 45.8011106], [-123.046537502, 45.842440323], [-123.034038823, 45.860265192], [-122.977323776, 45.86751147], [-122.993186861, 45.938709813], [-122.855476833, 45.900741999], [-122.825185557, 45.878207627], [-122.823944641, 45.860337475], [-122.792384872, 45.855399001], [-122.800076343, 45.810327175], [-122.769704645, 45.766656171], [-122.779024716, 45.680749468], [-122.76203192, 45.638713944], [-122.526183388, 45.565905164]]]}, "properties": {"huc8": "17090012", "name": "Lower Willamette", "states": "OR", "areasqkm": 1053.19, "dc_states": "OR", "cluster_count": 1, "data_center_count": 5, "clustered_data_center_count": 5}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-122.502754448, 42.243937924], [-122.507571944, 42.143512886], [-122.478187752, 42.123140409], [-122.479057542, 42.064803124], [-122.575537815, 42.030128366], [-122.62129405, 42.083413116], [-122.668319079, 42.06672066], [-122.731142163, 42.086201454], [-122.750083647, 42.077631573], [-122.772584662, 42.12764595], [-122.806148363, 42.140887675], [-122.840354306, 42.18288263], [-122.874392349, 42.180514668], [-122.896107037, 42.197467993], [-122.91761587, 42.243633324], [-122.94949814, 42.242959104], [-122.94841757, 42.290178581], [-123.027076971, 42.292738785], [-123.046221805, 42.333896376], [-123.164013122, 42.308880736], [-123.188932765, 42.352322768], [-123.254102515, 42.35762153], [-123.256663438, 42.37801042], [-123.275614172, 42.382041871], [-123.387535357, 42.380401626], [-123.454170234, 42.442048659], [-123.40734734, 42.495455414], [-123.382936435, 42.472985351], [-123.312185851, 42.490480542], [-123.243731756, 42.476995257], [-123.229281854, 42.51212022], [-123.254746751, 42.536536949], [-123.22007733, 42.589633669], [-123.233254185, 42.626123933], [-123.19320786, 42.628929107], [-123.130227884, 42.71034891], [-123.140464933, 42.738524907], [-123.122397471, 42.761881899], [-123.098767969, 42.763764132], [-123.065811372, 42.732885408], [-123.019097971, 42.744493777], [-122.997984565, 42.722061453], [-122.93849209, 42.764161038], [-122.945161024, 42.708717342], [-122.900274746, 42.654024746], [-122.913784384, 42.632785389], [-122.899778317, 42.577143069], [-122.915245076, 42.540773276], [-122.877770855, 42.489538939], [-122.903307739, 42.4785436], [-122.896351274, 42.468347309], [-122.785855365, 42.419708324], [-122.786457124, 42.352500384], [-122.714417205, 42.293546919], [-122.639664467, 42.258939509], [-122.568912908, 42.291447142], [-122.561433057, 42.273201076], [-122.502754448, 42.243937924]]]}, "properties": {"huc8": "17100308", "name": "Middle Rogue", "states": "OR", "areasqkm": 2284.48, "dc_states": "OR", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-122.32529584, 49.042908645], [-122.324729884, 48.993830165], [-122.369641033, 49.000831119], [-122.403264307, 48.975856061], [-122.368200038, 48.962945019], [-122.32564026, 48.875967178], [-122.286932922, 48.853630308], [-122.249002315, 48.86199952], [-122.221657839, 48.913562733], [-122.177162437, 48.921047117], [-122.16736228, 48.988844958], [-122.066899345, 49.037987075], [-122.043200599, 49.024378362], [-122.064223431, 49.014898322], [-122.056975832, 48.99695974], [-122.024124277, 48.978684278], [-121.97112526, 48.970229835], [-121.871819551, 48.989473866], [-121.804140385, 48.96776165], [-121.789565906, 48.935081267], [-121.729505715, 48.925472013], [-121.70592213, 48.929695596], [-121.691886052, 48.955891733], [-121.63093592, 48.955416467], [-121.623159071, 48.924670176], [-121.564035307, 48.918421977], [-121.537753624, 48.897230338], [-121.527866109, 48.837062893], [-121.569653576, 48.820085165], [-121.679260034, 48.852984476], [-121.781021701, 48.807706044], [-121.831797259, 48.760874731], [-121.853988683, 48.701843948], [-121.845335224, 48.680233], [-121.783541433, 48.658600595], [-121.816192865, 48.614544319], [-121.888881155, 48.584560304], [-122.06616348, 48.594787196], [-122.105749154, 48.57236366], [-122.149819889, 48.576163632], [-122.163250046, 48.602797159], [-122.155897008, 48.659554367], [-122.183835102, 48.691934229], [-122.245877111, 48.693503347], [-122.213446575, 48.661418794], [-122.257569327, 48.634543984], [-122.27634389, 48.642470247], [-122.286329839, 48.62435872], [-122.301889273, 48.662188922], [-122.352764368, 48.675356644], [-122.381621306, 48.709646889], [-122.41681697, 48.676111392], [-122.472463201, 48.680319166], [-122.465343239, 48.652443434], [-122.60823889, 48.640264682], [-122.709942839, 48.727620785], [-122.707299061, 48.802702436], [-122.687709956, 48.845901291], [-122.574013605, 48.896086383], [-122.601868066, 48.923278325], [-122.552227209, 48.943684544], [-122.566666807, 48.994935015], [-122.542343546, 49.029985332], [-122.550086892, 49.048150904], [-122.488324727, 49.07890132], [-122.414006345, 49.051201384], [-122.401255288, 49.071349022], [-122.342845189, 49.065129132], [-122.331625607, 49.050492809], [-122.353135676, 49.046594336], [-122.32529584, 49.042908645]]]}, "properties": {"huc8": "17110004", "name": "Nooksack", "states": "CN,WA", "areasqkm": 2639.26, "dc_states": "WA", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-122.228234334, 47.921856782], [-122.134643674, 47.855142473], [-122.105801757, 47.804568732], [-122.06636406, 47.803478589], [-122.040672364, 47.780567329], [-122.050709057, 47.763417465], [-122.023014031, 47.728191878], [-122.034901399, 47.713226057], [-122.004148656, 47.678904855], [-122.011775206, 47.631773414], [-121.981612286, 47.597790848], [-121.992779412, 47.579848997], [-121.929863306, 47.538258184], [-121.956247494, 47.506036426], [-121.926961843, 47.47805261], [-121.92611985, 47.455540302], [-121.892037811, 47.454429343], [-121.837031347, 47.424289282], [-121.803909753, 47.441212415], [-121.75198813, 47.413884932], [-121.702983604, 47.427847312], [-121.535774305, 47.354435098], [-121.460729017, 47.352816417], [-121.430317392, 47.333580198], [-121.464369078, 47.270599219], [-121.592300897, 47.301774328], [-121.642562383, 47.291330059], [-121.650311034, 47.307138532], [-121.719164917, 47.325884854], [-121.718996579, 47.340765965], [-121.768366078, 47.324406603], [-121.85340686, 47.383163319], [-121.892408697, 47.370143325], [-121.913371468, 47.329712272], [-121.977797316, 47.314226256], [-121.981726622, 47.337179908], [-121.962335058, 47.346193781], [-122.023904005, 47.36488432], [-122.058833105, 47.41070163], [-122.111703103, 47.43620602], [-122.150973896, 47.430364513], [-122.202216674, 47.479079421], [-122.255130152, 47.492925203], [-122.2980995, 47.538082411], [-122.321984317, 47.608624048], [-122.393901063, 47.649207977], [-122.400037431, 47.685296052], [-122.348459438, 47.693465537], [-122.362662265, 47.735411147], [-122.340861654, 47.748811587], [-122.352774468, 47.7973085], [-122.319768252, 47.838637128], [-122.283883671, 47.85108941], [-122.292186382, 47.900100689], [-122.261529739, 47.921716967], [-122.228234334, 47.921856782]]]}, "properties": {"huc8": "17110012", "name": "Lake Washington", "states": "WA", "areasqkm": 1572.34, "dc_states": "WA", "cluster_count": 1, "data_center_count": 12, "clustered_data_center_count": 12}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-122.303630741, 47.567060501], [-122.2980995, 47.538082411], [-122.255130152, 47.492925203], [-122.202216674, 47.479079421], [-122.150973896, 47.430364513], [-122.102366614, 47.433117367], [-122.04978549, 47.403084665], [-122.023904005, 47.36488432], [-121.962335058, 47.346193781], [-121.981726622, 47.337179908], [-121.977797316, 47.314226256], [-121.913371468, 47.329712272], [-121.892408697, 47.370143325], [-121.85340686, 47.383163319], [-121.774954334, 47.327090141], [-121.718996579, 47.340765965], [-121.71422729, 47.323020388], [-121.685410453, 47.322191133], [-121.626981823, 47.287787036], [-121.592300897, 47.301774328], [-121.554038018, 47.284044639], [-121.503059509, 47.286021083], [-121.476740409, 47.265661533], [-121.444151628, 47.308022851], [-121.420176737, 47.286743206], [-121.361682054, 47.29192332], [-121.331859113, 47.258458993], [-121.365077282, 47.224681054], [-121.311113232, 47.20757326], [-121.317966913, 47.173674617], [-121.297664201, 47.148544495], [-121.315460796, 47.133832076], [-121.364673148, 47.141807259], [-121.409983956, 47.11817873], [-121.471843365, 47.147894165], [-121.550770791, 47.14531613], [-121.580814539, 47.173208197], [-121.658782376, 47.201644729], [-121.698068479, 47.186935549], [-121.712891544, 47.202544528], [-121.810606049, 47.203079816], [-121.859296815, 47.235782542], [-121.910633789, 47.202236851], [-121.950237462, 47.207044986], [-121.961819004, 47.189131181], [-121.992767995, 47.205965061], [-122.061369889, 47.190362177], [-122.043553837, 47.258421766], [-122.08588744, 47.242358281], [-122.176768532, 47.288053746], [-122.225137631, 47.279305984], [-122.285169732, 47.296865211], [-122.282138449, 47.312844751], [-122.311158283, 47.340166441], [-122.285620734, 47.376882064], [-122.297572427, 47.426880124], [-122.280814621, 47.444288757], [-122.359611778, 47.543813604], [-122.357173909, 47.566219761], [-122.303630741, 47.567060501]]]}, "properties": {"huc8": "17110013", "name": "Duwamish", "states": "WA", "areasqkm": 1257.91, "dc_states": "WA", "cluster_count": 1, "data_center_count": 11, "clustered_data_center_count": 11}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-121.407932894, 47.117945738], [-121.402618275, 47.098235798], [-121.377002998, 47.090387502], [-121.374465107, 47.056674484], [-121.400247752, 47.033595196], [-121.407343736, 46.998169834], [-121.457304438, 46.964210508], [-121.45622076, 46.923897328], [-121.496397476, 46.90893173], [-121.522680602, 46.873461886], [-121.59597937, 46.865964802], [-121.618243032, 46.850097014], [-121.772993685, 46.851391722], [-121.934062145, 46.782338737], [-121.983193414, 46.798371762], [-122.026398577, 46.864620427], [-122.13306538, 46.926671509], [-122.237587489, 46.931720976], [-122.242828162, 46.981058236], [-122.225009843, 47.004752905], [-122.247885243, 47.016440252], [-122.237926244, 47.044493743], [-122.272667081, 47.045889076], [-122.249977112, 47.058526602], [-122.271092616, 47.082344536], [-122.250889782, 47.101641421], [-122.304838848, 47.097099695], [-122.313012427, 47.140299029], [-122.351381427, 47.136846877], [-122.371131461, 47.157622941], [-122.395420275, 47.147592785], [-122.420837019, 47.199322764], [-122.422387724, 47.2456918], [-122.416812441, 47.258844717], [-122.391408144, 47.236653627], [-122.283588293, 47.205645318], [-122.260296082, 47.235992639], [-122.295664983, 47.228547155], [-122.285850006, 47.29643059], [-122.225137631, 47.279305984], [-122.177272872, 47.288164972], [-122.085987132, 47.242377525], [-122.042946967, 47.258083749], [-122.05943252, 47.189681859], [-121.992767995, 47.205965061], [-121.961819004, 47.189131181], [-121.950237462, 47.207044986], [-121.910633789, 47.202236851], [-121.888320002, 47.228732552], [-121.853610678, 47.235273977], [-121.810606049, 47.203079816], [-121.712891544, 47.202544528], [-121.698068479, 47.186935549], [-121.658782376, 47.201644729], [-121.580814539, 47.173208197], [-121.550770791, 47.14531613], [-121.471843365, 47.147894165], [-121.407932894, 47.117945738]]]}, "properties": {"huc8": "17110014", "name": "Puyallup", "states": "WA", "areasqkm": 2550.7, "dc_states": "WA", "cluster_count": 0, "data_center_count": 4, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "MultiPolygon", "coordinates": [[[[-122.70135044, 47.087606791], [-122.700415394, 47.08757312], [-122.701561022, 47.087024368], [-122.70135044, 47.087606791]]], [[[-122.680716616, 47.098552203], [-122.508992457, 47.083824022], [-122.494242697, 47.063929476], [-122.386247417, 47.026764333], [-122.342334114, 47.056697949], [-122.255147771, 47.064247969], [-122.272667081, 47.045889076], [-122.237926244, 47.044493743], [-122.247885243, 47.016440252], [-122.224902138, 47.004140884], [-122.242828162, 46.981058236], [-122.237587489, 46.931720976], [-122.13306538, 46.926671509], [-122.026398577, 46.864620427], [-121.983193414, 46.798371762], [-121.933533509, 46.782461392], [-121.757929625, 46.854044459], [-121.710191851, 46.798441775], [-121.741013011, 46.773111528], [-121.732699213, 46.757757501], [-121.7756538, 46.741026628], [-121.777058893, 46.715331884], [-121.841295559, 46.713425182], [-121.822506778, 46.693674486], [-121.845258344, 46.653855736], [-121.957073862, 46.666296354], [-121.97997969, 46.65541333], [-121.998779026, 46.596870522], [-122.070710599, 46.596985746], [-122.110450492, 46.629728997], [-122.170580345, 46.622286562], [-122.163667199, 46.654091936], [-122.231420806, 46.660215292], [-122.255540136, 46.679126585], [-122.365935944, 46.656570024], [-122.369006428, 46.690300929], [-122.322215126, 46.755067317], [-122.339939608, 46.804726349], [-122.420604993, 46.819345552], [-122.464190422, 46.799302938], [-122.492014737, 46.803843519], [-122.55973697, 46.862433402], [-122.619264311, 46.852672017], [-122.67172125, 46.867036688], [-122.662167649, 46.898755249], [-122.678946262, 46.9302832], [-122.742544154, 46.920620588], [-122.765391066, 46.934559835], [-122.739905073, 46.960949535], [-122.761227421, 46.984547682], [-122.742191865, 46.99692683], [-122.758265273, 47.011956599], [-122.748023968, 47.025337101], [-122.776054184, 47.036473391], [-122.740676639, 47.059889684], [-122.74941643, 47.086328164], [-122.72793364, 47.098346232], [-122.732204648, 47.069300936], [-122.714434718, 47.069058722], [-122.720212981, 47.081372379], [-122.692663791, 47.083566429], [-122.680716616, 47.098552203]]]]}, "properties": {"huc8": "17110015", "name": "Nisqually", "states": "WA", "areasqkm": 1991.42, "dc_states": "WA", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-122.465331526, 48.420670353], [-122.492284343, 48.399961561], [-122.483983181, 48.393491257], [-122.504672168, 48.383769371], [-122.506653364, 48.369632991], [-122.488100892, 48.382542489], [-122.448223686, 48.342853498], [-122.356933278, 48.311071599], [-122.397614463, 48.241864653], [-122.351840677, 48.188117832], [-122.369795235, 48.164700203], [-122.361128641, 48.12027332], [-122.316349186, 48.133225338], [-122.308642412, 48.162972191], [-122.272615946, 48.160172967], [-122.224381276, 48.096846665], [-122.227036445, 48.064383499], [-122.186841973, 48.04860595], [-122.208656112, 48.022013697], [-122.19298927, 48.009906318], [-122.208031366, 48.00211784], [-122.216600053, 47.927173178], [-122.291671322, 47.900777803], [-122.283883671, 47.85108941], [-122.319768252, 47.838637128], [-122.352774468, 47.7973085], [-122.340861654, 47.748811587], [-122.362662265, 47.735411147], [-122.348459438, 47.693465537], [-122.399990153, 47.685986748], [-122.393901063, 47.649207977], [-122.321984317, 47.608624048], [-122.303630741, 47.567060501], [-122.357173909, 47.566219761], [-122.359611778, 47.543813604], [-122.280814621, 47.444288757], [-122.297572427, 47.426880124], [-122.285620734, 47.376882064], [-122.311053638, 47.337691552], [-122.282084383, 47.312505292], [-122.295664983, 47.228547155], [-122.260300785, 47.235654744], [-122.265072791, 47.215069291], [-122.293009185, 47.205612648], [-122.418705587, 47.258553925], [-122.421021337, 47.200082044], [-122.395420275, 47.147592785], [-122.371131461, 47.157622941], [-122.351381427, 47.136846877], [-122.313012427, 47.140299029], [-122.304838848, 47.097099695], [-122.250889782, 47.101641421], [-122.270920184, 47.083697743], [-122.25901629, 47.064895086], [-122.34321839, 47.056435418], [-122.386247417, 47.026764333], [-122.523179854, 47.087208804], [-122.681864181, 47.099049244], [-122.692663791, 47.083566429], [-122.720217106, 47.081368626], [-122.71370808, 47.069190643], [-122.730383361, 47.068748346], [-122.729495968, 47.098218281], [-122.750395919, 47.084970725], [-122.740676639, 47.059889684], [-122.776212319, 47.03613625], [-122.747666669, 47.02480079], [-122.758265273, 47.011956599], [-122.742296756, 46.996477233], [-122.765781095, 46.984706834], [-122.83799752, 47.035176129], [-122.854956306, 47.006530587], [-122.881569156, 47.004271455], [-122.901874182, 47.043340078], [-122.93007187, 47.036798984], [-122.934507116, 47.067814658], [-123.013246449, 46.984524923], [-123.046723218, 46.990249932], [-123.063974391, 47.020745352], [-123.111087061, 47.008686757], [-123.165901741, 47.031620153], [-123.189927092, 47.086057072], [-123.23658336, 47.084723479], [-123.220020051, 47.11431096], [-123.246474368, 47.121981858], [-123.199698995, 47.158496698], [-123.207079532, 47.167869072], [-123.250407204, 47.152815143], [-123.281416416, 47.165251591], [-123.256943041, 47.218596698], [-123.262622222, 47.245618108], [-123.297936932, 47.26021246], [-123.305103868, 47.307731486], [-123.218062634, 47.304475895], [-123.205499541, 47.277540794], [-123.170184971, 47.265776467], [-123.120631233, 47.290595683], [-123.098305728, 47.330471977], [-122.842009523, 47.395878144], [-122.834393167, 47.42774625], [-122.747318765, 47.498727068], [-122.770814028, 47.521118089], [-122.74562747, 47.565931128], [-122.784738029, 47.562393379], [-122.799828886, 47.585939379], [-122.757785739, 47.628010449], [-122.726802927, 47.619978609], [-122.716062489, 47.718991551], [-122.642939024, 47.797681156], [-122.623510296, 47.797091076], [-122.624289586, 47.776128428], [-122.5988501, 47.74993574], [-122.540589391, 47.811539636], [-122.5422433, 47.88943645], [-122.613645063, 47.939329134], [-122.658894639, 47.930881324], [-122.674037136, 47.888281423], [-122.691572997, 47.905230708], [-122.716509863, 47.902633134], [-122.728731047, 47.88375489], [-122.808892109, 47.90831331], [-122.864478209, 47.949370397], [-122.855791201, 47.984913166], [-122.803259903, 48.004149543], [-122.816532907, 48.021674992], [-122.810607614, 48.047929908], [-122.830887302, 48.062720014], [-122.81370482, 48.075535893], [-122.83071516, 48.100078027], [-122.795851344, 48.120514208], [-122.76738567, 48.117632792], [-122.768825024, 48.140002966], [-122.753996538, 48.143896712], [-122.862996687, 48.242819511], [-122.862912092, 48.370114975], [-122.753672864, 48.376396207], [-122.733724919, 48.415019118], [-122.755269478, 48.482143568], [-122.685724308, 48.503647482], [-122.652622785, 48.49781934], [-122.653004547, 48.484523168], [-122.634490543, 48.491801648], [-122.638653036, 48.46949609], [-122.604032881, 48.467059205], [-122.59323441, 48.441861389], [-122.540574022, 48.463082515], [-122.5326612, 48.424810264], [-122.465331526, 48.420670353]], [[-122.538668247, 48.362868536], [-122.509437323, 48.368612402], [-122.50673084, 48.369897891], [-122.538668247, 48.362868536]], [[-122.48529722, 48.36905188], [-122.491082431, 48.370002436], [-122.498367794, 48.368261507], [-122.48529722, 48.36905188]], [[-122.477996888, 48.36852346], [-122.483720871, 48.370554628], [-122.476568638, 48.366408721], [-122.477996888, 48.36852346]], [[-122.474077425, 48.363559317], [-122.47949068, 48.365222074], [-122.481884553, 48.362671677], [-122.474077425, 48.363559317]], [[-122.498374688, 48.362344405], [-122.508223963, 48.360515693], [-122.498076266, 48.360796702], [-122.498374688, 48.362344405]], [[-122.471387734, 48.352148793], [-122.471439289, 48.353235744], [-122.473065379, 48.352227388], [-122.471387734, 48.352148793]], [[-122.700415394, 47.08757312], [-122.70135044, 47.087606791], [-122.701561022, 47.087024368], [-122.700415394, 47.08757312]]]}, "properties": {"huc8": "17110019", "name": "Puget Sound", "states": "WA", "areasqkm": 6355.87, "dc_states": "WA", "cluster_count": 1, "data_center_count": 3, "clustered_data_center_count": 3}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-123.160699029, 39.397645174], [-123.028321627, 39.324233134], [-123.022933626, 39.282982954], [-122.993694355, 39.250376018], [-123.010771671, 39.220571113], [-123.02643631, 39.220975707], [-123.015120889, 39.210433451], [-123.052345287, 39.166014655], [-123.065098989, 39.173371395], [-123.082336913, 39.154576854], [-123.07682329, 39.131025363], [-123.097423475, 39.08488608], [-123.056014094, 39.052790141], [-123.061597424, 39.027474743], [-122.987304838, 38.994927072], [-122.974234286, 38.978823517], [-122.978313984, 38.942242871], [-122.953948149, 38.912377061], [-122.829101383, 38.862240523], [-122.748230082, 38.803678964], [-122.695702805, 38.713338284], [-122.647144421, 38.706933188], [-122.625534534, 38.674917283], [-122.62837479, 38.622799153], [-122.646798362, 38.598177794], [-122.620667813, 38.560063471], [-122.544281184, 38.520395598], [-122.529528123, 38.473283628], [-122.572756664, 38.465407183], [-122.579872622, 38.434024872], [-122.617353999, 38.410709858], [-122.571281823, 38.340943217], [-122.576313688, 38.327929725], [-122.653726198, 38.333326255], [-122.737839819, 38.298758813], [-122.788813854, 38.31461141], [-122.781682626, 38.327538084], [-122.865450513, 38.346339262], [-122.927464323, 38.40720071], [-122.986835748, 38.426187329], [-123.015000518, 38.400939044], [-123.041589986, 38.404015952], [-123.130819034, 38.451993355], [-123.101204635, 38.48974579], [-123.167498253, 38.536773895], [-123.167234268, 38.593811191], [-123.108684326, 38.64741643], [-123.151648316, 38.685525585], [-123.134189687, 38.702666571], [-123.161955667, 38.726199158], [-123.15819128, 38.746721093], [-123.132641461, 38.752652144], [-123.181712831, 38.770902851], [-123.243500299, 38.767552835], [-123.272068375, 38.79816127], [-123.273513626, 38.828832869], [-123.22520138, 38.813281391], [-123.192432545, 38.83643813], [-123.189175436, 38.856129771], [-123.238505265, 38.889673343], [-123.214203387, 38.945589153], [-123.247733005, 38.950935277], [-123.288087899, 38.991091423], [-123.267532026, 39.003273834], [-123.275706771, 39.062019592], [-123.300104359, 39.087406677], [-123.315457129, 39.148135014], [-123.369915666, 39.193475661], [-123.369697001, 39.2111293], [-123.332990151, 39.222877717], [-123.330909057, 39.250050769], [-123.382829242, 39.273586407], [-123.370900579, 39.278404483], [-123.38008433, 39.302344548], [-123.369139204, 39.318635865], [-123.387662817, 39.352956315], [-123.360693955, 39.359605516], [-123.274078215, 39.325570959], [-123.271407832, 39.349514411], [-123.248048123, 39.359325324], [-123.248289022, 39.385535511], [-123.214771507, 39.367949588], [-123.171687146, 39.373730768], [-123.160699029, 39.397645174]]]}, "properties": {"huc8": "18010110", "name": "Russian", "states": "CA", "areasqkm": 3845.99, "dc_states": "CA", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-121.105703494, 38.870637856], [-121.111967501, 38.797880672], [-121.172500766, 38.725432884], [-121.136462044, 38.693272499], [-121.095207516, 38.706910408], [-121.083961633, 38.664063813], [-121.096287243, 38.646852949], [-121.082904622, 38.626647411], [-121.093823266, 38.616394667], [-121.13917908, 38.623573207], [-121.157485354, 38.594839224], [-121.21049209, 38.589371988], [-121.229257301, 38.604520294], [-121.318058979, 38.568156177], [-121.413242482, 38.557904491], [-121.426260524, 38.580614393], [-121.514903143, 38.603283349], [-121.467929885, 38.610974206], [-121.492337159, 38.779812481], [-121.447017421, 38.778833639], [-121.38100286, 38.747190258], [-121.286256784, 38.753228614], [-121.263306589, 38.762503019], [-121.217572297, 38.867446957], [-121.105703494, 38.870637856]]]}, "properties": {"huc8": "18020111", "name": "Lower American", "states": "CA", "areasqkm": 757.62, "dc_states": "CA", "cluster_count": 1, "data_center_count": 3, "clustered_data_center_count": 3}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-121.004141014, 38.992644934], [-121.008405736, 38.966901042], [-121.057493491, 38.932048284], [-121.073223631, 38.872302821], [-121.178993427, 38.87830318], [-121.225016177, 38.861058644], [-121.264092465, 38.761638276], [-121.380649228, 38.747156142], [-121.447017421, 38.778833639], [-121.493052875, 38.779254063], [-121.470653404, 38.605781948], [-121.548417213, 38.596990029], [-121.568319082, 38.645271876], [-121.593517318, 38.642343717], [-121.632719656, 38.678734949], [-121.594204582, 38.760670437], [-121.623768567, 38.782487346], [-121.640082863, 38.823384163], [-121.611278275, 38.886243233], [-121.576019723, 38.906862498], [-121.543552194, 38.969404294], [-121.416148141, 38.956990035], [-121.355849477, 38.935605193], [-121.310039717, 38.970467948], [-121.287873468, 39.010793187], [-121.159063213, 38.986145435], [-121.131820822, 38.986886356], [-121.114953595, 39.009300504], [-121.029410812, 38.97937033], [-121.004141014, 38.992644934]]]}, "properties": {"huc8": "18020161", "name": "Upper Coon-Upper Auburn", "states": "CA", "areasqkm": 1124.1, "dc_states": "CA", "cluster_count": 1, "data_center_count": 5, "clustered_data_center_count": 5}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-121.709392711, 38.800203339], [-121.687492539, 38.778369893], [-121.693395241, 38.767336128], [-121.670998515, 38.758789621], [-121.674131469, 38.742668789], [-121.62452778, 38.782286493], [-121.600658958, 38.773177887], [-121.606984186, 38.719410201], [-121.634118364, 38.682470242], [-121.594269499, 38.642756996], [-121.568319082, 38.645271876], [-121.548417213, 38.596990029], [-121.484395484, 38.600526227], [-121.426260524, 38.580614393], [-121.413242482, 38.557904491], [-121.318058979, 38.568156177], [-121.229257301, 38.604520294], [-121.21049209, 38.589371988], [-121.186004069, 38.600262947], [-121.157528208, 38.589886591], [-121.17649919, 38.565579736], [-121.173957574, 38.53600573], [-121.233956612, 38.477313776], [-121.27717304, 38.476062633], [-121.262591564, 38.448281716], [-121.299847047, 38.439501846], [-121.329683379, 38.390788092], [-121.359930472, 38.390321332], [-121.441110793, 38.432873031], [-121.531137295, 38.43227713], [-121.511940447, 38.3960154], [-121.536642027, 38.345498277], [-121.498366887, 38.27160743], [-121.517724752, 38.258846079], [-121.518029584, 38.235978452], [-121.544189276, 38.223158568], [-121.540881258, 38.202285876], [-121.60159645, 38.146193805], [-121.567899776, 38.097911694], [-121.604590559, 38.109004067], [-121.636736078, 38.089976468], [-121.67043581, 38.097414285], [-121.699433786, 38.051017879], [-121.805523872, 38.025820198], [-121.851938072, 38.070608962], [-121.819899173, 38.091639215], [-121.84633819, 38.110962465], [-121.809337537, 38.141513811], [-121.834179254, 38.15048176], [-121.847516238, 38.194443143], [-121.871296897, 38.204913476], [-121.886217491, 38.285747105], [-121.929797517, 38.296115618], [-121.978966041, 38.337994759], [-121.997939045, 38.329712908], [-121.98699526, 38.310785284], [-121.999215055, 38.299034196], [-122.061474292, 38.327476458], [-122.115109179, 38.414237368], [-122.049150128, 38.425207007], [-122.042507938, 38.445140935], [-121.991686292, 38.461865909], [-121.996054096, 38.495815832], [-121.939464891, 38.529767042], [-121.906190347, 38.528658265], [-121.860705581, 38.537179771], [-121.815079096, 38.525813566], [-121.79742317, 38.526177272], [-121.769034976, 38.516600135], [-121.625675624, 38.507349888], [-121.589044444, 38.51541668], [-121.589018175, 38.529926469], [-121.676437546, 38.544982811], [-121.790858117, 38.526208169], [-121.858523805, 38.539074332], [-121.885017098, 38.53958875], [-121.942357825, 38.533783819], [-121.974899307, 38.517081668], [-122.021279551, 38.579438798], [-122.112958824, 38.585194539], [-122.168719355, 38.629887819], [-122.16029377, 38.644002126], [-122.118149065, 38.640831524], [-122.121692898, 38.655753361], [-122.088806702, 38.677909514], [-122.105281427, 38.691163063], [-122.076695087, 38.7041125], [-121.982335987, 38.705730806], [-121.92383554, 38.676504796], [-121.845827783, 38.688885084], [-121.791636122, 38.660898741], [-121.673418815, 38.677313296], [-121.704006867, 38.699042877], [-121.706760207, 38.724755809], [-121.762408388, 38.720598583], [-121.808518467, 38.73614693], [-121.777699816, 38.784144963], [-121.709392711, 38.800203339]]]}, "properties": {"huc8": "18020163", "name": "Lower Sacramento", "states": "CA", "areasqkm": 3181.99, "dc_states": "CA", "cluster_count": 1, "data_center_count": 1, "clustered_data_center_count": 1}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-119.917685314, 38.518570819], [-119.892376165, 38.475555431], [-119.830233371, 38.505679306], [-119.80048804, 38.481695184], [-119.776358326, 38.493051968], [-119.762580293, 38.472818576], [-119.736005437, 38.471989519], [-119.729222401, 38.4432582], [-119.68779038, 38.447733998], [-119.681130321, 38.402172698], [-119.627958449, 38.348370924], [-119.651438129, 38.286238791], [-119.612952488, 38.261444866], [-119.621777989, 38.252483961], [-119.604652722, 38.234636758], [-119.658293469, 38.229476153], [-119.665099026, 38.207227794], [-119.690074962, 38.198470258], [-119.781747901, 38.21849619], [-119.83530059, 38.198946895], [-119.990691914, 38.186929204], [-119.99491475, 38.196920115], [-120.203907871, 38.056453388], [-120.246162151, 38.0642889], [-120.341062789, 38.044255964], [-120.386136542, 38.05637861], [-120.393994515, 38.008525145], [-120.425836486, 37.998570108], [-120.468782667, 37.921885702], [-120.461310113, 37.896669213], [-120.481516214, 37.848810258], [-120.470563443, 37.826439713], [-120.51416833, 37.834326841], [-120.558572212, 37.866794091], [-120.581520291, 37.80885136], [-120.611998564, 37.806666863], [-120.64075013, 37.782256727], [-120.676216634, 37.797396217], [-120.737752645, 37.778636397], [-120.757526604, 37.732644884], [-120.788092839, 37.754600835], [-120.821144508, 37.741836832], [-120.839894418, 37.706760807], [-120.9172429, 37.659754478], [-121.153342926, 37.629175125], [-121.171207131, 37.613367349], [-121.191616629, 37.638118487], [-121.21244184, 37.632792844], [-121.2391079, 37.655378249], [-121.223356797, 37.684332893], [-121.093354594, 37.747021506], [-121.094805957, 37.760903829], [-120.961600837, 37.757924222], [-120.853964545, 37.797292665], [-120.822130472, 37.791637125], [-120.827619031, 37.808224693], [-120.805176797, 37.818331053], [-120.785510045, 37.810677315], [-120.718343023, 37.840148506], [-120.660906456, 37.836312129], [-120.609154087, 37.882636162], [-120.608264169, 37.906347849], [-120.666520696, 37.97716983], [-120.666748874, 37.998349766], [-120.647065414, 38.011646342], [-120.661196131, 38.044435174], [-120.605043091, 38.010502002], [-120.590252731, 38.022825188], [-120.60924224, 38.037173471], [-120.592190158, 38.059099174], [-120.569386015, 38.063923369], [-120.490063228, 38.142070031], [-120.36763655, 38.184992109], [-120.373681835, 38.230433188], [-120.331812893, 38.267951591], [-120.286968638, 38.283391893], [-120.252245273, 38.317702817], [-120.253609208, 38.336392389], [-120.219961367, 38.350364114], [-120.160314193, 38.41907766], [-120.130517901, 38.419967535], [-120.130484426, 38.449064326], [-120.004964498, 38.505666263], [-119.917685314, 38.518570819]]]}, "properties": {"huc8": "18040010", "name": "Upper Stanislaus", "states": "CA", "areasqkm": 3099.99, "dc_states": "CA", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-122.115239674, 38.413906697], [-122.061474292, 38.327476458], [-121.999215055, 38.299034196], [-121.98699526, 38.310785284], [-121.997939045, 38.329712908], [-121.978966041, 38.337994759], [-121.929797517, 38.296115618], [-121.888502502, 38.288590932], [-121.871296897, 38.204913476], [-121.847516238, 38.194443143], [-121.834179254, 38.15048176], [-121.809337537, 38.141513811], [-121.84633819, 38.110962465], [-121.819899173, 38.091639215], [-121.852198703, 38.072258118], [-121.844775435, 38.039110927], [-121.82194462, 38.021395589], [-121.873668538, 37.969251151], [-121.883613406, 37.940696318], [-121.872725003, 37.917601039], [-121.936799168, 37.856786214], [-121.901073398, 37.84810795], [-121.903726237, 37.816321994], [-121.924460134, 37.792989139], [-121.972367266, 37.778784514], [-121.992809994, 37.737355956], [-122.011771283, 37.747745597], [-122.002376283, 37.770473231], [-122.089581317, 37.823645483], [-122.117952635, 37.852633526], [-122.118308515, 37.873402705], [-122.166323918, 37.882376551], [-122.160701615, 37.913218957], [-122.123782313, 37.933862507], [-122.181600712, 37.965346398], [-122.183638703, 37.978231447], [-122.161103273, 37.982860776], [-122.223563295, 38.068699845], [-122.178097751, 38.116980096], [-122.194057606, 38.165206197], [-122.215199041, 38.179488542], [-122.193076728, 38.2221333], [-122.211832919, 38.250665363], [-122.193072986, 38.256362267], [-122.21619666, 38.266282608], [-122.188084892, 38.271704812], [-122.212188948, 38.319338576], [-122.201759636, 38.330887425], [-122.217293967, 38.339326185], [-122.202610511, 38.35817811], [-122.216870401, 38.394997056], [-122.176502699, 38.394728783], [-122.165152725, 38.430571072], [-122.115239674, 38.413906697]]]}, "properties": {"huc8": "18050001", "name": "Suisun Bay", "states": "CA", "areasqkm": 1689.62, "dc_states": "CA", "cluster_count": 1, "data_center_count": 2, "clustered_data_center_count": 1}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-122.617245028, 38.665457449], [-122.576744682, 38.65245575], [-122.532976263, 38.612219596], [-122.513812204, 38.619037753], [-122.4366152, 38.59334507], [-122.381799233, 38.552668426], [-122.346218637, 38.565705338], [-122.29059843, 38.541913129], [-122.257277457, 38.470337674], [-122.274162493, 38.460107594], [-122.219601094, 38.407063191], [-122.202610511, 38.35817811], [-122.217293967, 38.339326185], [-122.201759636, 38.330887425], [-122.212188948, 38.319338576], [-122.188084892, 38.271704812], [-122.21619666, 38.266282608], [-122.193072986, 38.256362267], [-122.211832919, 38.250665363], [-122.193076728, 38.2221333], [-122.215199041, 38.179488542], [-122.194057606, 38.165206197], [-122.178212947, 38.11623525], [-122.223563295, 38.068699845], [-122.161103273, 37.982860776], [-122.183638703, 37.978231447], [-122.181600712, 37.965346398], [-122.123733595, 37.933701755], [-122.170401443, 37.895504004], [-122.146151748, 37.859889661], [-122.195253844, 37.85017578], [-122.209248921, 37.829067245], [-122.240089719, 37.838359254], [-122.272907511, 37.803560043], [-122.372892511, 37.8109404], [-122.392179425, 37.785727507], [-122.445813019, 37.792181483], [-122.457251503, 37.742567652], [-122.531580098, 37.810984634], [-122.487561803, 37.845046775], [-122.552440661, 37.866598795], [-122.582335214, 37.946266509], [-122.606825884, 37.970303866], [-122.6485061, 37.980683032], [-122.65043255, 37.996132012], [-122.628912198, 37.996044907], [-122.612793262, 38.021552586], [-122.616757923, 38.058274164], [-122.596542961, 38.067892148], [-122.628284766, 38.091791022], [-122.674551281, 38.096756616], [-122.680973248, 38.116664091], [-122.699073115, 38.118718753], [-122.680478376, 38.149756617], [-122.689019022, 38.16367406], [-122.756746803, 38.19394822], [-122.716031046, 38.238868303], [-122.737950505, 38.261495662], [-122.706942255, 38.315840097], [-122.652792989, 38.333439489], [-122.574258991, 38.329559095], [-122.617353999, 38.410709858], [-122.579872622, 38.434024872], [-122.57257559, 38.465535402], [-122.529489749, 38.469280393], [-122.544281184, 38.520395598], [-122.620667813, 38.560063471], [-122.646798362, 38.598177794], [-122.617245028, 38.665457449]]]}, "properties": {"huc8": "18050002", "name": "San Pablo Bay", "states": "CA", "areasqkm": 3176.72, "dc_states": "CA", "cluster_count": 1, "data_center_count": 4, "clustered_data_center_count": 3}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-121.457758622, 37.287272208], [-121.456210773, 37.25161309], [-121.422797413, 37.203394569], [-121.459930872, 37.159426065], [-121.410788142, 37.120044335], [-121.41218494, 37.089131835], [-121.377559495, 37.049976412], [-121.416041247, 37.0194326], [-121.463524665, 37.018176054], [-121.497877278, 37.060536373], [-121.533887444, 37.07483922], [-121.56748777, 37.128520019], [-121.624211607, 37.162279195], [-121.669106427, 37.137061987], [-121.710243116, 37.139244841], [-121.730856, 37.163639026], [-121.793372539, 37.160305703], [-121.814610962, 37.151781112], [-121.845994319, 37.09697512], [-121.99173583, 37.144529694], [-122.042251322, 37.202287619], [-122.146021566, 37.269095983], [-122.170808053, 37.312708879], [-122.212202522, 37.327737105], [-122.268631004, 37.390376592], [-122.306714576, 37.406505911], [-122.329445225, 37.446522297], [-122.271802289, 37.456939463], [-122.245665409, 37.422985789], [-122.209041497, 37.419482034], [-122.144870555, 37.459037598], [-122.115926797, 37.452968323], [-122.103336578, 37.43045018], [-121.974445714, 37.4107705], [-121.972309021, 37.425213925], [-121.941905951, 37.429102521], [-121.864630312, 37.484833656], [-121.816258894, 37.432003805], [-121.733934569, 37.421428234], [-121.73501208, 37.401418099], [-121.693156971, 37.369122332], [-121.677961638, 37.324857724], [-121.636385764, 37.306122812], [-121.609853779, 37.263336323], [-121.55831818, 37.283093203], [-121.525831744, 37.257831408], [-121.53131479, 37.290007379], [-121.503594053, 37.297243794], [-121.496563594, 37.317869315], [-121.457758622, 37.287272208]]]}, "properties": {"huc8": "18050003", "name": "Coyote", "states": "CA", "areasqkm": 1865.62, "dc_states": "CA", "cluster_count": 1, "data_center_count": 88, "clustered_data_center_count": 88}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-121.898743219, 37.84510409], [-121.868266389, 37.854028164], [-121.830142218, 37.835562575], [-121.73919771, 37.760099581], [-121.709581722, 37.772539742], [-121.652246172, 37.763611122], [-121.664562841, 37.748838051], [-121.650785036, 37.735751546], [-121.659121866, 37.70757307], [-121.635365387, 37.701306973], [-121.607930339, 37.658089078], [-121.620275451, 37.605746355], [-121.545447949, 37.532376185], [-121.498454931, 37.522628727], [-121.469153797, 37.489555176], [-121.485428207, 37.473933166], [-121.462829326, 37.450088891], [-121.473766848, 37.423563775], [-121.45782724, 37.395820264], [-121.41095069, 37.387765648], [-121.424099947, 37.361373516], [-121.4066714, 37.314010807], [-121.423083608, 37.298643024], [-121.456132124, 37.286409682], [-121.496563594, 37.317869315], [-121.503594053, 37.297243794], [-121.53131479, 37.290007379], [-121.525831744, 37.257831408], [-121.55831818, 37.283093203], [-121.609853779, 37.263336323], [-121.636385764, 37.306122812], [-121.677961638, 37.324857724], [-121.693156971, 37.369122332], [-121.73501208, 37.401418099], [-121.733934569, 37.421428234], [-121.816258894, 37.432003805], [-121.864630312, 37.484833656], [-121.941905951, 37.429102521], [-121.972309021, 37.425213925], [-121.974445714, 37.4107705], [-122.103336578, 37.43045018], [-122.115926797, 37.452968323], [-122.144870555, 37.459037598], [-122.209041497, 37.419482034], [-122.245665409, 37.422985789], [-122.272892006, 37.457179059], [-122.332060334, 37.446315346], [-122.379984872, 37.52217673], [-122.451274325, 37.583150069], [-122.464434944, 37.638971168], [-122.491984688, 37.675197198], [-122.456094943, 37.700691425], [-122.445813019, 37.792181483], [-122.392179425, 37.785727507], [-122.372892511, 37.8109404], [-122.272907511, 37.803560043], [-122.243076185, 37.836938579], [-122.209248921, 37.829067245], [-122.198161686, 37.848732383], [-122.146151748, 37.859889661], [-122.134746174, 37.876268204], [-122.118308515, 37.873402705], [-122.117952635, 37.852633526], [-122.089581317, 37.823645483], [-122.002376283, 37.770473231], [-122.011771283, 37.747745597], [-121.992998248, 37.737336904], [-121.972367266, 37.778784514], [-121.908296162, 37.808157577], [-121.898743219, 37.84510409]]]}, "properties": {"huc8": "18050004", "name": "San Francisco Bay", "states": "CA", "areasqkm": 3453.01, "dc_states": "CA", "cluster_count": 1, "data_center_count": 8, "clustered_data_center_count": 8}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-121.755315335, 36.54807142], [-121.738392034, 36.514376729], [-121.688883672, 36.495782853], [-121.609291236, 36.529992186], [-121.587898099, 36.525127978], [-121.499132523, 36.421611216], [-121.486457465, 36.383007834], [-121.528845448, 36.359559516], [-121.537536885, 36.314426305], [-121.567847447, 36.312791518], [-121.570067282, 36.290534312], [-121.604955637, 36.296090633], [-121.638924273, 36.276751975], [-121.590257503, 36.218187042], [-121.632273823, 36.177136982], [-121.589791431, 36.137712255], [-121.527587821, 36.116167079], [-121.530562556, 36.097987388], [-121.497320396, 36.081158377], [-121.496284912, 36.052034626], [-121.472747247, 36.034911169], [-121.476677229, 36.017843614], [-121.429022274, 35.997940998], [-121.441712914, 35.970782958], [-121.363373836, 35.91260569], [-121.364988749, 35.875695671], [-121.239309567, 35.833302365], [-121.131101261, 35.740252865], [-121.130853125, 35.720744492], [-121.094138755, 35.689518653], [-120.981103557, 35.634917938], [-120.854278956, 35.510060276], [-120.822699017, 35.515553387], [-120.71695715, 35.463905766], [-120.734374083, 35.411923778], [-120.644787308, 35.346936949], [-120.624756129, 35.350820137], [-120.604333136, 35.318603621], [-120.568624342, 35.321018814], [-120.425528452, 35.259979638], [-120.373603348, 35.220513686], [-120.375672539, 35.177310078], [-120.41500164, 35.17045489], [-120.423563154, 35.139365875], [-120.413136881, 35.125498642], [-120.429684857, 35.098738287], [-120.398728815, 35.077221282], [-120.411388689, 35.054131628], [-120.483893345, 35.092083013], [-120.519567426, 35.065709303], [-120.492751698, 35.040592722], [-120.501261675, 35.032991423], [-120.455601522, 35.002517054], [-120.624699015, 34.990193092], [-120.62967387, 34.968840064], [-120.705888131, 34.992629638], [-120.691970092, 35.098667641], [-120.78848933, 35.111613417], [-120.849615475, 35.13673487], [-120.92960498, 35.192478458], [-120.958906452, 35.233575256], [-120.962836231, 35.266852769], [-120.926693194, 35.343418508], [-120.932363025, 35.393810208], [-121.040356713, 35.419383553], [-121.136235655, 35.500527361], [-121.202297905, 35.585445989], [-121.332772729, 35.629612462], [-121.375325616, 35.697999747], [-121.391434468, 35.756818082], [-121.529303299, 35.867161372], [-121.555619226, 35.964251095], [-121.619750872, 35.986471016], [-121.685044969, 36.085316356], [-121.755065196, 36.15210353], [-121.850540014, 36.193415542], [-121.934757989, 36.252452441], [-121.963899032, 36.294273275], [-121.97109317, 36.380531996], [-122.041536084, 36.572024434], [-122.036827998, 36.605397254], [-122.001597991, 36.648746805], [-121.936397193, 36.637025866], [-121.906876486, 36.570042583], [-121.755315335, 36.54807142]]]}, "properties": {"huc8": "18060006", "name": "Central Coastal", "states": "CA", "areasqkm": 4984.08, "dc_states": "CA", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-118.614136941, 34.34371654], [-118.651048702, 34.311108715], [-118.632549382, 34.262946723], [-118.672743616, 34.233005421], [-118.801664773, 34.202925615], [-118.834729307, 34.156948668], [-118.919529645, 34.16572135], [-118.952496703, 34.144718653], [-119.009894546, 34.154664436], [-119.065368044, 34.109575295], [-119.055138613, 34.092886119], [-119.088613249, 34.09849125], [-119.096470363, 34.044164489], [-119.142649091, 34.048772433], [-119.256595973, 34.106579517], [-119.28796588, 34.136861264], [-119.321614231, 34.212959529], [-119.265666885, 34.233128892], [-119.159411897, 34.225869761], [-119.118974313, 34.291867285], [-119.081356209, 34.295432714], [-119.072786146, 34.317024686], [-119.012535373, 34.335178843], [-118.980893547, 34.319582234], [-118.946575537, 34.345576414], [-118.912697564, 34.333746381], [-118.884610626, 34.356386708], [-118.763155849, 34.372886645], [-118.718763574, 34.353510793], [-118.689848154, 34.362102352], [-118.614136941, 34.34371654]]]}, "properties": {"huc8": "18070103", "name": "Calleguas", "states": "CA", "areasqkm": 1133.59, "dc_states": "CA", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-118.321768018, 33.958654707], [-118.340375281, 33.972107354], [-118.39140183, 33.959738021], [-118.410601566, 33.971386815], [-118.438147779, 33.953347487], [-118.375850365, 33.845582514], [-118.383683932, 33.827191555], [-118.366732455, 33.798324083], [-118.382096457, 33.770725905], [-118.294190886, 33.712563634], [-118.302625528, 33.65481166], [-118.463990117, 33.71201569], [-118.489163579, 33.775514576], [-118.457149339, 33.828304709], [-118.461811605, 33.851347821], [-118.559325884, 33.987567573], [-118.72778073, 33.981169938], [-118.821992186, 33.949715447], [-118.872963747, 33.985311157], [-118.976206961, 33.998950197], [-119.095931107, 34.043858355], [-119.088613249, 34.09849125], [-119.055138613, 34.092886119], [-119.065368044, 34.109575295], [-119.009894546, 34.154664436], [-118.952496703, 34.144718653], [-118.919529645, 34.16572135], [-118.834729307, 34.156948668], [-118.801664773, 34.202925615], [-118.717603727, 34.225174064], [-118.70275454, 34.195047778], [-118.669570756, 34.184951049], [-118.679694015, 34.17330539], [-118.664212366, 34.152023391], [-118.686042187, 34.13700962], [-118.650798875, 34.121098568], [-118.585082219, 34.140298222], [-118.55359269, 34.124865427], [-118.430026189, 34.132303533], [-118.350154108, 34.120189654], [-118.327279922, 34.13717538], [-118.283976214, 34.124290117], [-118.243438352, 34.091031569], [-118.245967239, 34.059583575], [-118.280882879, 33.97951059], [-118.321768018, 33.958654707]]]}, "properties": {"huc8": "18070104", "name": "Santa Monica Bay", "states": "CA", "areasqkm": 1744.03, "dc_states": "CA", "cluster_count": 1, "data_center_count": 2, "clustered_data_center_count": 2}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-118.051983774, 34.387334671], [-117.978322197, 34.340295033], [-118.012831881, 34.318993137], [-117.991847046, 34.286960707], [-118.022624893, 34.270525203], [-118.103918103, 34.270704302], [-118.10490258, 34.246293943], [-118.062564805, 34.223004558], [-118.012811192, 34.234853495], [-117.96907654, 34.216116209], [-117.949871055, 34.186061889], [-117.974271266, 34.166668789], [-117.969163978, 34.113441985], [-117.997503692, 34.100725346], [-118.028422073, 34.038821564], [-118.12267147, 33.969779317], [-118.160983754, 33.909135048], [-118.164660934, 33.854719558], [-118.192305772, 33.827294169], [-118.149717823, 33.792104206], [-118.146776073, 33.770723814], [-118.188344725, 33.777661965], [-118.195581179, 33.754514701], [-118.21509002, 33.802744335], [-118.216184532, 33.871458027], [-118.239473524, 33.862324403], [-118.272772374, 33.920237028], [-118.321618006, 33.957557758], [-118.280882879, 33.97951059], [-118.243438352, 34.091031569], [-118.304230473, 34.136341037], [-118.391092584, 34.118145798], [-118.430026189, 34.132303533], [-118.553766547, 34.124882101], [-118.585082219, 34.140298222], [-118.614370375, 34.122603315], [-118.673698896, 34.126916644], [-118.686042187, 34.13700962], [-118.664212366, 34.152023391], [-118.679694015, 34.17330539], [-118.669570756, 34.184951049], [-118.70275454, 34.195047778], [-118.720638626, 34.225634239], [-118.673174794, 34.23276108], [-118.635112553, 34.259879136], [-118.651048702, 34.311108715], [-118.614136941, 34.34371654], [-118.555302185, 34.320303614], [-118.511730623, 34.347692171], [-118.36687229, 34.358422072], [-118.332953104, 34.385950117], [-118.268301962, 34.399406861], [-118.213992676, 34.376657622], [-118.146374422, 34.373902401], [-118.090584819, 34.400431173], [-118.078607808, 34.382730707], [-118.051983774, 34.387334671]]]}, "properties": {"huc8": "18070105", "name": "Los Angeles", "states": "CA", "areasqkm": 2152.19, "dc_states": "CA", "cluster_count": 1, "data_center_count": 9, "clustered_data_center_count": 9}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-117.748166795, 34.381544525], [-117.633316388, 34.333800599], [-117.636130521, 34.303221562], [-117.708436088, 34.179053669], [-117.685325739, 34.154757678], [-117.741183309, 34.116685241], [-117.764026867, 34.044074389], [-117.788403036, 34.041982611], [-117.790266713, 34.020448048], [-117.765171753, 34.009697055], [-117.775389075, 33.98785646], [-117.73281081, 33.944882988], [-117.736312843, 33.914501862], [-117.769858155, 33.910971868], [-117.768404241, 33.868975808], [-118.022268705, 33.816867004], [-118.045585956, 33.774068783], [-118.113483664, 33.745003885], [-118.114863811, 33.674819056], [-118.302625528, 33.65481166], [-118.294190886, 33.712563634], [-118.382096457, 33.770725905], [-118.366732455, 33.798324083], [-118.383683932, 33.827191555], [-118.375850365, 33.845582514], [-118.386161479, 33.877249205], [-118.413452495, 33.893356313], [-118.438147779, 33.953347487], [-118.430322092, 33.965923785], [-118.334009101, 33.970204376], [-118.272772374, 33.920237028], [-118.245293957, 33.86714902], [-118.216184532, 33.871458027], [-118.204057673, 33.755390777], [-118.188344725, 33.777661965], [-118.146960194, 33.770566589], [-118.149717823, 33.792104206], [-118.192305772, 33.827294169], [-118.164660934, 33.854719558], [-118.161928227, 33.907448494], [-118.12267147, 33.969779317], [-118.028422073, 34.038821564], [-117.997503692, 34.100725346], [-117.969163978, 34.113441985], [-117.974271266, 34.166668789], [-117.949871055, 34.186061889], [-117.96907654, 34.216116209], [-118.012811192, 34.234853495], [-118.062564805, 34.223004558], [-118.091490919, 34.237982448], [-118.103918103, 34.270704302], [-118.014367734, 34.272353212], [-117.991677486, 34.287891532], [-118.012748299, 34.319202663], [-117.978322197, 34.340295033], [-117.911455923, 34.337661298], [-117.86021992, 34.365915186], [-117.839919891, 34.345018068], [-117.806912705, 34.340930383], [-117.748166795, 34.381544525]]]}, "properties": {"huc8": "18070106", "name": "San Gabriel", "states": "CA", "areasqkm": 2347.04, "dc_states": "CA", "cluster_count": 2, "data_center_count": 6, "clustered_data_center_count": 6}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-117.861141762, 33.841655985], [-117.928183945, 33.720680532], [-117.988195047, 33.714141796], [-117.996404188, 33.666443569], [-117.957533807, 33.631990424], [-117.992238386, 33.585897919], [-118.114863811, 33.674819056], [-118.113483664, 33.745003885], [-118.045585956, 33.774068783], [-118.022268705, 33.816867004], [-117.929221761, 33.842570162], [-117.861141762, 33.841655985]]]}, "properties": {"huc8": "18070201", "name": "Seal Beach", "states": "CA", "areasqkm": 329.9, "dc_states": "CA", "cluster_count": 1, "data_center_count": 2, "clustered_data_center_count": 2}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-116.890475795, 34.321545535], [-116.857932272, 34.314571799], [-116.855526162, 34.28942932], [-116.825947253, 34.309656979], [-116.76955132, 34.273909297], [-116.752729947, 34.237456618], [-116.767935245, 34.206857895], [-116.710805883, 34.193804571], [-116.69476792, 34.159705998], [-116.767659483, 34.129920512], [-116.769603419, 34.102100061], [-116.811802607, 34.11464363], [-116.839125298, 34.098582947], [-116.846567856, 34.071028205], [-116.905187515, 34.063075877], [-116.918000534, 34.00824502], [-116.933226034, 34.002819463], [-116.930736689, 33.975477899], [-116.976219299, 33.944931998], [-116.972382729, 33.909978505], [-117.17528485, 33.981100673], [-117.200848314, 33.984101317], [-117.215932146, 33.968220738], [-117.266553109, 33.999345246], [-117.291085561, 33.987325525], [-117.264654175, 33.927641985], [-117.310775651, 33.884904568], [-117.278022086, 33.855335393], [-117.276247852, 33.832347452], [-117.332530946, 33.783134165], [-117.297456687, 33.758718863], [-117.295022244, 33.679653576], [-117.333221507, 33.663884769], [-117.397485021, 33.70348051], [-117.454699117, 33.683464462], [-117.521132131, 33.716523797], [-117.56406077, 33.684166322], [-117.654381787, 33.706012771], [-117.798726402, 33.803123548], [-117.882251474, 33.755160159], [-117.893892871, 33.734044243], [-117.884192124, 33.677077191], [-117.914565016, 33.677799964], [-117.908040449, 33.652916428], [-117.935353559, 33.626521163], [-117.959433215, 33.629550981], [-117.995203585, 33.663968658], [-117.988195047, 33.714141796], [-117.928183945, 33.720680532], [-117.864330581, 33.839603897], [-117.77230355, 33.865900267], [-117.769858155, 33.910971868], [-117.736312843, 33.914501862], [-117.73281081, 33.944882988], [-117.775389075, 33.98785646], [-117.765171753, 34.009697055], [-117.790266713, 34.020448048], [-117.788403036, 34.041982611], [-117.764026867, 34.044074389], [-117.741183309, 34.116685241], [-117.685325739, 34.154757678], [-117.708436088, 34.179053669], [-117.669383264, 34.229638205], [-117.675314295, 34.248952718], [-117.636787627, 34.301342205], [-117.642192886, 34.321864679], [-117.586598623, 34.343361731], [-117.57659377, 34.384427598], [-117.460753642, 34.346587199], [-117.434379413, 34.350991305], [-117.4240818, 34.336137395], [-117.438879498, 34.311841104], [-117.406483741, 34.291414707], [-117.401046877, 34.262421515], [-117.349119765, 34.245015869], [-117.329678206, 34.257239921], [-117.324182153, 34.238022202], [-117.266211412, 34.226430678], [-117.139196944, 34.234490811], [-117.081275982, 34.192130068], [-117.034688769, 34.205013282], [-117.02057712, 34.225636342], [-117.033596476, 34.246917547], [-116.991580218, 34.259906226], [-116.969503487, 34.29339308], [-116.900293458, 34.281980955], [-116.890475795, 34.321545535]]]}, "properties": {"huc8": "18070203", "name": "Santa Ana", "states": "CA", "areasqkm": 4387.78, "dc_states": "CA", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-117.661300303, 33.721052904], [-117.627584377, 33.68714497], [-117.725027046, 33.600200149], [-117.804869555, 33.605464616], [-117.856278533, 33.512409698], [-117.992238386, 33.585897919], [-117.959433215, 33.629550981], [-117.917773576, 33.640626994], [-117.914565016, 33.677799964], [-117.884495318, 33.676444243], [-117.893892871, 33.734044243], [-117.882251474, 33.755160159], [-117.801999274, 33.802265469], [-117.678937053, 33.713049708], [-117.661300303, 33.721052904]]]}, "properties": {"huc8": "18070204", "name": "Newport Bay", "states": "CA", "areasqkm": 502.86, "dc_states": "CA", "cluster_count": 1, "data_center_count": 4, "clustered_data_center_count": 4}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-116.620367523, 33.405965524], [-116.546565812, 33.356074024], [-116.560205496, 33.313410749], [-116.527867646, 33.286675511], [-116.541443242, 33.251168316], [-116.49853982, 33.25397319], [-116.489288987, 33.236911854], [-116.501899797, 33.199310461], [-116.554753157, 33.185025158], [-116.625785589, 33.206758233], [-116.620003257, 33.162069713], [-116.683168963, 33.158071897], [-116.773627056, 33.224340865], [-116.796475947, 33.218246193], [-116.848651189, 33.244846618], [-116.859311121, 33.229788406], [-116.902983455, 33.235336855], [-116.947735457, 33.170400241], [-117.011373672, 33.161538463], [-117.028279579, 33.120241457], [-117.122513712, 33.096786361], [-117.129711323, 33.06971048], [-117.17889946, 33.048392638], [-117.186880403, 33.024562126], [-117.229070657, 32.996026891], [-117.273719602, 32.999598099], [-117.281687825, 33.015704225], [-117.339575327, 32.999251689], [-117.3818613, 33.097785698], [-117.464022976, 33.198807468], [-117.416290984, 33.230653008], [-117.380859646, 33.218570373], [-117.339010536, 33.258108238], [-117.328201139, 33.302764611], [-117.301034123, 33.317715537], [-117.29849556, 33.340151923], [-117.260390443, 33.344024077], [-117.237873128, 33.383167572], [-117.157125384, 33.411048118], [-117.125772422, 33.407659098], [-117.07901455, 33.434824143], [-117.010217133, 33.414264137], [-116.990110948, 33.421613198], [-116.941283253, 33.368938319], [-116.8242338, 33.360886104], [-116.757605445, 33.328017378], [-116.715207266, 33.368647086], [-116.66243146, 33.378410555], [-116.620367523, 33.405965524]]]}, "properties": {"huc8": "18070303", "name": "San Luis Rey-Escondido", "states": "CA", "areasqkm": 2151.62, "dc_states": "CA", "cluster_count": 0, "data_center_count": 2, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-116.618511437, 33.164060008], [-116.581059744, 33.124130923], [-116.581679767, 33.104151722], [-116.603959739, 33.107695516], [-116.601198413, 33.083921134], [-116.572865469, 33.066579634], [-116.579680068, 33.051672914], [-116.55416522, 33.040868188], [-116.530195508, 32.980354612], [-116.482800066, 32.931432446], [-116.538426615, 32.91559875], [-116.548837233, 32.889353701], [-116.537022024, 32.865804316], [-116.551774405, 32.841075489], [-116.576627103, 32.843429825], [-116.583489, 32.820261186], [-116.597366441, 32.834181591], [-116.608038792, 32.821687498], [-116.631211488, 32.829490256], [-116.672730047, 32.748576826], [-116.741846413, 32.726384585], [-116.744521188, 32.704638441], [-116.712251972, 32.681222926], [-116.719142812, 32.64485935], [-116.735583258, 32.64745039], [-116.805221429, 32.598533604], [-116.841304372, 32.600815631], [-116.865437998, 32.571573167], [-116.904709608, 32.580342567], [-116.927275337, 32.564796482], [-116.954582271, 32.583375462], [-117.016027652, 32.566803257], [-117.039614009, 32.583938523], [-117.091424913, 32.566635232], [-117.131945527, 32.579447088], [-117.120922628, 32.528530079], [-117.098289516, 32.516852113], [-117.184668523, 32.51531263], [-117.201005779, 32.620343206], [-117.263839596, 32.616115373], [-117.303095489, 32.653938256], [-117.315783276, 32.775828793], [-117.34243282, 32.828630519], [-117.313766722, 32.889432374], [-117.339575327, 32.999251689], [-117.281687825, 33.015704225], [-117.273719602, 32.999598099], [-117.229070657, 32.996026891], [-117.186880403, 33.024562126], [-117.17889946, 33.048392638], [-117.129711323, 33.06971048], [-117.122513712, 33.096786361], [-117.028279579, 33.120241457], [-117.011373672, 33.161538463], [-116.947735457, 33.170400241], [-116.902783419, 33.235387662], [-116.859311121, 33.229788406], [-116.848651189, 33.244846618], [-116.796475947, 33.218246193], [-116.773627056, 33.224340865], [-116.709689448, 33.165881516], [-116.618511437, 33.164060008]]]}, "properties": {"huc8": "18070304", "name": "San Diego", "states": "CA,MX", "areasqkm": 4022.15, "dc_states": "CA", "cluster_count": 0, "data_center_count": 4, "clustered_data_center_count": 0}}, {"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [[[-117.540016436, 35.437569503], [-117.58677299, 35.35260708], [-117.639805961, 35.361208503], [-117.679150968, 35.345335282], [-117.632303323, 35.272485838], [-117.531649779, 35.243971109], [-117.587383002, 35.133206128], [-117.639904133, 35.112003366], [-117.609563924, 35.087298597], [-117.5948622, 35.017190906], [-117.608580862, 34.967647156], [-117.577241641, 34.921583329], [-117.646899265, 34.891524518], [-117.630315711, 34.833108638], [-117.610175447, 34.827745576], [-117.619485829, 34.777789669], [-117.593037223, 34.727767838], [-117.627180772, 34.732208973], [-117.678194407, 34.770282472], [-117.71229702, 34.754323905], [-117.701407046, 34.719092875], [-117.670381734, 34.705992917], [-117.667190427, 34.649213614], [-117.693290995, 34.629920809], [-117.658394139, 34.612774583], [-117.61389705, 34.458234804], [-117.629217202, 34.367747189], [-117.747891016, 34.381565904], [-117.764608036, 34.358502911], [-117.813672455, 34.339801052], [-117.86021992, 34.365915186], [-117.922633438, 34.33551149], [-117.997337021, 34.344639897], [-118.07272393, 34.417092887], [-118.064985961, 34.463817985], [-118.083102146, 34.497969005], [-118.145246079, 34.530633561], [-118.242840765, 34.545272904], [-118.25891199, 34.567799677], [-118.301539848, 34.569005645], [-118.315251708, 34.596312432], [-118.347474728, 34.602938836], [-118.380595305, 34.634805424], [-118.326338499, 34.64691005], [-118.470715415, 34.697429278], [-118.523187169, 34.706095638], [-118.548277527, 34.690102663], [-118.591998252, 34.709997358], [-118.653642298, 34.712164424], [-118.727784552, 34.74445631], [-118.734900189, 34.779412464], [-118.818524458, 34.803530375], [-118.813017112, 34.826956496], [-118.766830701, 34.849947639], [-118.74805628, 34.879071588], [-118.671947299, 34.901599072], [-118.584348243, 34.951857294], [-118.604966485, 34.96075798], [-118.604774845, 34.984774625], [-118.477837967, 35.013800868], [-118.491371556, 35.044695922], [-118.461549957, 35.046418234], [-118.44373636, 35.07758263], [-118.413722764, 35.088595449], [-118.409084136, 35.150969953], [-118.442215004, 35.193227232], [-118.328570837, 35.223868142], [-118.239844621, 35.222590257], [-118.241388736, 35.270483325], [-118.27229096, 35.282858925], [-118.268678915, 35.315211185], [-118.292713529, 35.348553373], [-118.293425441, 35.38385693], [-118.33374669, 35.420658354], [-118.2889528, 35.417923878], [-118.297745095, 35.435135709], [-118.2549949, 35.455529993], [-118.180614913, 35.431192416], [-118.155622466, 35.44815886], [-118.132652199, 35.49620995], [-118.088090053, 35.46101156], [-117.96029059, 35.42580719], [-117.885128952, 35.451259488], [-117.869211997, 35.475073], [-117.788491659, 35.494682524], [-117.747317269, 35.460339079], [-117.68410206, 35.479941695], [-117.668527962, 35.458078378], [-117.552791565, 35.466212397], [-117.540016436, 35.437569503]]]}, "properties": {"huc8": "18090206", "name": "Antelope-Fremont Valleys", "states": "CA", "areasqkm": 8736.47, "dc_states": "CA", "cluster_count": 0, "data_center_count": 1, "clustered_data_center_count": 0}}]} \ No newline at end of file diff --git a/output/master_data_center_map_context.csv b/output/master_data_center_map_context.csv new file mode 100644 index 0000000..c0d03ef --- /dev/null +++ b/output/master_data_center_map_context.csv @@ -0,0 +1,1834 @@ +master_id,geoid,huc8,huc8_name,huc8_states,primary_ruca,primary_ruca_description,ruca_band,tract_pop_density,tract_population,median_household_income,bachelor_or_higher_pct,poverty_rate,non_hispanic_white_pct,non_hispanic_black_pct,hispanic_latino_pct,non_hispanic_asian_pct +osm/way/1421212901,32003002979,15010015,Las Vegas Wash,NV,1.0,Metropolitan core,Metropolitan,1814.3,5093,84803.0,30.7,4.1,34.6,6.6,16.6,35.8 +osm/way/178331621,24021751003,02070009,Monocacy,"MD,PA",1.0,Metropolitan core,Metropolitan,1083.1,5675,74400.0,35.8,15.9,50.2,18.7,14.0,7.9 +osm/way/1426525219,48139060206,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,1560.6,7521,75135.0,21.7,5.9,33.1,33.4,22.4,0.5 +osm/way/1386017500,56021001902,10190009,Crow,"CO,WY",2.0,Metropolitan high commuting,Metropolitan,4.9,4777,108833.0,38.7,2.6,82.7,0.0,6.3,2.1 +osm/way/1443567519,41065970500,17070105,Middle Columbia-Hood,"OR,WA",4.0,Micropolitan core,Micropolitan,1203.7,3072,37308.0,13.5,21.5,65.9,0.0,29.1,0.2 +osm/way/1386016630,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +osm/way/414055237,56021001902,10190009,Crow,"CO,WY",2.0,Metropolitan high commuting,Metropolitan,4.9,4777,108833.0,38.7,2.6,82.7,0.0,6.3,2.1 +osm/way/567575425,04013422647,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,2326.9,12550,153355.0,57.6,1.6,55.6,4.8,18.6,7.9 +osm/way/1470261550,47125102010,05130206,Red,"KY,TN",1.0,Metropolitan core,Metropolitan,551.0,5362,79931.0,27.5,13.9,54.1,21.4,12.1,5.1 +osm/way/1386016635,39089755601,05040006,Licking,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +osm/way/819981891,47037015630,05130202,Lower Cumberland-Sycamore,TN,1.0,Metropolitan core,Metropolitan,1119.0,6248,84661.0,34.3,5.6,20.7,55.6,10.6,2.1 +osm/way/766768556,55015020308,04030203,Lake Winnebago,WI,1.0,Metropolitan core,Metropolitan,964.1,5355,122866.0,48.4,1.9,79.1,2.3,9.7,2.9 +osm/way/525060850,47065002000,06020001,Middle Tennessee-Chickamauga,"AL,GA,TN",1.0,Metropolitan core,Metropolitan,1637.7,2488,68269.0,44.2,15.0,53.6,38.1,4.8,0.9 +osm/way/1386016643,39049007931,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,2719.1,4362,130634.0,43.5,2.0,88.1,2.3,3.0,2.2 +osm/way/1510517641,51683910402,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1615.9,6905,132927.0,41.7,2.9,37.2,12.0,32.0,10.6 +osm/way/1417637306,30017961600,10100001,Lower Yellowstone-Sunday,MT,7.0,Small town core,Small town,775.7,2455,58182.0,26.7,15.2,82.8,0.2,4.9,0.3 +osm/way/1344901569,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +osm/way/253670255,36123150102,04140201,Seneca,NY,10.0,Rural area,Rural,57.6,2038,84205.0,33.6,7.4,96.3,0.5,0.5,0.1 +osm/way/383796776,39043041600,04100011,Sandusky,OH,1.0,Metropolitan core,Metropolitan,278.3,5709,78958.0,29.8,2.2,92.5,2.3,0.9,0.0 +osm/way/1235846520,32003003642,15010015,Las Vegas Wash,NV,1.0,Metropolitan core,Metropolitan,4147.3,4644,94038.0,18.3,9.3,12.9,35.2,37.2,7.5 +osm/way/1458626323,48139060802,12030102,Lower West Fork Trinity,TX,2.0,Metropolitan high commuting,Metropolitan,447.9,9744,124801.0,30.7,2.0,71.9,7.3,14.4,1.2 +osm/way/1316005112,17031770400,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,2189.4,4625,85745.0,27.0,9.4,63.3,3.4,25.6,6.2 +osm/way/1368776077,19153011028,07100006,North Raccoon,IA,1.0,Metropolitan core,Metropolitan,335.4,5306,75404.0,51.0,8.9,71.4,4.6,14.7,6.3 +osm/way/465032484,48113010003,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,377.8,3333,83981.0,67.7,20.3,38.3,24.7,24.8,4.8 +osm/way/1381994242,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +osm/way/429040021,51087201404,02080206,Lower James,VA,2.0,Metropolitan high commuting,Metropolitan,253.3,4627,84632.0,20.5,9.0,74.5,19.3,1.6,1.5 +osm/way/1334234454,42079216100,02050107,Upper Susquehanna-Lackawanna,PA,4.0,Micropolitan core,Micropolitan,140.1,4047,78560.0,26.0,6.2,86.6,0.0,12.3,0.7 +osm/way/1489113575,47037010201,05130202,Lower Cumberland-Sycamore,TN,1.0,Metropolitan core,Metropolitan,458.6,4599,82723.0,39.0,6.5,42.4,41.1,8.7,1.8 +osm/way/1454573842,27037061003,07040001,Rush-Vermillion,"MN,WI",2.0,Metropolitan high commuting,Metropolitan,99.8,3713,169688.0,59.9,0.3,83.6,1.9,2.6,6.7 +osm/way/1482073995,42033331500,02050201,Upper West Branch Susquehanna,PA,10.0,Rural area,Rural,18.3,1775,61630.0,13.6,14.1,94.9,0.0,1.9,0.2 +osm/way/1422101108,31055007317,10230006,Big Papillion-Mosquito,"IA,NE",1.0,Metropolitan core,Metropolitan,190.1,4802,102781.0,36.7,3.5,67.3,7.5,11.2,6.4 +osm/way/1502711381,48029171918,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,2441.4,8443,76147.0,34.0,15.5,19.0,9.7,62.3,1.7 +osm/node/13685576464,51087201404,02080206,Lower James,VA,2.0,Metropolitan high commuting,Metropolitan,253.3,4627,84632.0,20.5,9.0,74.5,19.3,1.6,1.5 +osm/way/835601088,49053271703,15010009,Fort Pearce Wash,"AZ,UT",1.0,Metropolitan core,Metropolitan,1730.8,7393,120469.0,51.1,5.3,90.7,0.5,4.1,1.1 +osm/way/1510517630,41065970500,17070105,Middle Columbia-Hood,"OR,WA",4.0,Micropolitan core,Micropolitan,1203.7,3072,37308.0,13.5,21.5,65.9,0.0,29.1,0.2 +osm/way/366049843,42091206006,02040203,Schuylkill,PA,1.0,Metropolitan core,Metropolitan,1873.3,3323,84922.0,54.4,5.0,91.9,3.0,1.7,2.0 +osm/way/1426663252,51059482505,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1732.0,3809,172420.0,73.7,1.2,32.5,2.7,6.7,52.3 +osm/way/1368776076,19153011028,07100008,Lake Red Rock,IA,1.0,Metropolitan core,Metropolitan,335.4,5306,75404.0,51.0,8.9,71.4,4.6,14.7,6.3 +osm/way/1443922528,51107611004,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2380.2,8698,199111.0,75.2,3.5,53.8,7.4,11.0,19.7 +osm/way/1510517636,13113140204,03130005,Upper Flint,GA,2.0,Metropolitan high commuting,Metropolitan,364.5,6538,91310.0,43.9,7.1,40.9,27.9,28.0,0.9 +osm/node/13226718075,55025001605,07090002,Middle Rock,"IL,WI",1.0,Metropolitan core,Metropolitan,24353.8,3228,49290.0,82.5,23.1,75.7,2.7,5.9,10.7 +osm/way/1457383500,48005001001,12020002,Middle Neches,TX,5.0,Micropolitan high commuting,Micropolitan,157.8,5185,50250.0,9.8,16.2,45.6,19.0,32.1,0.0 +osm/way/1443187163,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +osm/relation/19390019,38017040504,09020104,Upper Red,"MN,ND",1.0,Metropolitan core,Metropolitan,3113.1,6136,72469.0,42.3,9.1,80.6,11.1,1.9,4.3 +osm/way/1386016627,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +osm/way/1501825871,36033952000,04150308,Chateaugay-English,"CN,NY",8.0,Small town high commuting,Small town,36.2,5023,69074.0,16.9,17.3,93.5,1.2,2.2,0.0 +osm/way/826001605,47187050304,05130204,Harpeth,TN,1.0,Metropolitan core,Metropolitan,943.1,2443,94729.0,71.6,7.7,74.9,7.4,3.1,8.6 +osm/way/1343761104,53025010600,17020015,Lower Crab,WA,7.0,Small town core,Small town,2335.7,8233,87522.0,18.2,8.8,19.3,0.5,76.6,1.1 +osm/way/1221574918,48453002216,12090205,Austin-Travis Lakes,TX,2.0,Metropolitan high commuting,Metropolitan,467.6,10648,103941.0,32.9,7.8,35.8,6.7,51.3,2.6 +osm/way/1511639844,48389950600,13070001,Lower Pecos-Red Bluff Reservoir,"NM,TX",4.0,Micropolitan core,Micropolitan,2.0,3020,73500.0,3.7,20.4,18.5,6.5,70.1,0.0 +osm/way/1154349280,17043845803,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,593.2,5409,71638.0,40.3,22.2,50.3,36.2,4.9,5.4 +osm/way/1426525218,48139060206,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,1560.6,7521,75135.0,21.7,5.9,33.1,33.4,22.4,0.5 +osm/way/1303947602,18141010800,07120001,Kankakee,"IL,IN,MI",2.0,Metropolitan high commuting,Metropolitan,79.9,4312,78553.0,28.9,3.5,89.0,0.7,3.4,0.4 +osm/way/1501120016,39045032501,05030204,Hocking,OH,2.0,Metropolitan high commuting,Metropolitan,74.3,3162,97264.0,22.6,8.7,95.4,0.3,1.3,2.2 +osm/way/1382205749,39035124201,04110002,Cuyahoga,OH,1.0,Metropolitan core,Metropolitan,4089.2,2637,52344.0,11.0,14.5,51.9,12.5,31.0,1.6 +osm/way/1460847458,06085505010,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,1433.7,4756,202663.0,64.4,9.9,15.6,3.8,11.7,65.1 +osm/way/1464257783,51153901421,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,900.1,5497,218958.0,52.1,2.3,52.8,11.4,18.2,14.8 +osm/way/283051477,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +osm/way/1380114463,51061930306,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",2.0,Metropolitan high commuting,Metropolitan,341.6,2718,106597.0,57.0,1.0,61.5,4.8,13.3,8.4 +osm/way/1501824328,41049970101,17070101,Middle Columbia-Lake Wallula,"OR,WA",10.0,Rural area,Rural,19.9,5396,68594.0,7.6,14.8,26.6,1.2,69.6,0.4 +osm/way/1460855151,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +osm/way/1269259655,51683910402,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1615.9,6905,132927.0,41.7,2.9,37.2,12.0,32.0,10.6 +osm/way/460167190,53017950300,17020010,Upper Columbia-Entiat,WA,1.0,Metropolitan core,Metropolitan,102.8,7973,83618.0,19.8,7.7,62.7,0.5,31.9,0.3 +osm/way/384310259,06001441503,18050004,San Francisco Bay,CA,1.0,Metropolitan core,Metropolitan,276.4,7604,250001.0,82.0,3.9,7.7,0.2,5.3,83.5 +osm/way/1510517640,51683910402,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1615.9,6905,132927.0,41.7,2.9,37.2,12.0,32.0,10.6 +osm/way/1085712184,51041100403,02080207,Appomattox,VA,1.0,Metropolitan core,Metropolitan,296.3,7300,107926.0,44.1,2.1,50.2,26.3,11.6,6.0 +osm/way/1498670679,48027020800,12070204,Little,TX,1.0,Metropolitan core,Metropolitan,264.4,3274,36525.0,14.8,36.3,35.2,25.3,38.5,0.0 +osm/node/13720841436,40143002500,11110101,Polecat-Snake,OK,1.0,Metropolitan core,Metropolitan,3366.7,4351,65409.0,35.7,23.4,57.0,21.0,8.0,1.7 +osm/way/1343764880,51059482505,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1732.0,3809,172420.0,73.7,1.2,32.5,2.7,6.7,52.3 +osm/way/1386016641,39049007961,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,1960.2,5495,170833.0,71.2,1.0,70.1,6.5,4.4,15.3 +osm/way/1065780801,06085505010,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,1433.7,4756,202663.0,64.4,9.9,15.6,3.8,11.7,65.1 +osm/way/1386017501,56021001902,10190009,Crow,"CO,WY",2.0,Metropolitan high commuting,Metropolitan,4.9,4777,108833.0,38.7,2.6,82.7,0.0,6.3,2.1 +osm/way/365941471,72127002800,,,,1.0,Metropolitan core,Metropolitan,16811.1,1623,22121.0,,54.3,0.0,0.0,100.0,0.0 +osm/way/1460861317,48029141700,12100301,Upper San Antonio,TX,2.0,Metropolitan high commuting,Metropolitan,327.6,8807,80457.0,20.1,19.0,26.2,9.3,61.8,1.1 +osm/way/1473440674,49049010115,16020201,Utah Lake,UT,2.0,Metropolitan high commuting,Metropolitan,125.8,4676,108906.0,27.2,1.7,77.9,0.3,17.6,0.0 +osm/way/557140229,48439113510,12030102,Lower West Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,5772.4,7024,109962.0,54.3,5.9,27.1,20.8,18.7,27.7 +osm/way/1510517631,28089030206,03180002,Middle Pearl-Strong,MS,1.0,Metropolitan core,Metropolitan,296.3,1902,130054.0,59.6,1.4,56.1,23.5,3.3,15.1 +osm/way/1490401523,48125950300,11130104,Middle Pease,TX,10.0,Rural area,Rural,2.0,1747,49335.0,18.0,18.0,62.9,1.4,32.8,1.5 +osm/way/1414729942,56005000101,10120201,Upper Belle Fourche,"SD,WY",10.0,Rural area,Rural,1.5,1807,106500.0,23.0,9.7,96.5,0.0,1.5,0.0 +osm/way/1386016640,39049007961,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,1960.2,5495,170833.0,71.2,1.0,70.1,6.5,4.4,15.3 +osm/way/1426663253,51059482505,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1732.0,3809,172420.0,73.7,1.2,32.5,2.7,6.7,52.3 +osm/way/1386016628,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +osm/way/1426525221,48139060206,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,1560.6,7521,75135.0,21.7,5.9,33.1,33.4,22.4,0.5 +osm/way/1455915217,16001010501,17050114,Lower Boise,ID,2.0,Metropolitan high commuting,Metropolitan,19.7,7903,119554.0,9.7,4.8,75.5,2.1,13.1,0.7 +osm/way/1386016636,39159050601,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,465.3,11920,196731.0,77.3,0.2,68.5,4.0,2.1,23.9 +osm/way/1510420026,55101001702,04040002,Pike-Root,"IL,WI",1.0,Metropolitan core,Metropolitan,1174.3,6950,96250.0,23.9,7.2,70.8,13.0,8.0,2.0 +osm/way/1334234455,42079216100,02050107,Upper Susquehanna-Lackawanna,PA,4.0,Micropolitan core,Micropolitan,140.1,4047,78560.0,26.0,6.2,86.6,0.0,12.3,0.7 +osm/way/1456975949,04013422647,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,2326.9,12550,153355.0,57.6,1.6,55.6,4.8,18.6,7.9 +osm/way/1472128597,13113140204,03130005,Upper Flint,GA,2.0,Metropolitan high commuting,Metropolitan,364.5,6538,91310.0,43.9,7.1,40.9,27.9,28.0,0.9 +osm/way/247427998,36085029105,02030104,Sandy Hook-Staten Island,"NJ,NY",1.0,Metropolitan core,Metropolitan,6856.9,4467,118597.0,40.4,6.9,66.2,3.2,9.6,13.2 +osm/way/1447029365,51153901504,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1454.5,4892,113115.0,56.1,3.2,65.7,15.2,6.3,9.2 +osm/way/1344901568,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +osm/way/1443922535,51107610604,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1552.0,6616,186125.0,66.9,3.2,61.6,13.2,10.6,7.3 +osm/way/483286527,48085031901,12030106,East Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,2349.3,2753,51458.0,45.5,17.2,36.8,21.7,31.6,7.0 +osm/way/1386016639,39159050601,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,465.3,11920,196731.0,77.3,0.2,68.5,4.0,2.1,23.9 +osm/way/1426525220,48139060206,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,1560.6,7521,75135.0,21.7,5.9,33.1,33.4,22.4,0.5 +osm/way/1426525184,48139060206,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,1560.6,7521,75135.0,21.7,5.9,33.1,33.4,22.4,0.5 +osm/way/518921099,04013422654,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,2964.3,5315,143819.0,40.6,3.2,66.4,2.9,22.3,1.7 +osm/way/1203535554,18141010800,07120001,Kankakee,"IL,IN,MI",2.0,Metropolitan high commuting,Metropolitan,79.9,4312,78553.0,28.9,3.5,89.0,0.7,3.4,0.4 +osm/way/1473440676,49049010115,16020201,Utah Lake,UT,2.0,Metropolitan high commuting,Metropolitan,125.8,4676,108906.0,27.2,1.7,77.9,0.3,17.6,0.0 +osm/way/1454573843,27037061003,07040001,Rush-Vermillion,"MN,WI",2.0,Metropolitan high commuting,Metropolitan,99.8,3713,169688.0,59.9,0.3,83.6,1.9,2.6,6.7 +osm/way/224139416,06085505015,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,5247.2,5169,167422.0,54.5,3.5,14.5,0.4,34.2,47.7 +osm/way/1365213539,41043030202,17090005,North Santiam,OR,2.0,Metropolitan high commuting,Metropolitan,73.8,3635,96697.0,26.6,11.7,83.6,0.0,9.7,0.2 +osm/way/1460776171,51107611004,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2380.2,8698,199111.0,75.2,3.5,53.8,7.4,11.0,19.7 +osm/node/13154826377,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +osm/way/1501824327,41049970101,17070101,Middle Columbia-Lake Wallula,"OR,WA",10.0,Rural area,Rural,19.9,5396,68594.0,7.6,14.8,26.6,1.2,69.6,0.4 +osm/way/1510517634,28089030206,03180002,Middle Pearl-Strong,MS,1.0,Metropolitan core,Metropolitan,296.3,1902,130054.0,59.6,1.4,56.1,23.5,3.3,15.1 +osm/way/1372772726,04013422654,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,2964.3,5315,143819.0,40.6,3.2,66.4,2.9,22.3,1.7 +osm/way/1510517632,28089030206,03180002,Middle Pearl-Strong,MS,1.0,Metropolitan core,Metropolitan,296.3,1902,130054.0,59.6,1.4,56.1,23.5,3.3,15.1 +osm/way/1460776170,51107611004,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2380.2,8698,199111.0,75.2,3.5,53.8,7.4,11.0,19.7 +osm/way/1510517638,51153901421,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,900.1,5497,218958.0,52.1,2.3,52.8,11.4,18.2,14.8 +osm/way/1493169641,48491020709,12070205,San Gabriel,TX,1.0,Metropolitan core,Metropolitan,3618.1,4633,92329.0,30.5,10.8,50.1,6.4,35.0,5.8 +osm/way/1494498032,32029970200,16050102,Truckee,"CA,NV",2.0,Metropolitan high commuting,Metropolitan,15.6,4140,93409.0,31.2,7.1,76.5,2.2,12.8,1.3 +osm/way/1432637060,48029172009,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,2595.3,11140,117074.0,45.9,4.5,29.0,16.6,44.8,6.2 +osm/way/1387391200,51107611028,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,694.5,6124,250001.0,85.0,3.0,36.7,9.9,5.6,42.4 +osm/way/1510517642,51683910402,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1615.9,6905,132927.0,41.7,2.9,37.2,12.0,32.0,10.6 +osm/way/1375475071,19049050812,07100006,North Raccoon,IA,1.0,Metropolitan core,Metropolitan,231.4,5305,107083.0,63.3,18.4,74.4,14.0,2.4,4.9 +osm/way/1455915218,16001010501,17050114,Lower Boise,ID,2.0,Metropolitan high commuting,Metropolitan,19.7,7903,119554.0,9.7,4.8,75.5,2.1,13.1,0.7 +osm/way/1511639843,48389950600,13070001,Lower Pecos-Red Bluff Reservoir,"NM,TX",4.0,Micropolitan core,Micropolitan,2.0,3020,73500.0,3.7,20.4,18.5,6.5,70.1,0.0 +osm/way/545895086,46099010405,10170203,Lower Big Sioux,"IA,MN,NE,SD",1.0,Metropolitan core,Metropolitan,617.8,6830,70217.0,35.3,10.1,72.1,8.8,7.4,7.3 +osm/way/1482076328,51153901420,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,3967.7,3923,203194.0,56.1,2.1,45.4,19.0,15.2,14.8 +osm/way/214321737,25017312100,01070005,Concord,MA,1.0,Metropolitan core,Metropolitan,13422.9,3474,83730.0,25.0,17.1,39.2,12.8,31.1,8.2 +osm/way/1472128598,13113140204,03130005,Upper Flint,GA,2.0,Metropolitan high commuting,Metropolitan,364.5,6538,91310.0,43.9,7.1,40.9,27.9,28.0,0.9 +osm/way/1287260559,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +osm/way/1426525217,48139060206,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,1560.6,7521,75135.0,21.7,5.9,33.1,33.4,22.4,0.5 +osm/way/1432637061,48029172009,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,2595.3,11140,117074.0,45.9,4.5,29.0,16.6,44.8,6.2 +osm/way/1386016629,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +osm/way/1386016633,39049007211,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,690.8,4128,244141.0,76.5,3.8,80.5,4.5,1.5,6.4 +osm/way/1481581948,17043846409,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,1652.1,4438,184044.0,66.2,2.5,56.6,2.2,10.5,27.4 +osm/way/465530450,08005006815,10190003,Middle South Platte-Cherry Creek,CO,1.0,Metropolitan core,Metropolitan,3724.8,4569,100301.0,77.8,4.1,52.2,0.2,24.9,8.3 +osm/way/1459680304,47079969300,06040005,Kentucky Lake,"KY,TN",4.0,Micropolitan core,Micropolitan,237.0,2886,42147.0,17.5,30.1,65.2,25.2,2.7,0.0 +osm/way/1510517637,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +osm/way/1510517633,28089030206,03180002,Middle Pearl-Strong,MS,1.0,Metropolitan core,Metropolitan,296.3,1902,130054.0,59.6,1.4,56.1,23.5,3.3,15.1 +osm/way/1511639845,48389950600,13070001,Lower Pecos-Red Bluff Reservoir,"NM,TX",4.0,Micropolitan core,Micropolitan,2.0,3020,73500.0,3.7,20.4,18.5,6.5,70.1,0.0 +osm/way/45448535,27053126202,07010206,Twin Cities,MN,1.0,Metropolitan core,Metropolitan,16434.6,4731,138200.0,83.3,1.2,77.1,0.5,8.3,8.8 +osm/way/243242167,17043844702,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,2989.5,5711,226184.0,74.3,3.6,67.7,3.4,8.1,15.9 +osm/way/1386016632,39049007211,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,690.8,4128,244141.0,76.5,3.8,80.5,4.5,1.5,6.4 +osm/node/13720841437,40143002500,11110101,Polecat-Snake,OK,1.0,Metropolitan core,Metropolitan,3366.7,4351,65409.0,35.7,23.4,57.0,21.0,8.0,1.7 +osm/way/1454813845,19153011028,07100008,Lake Red Rock,IA,1.0,Metropolitan core,Metropolitan,335.4,5306,75404.0,51.0,8.9,71.4,4.6,14.7,6.3 +osm/way/1433936352,29047021900,10240012,Platte,"IA,MO",2.0,Metropolitan high commuting,Metropolitan,143.5,6710,126711.0,34.8,5.4,92.9,2.2,2.1,0.2 +osm/way/439365340,51041100403,02080207,Appomattox,VA,1.0,Metropolitan core,Metropolitan,296.3,7300,107926.0,44.1,2.1,50.2,26.3,11.6,6.0 +osm/way/1449347339,51041100403,02080207,Appomattox,VA,1.0,Metropolitan core,Metropolitan,296.3,7300,107926.0,44.1,2.1,50.2,26.3,11.6,6.0 +osm/way/1494498031,32029970200,16050102,Truckee,"CA,NV",2.0,Metropolitan high commuting,Metropolitan,15.6,4140,93409.0,31.2,7.1,76.5,2.2,12.8,1.3 +osm/way/1386016634,39089755601,05040006,Licking,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +osm/way/1511639842,48389950600,13070001,Lower Pecos-Red Bluff Reservoir,"NM,TX",4.0,Micropolitan core,Micropolitan,2.0,3020,73500.0,3.7,20.4,18.5,6.5,70.1,0.0 +osm/way/1426525212,48139060206,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,1560.6,7521,75135.0,21.7,5.9,33.1,33.4,22.4,0.5 +osm/way/1422101116,31055007317,10230006,Big Papillion-Mosquito,"IA,NE",1.0,Metropolitan core,Metropolitan,190.1,4802,102781.0,36.7,3.5,67.3,7.5,11.2,6.4 +osm/way/1426146790,17043846409,07120007,Lower Fox,IL,1.0,Metropolitan core,Metropolitan,1652.1,4438,184044.0,66.2,2.5,56.6,2.2,10.5,27.4 +osm/node/13603878193,30111001704,10070004,Upper Yellowstone-Lake Basin,MT,1.0,Metropolitan core,Metropolitan,1216.6,4498,46179.0,26.0,11.1,83.1,0.1,6.3,0.0 +osm/way/1375475073,19049050812,07100006,North Raccoon,IA,1.0,Metropolitan core,Metropolitan,231.4,5305,107083.0,63.3,18.4,74.4,14.0,2.4,4.9 +osm/way/1447049071,39049007931,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,2719.1,4362,130634.0,43.5,2.0,88.1,2.3,3.0,2.2 +osm/way/1344901567,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +osm/node/13685576466,51087201404,02080206,Lower James,VA,2.0,Metropolitan high commuting,Metropolitan,253.3,4627,84632.0,20.5,9.0,74.5,19.3,1.6,1.5 +osm/way/1427613543,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +osm/way/776316726,47037012701,05130202,Lower Cumberland-Sycamore,TN,1.0,Metropolitan core,Metropolitan,1859.4,7041,56068.0,31.1,39.6,19.5,59.0,7.4,0.0 +osm/way/1464257784,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +osm/way/1422191450,38021973300,10160004,Elm,"ND,SD",10.0,Rural area,Rural,1.6,1337,56250.0,24.5,14.4,93.2,0.0,0.0,2.8 +osm/way/1411056682,39049007964,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,6592.8,6309,95400.0,68.9,3.3,76.4,5.7,3.1,9.0 +osm/way/1375443893,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +osm/node/12793428582,40143009008,11070107,Bird,OK,1.0,Metropolitan core,Metropolitan,1934.6,3584,34879.0,6.5,32.6,21.4,16.9,55.0,1.4 +osm/way/1456975947,04013422647,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,2326.9,12550,153355.0,57.6,1.6,55.6,4.8,18.6,7.9 +osm/way/550355261,51041100403,02080207,Appomattox,VA,1.0,Metropolitan core,Metropolitan,296.3,7300,107926.0,44.1,2.1,50.2,26.3,11.6,6.0 +osm/way/1132541700,51087201404,02080206,Lower James,VA,2.0,Metropolitan high commuting,Metropolitan,253.3,4627,84632.0,20.5,9.0,74.5,19.3,1.6,1.5 +osm/way/1343764881,51059482505,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1732.0,3809,172420.0,73.7,1.2,32.5,2.7,6.7,52.3 +osm/way/1386016637,39159050601,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,465.3,11920,196731.0,77.3,0.2,68.5,4.0,2.1,23.9 +osm/way/1387080629,40101001100,11110102,Dirty-Greenleaf,OK,5.0,Micropolitan high commuting,Micropolitan,19.4,3016,57726.0,18.2,14.2,57.5,2.9,7.1,0.2 +osm/way/460053028,51107611018,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1671.9,4705,93315.0,57.8,14.0,70.2,4.8,10.1,12.0 +osm/way/1386016631,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +osm/way/1375475072,19049050812,07100006,North Raccoon,IA,1.0,Metropolitan core,Metropolitan,231.4,5305,107083.0,63.3,18.4,74.4,14.0,2.4,4.9 +osm/way/1380114462,51061930306,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",2.0,Metropolitan high commuting,Metropolitan,341.6,2718,106597.0,57.0,1.0,61.5,4.8,13.3,8.4 +osm/way/923148801,39035108301,04110003,Ashtabula-Chagrin,"OH,PA",1.0,Metropolitan core,Metropolitan,2964.5,1596,40742.0,31.0,26.6,21.4,22.6,10.5,36.3 +osm/way/1109074150,37161961104,03050105,Upper Broad,"NC,SC",5.0,Micropolitan high commuting,Micropolitan,212.7,2426,39922.0,11.6,21.0,84.1,1.9,10.7,1.4 +osm/way/452116337,34013013600,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,10536.1,6623,109057.0,51.2,7.7,45.8,3.7,24.2,22.9 +osm/way/1343764882,51059482505,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1732.0,3809,172420.0,73.7,1.2,32.5,2.7,6.7,52.3 +osm/way/1386016642,39049007931,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,2719.1,4362,130634.0,43.5,2.0,88.1,2.3,3.0,2.2 +curated/0195165330,29165030201,10240012,Platte,"IA,MO",1.0,Metropolitan core,Metropolitan,385.2,5917,110333.0,59.5,2.6,78.7,8.0,3.8,2.1 +osm/way/1510517635,13113140204,03130005,Upper Flint,GA,2.0,Metropolitan high commuting,Metropolitan,364.5,6538,91310.0,43.9,7.1,40.9,27.9,28.0,0.9 +osm/way/1454813846,19153011028,07100008,Lake Red Rock,IA,1.0,Metropolitan core,Metropolitan,335.4,5306,75404.0,51.0,8.9,71.4,4.6,14.7,6.3 +osm/way/1460776174,51107611004,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2380.2,8698,199111.0,75.2,3.5,53.8,7.4,11.0,19.7 +osm/way/1501824326,41049970101,17070101,Middle Columbia-Lake Wallula,"OR,WA",10.0,Rural area,Rural,19.9,5396,68594.0,7.6,14.8,26.6,1.2,69.6,0.4 +osm/way/1510517639,51153901421,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,900.1,5497,218958.0,52.1,2.3,52.8,11.4,18.2,14.8 +osm/way/1273968634,08005007110,10190003,Middle South Platte-Cherry Creek,CO,1.0,Metropolitan core,Metropolitan,788.1,7394,143483.0,50.6,3.4,46.5,16.3,22.5,6.9 +curated/0283051482,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +osm/way/1456975948,04013422647,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,2326.9,12550,153355.0,57.6,1.6,55.6,4.8,18.6,7.9 +curated/0283051483,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/0283051484,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/0283051485,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/0587103676,48201540200,12040104,Buffalo-San Jacinto,TX,1.0,Metropolitan core,Metropolitan,2521.2,2433,57045.0,20.4,11.3,16.1,10.4,67.1,3.7 +curated/0696978351,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/1301654223,51107611810,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1252.6,8734,250001.0,78.7,2.8,49.4,4.5,6.3,33.0 +curated/1167564435,28149950600,08060100,Lower Mississippi-Natchez,"LA,MS",4.0,Micropolitan core,Micropolitan,657.9,5130,83170.0,40.4,13.1,45.1,52.0,1.6,0.2 +curated/0427068319,06059980000,18070201,Seal Beach,CA,1.0,Metropolitan core,Metropolitan,28.1,13,,,,0.0,0.0,100.0,0.0 +curated/0109458128,36061002901,02030101,Lower Hudson,"CT,NJ,NY",1.0,Metropolitan core,Metropolitan,19569.3,562,11094.0,1.6,65.9,13.9,36.1,37.7,10.1 +osm/way/1386017494,41049970101,17070101,Middle Columbia-Lake Wallula,"OR,WA",10.0,Rural area,Rural,19.9,5396,68594.0,7.6,14.8,26.6,1.2,69.6,0.4 +osm/way/1443922527,51107611004,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2380.2,8698,199111.0,75.2,3.5,53.8,7.4,11.0,19.7 +osm/way/1386016638,39159050601,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,465.3,11920,196731.0,77.3,0.2,68.5,4.0,2.1,23.9 +osm/way/1510517629,41049970101,17070101,Middle Columbia-Lake Wallula,"OR,WA",10.0,Rural area,Rural,19.9,5396,68594.0,7.6,14.8,26.6,1.2,69.6,0.4 +curated/1301654224,51107611810,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1252.6,8734,250001.0,78.7,2.8,49.4,4.5,6.3,33.0 +osm/way/1501824329,41049970101,17070101,Middle Columbia-Lake Wallula,"OR,WA",10.0,Rural area,Rural,19.9,5396,68594.0,7.6,14.8,26.6,1.2,69.6,0.4 +curated/0002744301,34023000702,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,1926.8,5710,150313.0,54.0,1.6,37.4,23.0,10.1,26.2 +curated/0009474864,37027030300,03050101,Upper Catawba,"NC,SC",1.0,Metropolitan core,Metropolitan,418.5,4118,48456.0,17.2,8.8,79.6,9.8,7.0,0.8 +osm/way/1371348227,29025950202,10280101,Upper Grand,"IA,MO",10.0,Rural area,Rural,49.8,3144,65952.0,27.0,9.1,94.5,0.0,3.1,0.9 +osm/way/1484435248,48085031418,12030106,East Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,2048.3,7120,208908.0,70.6,4.5,30.5,5.9,11.5,40.7 +osm/way/1422101112,31055007317,10230006,Big Papillion-Mosquito,"IA,NE",1.0,Metropolitan core,Metropolitan,190.1,4802,102781.0,36.7,3.5,67.3,7.5,11.2,6.4 +osm/way/1455361421,48475950100,13070001,Lower Pecos-Red Bluff Reservoir,"NM,TX",10.0,Rural area,Rural,5.1,4261,61625.0,10.8,11.9,41.5,4.0,51.5,0.2 +osm/way/1427613544,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +osm/way/1427613545,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +osm/way/1425043213,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +curated/0014593270,37035011702,03050102,South Fork Catawba,"NC,SC",2.0,Metropolitan high commuting,Metropolitan,207.1,6948,83313.0,22.7,11.6,81.9,4.6,4.9,7.0 +curated/0014930068,35001980000,13020203,Rio Grande-Albuquerque,NM,1.0,Metropolitan core,Metropolitan,95.2,3891,83774.0,49.5,11.8,56.1,8.8,22.3,6.6 +curated/0014997588,51087201404,02080206,Lower James,VA,2.0,Metropolitan high commuting,Metropolitan,253.3,4627,84632.0,20.5,9.0,74.5,19.3,1.6,1.5 +curated/0015884451,34039037300,02030104,Sandy Hook-Staten Island,"NJ,NY",1.0,Metropolitan core,Metropolitan,4309.0,4657,165972.0,62.8,1.7,81.7,5.6,5.7,4.5 +curated/0016282459,24003730404,02060003,Gunpowder-Patapsco,"MD,PA",1.0,Metropolitan core,Metropolitan,3387.1,2019,63536.0,21.8,13.7,57.9,10.8,23.9,3.6 +curated/0018518989,01089010704,06030002,Wheeler Lake,"AL,TN",1.0,Metropolitan core,Metropolitan,434.5,6752,86266.0,43.9,4.7,56.1,26.8,6.8,2.4 +curated/0025706343,48439106518,12030102,Lower West Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,1835.1,6503,72917.0,45.0,10.6,18.7,45.8,17.3,13.0 +curated/0028544618,48113010001,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,921.1,2299,34063.0,7.5,34.3,20.1,46.7,28.1,2.9 +curated/0029827954,25017351500,01090001,Charles,MA,1.0,Metropolitan core,Metropolitan,4596.8,2926,85274.0,61.9,13.0,46.8,7.7,25.2,9.1 +curated/0030666790,06037206020,18070105,Los Angeles,CA,1.0,Metropolitan core,Metropolitan,17129.5,7629,155658.0,7.1,7.6,15.1,34.1,43.0,3.3 +curated/0031250931,39165032008,05090202,Little Miami,OH,1.0,Metropolitan core,Metropolitan,1275.7,4495,151283.0,64.4,10.3,65.8,2.1,5.1,22.3 +curated/0031800424,06073008511,18070304,San Diego,"CA,MX",1.0,Metropolitan core,Metropolitan,933.0,5607,140403.0,58.4,6.9,34.1,6.2,24.3,31.2 +curated/0032560290,06067007019,18020161,Upper Coon-Upper Auburn,CA,1.0,Metropolitan core,Metropolitan,1304.0,3216,107460.0,48.6,25.9,14.2,41.3,17.3,18.3 +curated/0032560292,06067007019,18020161,Upper Coon-Upper Auburn,CA,1.0,Metropolitan core,Metropolitan,1304.0,3216,107460.0,48.6,25.9,14.2,41.3,17.3,18.3 +curated/0034770750,13121011640,03130001,Upper Chattahoochee,GA,1.0,Metropolitan core,Metropolitan,3723.2,5241,71845.0,59.4,20.4,51.6,19.0,6.8,19.4 +curated/0035491576,06085512032,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,3042.2,3754,173750.0,63.7,12.3,27.4,0.7,27.0,40.1 +curated/0036897140,39061023001,05090203,Middle Ohio-Laughery,"IN,KY,OH",1.0,Metropolitan core,Metropolitan,729.4,4462,58700.0,34.9,6.4,64.7,9.1,11.3,6.3 +curated/0037947313,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0037947314,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0037947315,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0038305431,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0038305568,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0038305611,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0039083797,13121011652,03130001,Upper Chattahoochee,GA,1.0,Metropolitan core,Metropolitan,1289.3,3219,129583.0,75.2,4.4,27.2,3.4,13.4,50.1 +curated/0039083830,13121011652,03130001,Upper Chattahoochee,GA,1.0,Metropolitan core,Metropolitan,1289.3,3219,129583.0,75.2,4.4,27.2,3.4,13.4,50.1 +curated/0040608200,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0079056848,33017080203,01060003,Piscataqua-Salmon Falls,"MA,ME,NH",4.0,Micropolitan core,Micropolitan,3524.9,5172,73950.0,73.1,30.3,86.9,0.2,6.6,3.0 +curated/0258519959,51059490104,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,745.1,3642,141250.0,47.4,5.2,38.9,0.9,36.8,20.0 +curated/0042323063,29510125600,07140101,Cahokia-Joachim,"IL,MO",1.0,Metropolitan core,Metropolitan,7265.8,5310,68750.0,56.6,21.4,44.1,41.4,9.3,2.2 +curated/0045583050,51153901503,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",2.0,Metropolitan high commuting,Metropolitan,192.3,5695,185917.0,50.5,0.4,75.2,3.9,10.5,3.8 +curated/0045776978,51153901418,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,2723.2,5331,130461.0,41.5,10.3,14.6,26.9,45.5,9.9 +curated/0045776979,51153901418,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,2723.2,5331,130461.0,41.5,10.3,14.6,26.9,45.5,9.9 +curated/0045776988,51153901418,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,2723.2,5331,130461.0,41.5,10.3,14.6,26.9,45.5,9.9 +curated/0046128119,39061000700,05090203,Middle Ohio-Laughery,"IN,KY,OH",1.0,Metropolitan core,Metropolitan,11339.8,3570,100863.0,62.4,6.6,70.5,12.9,5.1,4.4 +curated/0046831933,51153901421,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,900.1,5497,218958.0,52.1,2.3,52.8,11.4,18.2,14.8 +curated/0048242814,51107611018,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1671.9,4705,93315.0,57.8,14.0,70.2,4.8,10.1,12.0 +curated/0048242816,51107611018,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1671.9,4705,93315.0,57.8,14.0,70.2,4.8,10.1,12.0 +curated/004e64f5c0f280ee985db82d511df7ff,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/0052059176,41067032608,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,860.3,2242,101058.0,42.6,6.6,61.0,0.0,18.2,13.2 +curated/0260996040,51059980100,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,7.5,0,,,,,,, +curated/0169170979,35001004001,13020203,Rio Grande-Albuquerque,NM,1.0,Metropolitan core,Metropolitan,141.2,5433,77823.0,22.8,16.4,21.9,0.7,73.9,0.6 +curated/0052094269,51107611502,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2593.5,7269,131000.0,37.5,7.9,27.7,12.0,32.3,25.4 +curated/0052094270,51107611502,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2593.5,7269,131000.0,37.5,7.9,27.7,12.0,32.3,25.4 +curated/0052094294,51107611501,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2714.3,3703,117719.0,58.0,2.6,26.0,15.4,19.0,25.7 +curated/0052227492,27019090802,07020012,Lower Minnesota,MN,1.0,Metropolitan core,Metropolitan,710.3,2377,207024.0,69.5,2.2,82.5,3.2,3.7,3.3 +curated/0052958203,08031002602,10190003,Middle South Platte-Cherry Creek,CO,1.0,Metropolitan core,Metropolitan,18670.2,2811,98750.0,72.4,10.4,74.6,6.9,11.0,2.6 +curated/0054173383,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0054173753,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0054173755,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0054383196,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0054383197,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0059294476,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0063619642,27053126102,07010206,Twin Cities,MN,1.0,Metropolitan core,Metropolitan,10859.6,7757,123750.0,70.0,11.5,64.0,14.5,5.3,8.9 +curated/0069827429,36001001100,02020006,Middle Hudson,"MA,NY",1.0,Metropolitan core,Metropolitan,2717.7,2065,56591.0,47.6,28.5,62.6,27.2,4.4,2.7 +curated/0071187940,26163521100,04090004,Detroit,"CN,MI",1.0,Metropolitan core,Metropolitan,2454.8,1533,43267.0,36.1,30.4,26.7,9.1,52.3,0.0 +curated/0254742608,48029171926,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,2544.1,3039,45787.0,24.9,16.0,22.2,20.9,44.3,8.7 +curated/0079158387,51059481900,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1432.9,6041,173904.0,73.2,5.3,64.3,10.2,8.1,15.1 +curated/0079159494,51059481900,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1432.9,6041,173904.0,73.2,5.3,64.3,10.2,8.1,15.1 +curated/0079298926,51059481202,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,4329.8,6503,115365.0,47.0,5.9,35.5,8.7,35.4,13.1 +curated/0079818498,51059481202,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,4329.8,6503,115365.0,47.0,5.9,35.5,8.7,35.4,13.1 +curated/0089784186,08031001707,10190003,Middle South Platte-Cherry Creek,CO,1.0,Metropolitan core,Metropolitan,10045.4,1931,130568.0,74.2,8.0,78.6,2.9,8.9,2.4 +curated/0093210344,24031701425,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,2002.1,3942,108750.0,55.4,5.4,30.9,49.8,9.3,7.2 +curated/0095349317,39165032100,05090202,Little Miami,OH,1.0,Metropolitan core,Metropolitan,521.6,10289,128125.0,50.7,6.0,75.4,3.3,1.7,13.0 +curated/0095782052,34017014600,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,2101.8,4046,106250.0,36.7,4.9,8.6,1.4,80.8,8.7 +curated/0099813512,06085504602,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,91.5,1542,121953.0,37.3,7.5,18.2,2.1,58.4,18.5 +curated/00b86fc06518169a7ca6e8903e390efe,29019001004,10300102,Lower Missouri-Moreau,MO,1.0,Metropolitan core,Metropolitan,696.0,4449,61449.0,40.6,29.2,70.5,1.7,23.0,2.1 +curated/0269166415,13121011421,03130001,Upper Chattahoochee,GA,1.0,Metropolitan core,Metropolitan,2623.3,6082,87631.0,46.3,18.2,26.6,38.0,27.1,2.5 +curated/00d081a12a85e10daec9bd38289be107,06085505010,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,1433.7,4756,202663.0,64.4,9.9,15.6,3.8,11.7,65.1 +curated/00ea8263d9e095e14268a4049aac726f,06037207712,18070105,Los Angeles,CA,1.0,Metropolitan core,Metropolitan,30124.1,4967,63484.0,56.4,26.7,18.3,13.7,20.8,37.4 +curated/0104082694,19153005101,07100006,North Raccoon,IA,1.0,Metropolitan core,Metropolitan,4140.6,7131,56461.0,62.4,22.3,66.8,19.1,7.2,1.7 +curated/0116005354,37035011702,03050102,South Fork Catawba,"NC,SC",2.0,Metropolitan high commuting,Metropolitan,207.1,6948,83313.0,22.7,11.6,81.9,4.6,4.9,7.0 +curated/0122665255,09120090500,01100005,Housatonic,"CT,MA,NY",,,Unknown,,5112,143897.0,57.4,2.0,77.3,1.4,6.2,6.4 +curated/0124088810,17043846507,07120007,Lower Fox,IL,1.0,Metropolitan core,Metropolitan,1950.4,3824,90521.0,59.6,10.5,33.3,9.3,16.2,35.0 +curated/0128499684,17031770300,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,1303.0,6900,76782.0,40.0,8.7,72.0,4.7,17.3,3.8 +curated/0131891022,04013117200,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,333.9,981,62782.0,10.0,34.3,6.6,0.0,89.9,0.0 +curated/0132746406,06085511302,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,10660.6,3880,139167.0,74.9,18.2,45.9,0.5,20.1,27.8 +curated/0138260136,17019001400,05120112,Embarras,IL,1.0,Metropolitan core,Metropolitan,3540.9,7407,86176.0,71.3,10.1,60.8,5.2,9.4,20.4 +curated/0138643160,39023002200,05090202,Little Miami,OH,1.0,Metropolitan core,Metropolitan,204.7,4330,102115.0,35.6,3.2,94.5,0.3,0.5,0.0 +curated/0145f0f8c3f8e4a372cbf9a4e063fd68,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/0147350175,17031839100,07120003,Chicago,"IL,IN",1.0,Metropolitan core,Metropolitan,19356.1,8355,132361.0,80.6,9.0,44.2,9.4,16.3,27.9 +curated/0149379943,17031839000,07120003,Chicago,"IL,IN",1.0,Metropolitan core,Metropolitan,55621.3,10391,106650.0,85.3,15.9,49.9,12.1,7.4,26.0 +curated/0151179323,04013110502,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,6332.1,4065,71439.0,56.6,23.9,46.9,7.7,25.7,7.6 +curated/0152163711,04013522802,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,705.8,1128,38828.0,29.0,54.4,52.2,2.4,28.0,6.1 +curated/0152163722,04013522802,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,705.8,1128,38828.0,29.0,54.4,52.2,2.4,28.0,6.1 +curated/0152449872,17031841900,07120003,Chicago,"IL,IN",1.0,Metropolitan core,Metropolitan,6744.5,6567,141017.0,62.3,15.1,37.6,21.6,14.1,21.8 +curated/0155739337,04013616500,15070102,Aqua Fria,AZ,1.0,Metropolitan core,Metropolitan,4939.7,4416,83342.0,20.1,17.5,53.3,1.6,37.3,1.3 +curated/0156468497,51059460501,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,3121.6,2594,212679.0,82.5,6.8,59.5,0.2,7.2,24.8 +curated/0156520409,17031330101,04040002,Pike-Root,"IL,WI",1.0,Metropolitan core,Metropolitan,6316.3,4821,171388.0,87.9,10.0,52.0,7.8,4.6,28.6 +curated/0157362579,04013614700,15070102,Aqua Fria,AZ,1.0,Metropolitan core,Metropolitan,540.5,3392,59315.0,21.5,14.0,60.7,3.2,25.6,2.1 +curated/0283051477,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/0161126131,06085512032,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,3042.2,3754,173750.0,63.7,12.3,27.4,0.7,27.0,40.1 +curated/0168129695,42003453004,05030101,Upper Ohio,"OH,PA,WV",1.0,Metropolitan core,Metropolitan,2529.2,7139,96408.0,51.5,5.5,75.5,1.5,5.7,5.3 +curated/0254742609,48029171926,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,2544.1,3039,45787.0,24.9,16.0,22.2,20.9,44.3,8.7 +curated/0172739950,32003002979,15010015,Las Vegas Wash,NV,1.0,Metropolitan core,Metropolitan,1814.3,5093,84803.0,30.7,4.1,34.6,6.6,16.6,35.8 +curated/0172739953,32003002979,15010015,Las Vegas Wash,NV,1.0,Metropolitan core,Metropolitan,1814.3,5093,84803.0,30.7,4.1,34.6,6.6,16.6,35.8 +curated/0174242795,17031770500,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,1776.3,4292,75096.0,6.1,14.0,11.3,0.0,88.3,0.0 +curated/0187574082,34023009300,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,14370.9,6132,,35.4,45.0,13.2,11.4,51.3,21.3 +curated/0190868312,06067007019,18020161,Upper Coon-Upper Auburn,CA,1.0,Metropolitan core,Metropolitan,1304.0,3216,107460.0,48.6,25.9,14.2,41.3,17.3,18.3 +curated/0191655977,19155031300,10230006,Big Papillion-Mosquito,"IA,NE",1.0,Metropolitan core,Metropolitan,482.0,3150,50821.0,10.7,20.1,78.9,0.2,16.6,0.0 +curated/0192307107,06075061505,18050002,San Pablo Bay,CA,1.0,Metropolitan core,Metropolitan,127899.1,925,250001.0,91.5,1.7,32.0,10.1,8.3,44.9 +curated/0193611192,34017019900,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,2689.2,5417,99341.0,61.2,4.7,27.4,3.9,27.0,39.8 +curated/0193611211,34017019900,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,2689.2,5417,99341.0,61.2,4.7,27.4,3.9,27.0,39.8 +curated/0193611219,34017019900,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,2689.2,5417,99341.0,61.2,4.7,27.4,3.9,27.0,39.8 +curated/0193612533,34017019900,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,2689.2,5417,99341.0,61.2,4.7,27.4,3.9,27.0,39.8 +curated/0194049551,06067007019,18020161,Upper Coon-Upper Auburn,CA,1.0,Metropolitan core,Metropolitan,1304.0,3216,107460.0,48.6,25.9,14.2,41.3,17.3,18.3 +curated/0195165354,29165030201,10240012,Platte,"IA,MO",1.0,Metropolitan core,Metropolitan,385.2,5917,110333.0,59.5,2.6,78.7,8.0,3.8,2.1 +curated/0195165374,29165030201,10240012,Platte,"IA,MO",1.0,Metropolitan core,Metropolitan,385.2,5917,110333.0,59.5,2.6,78.7,8.0,3.8,2.1 +curated/0195169261,29165030201,10240012,Platte,"IA,MO",1.0,Metropolitan core,Metropolitan,385.2,5917,110333.0,59.5,2.6,78.7,8.0,3.8,2.1 +curated/0195664350,40143005808,11070107,Bird,OK,2.0,Metropolitan high commuting,Metropolitan,167.6,4979,121310.0,40.1,4.1,65.3,3.1,6.6,8.9 +curated/0199252950,17043846409,07120007,Lower Fox,IL,1.0,Metropolitan core,Metropolitan,1652.1,4438,184044.0,66.2,2.5,56.6,2.2,10.5,27.4 +curated/01e6431d9b68a60b53efda3f16e25e93,51107611019,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,3339.9,5633,220156.0,72.6,1.7,53.5,10.0,7.1,26.4 +curated/0200989527,08005006864,10190003,Middle South Platte-Cherry Creek,CO,1.0,Metropolitan core,Metropolitan,686.9,3501,126575.0,56.2,3.2,48.4,10.3,14.7,18.8 +curated/0203432103,18105000802,05120202,Lower White,IN,1.0,Metropolitan core,Metropolitan,433.1,3241,51750.0,71.6,22.5,64.6,1.2,4.7,22.0 +curated/0204316962,34023001805,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,3758.1,5737,141696.0,64.0,3.4,23.3,6.6,16.6,51.3 +curated/0204460681,34023000603,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,549.3,2243,151000.0,59.4,2.0,32.9,19.9,3.1,39.1 +curated/0204460799,34023000702,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,1926.8,5710,150313.0,54.0,1.6,37.4,23.0,10.1,26.2 +curated/0204460812,34023000702,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,1926.8,5710,150313.0,54.0,1.6,37.4,23.0,10.1,26.2 +curated/0204460835,34023000603,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,549.3,2243,151000.0,59.4,2.0,32.9,19.9,3.1,39.1 +curated/0204460903,34023000603,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,549.3,2243,151000.0,59.4,2.0,32.9,19.9,3.1,39.1 +curated/0204460950,34023000603,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,549.3,2243,151000.0,59.4,2.0,32.9,19.9,3.1,39.1 +curated/0254742610,48029171926,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,2544.1,3039,45787.0,24.9,16.0,22.2,20.9,44.3,8.7 +curated/0205724881,53033027200,17110013,Duwamish,WA,1.0,Metropolitan core,Metropolitan,2338.8,3086,79871.0,19.7,12.9,33.6,5.9,32.3,20.8 +curated/0205724885,53033027200,17110013,Duwamish,WA,1.0,Metropolitan core,Metropolitan,2338.8,3086,79871.0,19.7,12.9,33.6,5.9,32.3,20.8 +curated/0205823968,06085508708,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2463.3,6682,250001.0,89.0,7.3,12.2,0.2,7.5,75.6 +curated/0205823970,06085508708,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2463.3,6682,250001.0,89.0,7.3,12.2,0.2,7.5,75.6 +curated/0205823971,06085508708,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2463.3,6682,250001.0,89.0,7.3,12.2,0.2,7.5,75.6 +curated/0205823980,06085508708,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2463.3,6682,250001.0,89.0,7.3,12.2,0.2,7.5,75.6 +curated/0205846843,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0209073635,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0209073636,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0209073641,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0209073645,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0209073647,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0254756938,32003001608,15010015,Las Vegas Wash,NV,1.0,Metropolitan core,Metropolitan,4000.2,2194,29881.0,4.2,41.1,26.0,8.7,47.9,3.4 +curated/0209073649,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0209073653,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0209073657,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0209073659,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0209076412,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0209077298,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0209087373,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0209105766,06085505007,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,3194.3,4223,164115.0,33.1,7.0,22.4,3.6,28.7,42.3 +curated/0209786637,17031843200,07120003,Chicago,"IL,IN",1.0,Metropolitan core,Metropolitan,2249.2,2135,74764.0,45.3,17.0,32.2,2.9,58.5,3.4 +curated/0210222970,17031840200,07120003,Chicago,"IL,IN",1.0,Metropolitan core,Metropolitan,7826.2,2233,56944.0,31.7,29.4,14.6,0.0,17.6,65.7 +curated/0210917861,04013117200,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,333.9,981,62782.0,10.0,34.3,6.6,0.0,89.9,0.0 +curated/0211832626,25009254402,01070006,Merrimack River,"MA,NH",1.0,Metropolitan core,Metropolitan,758.9,8197,174185.0,77.8,2.2,58.9,7.0,6.8,24.3 +curated/0215630401,37119005915,03050103,Lower Catawba,"NC,SC",1.0,Metropolitan core,Metropolitan,5825.8,3046,78787.0,63.2,6.6,30.1,49.4,8.8,4.5 +curated/0220518160,04013319909,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,2326.6,2539,144740.0,69.8,2.2,80.7,0.4,14.4,2.6 +curated/0221201212,53033002000,17110012,Lake Washington,WA,1.0,Metropolitan core,Metropolitan,8739.6,4019,150219.0,78.8,4.7,73.0,1.7,3.3,14.0 +curated/0221897579,51059480902,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,4569.3,4005,184375.0,53.4,5.8,37.7,11.6,35.8,11.9 +curated/0222672860,51153901509,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",2.0,Metropolitan high commuting,Metropolitan,293.1,8086,202560.0,64.0,4.3,61.6,13.8,12.2,5.5 +curated/0223783259,53033008004,17110019,Puget Sound,WA,1.0,Metropolitan core,Metropolitan,31029.7,3173,178185.0,86.5,8.3,49.4,3.3,0.5,32.0 +curated/0223928497,53033007202,17110012,Lake Washington,WA,1.0,Metropolitan core,Metropolitan,38288.8,3899,174706.0,78.6,8.7,46.1,1.0,4.6,45.6 +curated/0224100721,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/0283051478,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/0224174031,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0224998784,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0225745958,51061930401,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",2.0,Metropolitan high commuting,Metropolitan,549.8,6221,152578.0,52.8,4.5,69.5,5.0,16.7,4.4 +curated/0231047065,56021001902,10190009,Crow,"CO,WY",2.0,Metropolitan high commuting,Metropolitan,4.9,4777,108833.0,38.7,2.6,82.7,0.0,6.3,2.1 +curated/0288909509,29165980000,10240011,Independence-Sugar,"KS,MO",10.0,Rural area,Rural,0.7,0,,,,,,, +curated/0231664575,53033007303,17110012,Lake Washington,WA,1.0,Metropolitan core,Metropolitan,32052.0,3961,164819.0,84.0,4.4,36.2,6.3,5.3,46.1 +curated/0231769626,41065970500,17070105,Middle Columbia-Hood,"OR,WA",4.0,Micropolitan core,Micropolitan,1203.7,3072,37308.0,13.5,21.5,65.9,0.0,29.1,0.2 +curated/0233888384,37183053009,03020201,Upper Neuse,NC,1.0,Metropolitan core,Metropolitan,818.3,9861,91142.0,53.6,10.9,57.0,11.6,20.1,3.3 +curated/0234722029,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/0234722720,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/0239032142,46099010405,10170203,Lower Big Sioux,"IA,MN,NE,SD",1.0,Metropolitan core,Metropolitan,617.8,6830,70217.0,35.3,10.1,72.1,8.8,7.4,7.3 +curated/0239147373,51059471201,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,10978.1,2916,121314.0,81.8,8.0,41.0,3.4,12.0,33.0 +curated/0239147724,51059471201,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,10978.1,2916,121314.0,81.8,8.0,41.0,3.4,12.0,33.0 +curated/0240724127,49035115211,16020204,Jordan,UT,1.0,Metropolitan core,Metropolitan,987.6,9866,131141.0,38.1,7.4,59.7,5.8,22.3,3.3 +curated/0244490839,04013115200,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,1151.3,3532,57281.0,4.7,21.9,10.7,6.3,63.5,5.7 +curated/0250052753,36061003300,02030101,Lower Hudson,"CT,NJ,NY",1.0,Metropolitan core,Metropolitan,48953.1,5951,250001.0,94.4,3.5,67.9,0.9,5.7,9.5 +curated/0251716328,51059490104,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,745.1,3642,141250.0,47.4,5.2,38.9,0.9,36.8,20.0 +curated/0253682978,29510125600,07140101,Cahokia-Joachim,"IL,MO",1.0,Metropolitan core,Metropolitan,7265.8,5310,68750.0,56.6,21.4,44.1,41.4,9.3,2.2 +curated/0254583328,32003001610,15010015,Las Vegas Wash,NV,1.0,Metropolitan core,Metropolitan,6443.7,2941,74813.0,6.8,14.4,20.8,0.1,75.8,2.2 +curated/0254773884,48085031510,12030106,East Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,3134.1,7363,137527.0,78.9,1.3,49.9,7.6,14.9,25.2 +curated/0254773897,48085031510,12030106,East Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,3134.1,7363,137527.0,78.9,1.3,49.9,7.6,14.9,25.2 +curated/0256728809,31055001600,10230006,Big Papillion-Mosquito,"IA,NE",1.0,Metropolitan core,Metropolitan,5750.1,3416,35299.0,70.2,45.6,66.4,5.0,11.1,12.3 +curated/0257581364,51087200904,02080206,Lower James,VA,1.0,Metropolitan core,Metropolitan,1125.6,5830,83067.0,45.3,5.8,37.0,51.4,1.7,4.0 +curated/0258343744,51059490104,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,745.1,3642,141250.0,47.4,5.2,38.9,0.9,36.8,20.0 +curated/0258343748,51059490104,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,745.1,3642,141250.0,47.4,5.2,38.9,0.9,36.8,20.0 +curated/0258343749,51059490104,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,745.1,3642,141250.0,47.4,5.2,38.9,0.9,36.8,20.0 +curated/0258519934,51059490104,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,745.1,3642,141250.0,47.4,5.2,38.9,0.9,36.8,20.0 +curated/0283051481,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/0269847438,13121000700,03130002,Middle Chattahoochee-Lake Harding,"AL,GA",1.0,Metropolitan core,Metropolitan,5130.1,3038,164028.0,21.8,11.1,31.6,56.6,6.1,1.8 +curated/0273895868,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0273896089,51107611702,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1247.2,2417,174183.0,68.2,0.6,36.0,16.3,14.8,31.6 +curated/0273896096,51107611702,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1247.2,2417,174183.0,68.2,0.6,36.0,16.3,14.8,31.6 +curated/0509611429,48029171912,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,2116.6,6929,92147.0,42.3,8.7,32.6,8.0,55.2,3.2 +curated/0273896102,51107611702,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1247.2,2417,174183.0,68.2,0.6,36.0,16.3,14.8,31.6 +curated/0278560778,13121010801,03130005,Upper Flint,GA,1.0,Metropolitan core,Metropolitan,1999.7,2141,63712.0,50.6,22.1,33.9,51.3,7.1,1.2 +curated/0279410762,34017017900,02030101,Lower Hudson,"CT,NJ,NY",1.0,Metropolitan core,Metropolitan,12583.0,5455,190625.0,87.6,2.6,43.4,4.9,11.8,37.6 +curated/0279410766,34017017900,02030101,Lower Hudson,"CT,NJ,NY",1.0,Metropolitan core,Metropolitan,12583.0,5455,190625.0,87.6,2.6,43.4,4.9,11.8,37.6 +curated/0283051469,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/0283051470,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/0283051471,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/0283051472,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/0283051474,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/0283051475,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/0283051487,53025010600,17020015,Lower Crab,WA,7.0,Small town core,Small town,2335.7,8233,87522.0,18.2,8.8,19.3,0.5,76.6,1.1 +curated/0283051493,53025010600,17020015,Lower Crab,WA,7.0,Small town core,Small town,2335.7,8233,87522.0,18.2,8.8,19.3,0.5,76.6,1.1 +curated/0284044002,13067030405,03130001,Upper Chattahoochee,GA,1.0,Metropolitan core,Metropolitan,4147.9,6710,73477.0,43.1,15.1,38.5,36.1,6.5,1.6 +curated/0289620443,06075023300,18050004,San Francisco Bay,CA,1.0,Metropolitan core,Metropolitan,17869.0,3818,89531.0,24.3,19.0,10.3,10.4,18.3,54.6 +curated/0289884123,36061003300,02030101,Lower Hudson,"CT,NJ,NY",1.0,Metropolitan core,Metropolitan,48953.1,5951,250001.0,94.4,3.5,67.9,0.9,5.7,9.5 +curated/0290101976,16065950200,17040204,Teton,"ID,WY",4.0,Micropolitan core,Micropolitan,2796.3,4523,45750.0,33.5,27.0,79.6,1.0,13.1,2.1 +curated/0292506449,08005006864,10190003,Middle South Platte-Cherry Creek,CO,1.0,Metropolitan core,Metropolitan,686.9,3501,126575.0,56.2,3.2,48.4,10.3,14.7,18.8 +curated/0292506452,08005006864,10190003,Middle South Platte-Cherry Creek,CO,1.0,Metropolitan core,Metropolitan,686.9,3501,126575.0,56.2,3.2,48.4,10.3,14.7,18.8 +curated/0293211683,53033027200,17110013,Duwamish,WA,1.0,Metropolitan core,Metropolitan,2338.8,3086,79871.0,19.7,12.9,33.6,5.9,32.3,20.8 +curated/0293211686,53033027200,17110013,Duwamish,WA,1.0,Metropolitan core,Metropolitan,2338.8,3086,79871.0,19.7,12.9,33.6,5.9,32.3,20.8 +curated/0293211687,53033027200,17110013,Duwamish,WA,1.0,Metropolitan core,Metropolitan,2338.8,3086,79871.0,19.7,12.9,33.6,5.9,32.3,20.8 +curated/0296374269,42077005902,02040106,Lehigh,PA,1.0,Metropolitan core,Metropolitan,400.4,1866,55652.0,20.7,11.4,46.5,4.3,43.9,0.3 +curated/0298126010,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/0673145182,48439113941,12030104,Denton,TX,1.0,Metropolitan core,Metropolitan,1270.4,6378,87784.0,47.1,5.0,50.4,19.7,15.2,6.3 +curated/0298127059,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/0298127361,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/0298127420,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/0298242260,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/0298242335,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/0299388896,06085505006,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2165.2,11179,240086.0,87.9,6.6,15.7,0.7,4.0,77.5 +curated/0299927846,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0299929061,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0299946152,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/029e1221dcabf25a62898f647c0ea6cc,06037207712,18070105,Los Angeles,CA,1.0,Metropolitan core,Metropolitan,30124.1,4967,63484.0,56.4,26.7,18.3,13.7,20.8,37.4 +curated/0814061071,53017950300,17020010,Upper Columbia-Entiat,WA,1.0,Metropolitan core,Metropolitan,102.8,7973,83618.0,19.8,7.7,62.7,0.5,31.9,0.3 +curated/0300162674,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/0300162675,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/0300162689,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/0300163074,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/0300163083,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/0300952513,04013812200,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,3785.5,7847,120513.0,60.8,8.6,45.4,3.7,20.7,20.1 +curated/0300959969,04013811800,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,1996.1,1895,178750.0,71.9,0.0,51.0,1.0,8.3,35.6 +curated/0300959970,04013812200,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,3785.5,7847,120513.0,60.8,8.6,45.4,3.7,20.7,20.1 +curated/0300969250,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0300969614,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0376627431,53073000502,17110004,Nooksack,"CN,WA",1.0,Metropolitan core,Metropolitan,6190.6,3158,63272.0,49.0,14.3,76.0,1.2,9.4,5.5 +curated/0300969615,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0300969616,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0300969617,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0337126739,53033027100,17110013,Duwamish,WA,1.0,Metropolitan core,Metropolitan,6237.7,4334,72386.0,20.4,25.1,30.8,11.7,32.8,22.1 +curated/0300969619,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0300970759,51107611019,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,3339.9,5633,220156.0,72.6,1.7,53.5,10.0,7.1,26.4 +curated/0300970761,51107611019,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,3339.9,5633,220156.0,72.6,1.7,53.5,10.0,7.1,26.4 +curated/0300974499,04013422647,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,2326.9,12550,153355.0,57.6,1.6,55.6,4.8,18.6,7.9 +curated/0302702428,36001013703,02020004,Mohawk,NY,1.0,Metropolitan core,Metropolitan,337.3,2431,108790.0,38.6,10.2,74.8,12.4,8.4,2.9 +curated/0308d8aee649b9d230624d8653a1241b,27053126102,07010206,Twin Cities,MN,1.0,Metropolitan core,Metropolitan,10859.6,7757,123750.0,70.0,11.5,64.0,14.5,5.3,8.9 +curated/0317466755,17097864513,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,2014.0,6419,170278.0,75.0,1.5,73.2,1.0,4.9,15.8 +curated/0358455179,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0318069356,35049001002,13020201,Rio Grande-Santa Fe,NM,1.0,Metropolitan core,Metropolitan,4280.5,3494,39423.0,46.0,23.5,43.4,7.2,41.6,1.9 +curated/0321385147,41013950200,17070305,Lower Crooked,OR,5.0,Micropolitan high commuting,Micropolitan,29.1,5072,83750.0,20.0,12.6,84.2,0.0,11.9,0.3 +curated/0325096144,41067032608,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,860.3,2242,101058.0,42.6,6.6,61.0,0.0,18.2,13.2 +curated/0328702378,41067031617,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,5062.1,6201,96250.0,51.0,12.0,44.6,3.6,21.2,22.0 +curated/0337126741,53033027100,17110013,Duwamish,WA,1.0,Metropolitan core,Metropolitan,6237.7,4334,72386.0,20.4,25.1,30.8,11.7,32.8,22.1 +curated/0328702750,41067031617,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,5062.1,6201,96250.0,51.0,12.0,44.6,3.6,21.2,22.0 +curated/0328703598,41067031617,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,5062.1,6201,96250.0,51.0,12.0,44.6,3.6,21.2,22.0 +curated/0328703599,41067031617,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,5062.1,6201,96250.0,51.0,12.0,44.6,3.6,21.2,22.0 +curated/0329551673,21111010406,05140102,Salt,KY,1.0,Metropolitan core,Metropolitan,1220.5,6014,110223.0,66.3,10.3,77.0,11.1,5.6,2.2 +curated/032ae0459bd94fe0d425d8d1458b49b4,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0330276516,21111006300,05140101,Silver-Little Kentucky,"IN,KY",1.0,Metropolitan core,Metropolitan,5619.9,1740,71611.0,52.3,14.3,83.4,4.9,3.3,3.2 +curated/0333cf293876a9b97d8b99cd85f8289f,06037310501,18070105,Los Angeles,CA,1.0,Metropolitan core,Metropolitan,4991.2,3582,77753.0,34.1,13.5,29.8,5.8,55.5,5.3 +curated/0334264478,42101037600,02040202,Lower Delaware,"DE,NJ,PA",1.0,Metropolitan core,Metropolitan,13670.9,3155,107313.0,69.1,14.6,58.4,11.2,10.6,16.8 +curated/0335468616,53063013203,17010305,Upper Spokane,"ID,WA",1.0,Metropolitan core,Metropolitan,1483.1,2893,88438.0,39.3,6.2,80.9,2.2,6.8,3.6 +curated/0336387583,24510210100,02060003,Gunpowder-Patapsco,"MD,PA",1.0,Metropolitan core,Metropolitan,4376.8,2082,83934.0,63.0,21.6,29.7,48.2,9.0,2.0 +curated/0337126742,53033027100,17110013,Duwamish,WA,1.0,Metropolitan core,Metropolitan,6237.7,4334,72386.0,20.4,25.1,30.8,11.7,32.8,22.1 +curated/0337127817,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/0337127824,53025010600,17020015,Lower Crab,WA,7.0,Small town core,Small town,2335.7,8233,87522.0,18.2,8.8,19.3,0.5,76.6,1.1 +curated/0337127832,53025010600,17020015,Lower Crab,WA,7.0,Small town core,Small town,2335.7,8233,87522.0,18.2,8.8,19.3,0.5,76.6,1.1 +curated/0337127833,53025010600,17020015,Lower Crab,WA,7.0,Small town core,Small town,2335.7,8233,87522.0,18.2,8.8,19.3,0.5,76.6,1.1 +curated/0342664739,19163013702,07080101,Copperas-Duck,"IA,IL",1.0,Metropolitan core,Metropolitan,1038.7,6040,124167.0,50.6,5.0,85.6,3.3,2.3,4.9 +curated/0343593591,17043841312,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,975.3,3663,77621.0,41.3,25.1,29.2,0.7,40.0,28.0 +curated/0345650474,34023000603,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,549.3,2243,151000.0,59.4,2.0,32.9,19.9,3.1,39.1 +curated/0354590432,34017019900,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,2689.2,5417,99341.0,61.2,4.7,27.4,3.9,27.0,39.8 +curated/0355926681,49035980100,16020204,Jordan,UT,1.0,Metropolitan core,Metropolitan,5.7,0,,,,,,, +curated/0358946546,06001450743,18050004,San Francisco Bay,CA,1.0,Metropolitan core,Metropolitan,5387.8,7616,169415.0,69.7,6.2,19.0,6.8,13.9,55.1 +curated/0359930465,53033007202,17110012,Lake Washington,WA,1.0,Metropolitan core,Metropolitan,38288.8,3899,174706.0,78.6,8.7,46.1,1.0,4.6,45.6 +curated/0362662493,34023000603,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,549.3,2243,151000.0,59.4,2.0,32.9,19.9,3.1,39.1 +curated/0363017375,24033807408,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,541.8,5990,110550.0,51.9,15.2,33.2,44.1,10.3,8.0 +curated/0364289073,48029171912,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,2116.6,6929,92147.0,42.3,8.7,32.6,8.0,55.2,3.2 +curated/0405034574,31055007320,10230006,Big Papillion-Mosquito,"IA,NE",1.0,Metropolitan core,Metropolitan,2750.3,4059,105467.0,23.3,5.4,45.9,14.0,11.9,24.4 +curated/0364289074,48029171912,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,2116.6,6929,92147.0,42.3,8.7,32.6,8.0,55.2,3.2 +curated/0364289077,48029171912,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,2116.6,6929,92147.0,42.3,8.7,32.6,8.0,55.2,3.2 +curated/0368724474,51059460503,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,6677.0,3420,167132.0,76.4,5.8,41.9,2.6,11.9,34.7 +curated/0368724479,51059460503,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,6677.0,3420,167132.0,76.4,5.8,41.9,2.6,11.9,34.7 +curated/0369452572,41051010601,17090012,Lower Willamette,OR,1.0,Metropolitan core,Metropolitan,22129.6,1646,50455.0,43.4,30.8,68.2,11.8,7.1,7.3 +curated/0369728508,41067031626,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,3459.8,3408,102083.0,57.5,10.3,47.9,1.3,11.6,22.4 +curated/0373913881,48085031418,12030106,East Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,2048.3,7120,208908.0,70.6,4.5,30.5,5.9,11.5,40.7 +curated/0373945186,41013950200,17070305,Lower Crooked,OR,5.0,Micropolitan high commuting,Micropolitan,29.1,5072,83750.0,20.0,12.6,84.2,0.0,11.9,0.3 +curated/0377032058,17031770500,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,1776.3,4292,75096.0,6.1,14.0,11.3,0.0,88.3,0.0 +curated/0377032061,17031770500,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,1776.3,4292,75096.0,6.1,14.0,11.3,0.0,88.3,0.0 +curated/0377212693,17043840101,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,1486.5,5420,92664.0,23.1,7.3,43.2,4.3,48.1,3.1 +curated/0377345296,17043840000,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,584.3,3247,90795.0,13.0,6.7,25.2,2.9,67.5,2.5 +curated/0377545385,08035014014,10190003,Middle South Platte-Cherry Creek,CO,1.0,Metropolitan core,Metropolitan,1406.4,5762,107382.0,50.7,3.1,67.5,2.2,7.8,16.7 +curated/0377585075,26125161800,04090004,Detroit,"CN,MI",1.0,Metropolitan core,Metropolitan,2172.4,4276,73769.0,35.2,8.7,19.7,77.1,0.7,1.1 +curated/0379195054,48453000902,12090205,Austin-Travis Lakes,TX,1.0,Metropolitan core,Metropolitan,6644.8,7103,80692.0,65.5,11.0,52.4,4.0,37.0,3.0 +curated/0379204279,48453002448,12090205,Austin-Travis Lakes,TX,1.0,Metropolitan core,Metropolitan,1164.4,7773,103623.0,35.9,6.4,20.1,11.1,56.0,7.3 +curated/0379204643,48453002448,12090205,Austin-Travis Lakes,TX,1.0,Metropolitan core,Metropolitan,1164.4,7773,103623.0,35.9,6.4,20.1,11.1,56.0,7.3 +curated/0379204766,48453002448,12090205,Austin-Travis Lakes,TX,1.0,Metropolitan core,Metropolitan,1164.4,7773,103623.0,35.9,6.4,20.1,11.1,56.0,7.3 +curated/0379205427,48453002448,12090205,Austin-Travis Lakes,TX,1.0,Metropolitan core,Metropolitan,1164.4,7773,103623.0,35.9,6.4,20.1,11.1,56.0,7.3 +curated/0451497833,34017019900,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,2689.2,5417,99341.0,61.2,4.7,27.4,3.9,27.0,39.8 +curated/0380282154,51107611015,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2587.6,3402,159659.0,65.1,3.0,57.6,5.2,4.6,23.6 +curated/0382785871,48453002313,12090205,Austin-Travis Lakes,TX,1.0,Metropolitan core,Metropolitan,4464.3,3832,56128.0,35.2,24.6,31.5,3.7,57.4,2.4 +curated/0383545769,17031770300,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,1303.0,6900,76782.0,40.0,8.7,72.0,4.7,17.3,3.8 +curated/0383728972,06001441525,18050004,San Francisco Bay,CA,1.0,Metropolitan core,Metropolitan,906.7,3328,230268.0,75.7,4.9,8.8,1.5,12.0,73.4 +curated/0383888101,48453002448,12090205,Austin-Travis Lakes,TX,1.0,Metropolitan core,Metropolitan,1164.4,7773,103623.0,35.9,6.4,20.1,11.1,56.0,7.3 +curated/0383888914,48453002448,12090205,Austin-Travis Lakes,TX,1.0,Metropolitan core,Metropolitan,1164.4,7773,103623.0,35.9,6.4,20.1,11.1,56.0,7.3 +curated/0384310269,06001441503,18050004,San Francisco Bay,CA,1.0,Metropolitan core,Metropolitan,276.4,7604,250001.0,82.0,3.9,7.7,0.2,5.3,83.5 +curated/0384396017,48453040300,12090205,Austin-Travis Lakes,TX,1.0,Metropolitan core,Metropolitan,5565.3,5883,55564.0,33.3,28.6,17.1,22.3,57.1,3.5 +curated/0384690290,17043840101,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,1486.5,5420,92664.0,23.1,7.3,43.2,4.3,48.1,3.1 +curated/0387378765,13135050224,03130001,Upper Chattahoochee,GA,1.0,Metropolitan core,Metropolitan,1343.3,4062,122794.0,63.6,6.1,52.8,11.9,5.6,27.1 +curated/0387379196,13135050224,03130001,Upper Chattahoochee,GA,1.0,Metropolitan core,Metropolitan,1343.3,4062,122794.0,63.6,6.1,52.8,11.9,5.6,27.1 +curated/0388148510,05119004218,11110207,Lower Arkansas-Maumelle,AR,1.0,Metropolitan core,Metropolitan,2694.0,3358,61471.0,51.1,3.5,61.8,22.6,7.4,4.9 +curated/0390287635,06085504807,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,16388.6,5920,230829.0,85.2,3.4,25.9,1.4,7.3,64.3 +curated/0392324240,13135050324,03070103,Upper Ocmulgee,GA,1.0,Metropolitan core,Metropolitan,1758.9,4870,79259.0,41.0,3.0,23.8,20.0,31.7,18.3 +curated/0396296733,53061051601,17110012,Lake Washington,WA,1.0,Metropolitan core,Metropolitan,5873.0,5471,102004.0,40.5,11.3,40.7,11.4,22.8,14.2 +curated/0397914434,41013950301,17070305,Lower Crooked,OR,3.0,Metropolitan low commuting,Metropolitan,22.0,3920,119495.0,34.7,12.1,95.1,0.0,0.9,0.4 +curated/03fe551ec550a2e77d9c6210825c6a57,12086003710,03090206,Florida Southeast Coast,FL,1.0,Metropolitan core,Metropolitan,16971.4,8380,101946.0,59.1,16.4,24.5,3.3,58.9,4.4 +curated/0400540223,08041007502,11020003,Fountain,CO,2.0,Metropolitan high commuting,Metropolitan,167.5,10943,156875.0,61.3,5.1,82.5,4.1,6.2,3.8 +curated/0844371953,01071950200,06030001,Guntersville Lake,"AL,GA,TN",2.0,Metropolitan high commuting,Metropolitan,93.6,3443,46148.0,12.4,21.3,85.2,3.6,3.9,0.0 +curated/0405034584,31055007320,10230006,Big Papillion-Mosquito,"IA,NE",1.0,Metropolitan core,Metropolitan,2750.3,4059,105467.0,23.3,5.4,45.9,14.0,11.9,24.4 +curated/0408012357,01089001403,06030002,Wheeler Lake,"AL,TN",1.0,Metropolitan core,Metropolitan,511.2,3059,68158.0,57.5,24.7,48.1,33.8,7.3,7.4 +curated/0409296605,17031811302,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,2310.0,3610,62753.0,6.7,22.9,12.0,2.8,83.9,1.4 +curated/0410408067,53025010600,17020015,Lower Crab,WA,7.0,Small town core,Small town,2335.7,8233,87522.0,18.2,8.8,19.3,0.5,76.6,1.1 +curated/0410408073,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/0410408074,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/0410408079,53025010600,17020015,Lower Crab,WA,7.0,Small town core,Small town,2335.7,8233,87522.0,18.2,8.8,19.3,0.5,76.6,1.1 +curated/0414055239,56021001902,10190009,Crow,"CO,WY",2.0,Metropolitan high commuting,Metropolitan,4.9,4777,108833.0,38.7,2.6,82.7,0.0,6.3,2.1 +curated/0464371693,06055201005,18050002,San Pablo Bay,CA,1.0,Metropolitan core,Metropolitan,229.4,2650,103056.0,31.2,17.2,28.0,3.2,41.4,22.2 +curated/0417682780,53033007203,17110012,Lake Washington,WA,1.0,Metropolitan core,Metropolitan,15286.2,3591,137007.0,83.1,8.9,27.3,6.6,3.0,55.4 +curated/0417682781,53033007203,17110012,Lake Washington,WA,1.0,Metropolitan core,Metropolitan,15286.2,3591,137007.0,83.1,8.9,27.3,6.6,3.0,55.4 +curated/0421273622,31153010623,10230006,Big Papillion-Mosquito,"IA,NE",1.0,Metropolitan core,Metropolitan,1557.2,6326,105477.0,49.9,5.9,80.2,4.6,9.9,0.2 +curated/0424945736,06037980013,18070106,San Gabriel,CA,1.0,Metropolitan core,Metropolitan,30.3,0,,,,,,, +curated/0424945852,06037980013,18070106,San Gabriel,CA,1.0,Metropolitan core,Metropolitan,30.3,0,,,,,,, +curated/0426586135,08001008555,10190003,Middle South Platte-Cherry Creek,CO,1.0,Metropolitan core,Metropolitan,3136.4,6634,68165.0,34.0,11.8,52.4,2.9,35.7,3.6 +curated/0428021796,06037207712,18070104,Santa Monica Bay,CA,1.0,Metropolitan core,Metropolitan,30124.1,4967,63484.0,56.4,26.7,18.3,13.7,20.8,37.4 +curated/0509611414,48029171926,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,2544.1,3039,45787.0,24.9,16.0,22.2,20.9,44.3,8.7 +curated/0428021816,06037207712,18070105,Los Angeles,CA,1.0,Metropolitan core,Metropolitan,30124.1,4967,63484.0,56.4,26.7,18.3,13.7,20.8,37.4 +curated/0429782814,12001000400,03080102,Oklawaha,FL,1.0,Metropolitan core,Metropolitan,2296.8,5563,49661.0,34.3,29.5,44.2,38.6,10.4,1.2 +curated/0435324552,51107611501,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2714.3,3703,117719.0,58.0,2.6,26.0,15.4,19.0,25.7 +curated/0435518280,12086003710,03090206,Florida Southeast Coast,FL,1.0,Metropolitan core,Metropolitan,16971.4,8380,101946.0,59.1,16.4,24.5,3.3,58.9,4.4 +curated/0435531451,12086002402,03090206,Florida Southeast Coast,FL,1.0,Metropolitan core,Metropolitan,10606.4,6611,50977.0,17.0,19.5,3.3,3.4,93.3,0.0 +curated/0435817145,51107611018,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1671.9,4705,93315.0,57.8,14.0,70.2,4.8,10.1,12.0 +curated/0438077632,19049050812,07100006,North Raccoon,IA,1.0,Metropolitan core,Metropolitan,231.4,5305,107083.0,63.3,18.4,74.4,14.0,2.4,4.9 +curated/0438078069,19153010601,07100008,Lake Red Rock,IA,1.0,Metropolitan core,Metropolitan,234.9,2853,61118.0,13.8,17.1,92.5,1.5,2.3,1.2 +curated/0438078070,19153010601,07100008,Lake Red Rock,IA,1.0,Metropolitan core,Metropolitan,234.9,2853,61118.0,13.8,17.1,92.5,1.5,2.3,1.2 +curated/0441502816,06059052502,18070204,Newport Bay,CA,1.0,Metropolitan core,Metropolitan,5233.0,5675,150568.0,57.2,2.9,41.7,2.2,20.1,30.6 +curated/04439cfd73dc9997e6ca9b89804581e1,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0444683815,53063003500,17010305,Upper Spokane,"ID,WA",1.0,Metropolitan core,Metropolitan,6112.9,2951,18929.0,24.7,49.3,74.3,5.5,8.4,4.9 +curated/0447803368,55025000800,07090002,Middle Rock,"IL,WI",1.0,Metropolitan core,Metropolitan,5289.1,3952,100636.0,72.5,10.2,81.0,1.0,5.7,4.1 +curated/044f9b8da60c19a904fc05b5a97c6448,48113003103,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,12686.0,2408,64352.0,67.8,24.2,52.8,28.6,10.4,4.8 +curated/0450078003,51047930400,02080103,Rapidan-Upper Rappahannock,VA,2.0,Metropolitan high commuting,Metropolitan,41.6,5365,92747.0,21.8,8.0,74.7,7.8,4.9,3.2 +curated/0451413811,06085500901,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,14412.2,4298,72112.0,57.8,35.8,29.1,10.7,13.5,41.5 +curated/0451491797,34017019900,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,2689.2,5417,99341.0,61.2,4.7,27.4,3.9,27.0,39.8 +curated/0453969917,08005006861,10190003,Middle South Platte-Cherry Creek,CO,1.0,Metropolitan core,Metropolitan,4134.7,4055,189464.0,71.8,2.5,73.4,0.6,2.6,18.5 +curated/0453969923,08005006861,10190003,Middle South Platte-Cherry Creek,CO,1.0,Metropolitan core,Metropolitan,4134.7,4055,189464.0,71.8,2.5,73.4,0.6,2.6,18.5 +curated/0455171103,48453002448,12090205,Austin-Travis Lakes,TX,1.0,Metropolitan core,Metropolitan,1164.4,7773,103623.0,35.9,6.4,20.1,11.1,56.0,7.3 +curated/0459188722,34025808702,02040301,Mullica-Toms,"NJ,NY",1.0,Metropolitan core,Metropolitan,629.4,4091,213472.0,61.7,5.7,91.1,0.8,2.6,1.6 +curated/0459188725,36103159407,02030202,Southern Long Island,"NJ,NY,RI",1.0,Metropolitan core,Metropolitan,2654.5,8771,143287.0,15.5,4.3,53.1,7.1,35.0,3.4 +curated/0460050155,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/0460053028,51107611018,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1671.9,4705,93315.0,57.8,14.0,70.2,4.8,10.1,12.0 +curated/0460053030,51107611018,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1671.9,4705,93315.0,57.8,14.0,70.2,4.8,10.1,12.0 +curated/0460056017,51107611804,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,2433.4,8353,196742.0,69.8,4.5,28.1,5.8,12.3,43.1 +curated/0460056018,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0460056019,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0460056020,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0460056023,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0460056024,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0537172528,56021001902,10190009,Crow,"CO,WY",2.0,Metropolitan high commuting,Metropolitan,4.9,4777,108833.0,38.7,2.6,82.7,0.0,6.3,2.1 +curated/0460059465,51153901418,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,2723.2,5331,130461.0,41.5,10.3,14.6,26.9,45.5,9.9 +curated/0460060340,51153901418,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,2723.2,5331,130461.0,41.5,10.3,14.6,26.9,45.5,9.9 +curated/0460060341,51153901418,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,2723.2,5331,130461.0,41.5,10.3,14.6,26.9,45.5,9.9 +curated/0460067220,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +curated/0460067225,39049007922,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,2029.6,6580,119792.0,62.4,7.8,72.2,6.3,5.5,8.6 +curated/0460070135,41059950800,17070103,Umatilla,OR,4.0,Micropolitan core,Micropolitan,256.5,7340,62259.0,5.9,16.1,63.2,1.0,31.5,0.2 +curated/0460070136,41059950800,17070103,Umatilla,OR,4.0,Micropolitan core,Micropolitan,256.5,7340,62259.0,5.9,16.1,63.2,1.0,31.5,0.2 +curated/0460070137,41059950800,17070103,Umatilla,OR,4.0,Micropolitan core,Micropolitan,256.5,7340,62259.0,5.9,16.1,63.2,1.0,31.5,0.2 +curated/0460070138,41059950800,17070103,Umatilla,OR,4.0,Micropolitan core,Micropolitan,256.5,7340,62259.0,5.9,16.1,63.2,1.0,31.5,0.2 +curated/0460070139,41059950800,17070103,Umatilla,OR,4.0,Micropolitan core,Micropolitan,256.5,7340,62259.0,5.9,16.1,63.2,1.0,31.5,0.2 +curated/0460070140,41059950800,17070103,Umatilla,OR,4.0,Micropolitan core,Micropolitan,256.5,7340,62259.0,5.9,16.1,63.2,1.0,31.5,0.2 +curated/0460070141,41059950800,17070103,Umatilla,OR,4.0,Micropolitan core,Micropolitan,256.5,7340,62259.0,5.9,16.1,63.2,1.0,31.5,0.2 +curated/0460070143,41059950800,17070103,Umatilla,OR,4.0,Micropolitan core,Micropolitan,256.5,7340,62259.0,5.9,16.1,63.2,1.0,31.5,0.2 +curated/0460070144,41049970102,17070101,Middle Columbia-Lake Wallula,"OR,WA",6.0,Micropolitan low commuting,Micropolitan,68.8,3915,72719.0,9.2,13.8,65.7,0.7,31.2,0.0 +curated/0460070145,41049970102,17070101,Middle Columbia-Lake Wallula,"OR,WA",6.0,Micropolitan low commuting,Micropolitan,68.8,3915,72719.0,9.2,13.8,65.7,0.7,31.2,0.0 +curated/0460070147,41049970102,17070101,Middle Columbia-Lake Wallula,"OR,WA",6.0,Micropolitan low commuting,Micropolitan,68.8,3915,72719.0,9.2,13.8,65.7,0.7,31.2,0.0 +curated/0460076753,06085504322,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,4456.5,5285,167583.0,72.1,14.2,8.6,4.8,9.3,72.7 +curated/0460085343,06075061505,18050002,San Pablo Bay,CA,1.0,Metropolitan core,Metropolitan,127899.1,925,250001.0,91.5,1.7,32.0,10.1,8.3,44.9 +curated/0460089167,37161961104,03050105,Upper Broad,"NC,SC",5.0,Micropolitan high commuting,Micropolitan,212.7,2426,39922.0,11.6,21.0,84.1,1.9,10.7,1.4 +curated/0460089168,37161961104,03050105,Upper Broad,"NC,SC",5.0,Micropolitan high commuting,Micropolitan,212.7,2426,39922.0,11.6,21.0,84.1,1.9,10.7,1.4 +curated/0460159925,06085504323,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,11563.9,5814,161552.0,49.2,6.8,14.3,2.0,7.3,73.0 +curated/0460159928,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0460159955,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0460167186,53017950300,17020010,Upper Columbia-Entiat,WA,1.0,Metropolitan core,Metropolitan,102.8,7973,83618.0,19.8,7.7,62.7,0.5,31.9,0.3 +curated/0556564909,19153010601,07100008,Lake Red Rock,IA,1.0,Metropolitan core,Metropolitan,234.9,2853,61118.0,13.8,17.1,92.5,1.5,2.3,1.2 +curated/0460167187,53017950300,17020010,Upper Columbia-Entiat,WA,1.0,Metropolitan core,Metropolitan,102.8,7973,83618.0,19.8,7.7,62.7,0.5,31.9,0.3 +curated/0460167190,53017950300,17020010,Upper Columbia-Entiat,WA,1.0,Metropolitan core,Metropolitan,102.8,7973,83618.0,19.8,7.7,62.7,0.5,31.9,0.3 +curated/0460175664,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0460175666,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/0460175672,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0460177088,34031124402,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,4239.8,5723,119946.0,49.4,6.3,56.4,1.0,30.8,10.9 +curated/0460182320,34035053501,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,829.5,6196,151250.0,57.6,6.6,30.3,23.5,12.8,27.8 +curated/0460182335,34035053501,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,829.5,6196,151250.0,57.6,6.6,30.3,23.5,12.8,27.8 +curated/0460182337,34035053501,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,829.5,6196,151250.0,57.6,6.6,30.3,23.5,12.8,27.8 +curated/0460182351,34031124402,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,4239.8,5723,119946.0,49.4,6.3,56.4,1.0,30.8,10.9 +curated/0460212563,06037310501,18070105,Los Angeles,CA,1.0,Metropolitan core,Metropolitan,4991.2,3582,77753.0,34.1,13.5,29.8,5.8,55.5,5.3 +curated/0463571875,51107611018,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1671.9,4705,93315.0,57.8,14.0,70.2,4.8,10.1,12.0 +curated/0463571876,51107611018,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1671.9,4705,93315.0,57.8,14.0,70.2,4.8,10.1,12.0 +curated/0464097467,32031003501,16050102,Truckee,"CA,NV",2.0,Metropolitan high commuting,Metropolitan,0.8,4169,102295.0,38.3,8.6,70.7,2.2,8.6,0.9 +curated/0465032380,48113010003,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,377.8,3333,83981.0,67.7,20.3,38.3,24.7,24.8,4.8 +curated/0465062052,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0465062053,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0468707940,04013061058,15070102,Aqua Fria,AZ,2.0,Metropolitan high commuting,Metropolitan,263.4,3990,100017.0,34.9,6.9,51.6,7.0,29.8,2.9 +curated/0471691760,41067032612,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,1211.1,3183,143207.0,49.2,4.0,71.5,0.8,11.1,8.9 +curated/0472761713,34003032103,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,2589.1,4523,105184.0,58.4,1.5,81.3,1.8,6.0,10.1 +curated/0472954201,06037910501,18090206,Antelope-Fremont Valleys,CA,1.0,Metropolitan core,Metropolitan,10978.0,5997,39403.0,5.2,38.7,10.2,33.8,54.5,0.1 +curated/0476609221,08041004603,11020004,Chico,CO,2.0,Metropolitan high commuting,Metropolitan,67.1,10951,93006.0,36.7,10.8,43.0,9.2,33.1,6.2 +curated/0480762078,41005024402,17090007,Middle Willamette,OR,1.0,Metropolitan core,Metropolitan,3321.3,5140,83904.0,52.0,11.1,62.6,0.3,21.8,11.6 +curated/0509611423,48029171912,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,2116.6,6929,92147.0,42.3,8.7,32.6,8.0,55.2,3.2 +curated/0509611426,48029171912,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,2116.6,6929,92147.0,42.3,8.7,32.6,8.0,55.2,3.2 +curated/0481999194eb9d0c9a562e85f709031e,48029110600,12100301,Upper San Antonio,TX,1.0,Metropolitan core,Metropolitan,9544.9,9242,23241.0,1.9,45.5,17.1,14.3,64.3,0.3 +curated/0483307714,48085031418,12030106,East Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,2048.3,7120,208908.0,70.6,4.5,30.5,5.9,11.5,40.7 +curated/0487170215,48201543100,12040102,Spring,TX,2.0,Metropolitan high commuting,Metropolitan,60.5,4613,112981.0,24.4,15.3,42.5,10.1,44.4,1.0 +curated/0815057182,48439113941,12030104,Denton,TX,1.0,Metropolitan core,Metropolitan,1270.4,6378,87784.0,47.1,5.0,50.4,19.7,15.2,6.3 +curated/0490997243,51153901420,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,3967.7,3923,203194.0,56.1,2.1,45.4,19.0,15.2,14.8 +curated/0490997244,51153901420,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,3967.7,3923,203194.0,56.1,2.1,45.4,19.0,15.2,14.8 +curated/0491914767,39035107802,04110003,Ashtabula-Chagrin,"OH,PA",1.0,Metropolitan core,Metropolitan,5870.7,4184,15078.0,42.3,66.6,28.2,40.1,3.1,27.7 +curated/0495115494,06037207712,18070105,Los Angeles,CA,1.0,Metropolitan core,Metropolitan,30124.1,4967,63484.0,56.4,26.7,18.3,13.7,20.8,37.4 +curated/0497151852,12031017200,03080103,Lower St. Johns,FL,1.0,Metropolitan core,Metropolitan,2172.3,2958,36983.0,24.5,44.8,33.3,49.5,15.4,0.0 +curated/0499403180,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/0499403181,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/0499403698,53025010600,17020015,Lower Crab,WA,7.0,Small town core,Small town,2335.7,8233,87522.0,18.2,8.8,19.3,0.5,76.6,1.1 +curated/0499403699,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/0500820007,48439113941,12030104,Denton,TX,1.0,Metropolitan core,Metropolitan,1270.4,6378,87784.0,47.1,5.0,50.4,19.7,15.2,6.3 +curated/0502927599,20091980001,10270104,"Lower Kansas, Kansas","KS,MO",1.0,Metropolitan core,Metropolitan,3.5,0,,,,,,, +curated/0507673418,48121020312,12030104,Denton,TX,1.0,Metropolitan core,Metropolitan,1086.2,7641,141075.0,54.2,9.2,61.0,10.9,17.5,3.7 +curated/0507673437,48439113941,12030104,Denton,TX,1.0,Metropolitan core,Metropolitan,1270.4,6378,87784.0,47.1,5.0,50.4,19.7,15.2,6.3 +curated/0509611432,48029171912,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,2116.6,6929,92147.0,42.3,8.7,32.6,8.0,55.2,3.2 +curated/0509611436,48029171912,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,2116.6,6929,92147.0,42.3,8.7,32.6,8.0,55.2,3.2 +curated/0509611437,48029171928,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,4340.9,6436,131661.0,46.6,6.0,22.5,10.8,63.2,0.7 +curated/0509611438,48029171928,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,4340.9,6436,131661.0,46.6,6.0,22.5,10.8,63.2,0.7 +curated/0509611439,48029171928,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,4340.9,6436,131661.0,46.6,6.0,22.5,10.8,63.2,0.7 +curated/0516686211,37119003809,03050103,Lower Catawba,"NC,SC",1.0,Metropolitan core,Metropolitan,4172.5,3978,54625.0,30.1,19.6,13.7,42.8,26.4,15.9 +curated/0517411076,41013950301,17070305,Lower Crooked,OR,3.0,Metropolitan low commuting,Metropolitan,22.0,3920,119495.0,34.7,12.1,95.1,0.0,0.9,0.4 +curated/0523886201,12057013315,03100206,Tampa Bay,FL,1.0,Metropolitan core,Metropolitan,2788.4,5415,69125.0,55.8,9.2,37.7,21.6,28.3,8.6 +curated/0526806006,48113014159,12030103,Elm Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,1313.4,3234,232389.0,74.5,0.2,3.0,0.3,5.9,89.7 +curated/052a1124f4e7c97af25644c5a37a4d3a,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0530024353,17043846102,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,3039.6,4107,78963.0,61.4,13.1,52.2,5.8,13.8,22.7 +curated/0530982335,04013422307,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,1468.0,4412,78102.0,40.8,13.1,51.5,9.3,25.6,3.8 +curated/0531709017,06073000302,18070304,San Diego,"CA,MX",1.0,Metropolitan core,Metropolitan,14649.7,2873,89573.0,63.9,9.4,67.2,3.8,15.7,7.6 +curated/0533842335,47037016100,05130202,Lower Cumberland-Sycamore,TN,1.0,Metropolitan core,Metropolitan,2047.2,2461,77243.0,55.3,9.4,55.4,32.3,7.4,2.0 +curated/0536784688,13121001802,03130001,Upper Chattahoochee,GA,1.0,Metropolitan core,Metropolitan,11959.7,2052,68583.0,60.6,11.8,43.1,41.4,2.9,9.4 +curated/0537172525,56021001902,10190009,Crow,"CO,WY",2.0,Metropolitan high commuting,Metropolitan,4.9,4777,108833.0,38.7,2.6,82.7,0.0,6.3,2.1 +curated/0537172526,56021001902,10190009,Crow,"CO,WY",2.0,Metropolitan high commuting,Metropolitan,4.9,4777,108833.0,38.7,2.6,82.7,0.0,6.3,2.1 +curated/0537172527,56021001902,10190009,Crow,"CO,WY",2.0,Metropolitan high commuting,Metropolitan,4.9,4777,108833.0,38.7,2.6,82.7,0.0,6.3,2.1 +curated/0537807168,42003469000,05030101,Upper Ohio,"OH,PA,WV",1.0,Metropolitan core,Metropolitan,2380.7,4833,92422.0,51.4,6.4,85.5,2.7,0.0,7.0 +curated/0543117031,04013421303,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,8011.9,4994,74916.0,19.3,8.9,38.7,2.0,46.1,3.4 +curated/0543316327,48201554201,12040102,Spring,TX,1.0,Metropolitan core,Metropolitan,4928.8,6498,83429.0,53.2,8.1,39.8,9.4,33.1,9.4 +curated/0543404966,48201554201,12040102,Spring,TX,1.0,Metropolitan core,Metropolitan,4928.8,6498,83429.0,53.2,8.1,39.8,9.4,33.1,9.4 +curated/0544536822,26045020303,04050004,Upper Grand,MI,1.0,Metropolitan core,Metropolitan,687.3,3253,71842.0,36.8,8.1,69.4,8.0,12.9,7.2 +curated/0544596573,51107611804,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,2433.4,8353,196742.0,69.8,4.5,28.1,5.8,12.3,43.1 +curated/0545060574,26045020303,04050004,Upper Grand,MI,1.0,Metropolitan core,Metropolitan,687.3,3253,71842.0,36.8,8.1,69.4,8.0,12.9,7.2 +curated/0545396372,51107611812,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,984.4,4318,166288.0,62.4,5.8,24.6,16.2,12.3,34.3 +curated/0545704217,13067030104,03150104,Etowah,GA,1.0,Metropolitan core,Metropolitan,2577.7,3724,63979.0,20.5,14.6,62.2,22.2,13.9,0.7 +curated/0547156394,39049007213,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,529.9,5849,217802.0,68.6,1.5,72.1,1.9,7.9,11.7 +curated/0547156405,39049007213,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,529.9,5849,217802.0,68.6,1.5,72.1,1.9,7.9,11.7 +curated/0547277699,39049007213,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,529.9,5849,217802.0,68.6,1.5,72.1,1.9,7.9,11.7 +curated/0548184239,48085031813,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,8236.0,4809,8009.0,62.9,76.3,20.6,3.9,14.0,55.7 +curated/0549418041,48085030517,12030106,East Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,6052.6,10501,144821.0,67.5,1.4,51.6,11.6,8.1,25.2 +curated/0553223628,06085504322,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,4456.5,5285,167583.0,72.1,14.2,8.6,4.8,9.3,72.7 +curated/0553223629,06085504322,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,4456.5,5285,167583.0,72.1,14.2,8.6,4.8,9.3,72.7 +curated/0553884511,29019001004,10300102,Lower Missouri-Moreau,MO,1.0,Metropolitan core,Metropolitan,696.0,4449,61449.0,40.6,29.2,70.5,1.7,23.0,2.1 +curated/0556599693,51107611018,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1671.9,4705,93315.0,57.8,14.0,70.2,4.8,10.1,12.0 +curated/0556599694,51107611018,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1671.9,4705,93315.0,57.8,14.0,70.2,4.8,10.1,12.0 +curated/0556599695,51107611018,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1671.9,4705,93315.0,57.8,14.0,70.2,4.8,10.1,12.0 +curated/0562775657,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +curated/0563533017,51680000500,02080203,Middle James-Buffalo,VA,1.0,Metropolitan core,Metropolitan,3487.6,675,48750.0,62.1,20.7,67.9,17.6,1.5,1.8 +curated/05643feacf04eb1b8bb4d924813370ec,06085505010,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,1433.7,4756,202663.0,64.4,9.9,15.6,3.8,11.7,65.1 +curated/0570397131,48453044800,12090301,Lower Colorado-Cummins,TX,1.0,Metropolitan core,Metropolitan,1252.5,4747,82277.0,24.6,25.0,25.3,3.1,69.5,0.0 +curated/0571010571,09190044300,01100006,Saugatuck,"CT,NY",,,Unknown,,4507,131219.0,51.7,3.7,51.3,13.9,18.2,6.9 +curated/0577628941,48453002448,12090205,Austin-Travis Lakes,TX,1.0,Metropolitan core,Metropolitan,1164.4,7773,103623.0,35.9,6.4,20.1,11.1,56.0,7.3 +curated/0578412815,35061980300,13020203,Rio Grande-Albuquerque,NM,10.0,Rural area,Rural,1.6,0,,,,,,, +curated/0597835788,48085032016,12030106,East Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,2509.9,2252,190000.0,75.0,6.0,31.3,10.7,2.6,46.1 +curated/0578435601,13097080105,03130002,Middle Chattahoochee-Lake Harding,"AL,GA",1.0,Metropolitan core,Metropolitan,375.6,4442,114688.0,51.4,10.4,5.4,89.4,2.7,1.5 +curated/0578438011,19155031300,10230006,Big Papillion-Mosquito,"IA,NE",1.0,Metropolitan core,Metropolitan,482.0,3150,50821.0,10.7,20.1,78.9,0.2,16.6,0.0 +curated/0815078625,48121020312,12030104,Denton,TX,1.0,Metropolitan core,Metropolitan,1086.2,7641,141075.0,54.2,9.2,61.0,10.9,17.5,3.7 +curated/0578443547,17031811702,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,5122.1,5456,76912.0,10.7,11.6,25.8,1.1,63.4,5.8 +curated/0581234765,20051072701,10260007,Big,KS,4.0,Micropolitan core,Micropolitan,2376.4,5180,67383.0,40.5,8.0,89.4,0.2,5.6,1.2 +curated/0585998677,32003002979,15010015,Las Vegas Wash,NV,1.0,Metropolitan core,Metropolitan,1814.3,5093,84803.0,30.7,4.1,34.6,6.6,16.6,35.8 +curated/0585998678,32003002981,15010015,Las Vegas Wash,NV,1.0,Metropolitan core,Metropolitan,11365.4,4790,96397.0,32.9,5.4,23.5,24.0,22.2,21.3 +curated/0589070714,33015106200,01060003,Piscataqua-Salmon Falls,"MA,ME,NH",4.0,Micropolitan core,Micropolitan,1862.8,4979,73170.0,54.9,7.3,87.1,1.5,4.0,5.7 +curated/0589360530,53061051702,17110012,Lake Washington,WA,1.0,Metropolitan core,Metropolitan,6132.6,4771,92017.0,51.1,8.6,46.0,15.7,6.1,27.8 +curated/0590213770,48085031418,12030106,East Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,2048.3,7120,208908.0,70.6,4.5,30.5,5.9,11.5,40.7 +curated/0590213771,48085031418,12030106,East Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,2048.3,7120,208908.0,70.6,4.5,30.5,5.9,11.5,40.7 +curated/0592171280,41049970101,17070101,Middle Columbia-Lake Wallula,"OR,WA",10.0,Rural area,Rural,19.9,5396,68594.0,7.6,14.8,26.6,1.2,69.6,0.4 +curated/0592257327,41059950800,17070103,Umatilla,OR,4.0,Micropolitan core,Micropolitan,256.5,7340,62259.0,5.9,16.1,63.2,1.0,31.5,0.2 +curated/0596690174,51107611018,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1671.9,4705,93315.0,57.8,14.0,70.2,4.8,10.1,12.0 +curated/0596690175,51107611018,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1671.9,4705,93315.0,57.8,14.0,70.2,4.8,10.1,12.0 +curated/0597876719,48113019053,12030106,East Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,1307.0,1538,88228.0,65.3,4.9,30.7,41.9,12.9,13.1 +curated/0701930921,51107611018,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1671.9,4705,93315.0,57.8,14.0,70.2,4.8,10.1,12.0 +curated/0597876721,48113019053,12030106,East Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,1307.0,1538,88228.0,65.3,4.9,30.7,41.9,12.9,13.1 +curated/0597876722,48113019053,12030106,East Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,1307.0,1538,88228.0,65.3,4.9,30.7,41.9,12.9,13.1 +curated/0597876723,48113019053,12030106,East Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,1307.0,1538,88228.0,65.3,4.9,30.7,41.9,12.9,13.1 +curated/0597876724,48113019053,12030106,East Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,1307.0,1538,88228.0,65.3,4.9,30.7,41.9,12.9,13.1 +curated/0597876726,48113019053,12030106,East Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,1307.0,1538,88228.0,65.3,4.9,30.7,41.9,12.9,13.1 +curated/0597876730,48113019053,12030106,East Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,1307.0,1538,88228.0,65.3,4.9,30.7,41.9,12.9,13.1 +curated/0597876798,48113019053,12030106,East Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,1307.0,1538,88228.0,65.3,4.9,30.7,41.9,12.9,13.1 +curated/0597970806,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0597970809,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0597970811,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0597970813,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0598261190,20091052804,10270104,"Lower Kansas, Kansas","KS,MO",1.0,Metropolitan core,Metropolitan,872.3,6457,183125.0,63.5,0.0,92.2,0.9,3.1,2.0 +curated/0598263496,20091052804,10270104,"Lower Kansas, Kansas","KS,MO",1.0,Metropolitan core,Metropolitan,872.3,6457,183125.0,63.5,0.0,92.2,0.9,3.1,2.0 +curated/05be04d3cd392d138da69ac1c92f50d0,39049007043,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,5531.5,6059,74492.0,44.3,12.3,52.7,19.3,15.7,7.0 +curated/0600806974,06085512032,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,3042.2,3754,173750.0,63.7,12.3,27.4,0.7,27.0,40.1 +curated/0604ad77ea6a2ed1e13a3e97fd585d80,21111006300,05140101,Silver-Little Kentucky,"IN,KY",1.0,Metropolitan core,Metropolitan,5619.9,1740,71611.0,52.3,14.3,83.4,4.9,3.3,3.2 +curated/0607483487,34015500204,02040202,Lower Delaware,"DE,NJ,PA",1.0,Metropolitan core,Metropolitan,1452.6,5892,96331.0,40.6,4.7,74.3,12.6,8.7,0.2 +curated/0607753694,31055007451,10230006,Big Papillion-Mosquito,"IA,NE",1.0,Metropolitan core,Metropolitan,2907.1,5069,89083.0,47.0,4.5,79.1,4.1,12.6,2.4 +curated/0609126465,12095015202,03080101,Upper St. Johns,FL,1.0,Metropolitan core,Metropolitan,2985.3,6887,43610.0,18.7,17.5,29.8,33.7,28.9,2.0 +curated/0610827836,45015020707,03050201,Cooper,SC,1.0,Metropolitan core,Metropolitan,347.1,7041,80567.0,26.5,6.3,53.0,29.2,8.4,1.6 +curated/0610845529,24003751200,02060003,Gunpowder-Patapsco,"MD,PA",1.0,Metropolitan core,Metropolitan,536.7,5339,133094.0,53.8,3.0,70.6,12.4,3.9,5.4 +curated/0700431553,41065970600,17070105,Middle Columbia-Hood,"OR,WA",10.0,Rural area,Rural,39.5,2936,66797.0,25.1,9.2,67.7,0.3,27.4,0.5 +curated/0671838900,48201420200,12040104,Buffalo-San Jacinto,TX,1.0,Metropolitan core,Metropolitan,3807.0,2490,61389.0,40.4,25.2,21.5,16.8,46.6,11.9 +curated/0610977485,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/0612045611,34035050704,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,3650.1,6570,177969.0,70.8,6.6,39.8,2.4,7.2,46.2 +curated/0617194689,32003002981,15010015,Las Vegas Wash,NV,1.0,Metropolitan core,Metropolitan,11365.4,4790,96397.0,32.9,5.4,23.5,24.0,22.2,21.3 +curated/0618339179,34035050902,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,714.0,3486,216071.0,69.3,0.6,62.4,3.6,8.3,13.4 +curated/0626226408,45015020707,03050201,Cooper,SC,1.0,Metropolitan core,Metropolitan,347.1,7041,80567.0,26.5,6.3,53.0,29.2,8.4,1.6 +curated/0626281456,01069040205,03140201,Upper Choctawhatchee,AL,1.0,Metropolitan core,Metropolitan,1726.8,5802,91023.0,49.6,2.3,77.2,14.4,4.2,2.3 +curated/0626785488,35061980300,13020203,Rio Grande-Albuquerque,NM,10.0,Rural area,Rural,1.6,0,,,,,,, +curated/0633034071,41049970101,17070101,Middle Columbia-Lake Wallula,"OR,WA",10.0,Rural area,Rural,19.9,5396,68594.0,7.6,14.8,26.6,1.2,69.6,0.4 +curated/0634635617,53053071207,17110014,Puyallup,WA,1.0,Metropolitan core,Metropolitan,4066.6,6770,81957.0,31.0,17.3,62.7,3.9,12.4,4.7 +curated/0634638463,53053071207,17110014,Puyallup,WA,1.0,Metropolitan core,Metropolitan,4066.6,6770,81957.0,31.0,17.3,62.7,3.9,12.4,4.7 +curated/0635022480,13121011618,03130001,Upper Chattahoochee,GA,1.0,Metropolitan core,Metropolitan,2324.3,4643,169018.0,83.9,15.4,49.1,10.4,12.1,25.0 +curated/0639176155,48029172002,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,1403.4,32434,108359.0,30.8,3.7,22.9,14.8,52.7,4.0 +curated/0639176157,48029172002,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,1403.4,32434,108359.0,30.8,3.7,22.9,14.8,52.7,4.0 +curated/0640148472,53025010600,17020015,Lower Crab,WA,7.0,Small town core,Small town,2335.7,8233,87522.0,18.2,8.8,19.3,0.5,76.6,1.1 +curated/0814061069,53017950300,17020010,Upper Columbia-Entiat,WA,1.0,Metropolitan core,Metropolitan,102.8,7973,83618.0,19.8,7.7,62.7,0.5,31.9,0.3 +curated/06491aeca921ad32924143a280a28b5e,36061003300,02030101,Lower Hudson,"CT,NJ,NY",1.0,Metropolitan core,Metropolitan,48953.1,5951,250001.0,94.4,3.5,67.9,0.9,5.7,9.5 +curated/0649319778,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/0649365745,51107611019,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,3339.9,5633,220156.0,72.6,1.7,53.5,10.0,7.1,26.4 +curated/0649365751,51107611019,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,3339.9,5633,220156.0,72.6,1.7,53.5,10.0,7.1,26.4 +curated/0649365764,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0650412346,48085031901,12030106,East Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,2349.3,2753,51458.0,45.5,17.2,36.8,21.7,31.6,7.0 +curated/0652034566,37035011702,03050102,South Fork Catawba,"NC,SC",2.0,Metropolitan high commuting,Metropolitan,207.1,6948,83313.0,22.7,11.6,81.9,4.6,4.9,7.0 +curated/0664938835,55079187200,04040002,Pike-Root,"IL,WI",1.0,Metropolitan core,Metropolitan,381.2,4914,126033.0,45.9,8.5,79.9,6.9,2.7,8.1 +curated/0667573133,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/0667796922,23005011100,01060001,Presumpscot,ME,4.0,Micropolitan core,Micropolitan,335.1,4989,56673.0,40.7,16.4,89.1,2.2,3.3,1.5 +curated/0671301768,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +curated/0701930929,51107611018,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1671.9,4705,93315.0,57.8,14.0,70.2,4.8,10.1,12.0 +curated/0673532692,39049007922,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,2029.6,6580,119792.0,62.4,7.8,72.2,6.3,5.5,8.6 +curated/0675108684,51117930600,03010106,Roanoke Rapids,"NC,VA",10.0,Rural area,Rural,25.0,2496,62419.0,22.9,15.7,60.9,37.7,0.0,0.1 +curated/0680666647,53053071207,17110014,Puyallup,WA,1.0,Metropolitan core,Metropolitan,4066.6,6770,81957.0,31.0,17.3,62.7,3.9,12.4,4.7 +curated/0685011021,04013111203,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,10025.0,2179,50862.0,35.2,20.5,19.2,40.2,21.8,3.1 +curated/0693381106,51107611812,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,984.4,4318,166288.0,62.4,5.8,24.6,16.2,12.3,34.3 +curated/0693381107,51107611812,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,984.4,4318,166288.0,62.4,5.8,24.6,16.2,12.3,34.3 +curated/0693385812,51107611812,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,984.4,4318,166288.0,62.4,5.8,24.6,16.2,12.3,34.3 +curated/0693390022,51107611901,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1762.4,7113,250001.0,78.6,3.9,29.0,8.4,6.1,52.6 +curated/0693390023,51107611901,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1762.4,7113,250001.0,78.6,3.9,29.0,8.4,6.1,52.6 +curated/0694493125,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/0694493126,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/0694493127,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/0694493128,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/0694602725,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/0696985482,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0696992451,51153901418,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,2723.2,5331,130461.0,41.5,10.3,14.6,26.9,45.5,9.9 +curated/0697020849,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0697020850,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0697021948,51153901509,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",2.0,Metropolitan high commuting,Metropolitan,293.1,8086,202560.0,64.0,4.3,61.6,13.8,12.2,5.5 +curated/0697021949,51153901509,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",2.0,Metropolitan high commuting,Metropolitan,293.1,8086,202560.0,64.0,4.3,61.6,13.8,12.2,5.5 +curated/0697413741,41059950800,17070103,Umatilla,OR,4.0,Micropolitan core,Micropolitan,256.5,7340,62259.0,5.9,16.1,63.2,1.0,31.5,0.2 +curated/0697415321,41049970101,17070101,Middle Columbia-Lake Wallula,"OR,WA",10.0,Rural area,Rural,19.9,5396,68594.0,7.6,14.8,26.6,1.2,69.6,0.4 +curated/0697415323,41049970102,17070101,Middle Columbia-Lake Wallula,"OR,WA",6.0,Micropolitan low commuting,Micropolitan,68.8,3915,72719.0,9.2,13.8,65.7,0.7,31.2,0.0 +curated/0697417726,41049970102,17070101,Middle Columbia-Lake Wallula,"OR,WA",6.0,Micropolitan low commuting,Micropolitan,68.8,3915,72719.0,9.2,13.8,65.7,0.7,31.2,0.0 +curated/069b3ccd69ebbb7ceff698a411ad2366,12057013315,03100206,Tampa Bay,FL,1.0,Metropolitan core,Metropolitan,2788.4,5415,69125.0,55.8,9.2,37.7,21.6,28.3,8.6 +curated/06c16e48101d659ad5319853f75de03c,24510040100,02060003,Gunpowder-Patapsco,"MD,PA",1.0,Metropolitan core,Metropolitan,14850.6,6387,63495.0,67.0,17.8,31.6,41.9,8.3,11.0 +curated/0700001774,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/0701923200,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0701923202,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0701923203,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0701923204,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0701924664,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0701924665,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0701924667,51107611702,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1247.2,2417,174183.0,68.2,0.6,36.0,16.3,14.8,31.6 +curated/0701924668,51107611702,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1247.2,2417,174183.0,68.2,0.6,36.0,16.3,14.8,31.6 +curated/0701924669,51107611702,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1247.2,2417,174183.0,68.2,0.6,36.0,16.3,14.8,31.6 +curated/0701929066,51107611702,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1247.2,2417,174183.0,68.2,0.6,36.0,16.3,14.8,31.6 +curated/0701930919,51107611502,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2593.5,7269,131000.0,37.5,7.9,27.7,12.0,32.3,25.4 +curated/0701930920,51107611018,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1671.9,4705,93315.0,57.8,14.0,70.2,4.8,10.1,12.0 +curated/0814061070,53017950300,17020010,Upper Columbia-Entiat,WA,1.0,Metropolitan core,Metropolitan,102.8,7973,83618.0,19.8,7.7,62.7,0.5,31.9,0.3 +curated/0701930930,51107611018,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1671.9,4705,93315.0,57.8,14.0,70.2,4.8,10.1,12.0 +curated/0701931819,51107611804,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,2433.4,8353,196742.0,69.8,4.5,28.1,5.8,12.3,43.1 +curated/0701931820,51107611804,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,2433.4,8353,196742.0,69.8,4.5,28.1,5.8,12.3,43.1 +curated/07032a219ab77c45a07dbbc995884338,29095015702,10270104,"Lower Kansas, Kansas","KS,MO",1.0,Metropolitan core,Metropolitan,17053.1,3728,72438.0,69.6,28.9,50.6,21.8,5.9,7.5 +curated/0706081342,35001980000,13020203,Rio Grande-Albuquerque,NM,1.0,Metropolitan core,Metropolitan,95.2,3891,83774.0,49.5,11.8,56.1,8.8,22.3,6.6 +curated/0706725650,51107611028,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,694.5,6124,250001.0,85.0,3.0,36.7,9.9,5.6,42.4 +curated/0706726088,51107611004,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2380.2,8698,199111.0,75.2,3.5,53.8,7.4,11.0,19.7 +curated/0706759844,41013950301,17070305,Lower Crooked,OR,3.0,Metropolitan low commuting,Metropolitan,22.0,3920,119495.0,34.7,12.1,95.1,0.0,0.9,0.4 +curated/0706759845,41013950200,17070305,Lower Crooked,OR,5.0,Micropolitan high commuting,Micropolitan,29.1,5072,83750.0,20.0,12.6,84.2,0.0,11.9,0.3 +curated/0706776322,41059951100,17070103,Umatilla,OR,4.0,Micropolitan core,Micropolitan,311.9,6548,65136.0,17.7,6.9,44.6,2.9,44.4,1.3 +curated/0708155014,51087201404,02080206,Lower James,VA,2.0,Metropolitan high commuting,Metropolitan,253.3,4627,84632.0,20.5,9.0,74.5,19.3,1.6,1.5 +curated/0708916484,51107611019,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,3339.9,5633,220156.0,72.6,1.7,53.5,10.0,7.1,26.4 +curated/0708931343,47125102010,05130206,Red,"KY,TN",1.0,Metropolitan core,Metropolitan,551.0,5362,79931.0,27.5,13.9,54.1,21.4,12.1,5.1 +curated/0710070925,51107611004,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2380.2,8698,199111.0,75.2,3.5,53.8,7.4,11.0,19.7 +curated/0711811006,56021001902,10190009,Crow,"CO,WY",2.0,Metropolitan high commuting,Metropolitan,4.9,4777,108833.0,38.7,2.6,82.7,0.0,6.3,2.1 +curated/0894425613,47037012701,05130202,Lower Cumberland-Sycamore,TN,1.0,Metropolitan core,Metropolitan,1859.4,7041,56068.0,31.1,39.6,19.5,59.0,7.4,0.0 +curated/0713410334,13097080105,03130002,Middle Chattahoochee-Lake Harding,"AL,GA",1.0,Metropolitan core,Metropolitan,375.6,4442,114688.0,51.4,10.4,5.4,89.4,2.7,1.5 +curated/0713411278,48453002448,12090205,Austin-Travis Lakes,TX,1.0,Metropolitan core,Metropolitan,1164.4,7773,103623.0,35.9,6.4,20.1,11.1,56.0,7.3 +curated/0713411279,48453002448,12090205,Austin-Travis Lakes,TX,1.0,Metropolitan core,Metropolitan,1164.4,7773,103623.0,35.9,6.4,20.1,11.1,56.0,7.3 +curated/0713428715,17031770300,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,1303.0,6900,76782.0,40.0,8.7,72.0,4.7,17.3,3.8 +curated/0713433204,17031770500,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,1776.3,4292,75096.0,6.1,14.0,11.3,0.0,88.3,0.0 +curated/0714120969,48085031657,12030103,Elm Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,1892.1,3288,91483.0,75.9,4.3,29.7,12.0,17.8,25.5 +curated/0714139865,34017019900,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,2689.2,5417,99341.0,61.2,4.7,27.4,3.9,27.0,39.8 +curated/0714139868,34017019900,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,2689.2,5417,99341.0,61.2,4.7,27.4,3.9,27.0,39.8 +curated/0714622339,51107611812,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,984.4,4318,166288.0,62.4,5.8,24.6,16.2,12.3,34.3 +curated/0714622340,51107611812,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,984.4,4318,166288.0,62.4,5.8,24.6,16.2,12.3,34.3 +curated/0714776107,48201542901,12040104,Buffalo-San Jacinto,TX,1.0,Metropolitan core,Metropolitan,4614.2,9563,118148.0,38.7,6.9,26.4,13.8,41.7,13.3 +curated/0714889192,01071950200,06030001,Guntersville Lake,"AL,GA,TN",2.0,Metropolitan high commuting,Metropolitan,93.6,3443,46148.0,12.4,21.3,85.2,3.6,3.9,0.0 +curated/0714943309,34035050902,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,714.0,3486,216071.0,69.3,0.6,62.4,3.6,8.3,13.4 +curated/0715098032,37045950601,03050105,Upper Broad,"NC,SC",6.0,Micropolitan low commuting,Micropolitan,251.2,4162,69370.0,21.0,12.5,79.8,5.0,10.7,0.6 +curated/0718465287,27109001403,07040004,Zumbro,MN,1.0,Metropolitan core,Metropolitan,1294.1,7575,113777.0,58.0,3.3,74.2,9.3,3.0,8.0 +curated/0723117951,39049007213,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,529.9,5849,217802.0,68.6,1.5,72.1,1.9,7.9,11.7 +curated/0729192992,41067032603,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,1061.1,6723,143953.0,51.2,2.2,64.0,4.0,20.9,3.5 +curated/0729376485,34023003500,02030104,Sandy Hook-Staten Island,"NJ,NY",1.0,Metropolitan core,Metropolitan,3443.1,3439,105139.0,31.9,5.8,27.4,20.4,29.7,18.4 +curated/0729696933,49035114500,16020204,Jordan,UT,1.0,Metropolitan core,Metropolitan,451.9,8052,99550.0,18.1,13.6,27.4,3.3,53.8,12.8 +curated/0733721782,41047001000,17090007,Middle Willamette,OR,1.0,Metropolitan core,Metropolitan,832.5,4438,56494.0,19.4,16.4,72.3,0.2,19.3,0.7 +curated/0734323663,41067032700,17090010,Tualatin,OR,2.0,Metropolitan high commuting,Metropolitan,75.3,5890,130982.0,49.0,4.9,73.7,3.6,7.0,11.4 +curated/0741629998,12011050208,03090206,Florida Southeast Coast,FL,1.0,Metropolitan core,Metropolitan,1370.0,3978,81185.0,32.9,17.4,17.9,39.4,37.8,0.5 +curated/0744177375,48339691201,12040102,Spring,TX,1.0,Metropolitan core,Metropolitan,2639.4,3890,182063.0,70.7,1.7,81.3,3.9,12.9,0.6 +curated/0744491691,51107611702,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1247.2,2417,174183.0,68.2,0.6,36.0,16.3,14.8,31.6 +curated/0744496741,51107611502,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2593.5,7269,131000.0,37.5,7.9,27.7,12.0,32.3,25.4 +curated/0744496750,51107611502,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2593.5,7269,131000.0,37.5,7.9,27.7,12.0,32.3,25.4 +curated/0746278786,32003003626,15010015,Las Vegas Wash,NV,1.0,Metropolitan core,Metropolitan,1383.3,4254,118977.0,27.0,7.2,32.3,17.4,37.3,9.7 +curated/0751881301,11001010100,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,12068.4,2591,112670.0,87.9,9.3,61.2,7.2,13.5,10.2 +curated/0752001022,41017001402,17070301,Upper Deschutes,OR,1.0,Metropolitan core,Metropolitan,1800.2,1466,118611.0,73.5,12.6,84.1,0.0,3.3,2.3 +curated/0755540694,26049010912,04080204,Flint,MI,1.0,Metropolitan core,Metropolitan,593.2,2689,51582.0,12.0,14.0,75.3,15.7,3.8,0.0 +curated/0756382879,34035053604,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,726.5,3687,147321.0,56.2,3.3,65.3,4.5,8.0,20.0 +curated/0756382880,34035053604,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,726.5,3687,147321.0,56.2,3.3,65.3,4.5,8.0,20.0 +curated/0756778306,35061980300,13020203,Rio Grande-Albuquerque,NM,10.0,Rural area,Rural,1.6,0,,,,,,, +curated/0758278314,37183053519,03020201,Upper Neuse,NC,1.0,Metropolitan core,Metropolitan,4951.3,3061,69048.0,56.8,11.8,66.9,10.7,17.8,1.4 +curated/0758426349,30039961702,17010202,Flint-Rock,MT,10.0,Rural area,Rural,2.0,1875,55156.0,40.8,10.3,84.8,0.3,4.4,1.7 +curated/0758580536,34035053707,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,652.1,4135,222070.0,65.2,1.5,64.1,7.4,6.8,20.5 +curated/0761185667,34035053602,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,606.2,6543,218000.0,77.6,1.0,66.3,10.2,8.4,12.0 +curated/0762116506,51087201404,02080206,Lower James,VA,2.0,Metropolitan high commuting,Metropolitan,253.3,4627,84632.0,20.5,9.0,74.5,19.3,1.6,1.5 +curated/0772827597,41013950200,17070305,Lower Crooked,OR,5.0,Micropolitan high commuting,Micropolitan,29.1,5072,83750.0,20.0,12.6,84.2,0.0,11.9,0.3 +curated/0772827601,41013950200,17070305,Lower Crooked,OR,5.0,Micropolitan high commuting,Micropolitan,29.1,5072,83750.0,20.0,12.6,84.2,0.0,11.9,0.3 +curated/0773848531,26163587900,04090004,Detroit,"CN,MI",1.0,Metropolitan core,Metropolitan,1011.6,7278,108072.0,39.7,9.1,47.5,40.7,0.7,4.7 +curated/0775412066,32031003501,16050102,Truckee,"CA,NV",2.0,Metropolitan high commuting,Metropolitan,0.8,4169,102295.0,38.3,8.6,70.7,2.2,8.6,0.9 +curated/0775412067,32031003501,16050102,Truckee,"CA,NV",2.0,Metropolitan high commuting,Metropolitan,0.8,4169,102295.0,38.3,8.6,70.7,2.2,8.6,0.9 +curated/0775412068,32031003501,16050102,Truckee,"CA,NV",2.0,Metropolitan high commuting,Metropolitan,0.8,4169,102295.0,38.3,8.6,70.7,2.2,8.6,0.9 +curated/0775412069,32031003501,16050102,Truckee,"CA,NV",2.0,Metropolitan high commuting,Metropolitan,0.8,4169,102295.0,38.3,8.6,70.7,2.2,8.6,0.9 +curated/0775412072,32031003501,16050102,Truckee,"CA,NV",2.0,Metropolitan high commuting,Metropolitan,0.8,4169,102295.0,38.3,8.6,70.7,2.2,8.6,0.9 +curated/0775412073,32031003501,16050102,Truckee,"CA,NV",2.0,Metropolitan high commuting,Metropolitan,0.8,4169,102295.0,38.3,8.6,70.7,2.2,8.6,0.9 +curated/0777196805,42077006205,02040106,Lehigh,PA,1.0,Metropolitan core,Metropolitan,445.9,4525,125303.0,47.2,4.7,72.8,2.3,11.4,8.7 +curated/0777679751,35061980300,13020203,Rio Grande-Albuquerque,NM,10.0,Rural area,Rural,1.6,0,,,,,,, +curated/0778989332,08035014014,10190003,Middle South Platte-Cherry Creek,CO,1.0,Metropolitan core,Metropolitan,1406.4,5762,107382.0,50.7,3.1,67.5,2.2,7.8,16.7 +curated/0780063735,06095252402,18050001,Suisun Bay,CA,1.0,Metropolitan core,Metropolitan,933.2,5332,77679.0,12.5,13.9,15.3,7.7,62.3,10.2 +curated/0781370600,04013812200,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,3785.5,7847,120513.0,60.8,8.6,45.4,3.7,20.7,20.1 +curated/0788027103,19153010601,07100008,Lake Red Rock,IA,1.0,Metropolitan core,Metropolitan,234.9,2853,61118.0,13.8,17.1,92.5,1.5,2.3,1.2 +curated/0793087858,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0793087859,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/0793622740,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0793888408,51107611018,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1671.9,4705,93315.0,57.8,14.0,70.2,4.8,10.1,12.0 +curated/0793888427,51107611019,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,3339.9,5633,220156.0,72.6,1.7,53.5,10.0,7.1,26.4 +curated/0793888429,51107611019,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,3339.9,5633,220156.0,72.6,1.7,53.5,10.0,7.1,26.4 +curated/0793888430,51107611019,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,3339.9,5633,220156.0,72.6,1.7,53.5,10.0,7.1,26.4 +curated/0794147654,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0794147655,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0794147657,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0795384117,04013061058,15070102,Aqua Fria,AZ,2.0,Metropolitan high commuting,Metropolitan,263.4,3990,100017.0,34.9,6.9,51.6,7.0,29.8,2.9 +curated/0796933516,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/07a44b42e08223ac4fc7bcb6b8b5457e,08035014014,10190003,Middle South Platte-Cherry Creek,CO,1.0,Metropolitan core,Metropolitan,1406.4,5762,107382.0,50.7,3.1,67.5,2.2,7.8,16.7 +curated/07e1a3ee6a5d8f101ee0b3343ffd6af6,08005006864,10190003,Middle South Platte-Cherry Creek,CO,1.0,Metropolitan core,Metropolitan,686.9,3501,126575.0,56.2,3.2,48.4,10.3,14.7,18.8 +curated/0802054282,36119000702,02030101,Lower Hudson,"CT,NJ,NY",1.0,Metropolitan core,Metropolitan,19163.1,5507,86174.0,48.4,8.8,32.9,20.7,41.0,2.3 +curated/0802160675,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +curated/0807374322,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/0808979618,04013422647,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,2326.9,12550,153355.0,57.6,1.6,55.6,4.8,18.6,7.9 +curated/0812630939,26163581600,04090004,Detroit,"CN,MI",1.0,Metropolitan core,Metropolitan,3719.6,5897,75313.0,29.3,6.0,60.5,18.3,12.7,6.0 +curated/0813532303,08041007502,11020003,Fountain,CO,2.0,Metropolitan high commuting,Metropolitan,167.5,10943,156875.0,61.3,5.1,82.5,4.1,6.2,3.8 +curated/0813688319,53017950300,17020010,Upper Columbia-Entiat,WA,1.0,Metropolitan core,Metropolitan,102.8,7973,83618.0,19.8,7.7,62.7,0.5,31.9,0.3 +curated/0813688320,53017950300,17020010,Upper Columbia-Entiat,WA,1.0,Metropolitan core,Metropolitan,102.8,7973,83618.0,19.8,7.7,62.7,0.5,31.9,0.3 +curated/0814061068,53017950300,17020010,Upper Columbia-Entiat,WA,1.0,Metropolitan core,Metropolitan,102.8,7973,83618.0,19.8,7.7,62.7,0.5,31.9,0.3 +curated/0817338831,51107611702,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1247.2,2417,174183.0,68.2,0.6,36.0,16.3,14.8,31.6 +curated/0817338832,51107611702,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1247.2,2417,174183.0,68.2,0.6,36.0,16.3,14.8,31.6 +curated/0819981888,47037015630,05130202,Lower Cumberland-Sycamore,TN,1.0,Metropolitan core,Metropolitan,1119.0,6248,84661.0,34.3,5.6,20.7,55.6,10.6,2.1 +curated/0819981908,47187050904,05130204,Harpeth,TN,1.0,Metropolitan core,Metropolitan,2504.9,5867,129550.0,51.1,5.9,52.4,14.4,28.9,1.3 +curated/0821081357,39049006240,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,1000.9,5223,95482.0,60.4,4.5,68.4,0.0,12.2,15.2 +curated/0821081358,39049006240,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,1000.9,5223,95482.0,60.4,4.5,68.4,0.0,12.2,15.2 +curated/0828135845,51153901509,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",2.0,Metropolitan high commuting,Metropolitan,293.1,8086,202560.0,64.0,4.3,61.6,13.8,12.2,5.5 +curated/0828228235,04013422304,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,2797.8,2728,86371.0,36.1,6.3,54.0,2.2,24.5,7.0 +curated/0830138727,37183054304,03020201,Upper Neuse,NC,2.0,Metropolitan high commuting,Metropolitan,374.9,7110,125362.0,37.1,6.5,48.9,41.4,5.5,0.5 +curated/0830881731,19153011028,07100006,North Raccoon,IA,1.0,Metropolitan core,Metropolitan,335.4,5306,75404.0,51.0,8.9,71.4,4.6,14.7,6.3 +curated/0830881732,19153011028,07100008,Lake Red Rock,IA,1.0,Metropolitan core,Metropolitan,335.4,5306,75404.0,51.0,8.9,71.4,4.6,14.7,6.3 +curated/0830881733,19153011028,07100006,North Raccoon,IA,1.0,Metropolitan core,Metropolitan,335.4,5306,75404.0,51.0,8.9,71.4,4.6,14.7,6.3 +curated/0830881734,19153011028,07100006,North Raccoon,IA,1.0,Metropolitan core,Metropolitan,335.4,5306,75404.0,51.0,8.9,71.4,4.6,14.7,6.3 +curated/0830881742,19153011028,07100006,North Raccoon,IA,1.0,Metropolitan core,Metropolitan,335.4,5306,75404.0,51.0,8.9,71.4,4.6,14.7,6.3 +curated/0830881743,19153011028,07100006,North Raccoon,IA,1.0,Metropolitan core,Metropolitan,335.4,5306,75404.0,51.0,8.9,71.4,4.6,14.7,6.3 +curated/0830881744,19153011028,07100006,North Raccoon,IA,1.0,Metropolitan core,Metropolitan,335.4,5306,75404.0,51.0,8.9,71.4,4.6,14.7,6.3 +curated/0830881745,19153011028,07100006,North Raccoon,IA,1.0,Metropolitan core,Metropolitan,335.4,5306,75404.0,51.0,8.9,71.4,4.6,14.7,6.3 +curated/0931369845,24510260404,02060003,Gunpowder-Patapsco,"MD,PA",1.0,Metropolitan core,Metropolitan,1308.0,1778,55921.0,3.1,32.5,45.3,9.2,42.3,0.0 +curated/0830885773,19181020300,07100008,Lake Red Rock,IA,2.0,Metropolitan high commuting,Metropolitan,66.0,3687,116010.0,35.2,8.4,89.7,2.0,5.2,1.1 +curated/0830885774,19181020300,07100008,Lake Red Rock,IA,2.0,Metropolitan high commuting,Metropolitan,66.0,3687,116010.0,35.2,8.4,89.7,2.0,5.2,1.1 +curated/0830885779,19181020300,07100008,Lake Red Rock,IA,2.0,Metropolitan high commuting,Metropolitan,66.0,3687,116010.0,35.2,8.4,89.7,2.0,5.2,1.1 +curated/0830931210,19153010601,07100008,Lake Red Rock,IA,1.0,Metropolitan core,Metropolitan,234.9,2853,61118.0,13.8,17.1,92.5,1.5,2.3,1.2 +curated/0832622369,36063022714,04120104,Niagara,"CN,NY",1.0,Metropolitan core,Metropolitan,1028.2,4334,79929.0,37.8,7.1,90.3,4.6,0.6,1.4 +curated/0836908998,01073014303,03150202,Cahaba,AL,1.0,Metropolitan core,Metropolitan,443.9,5917,147377.0,71.7,9.0,51.9,26.4,3.7,15.2 +curated/0836947535,04013420206,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,641.9,3767,62500.0,31.1,8.3,80.6,1.0,15.3,0.7 +curated/0837139011,19103000306,07080209,Lower Iowa,IA,1.0,Metropolitan core,Metropolitan,1766.4,4160,120536.0,77.9,6.0,78.8,0.8,4.6,11.5 +curated/0838817907,37119005928,03050103,Lower Catawba,"NC,SC",1.0,Metropolitan core,Metropolitan,317.4,1876,85903.0,24.4,11.3,21.2,24.6,44.3,1.3 +curated/0838817943,37119003805,03050103,Lower Catawba,"NC,SC",1.0,Metropolitan core,Metropolitan,1020.3,4177,78772.0,64.9,6.3,47.4,23.4,1.1,19.3 +curated/0840582927,51069050700,02070006,North Fork Shenandoah,"VA,WV",2.0,Metropolitan high commuting,Metropolitan,149.7,3268,77125.0,25.9,9.1,83.6,1.3,11.7,0.9 +curated/0841813139,17031841900,07120003,Chicago,"IL,IN",1.0,Metropolitan core,Metropolitan,6744.5,6567,141017.0,62.3,15.1,37.6,21.6,14.1,21.8 +curated/0842544718,53061042004,17110019,Puget Sound,WA,1.0,Metropolitan core,Metropolitan,5383.0,5388,125059.0,32.8,6.0,55.2,0.7,4.7,23.0 +curated/0844359206,32003005112,15010015,Las Vegas Wash,NV,1.0,Metropolitan core,Metropolitan,642.6,3051,83333.0,39.0,8.9,36.0,20.9,17.2,15.5 +curated/0844359207,32003005112,15010015,Las Vegas Wash,NV,1.0,Metropolitan core,Metropolitan,642.6,3051,83333.0,39.0,8.9,36.0,20.9,17.2,15.5 +curated/0844371952,01071950200,06030001,Guntersville Lake,"AL,GA,TN",2.0,Metropolitan high commuting,Metropolitan,93.6,3443,46148.0,12.4,21.3,85.2,3.6,3.9,0.0 +curated/0844374689,51107611004,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2380.2,8698,199111.0,75.2,3.5,53.8,7.4,11.0,19.7 +curated/0844386860,48139060802,12030102,Lower West Fork Trinity,TX,2.0,Metropolitan high commuting,Metropolitan,447.9,9744,124801.0,30.7,2.0,71.9,7.3,14.4,1.2 +curated/0844386861,48139060802,12030102,Lower West Fork Trinity,TX,2.0,Metropolitan high commuting,Metropolitan,447.9,9744,124801.0,30.7,2.0,71.9,7.3,14.4,1.2 +curated/0844389014,47125102010,05130206,Red,"KY,TN",1.0,Metropolitan core,Metropolitan,551.0,5362,79931.0,27.5,13.9,54.1,21.4,12.1,5.1 +curated/0844391358,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +curated/0844394339,31153010701,10200202,Lower Platte,NE,2.0,Metropolitan high commuting,Metropolitan,36.0,2421,134432.0,42.5,1.9,93.9,1.9,2.1,0.2 +curated/0844394340,31153010701,10200202,Lower Platte,NE,2.0,Metropolitan high commuting,Metropolitan,36.0,2421,134432.0,42.5,1.9,93.9,1.9,2.1,0.2 +curated/0844394357,31153010629,10230006,Big Papillion-Mosquito,"IA,NE",1.0,Metropolitan core,Metropolitan,292.5,4420,110182.0,58.6,2.3,86.1,0.7,8.0,4.5 +curated/0845775548,08014031403,10190003,Middle South Platte-Cherry Creek,CO,1.0,Metropolitan core,Metropolitan,2963.2,5725,228683.0,82.7,6.4,76.1,1.3,4.8,11.1 +curated/0850342266,55077960500,04030201,Upper Fox,WI,10.0,Rural area,Rural,52.8,3469,68167.0,17.8,16.7,88.7,0.9,6.0,0.6 +curated/0850965775,48139060206,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,1560.6,7521,75135.0,21.7,5.9,33.1,33.4,22.4,0.5 +curated/0852039781,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/0860433344,41067032603,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,1061.1,6723,143953.0,51.2,2.2,64.0,4.0,20.9,3.5 +curated/0863162820,17031770500,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,1776.3,4292,75096.0,6.1,14.0,11.3,0.0,88.3,0.0 +curated/0863162822,17031770300,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,1303.0,6900,76782.0,40.0,8.7,72.0,4.7,17.3,3.8 +curated/0863162825,17031770500,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,1776.3,4292,75096.0,6.1,14.0,11.3,0.0,88.3,0.0 +curated/0871694597,36001013505,02020004,Mohawk,NY,1.0,Metropolitan core,Metropolitan,2445.1,2983,93967.0,32.5,11.3,74.8,1.0,3.0,17.3 +curated/0871745265,19049050812,07100006,North Raccoon,IA,1.0,Metropolitan core,Metropolitan,231.4,5305,107083.0,63.3,18.4,74.4,14.0,2.4,4.9 +curated/0873137563,37035011702,03050102,South Fork Catawba,"NC,SC",2.0,Metropolitan high commuting,Metropolitan,207.1,6948,83313.0,22.7,11.6,81.9,4.6,4.9,7.0 +curated/0874506250,39049007922,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,2029.6,6580,119792.0,62.4,7.8,72.2,6.3,5.5,8.6 +curated/0876020641,53063013600,17010306,Hangman,"ID,WA",1.0,Metropolitan core,Metropolitan,400.1,5322,62177.0,40.8,17.4,82.1,2.5,6.4,3.1 +curated/0876120402,51660000402,02070005,South Fork Shenandoah,"VA,WV",1.0,Metropolitan core,Metropolitan,3128.0,6418,60264.0,36.0,17.4,46.2,7.2,42.6,1.5 +curated/0878795698,09190020900,01100006,Saugatuck,"CT,NY",,,Unknown,,5496,91230.0,46.1,10.5,43.4,25.5,25.6,1.9 +curated/0880052062,20091980001,10270104,"Lower Kansas, Kansas","KS,MO",1.0,Metropolitan core,Metropolitan,3.5,0,,,,,,, +curated/0882977350,51153901304,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,487.1,3172,136842.0,36.7,4.4,64.3,3.3,17.8,4.3 +curated/0883809860,37161961104,03050105,Upper Broad,"NC,SC",5.0,Micropolitan high commuting,Micropolitan,212.7,2426,39922.0,11.6,21.0,84.1,1.9,10.7,1.4 +curated/0883809862,37161961104,03050105,Upper Broad,"NC,SC",5.0,Micropolitan high commuting,Micropolitan,212.7,2426,39922.0,11.6,21.0,84.1,1.9,10.7,1.4 +curated/0886028872,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/0886330269,51107610604,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1552.0,6616,186125.0,66.9,3.2,61.6,13.2,10.6,7.3 +curated/0888253616,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0891031651,13121011652,03130001,Upper Chattahoochee,GA,1.0,Metropolitan core,Metropolitan,1289.3,3219,129583.0,75.2,4.4,27.2,3.4,13.4,50.1 +curated/0897226569,51107611810,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1252.6,8734,250001.0,78.7,2.8,49.4,4.5,6.3,33.0 +curated/0897226573,51107611812,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,984.4,4318,166288.0,62.4,5.8,24.6,16.2,12.3,34.3 +curated/1010260675,48325000103,12100302,Medina,TX,2.0,Metropolitan high commuting,Metropolitan,112.5,8269,108328.0,34.6,5.2,37.9,4.2,49.0,3.1 +curated/0897226574,51107611810,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1252.6,8734,250001.0,78.7,2.8,49.4,4.5,6.3,33.0 +curated/0897226575,51107611810,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1252.6,8734,250001.0,78.7,2.8,49.4,4.5,6.3,33.0 +curated/0899634245,41067032603,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,1061.1,6723,143953.0,51.2,2.2,64.0,4.0,20.9,3.5 +curated/08eb68b6d295623539ff43c4063d5ca5,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0903642490,16007950100,16010201,Bear Lake,"ID,UT",10.0,Rural area,Rural,7.7,3595,61573.0,18.9,6.4,91.4,0.0,5.4,0.2 +curated/0904453635,47057500401,06010104,Holston,"TN,VA",2.0,Metropolitan high commuting,Metropolitan,96.6,2963,44750.0,15.7,20.7,86.8,4.7,7.8,0.0 +curated/0909455922,51107611028,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,694.5,6124,250001.0,85.0,3.0,36.7,9.9,5.6,42.4 +curated/0909742340,41067032603,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,1061.1,6723,143953.0,51.2,2.2,64.0,4.0,20.9,3.5 +curated/0914613836,41049970101,17070101,Middle Columbia-Lake Wallula,"OR,WA",10.0,Rural area,Rural,19.9,5396,68594.0,7.6,14.8,26.6,1.2,69.6,0.4 +curated/0914616809,41049970101,17070101,Middle Columbia-Lake Wallula,"OR,WA",10.0,Rural area,Rural,19.9,5396,68594.0,7.6,14.8,26.6,1.2,69.6,0.4 +curated/0914616810,41049970102,17070101,Middle Columbia-Lake Wallula,"OR,WA",6.0,Micropolitan low commuting,Micropolitan,68.8,3915,72719.0,9.2,13.8,65.7,0.7,31.2,0.0 +curated/0916046040,08005007110,10190003,Middle South Platte-Cherry Creek,CO,1.0,Metropolitan core,Metropolitan,788.1,7394,143483.0,50.6,3.4,46.5,16.3,22.5,6.9 +curated/1010260676,48029172002,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,1403.4,32434,108359.0,30.8,3.7,22.9,14.8,52.7,4.0 +curated/0916148870,36029009009,04120104,Niagara,"CN,NY",1.0,Metropolitan core,Metropolitan,606.7,6572,137188.0,64.1,3.7,77.6,1.8,7.2,12.7 +curated/0918871786,41067032603,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,1061.1,6723,143953.0,51.2,2.2,64.0,4.0,20.9,3.5 +curated/0918871787,41067032603,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,1061.1,6723,143953.0,51.2,2.2,64.0,4.0,20.9,3.5 +curated/0918871788,41067032603,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,1061.1,6723,143953.0,51.2,2.2,64.0,4.0,20.9,3.5 +curated/0918873142,41067032603,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,1061.1,6723,143953.0,51.2,2.2,64.0,4.0,20.9,3.5 +curated/0919948160,55101001703,04040002,Pike-Root,"IL,WI",1.0,Metropolitan core,Metropolitan,273.6,4898,105144.0,37.1,2.6,83.3,1.7,9.9,1.4 +curated/0923167491,37179020203,03040105,Rocky,"NC,SC",1.0,Metropolitan core,Metropolitan,330.1,4510,113194.0,49.8,4.5,84.5,4.5,4.5,1.1 +curated/0930043986,36067016100,04140202,Oneida,NY,1.0,Metropolitan core,Metropolitan,425.4,2570,109286.0,48.0,5.0,64.0,3.7,1.6,24.8 +curated/0930540164,06073019905,18070303,San Luis Rey-Escondido,CA,1.0,Metropolitan core,Metropolitan,3187.7,5562,112063.0,49.2,4.6,46.6,6.5,28.6,9.8 +curated/0930849744,51107611501,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2714.3,3703,117719.0,58.0,2.6,26.0,15.4,19.0,25.7 +curated/0931732650,49035115211,16020204,Jordan,UT,1.0,Metropolitan core,Metropolitan,987.6,9866,131141.0,38.1,7.4,59.7,5.8,22.3,3.3 +curated/093245c2051aa1f6175f8dd39840507c,06085505010,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,1433.7,4756,202663.0,64.4,9.9,15.6,3.8,11.7,65.1 +curated/1010260677,48029172002,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,1403.4,32434,108359.0,30.8,3.7,22.9,14.8,52.7,4.0 +curated/0933393863,06067009010,18020111,Lower American,CA,1.0,Metropolitan core,Metropolitan,3188.8,6830,85556.0,32.7,12.0,38.6,26.3,18.0,10.7 +curated/0936368014,34035053501,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,829.5,6196,151250.0,57.6,6.6,30.3,23.5,12.8,27.8 +curated/0938592711,04013061052,15070102,Aqua Fria,AZ,2.0,Metropolitan high commuting,Metropolitan,3615.8,8803,89191.0,34.2,3.4,29.6,7.1,53.3,5.9 +curated/0940821791,04013319705,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,2221.3,4103,72241.0,33.0,9.4,38.4,8.4,45.8,2.8 +curated/0942557184,31153010629,10200202,Lower Platte,NE,1.0,Metropolitan core,Metropolitan,292.5,4420,110182.0,58.6,2.3,86.1,0.7,8.0,4.5 +curated/0942604537,47187051001,05130204,Harpeth,TN,1.0,Metropolitan core,Metropolitan,1234.1,9140,187835.0,72.2,3.4,74.9,2.4,4.3,11.2 +curated/0944024849,19153010804,07100008,Lake Red Rock,IA,1.0,Metropolitan core,Metropolitan,324.4,6167,106193.0,31.5,3.7,88.1,0.3,9.1,0.0 +curated/0944024851,19153010804,07100008,Lake Red Rock,IA,1.0,Metropolitan core,Metropolitan,324.4,6167,106193.0,31.5,3.7,88.1,0.3,9.1,0.0 +curated/0946014659,40143009019,11070107,Bird,OK,1.0,Metropolitan core,Metropolitan,942.3,3878,86016.0,43.3,11.9,65.9,7.1,7.7,4.5 +curated/0954433119,51107611702,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1247.2,2417,174183.0,68.2,0.6,36.0,16.3,14.8,31.6 +curated/0958153769,13215010605,03130003,Middle Chattahoochee-Walter F,"AL,GA",1.0,Metropolitan core,Metropolitan,1716.5,3988,48185.0,22.0,36.0,10.9,83.9,0.4,1.2 +curated/0958153770,13215010605,03130003,Middle Chattahoochee-Walter F,"AL,GA",1.0,Metropolitan core,Metropolitan,1716.5,3988,48185.0,22.0,36.0,10.9,83.9,0.4,1.2 +curated/0958662382,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0958728802,12095017401,03080102,Oklawaha,FL,1.0,Metropolitan core,Metropolitan,2350.5,8093,109653.0,45.8,8.6,56.9,17.3,19.6,2.8 +curated/0959969621,09170175800,01100004,Quinnipiac,CT,,,Unknown,,4029,158080.0,54.9,1.5,83.1,0.6,6.6,5.5 +curated/0961071564,01089001403,06030002,Wheeler Lake,"AL,TN",1.0,Metropolitan core,Metropolitan,511.2,3059,68158.0,57.5,24.7,48.1,33.8,7.3,7.4 +curated/0965755845,41047000200,17090007,Middle Willamette,OR,1.0,Metropolitan core,Metropolitan,3798.6,4184,52169.0,43.5,27.5,67.0,2.1,16.0,3.5 +curated/1069388141,45015020707,03050201,Cooper,SC,1.0,Metropolitan core,Metropolitan,347.1,7041,80567.0,26.5,6.3,53.0,29.2,8.4,1.6 +curated/0975064000,13097080105,03130002,Middle Chattahoochee-Lake Harding,"AL,GA",1.0,Metropolitan core,Metropolitan,375.6,4442,114688.0,51.4,10.4,5.4,89.4,2.7,1.5 +curated/0975064004,13097080105,03130002,Middle Chattahoochee-Lake Harding,"AL,GA",1.0,Metropolitan core,Metropolitan,375.6,4442,114688.0,51.4,10.4,5.4,89.4,2.7,1.5 +curated/0975484796,39049007922,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,2029.6,6580,119792.0,62.4,7.8,72.2,6.3,5.5,8.6 +curated/0975484797,39049007922,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,2029.6,6580,119792.0,62.4,7.8,72.2,6.3,5.5,8.6 +curated/0975484798,39049007922,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,2029.6,6580,119792.0,62.4,7.8,72.2,6.3,5.5,8.6 +curated/0977653854,04013812200,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,3785.5,7847,120513.0,60.8,8.6,45.4,3.7,20.7,20.1 +curated/0977653858,04013812200,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,3785.5,7847,120513.0,60.8,8.6,45.4,3.7,20.7,20.1 +curated/0977653859,04013812200,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,3785.5,7847,120513.0,60.8,8.6,45.4,3.7,20.7,20.1 +curated/0978632013,06085511608,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,3907.1,3316,42824.0,82.6,35.8,36.1,7.0,19.7,28.0 +curated/0978934687,18089020300,04040001,Little Calumet-Galien,"IL,IN,MI",1.0,Metropolitan core,Metropolitan,1477.8,5496,52446.0,11.8,19.8,35.4,7.6,56.0,1.0 +curated/0990537858,51107611901,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1762.4,7113,250001.0,78.6,3.9,29.0,8.4,6.1,52.6 +curated/0983627455,51107611018,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1671.9,4705,93315.0,57.8,14.0,70.2,4.8,10.1,12.0 +curated/0984796364,32003002981,15010015,Las Vegas Wash,NV,1.0,Metropolitan core,Metropolitan,11365.4,4790,96397.0,32.9,5.4,23.5,24.0,22.2,21.3 +curated/0984953813,51107611501,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2714.3,3703,117719.0,58.0,2.6,26.0,15.4,19.0,25.7 +curated/0984953814,51107611501,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2714.3,3703,117719.0,58.0,2.6,26.0,15.4,19.0,25.7 +curated/0985207884,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/0986829280,51107610604,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1552.0,6616,186125.0,66.9,3.2,61.6,13.2,10.6,7.3 +curated/0989325195,48439113955,12030104,Denton,TX,1.0,Metropolitan core,Metropolitan,890.5,4315,218483.0,66.6,3.5,69.4,0.0,12.8,14.4 +curated/0989352911,34035053501,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,829.5,6196,151250.0,57.6,6.6,30.3,23.5,12.8,27.8 +curated/0989735623,51107611804,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,2433.4,8353,196742.0,69.8,4.5,28.1,5.8,12.3,43.1 +curated/0989735624,51107611804,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,2433.4,8353,196742.0,69.8,4.5,28.1,5.8,12.3,43.1 +curated/098aa28179e5564908e3e4f78aee37ff,53033007203,17110012,Lake Washington,WA,1.0,Metropolitan core,Metropolitan,15286.2,3591,137007.0,83.1,8.9,27.3,6.6,3.0,55.4 +curated/0990537813,51107611812,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,984.4,4318,166288.0,62.4,5.8,24.6,16.2,12.3,34.3 +curated/0990537821,51107611812,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,984.4,4318,166288.0,62.4,5.8,24.6,16.2,12.3,34.3 +curated/0990537857,51107611901,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1762.4,7113,250001.0,78.6,3.9,29.0,8.4,6.1,52.6 +curated/0996723585,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/0996723586,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/0996723587,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/1069388147,45015020707,03050201,Cooper,SC,1.0,Metropolitan core,Metropolitan,347.1,7041,80567.0,26.5,6.3,53.0,29.2,8.4,1.6 +curated/0996723588,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/0996723589,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/0996899486,51153901303,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,3084.1,5264,190417.0,54.5,7.0,49.4,9.5,26.9,8.9 +curated/0996899487,51153901303,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,3084.1,5264,190417.0,54.5,7.0,49.4,9.5,26.9,8.9 +curated/0996899488,51153901303,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,3084.1,5264,190417.0,54.5,7.0,49.4,9.5,26.9,8.9 +curated/0996899489,51153901304,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,487.1,3172,136842.0,36.7,4.4,64.3,3.3,17.8,4.3 +curated/0998933381,34035053501,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,829.5,6196,151250.0,57.6,6.6,30.3,23.5,12.8,27.8 +curated/0998933389,34035053501,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,829.5,6196,151250.0,57.6,6.6,30.3,23.5,12.8,27.8 +curated/0a9fc572eaa5588c06eaa17124e92b29,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/0fdb9151acc41cbbf1a99b9f5dc9b939,39049007043,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,5531.5,6059,74492.0,44.3,12.3,52.7,19.3,15.7,7.0 +curated/0b3209ab1b43ad96e5a164ef2a0b7eea,36001001100,02020006,Middle Hudson,"MA,NY",1.0,Metropolitan core,Metropolitan,2717.7,2065,56591.0,47.6,28.5,62.6,27.2,4.4,2.7 +curated/0b46ff59ce29aff72ad0465dab8cc74c,25017351500,01090001,Charles,MA,1.0,Metropolitan core,Metropolitan,4596.8,2926,85274.0,61.9,13.0,46.8,7.7,25.2,9.1 +curated/0cb8d98fefec4b4631153091d68c3e30,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0d1ea40ea5f49b828dc0d8cc653ce23e,41067030401,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,2996.5,4776,73523.0,45.3,6.6,60.2,3.5,21.8,9.5 +curated/0d6c112f2824f2ba9881deaf4e875198,53033027200,17110013,Duwamish,WA,1.0,Metropolitan core,Metropolitan,2338.8,3086,79871.0,19.7,12.9,33.6,5.9,32.3,20.8 +curated/0da00e6d157bf7cbdc2ed0bd74d6adb5,34013008100,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,14575.4,3958,33521.0,38.9,28.0,3.6,80.9,6.4,4.7 +curated/0dba75cdc0cc0cc0222d7c40177cdc54,36061003300,02030101,Lower Hudson,"CT,NJ,NY",1.0,Metropolitan core,Metropolitan,48953.1,5951,250001.0,94.4,3.5,67.9,0.9,5.7,9.5 +curated/1073720212,19155031900,10230006,Big Papillion-Mosquito,"IA,NE",2.0,Metropolitan high commuting,Metropolitan,128.8,3385,93393.0,34.3,2.8,93.9,0.0,1.9,0.4 +curated/1000784035,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/10014176940,72061040200,,,,1.0,Metropolitan core,Metropolitan,2037.3,5224,69830.0,,12.6,3.2,0.6,95.8,0.3 +curated/1003348567,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/1007825570,13121000700,03130002,Middle Chattahoochee-Lake Harding,"AL,GA",1.0,Metropolitan core,Metropolitan,5130.1,3038,164028.0,21.8,11.1,31.6,56.6,6.1,1.8 +curated/1010260674,48029172002,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,1403.4,32434,108359.0,30.8,3.7,22.9,14.8,52.7,4.0 +curated/1011125238,55133203307,07120006,Upper Fox,"IL,WI",1.0,Metropolitan core,Metropolitan,935.4,3230,77672.0,48.7,2.3,87.1,0.5,2.0,4.8 +curated/1012918195,13121011618,03130001,Upper Chattahoochee,GA,1.0,Metropolitan core,Metropolitan,2324.3,4643,169018.0,83.9,15.4,49.1,10.4,12.1,25.0 +curated/1013396352,32003000513,15010015,Las Vegas Wash,NV,1.0,Metropolitan core,Metropolitan,7171.0,3435,56750.0,6.1,7.6,29.1,6.9,62.0,0.4 +curated/1015704066,04013422655,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,3512.0,3937,96518.0,30.6,4.5,73.8,3.3,19.3,1.1 +curated/1015995259,51153901420,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,3967.7,3923,203194.0,56.1,2.1,45.4,19.0,15.2,14.8 +curated/1017048670,32003002979,15010015,Las Vegas Wash,NV,1.0,Metropolitan core,Metropolitan,1814.3,5093,84803.0,30.7,4.1,34.6,6.6,16.6,35.8 +curated/1017460713,32003001615,15010015,Las Vegas Wash,NV,1.0,Metropolitan core,Metropolitan,15486.6,4411,42338.0,5.0,23.1,23.7,18.7,50.8,3.4 +curated/1017460715,32003001615,15010015,Las Vegas Wash,NV,1.0,Metropolitan core,Metropolitan,15486.6,4411,42338.0,5.0,23.1,23.7,18.7,50.8,3.4 +curated/1018fcc5c4f68951d1df32447129e2b9,48453002448,12090205,Austin-Travis Lakes,TX,1.0,Metropolitan core,Metropolitan,1164.4,7773,103623.0,35.9,6.4,20.1,11.1,56.0,7.3 +curated/1019812125,41067032612,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,1211.1,3183,143207.0,49.2,4.0,71.5,0.8,11.1,8.9 +curated/1020374277,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +curated/1020374278,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +curated/1020374279,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +curated/1020721870,05145070402,11010014,Little Red,AR,4.0,Micropolitan core,Micropolitan,436.4,4119,43504.0,17.6,23.4,80.6,12.7,4.2,0.4 +curated/1020877488,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/1020877489,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/1020953454,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/1020953461,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/1022744244,51107611702,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1247.2,2417,174183.0,68.2,0.6,36.0,16.3,14.8,31.6 +curated/1022744248,51107611702,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1247.2,2417,174183.0,68.2,0.6,36.0,16.3,14.8,31.6 +curated/1022757169,51107611702,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1247.2,2417,174183.0,68.2,0.6,36.0,16.3,14.8,31.6 +curated/1022757170,51107611702,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1247.2,2417,174183.0,68.2,0.6,36.0,16.3,14.8,31.6 +curated/1024051963,49049010115,16020201,Utah Lake,UT,2.0,Metropolitan high commuting,Metropolitan,125.8,4676,108906.0,27.2,1.7,77.9,0.3,17.6,0.0 +curated/1024051997,49049010115,16020201,Utah Lake,UT,2.0,Metropolitan high commuting,Metropolitan,125.8,4676,108906.0,27.2,1.7,77.9,0.3,17.6,0.0 +curated/1024384322,20091980001,10270104,"Lower Kansas, Kansas","KS,MO",1.0,Metropolitan core,Metropolitan,3.5,0,,,,,,, +curated/1025002889,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/1027471509,41049970102,17070101,Middle Columbia-Lake Wallula,"OR,WA",6.0,Micropolitan low commuting,Micropolitan,68.8,3915,72719.0,9.2,13.8,65.7,0.7,31.2,0.0 +curated/1027471510,41049970102,17070101,Middle Columbia-Lake Wallula,"OR,WA",6.0,Micropolitan low commuting,Micropolitan,68.8,3915,72719.0,9.2,13.8,65.7,0.7,31.2,0.0 +curated/1030970564,51087201404,02080206,Lower James,VA,2.0,Metropolitan high commuting,Metropolitan,253.3,4627,84632.0,20.5,9.0,74.5,19.3,1.6,1.5 +curated/1034230196,12105012306,03100208,Withlacoochee,FL,2.0,Metropolitan high commuting,Metropolitan,28.9,1972,87857.0,12.6,13.1,85.4,2.0,6.4,1.1 +curated/1034475557,32003002847,15010015,Las Vegas Wash,NV,1.0,Metropolitan core,Metropolitan,1342.4,4104,48700.0,26.7,13.6,33.7,13.8,32.0,9.4 +curated/1035123473,49049010115,16020201,Utah Lake,UT,2.0,Metropolitan high commuting,Metropolitan,125.8,4676,108906.0,27.2,1.7,77.9,0.3,17.6,0.0 +curated/1037871048,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/1052182309,04013110502,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,6332.1,4065,71439.0,56.6,23.9,46.9,7.7,25.7,7.6 +curated/10537283366,17031839000,07120003,Chicago,"IL,IN",1.0,Metropolitan core,Metropolitan,55621.3,10391,106650.0,85.3,15.9,49.9,12.1,7.4,26.0 +curated/1054387470,13217100202,03070101,Upper Oconee,GA,2.0,Metropolitan high commuting,Metropolitan,145.3,6002,95691.0,36.4,1.5,68.1,18.3,5.3,0.0 +curated/1054387471,13217100202,03070101,Upper Oconee,GA,2.0,Metropolitan high commuting,Metropolitan,145.3,6002,95691.0,36.4,1.5,68.1,18.3,5.3,0.0 +curated/1056658555,49035111906,16020204,Jordan,UT,1.0,Metropolitan core,Metropolitan,11527.8,4647,66097.0,27.0,13.9,57.7,11.8,16.8,4.1 +curated/10567817971,37063001501,03030002,Haw,NC,1.0,Metropolitan core,Metropolitan,3243.6,3333,,100.0,,53.9,19.1,6.7,16.9 +curated/1057230915,41049970101,17070101,Middle Columbia-Lake Wallula,"OR,WA",10.0,Rural area,Rural,19.9,5396,68594.0,7.6,14.8,26.6,1.2,69.6,0.4 +curated/1059030596,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/1059036248,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/1059037050,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/1059037051,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/10648552506,47145980100,06010207,Lower Clinch,TN,10.0,Rural area,Rural,0.0,0,,,,,,, +curated/1069388067,45015020707,03050201,Cooper,SC,1.0,Metropolitan core,Metropolitan,347.1,7041,80567.0,26.5,6.3,53.0,29.2,8.4,1.6 +curated/1069388075,45015020707,03050201,Cooper,SC,1.0,Metropolitan core,Metropolitan,347.1,7041,80567.0,26.5,6.3,53.0,29.2,8.4,1.6 +curated/1069388095,45015020707,03050201,Cooper,SC,1.0,Metropolitan core,Metropolitan,347.1,7041,80567.0,26.5,6.3,53.0,29.2,8.4,1.6 +curated/1069388156,45015020707,03050201,Cooper,SC,1.0,Metropolitan core,Metropolitan,347.1,7041,80567.0,26.5,6.3,53.0,29.2,8.4,1.6 +curated/1069388186,45015020707,03050201,Cooper,SC,1.0,Metropolitan core,Metropolitan,347.1,7041,80567.0,26.5,6.3,53.0,29.2,8.4,1.6 +curated/1069388211,45015020707,03050201,Cooper,SC,1.0,Metropolitan core,Metropolitan,347.1,7041,80567.0,26.5,6.3,53.0,29.2,8.4,1.6 +curated/1070895993,13217100202,03070101,Upper Oconee,GA,2.0,Metropolitan high commuting,Metropolitan,145.3,6002,95691.0,36.4,1.5,68.1,18.3,5.3,0.0 +curated/1070895994,13217100202,03070101,Upper Oconee,GA,2.0,Metropolitan high commuting,Metropolitan,145.3,6002,95691.0,36.4,1.5,68.1,18.3,5.3,0.0 +curated/1071772119,53017950300,17020010,Upper Columbia-Entiat,WA,1.0,Metropolitan core,Metropolitan,102.8,7973,83618.0,19.8,7.7,62.7,0.5,31.9,0.3 +curated/1071774674,53017950300,17020010,Upper Columbia-Entiat,WA,1.0,Metropolitan core,Metropolitan,102.8,7973,83618.0,19.8,7.7,62.7,0.5,31.9,0.3 +curated/1073720208,19155031900,10230006,Big Papillion-Mosquito,"IA,NE",2.0,Metropolitan high commuting,Metropolitan,128.8,3385,93393.0,34.3,2.8,93.9,0.0,1.9,0.4 +curated/1073720209,19155031900,10230006,Big Papillion-Mosquito,"IA,NE",2.0,Metropolitan high commuting,Metropolitan,128.8,3385,93393.0,34.3,2.8,93.9,0.0,1.9,0.4 +curated/1073720210,19155031900,10230006,Big Papillion-Mosquito,"IA,NE",2.0,Metropolitan high commuting,Metropolitan,128.8,3385,93393.0,34.3,2.8,93.9,0.0,1.9,0.4 +curated/1073720211,19155031900,10230006,Big Papillion-Mosquito,"IA,NE",2.0,Metropolitan high commuting,Metropolitan,128.8,3385,93393.0,34.3,2.8,93.9,0.0,1.9,0.4 +curated/1073720213,19155031900,10230006,Big Papillion-Mosquito,"IA,NE",2.0,Metropolitan high commuting,Metropolitan,128.8,3385,93393.0,34.3,2.8,93.9,0.0,1.9,0.4 +curated/1073720214,19155031900,10230006,Big Papillion-Mosquito,"IA,NE",2.0,Metropolitan high commuting,Metropolitan,128.8,3385,93393.0,34.3,2.8,93.9,0.0,1.9,0.4 +curated/1073720215,19155031900,10230006,Big Papillion-Mosquito,"IA,NE",2.0,Metropolitan high commuting,Metropolitan,128.8,3385,93393.0,34.3,2.8,93.9,0.0,1.9,0.4 +curated/1073720216,19155031900,10230006,Big Papillion-Mosquito,"IA,NE",2.0,Metropolitan high commuting,Metropolitan,128.8,3385,93393.0,34.3,2.8,93.9,0.0,1.9,0.4 +curated/1073720217,19155031900,10230006,Big Papillion-Mosquito,"IA,NE",2.0,Metropolitan high commuting,Metropolitan,128.8,3385,93393.0,34.3,2.8,93.9,0.0,1.9,0.4 +curated/1073720218,19155031900,10230006,Big Papillion-Mosquito,"IA,NE",2.0,Metropolitan high commuting,Metropolitan,128.8,3385,93393.0,34.3,2.8,93.9,0.0,1.9,0.4 +curated/1073720219,19155031900,10230006,Big Papillion-Mosquito,"IA,NE",2.0,Metropolitan high commuting,Metropolitan,128.8,3385,93393.0,34.3,2.8,93.9,0.0,1.9,0.4 +curated/1073720220,19155031900,10230006,Big Papillion-Mosquito,"IA,NE",2.0,Metropolitan high commuting,Metropolitan,128.8,3385,93393.0,34.3,2.8,93.9,0.0,1.9,0.4 +curated/1073720221,19155031900,10230006,Big Papillion-Mosquito,"IA,NE",2.0,Metropolitan high commuting,Metropolitan,128.8,3385,93393.0,34.3,2.8,93.9,0.0,1.9,0.4 +curated/1075278060,19181020300,07100008,Lake Red Rock,IA,2.0,Metropolitan high commuting,Metropolitan,66.0,3687,116010.0,35.2,8.4,89.7,2.0,5.2,1.1 +curated/1075278061,19049050812,07100006,North Raccoon,IA,1.0,Metropolitan core,Metropolitan,231.4,5305,107083.0,63.3,18.4,74.4,14.0,2.4,4.9 +curated/1075278062,19049050812,07100006,North Raccoon,IA,1.0,Metropolitan core,Metropolitan,231.4,5305,107083.0,63.3,18.4,74.4,14.0,2.4,4.9 +curated/10780794741,06075018000,18050004,San Francisco Bay,CA,1.0,Metropolitan core,Metropolitan,13200.9,3492,212439.0,61.9,18.5,31.3,6.7,26.5,29.5 +curated/10796113031,04013216816,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,1104.1,6860,107225.0,61.5,7.0,80.6,1.8,10.4,4.9 +curated/10796113033,04013216816,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,1104.1,6860,107225.0,61.5,7.0,80.6,1.8,10.4,4.9 +curated/10798644674,04013216816,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,1104.1,6860,107225.0,61.5,7.0,80.6,1.8,10.4,4.9 +curated/1080170580,41067032603,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,1061.1,6723,143953.0,51.2,2.2,64.0,4.0,20.9,3.5 +curated/1081973944,48029171923,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,6607.2,9791,78647.0,29.0,8.3,17.3,9.8,62.2,2.7 +curated/1083841125,08041004501,11020003,Fountain,CO,1.0,Metropolitan core,Metropolitan,1133.7,4290,59182.0,12.7,9.6,46.5,6.6,40.2,2.3 +curated/1085608797,12057011017,03100205,Hillsborough,FL,1.0,Metropolitan core,Metropolitan,589.5,2162,104345.0,67.1,21.1,49.0,13.0,17.9,14.5 +curated/10880725408,06013328000,18050001,Suisun Bay,CA,1.0,Metropolitan core,Metropolitan,5768.8,2837,53737.0,45.7,26.4,37.9,7.0,30.5,19.7 +curated/1088203906,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/1088203907,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/1088241977,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/1090837713,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/10910879064,17031330101,04040002,Pike-Root,"IL,WI",1.0,Metropolitan core,Metropolitan,6316.3,4821,171388.0,87.9,10.0,52.0,7.8,4.6,28.6 +curated/1235255415,35013001203,13030102,El Paso-Las Cruces,"MX,NM,TX",1.0,Metropolitan core,Metropolitan,4163.6,4560,37167.0,47.9,31.9,38.6,3.6,50.0,5.5 +curated/10910879065,17031330101,04040002,Pike-Root,"IL,WI",1.0,Metropolitan core,Metropolitan,6316.3,4821,171388.0,87.9,10.0,52.0,7.8,4.6,28.6 +curated/1091128478,04013061058,15070102,Aqua Fria,AZ,2.0,Metropolitan high commuting,Metropolitan,263.4,3990,100017.0,34.9,6.9,51.6,7.0,29.8,2.9 +curated/1092757323,31019969203,10200102,Wood,NE,4.0,Micropolitan core,Micropolitan,374.6,6487,82069.0,40.5,7.3,83.3,0.1,8.7,5.6 +curated/10938672218,04013216860,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,1667.5,2417,84250.0,65.7,5.5,71.9,0.0,7.0,9.9 +curated/10945121336,17031839100,07120003,Chicago,"IL,IN",1.0,Metropolitan core,Metropolitan,19356.1,8355,132361.0,80.6,9.0,44.2,9.4,16.3,27.9 +curated/1097502168,13097080105,03130002,Middle Chattahoochee-Lake Harding,"AL,GA",1.0,Metropolitan core,Metropolitan,375.6,4442,114688.0,51.4,10.4,5.4,89.4,2.7,1.5 +curated/11018926315,04013216845,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,1307.6,3673,88875.0,57.9,8.3,74.4,3.7,15.2,4.3 +curated/1210199368,32031003501,16050102,Truckee,"CA,NV",2.0,Metropolitan high commuting,Metropolitan,0.8,4169,102295.0,38.3,8.6,70.7,2.2,8.6,0.9 +curated/1103333136,47125102010,05130206,Red,"KY,TN",1.0,Metropolitan core,Metropolitan,551.0,5362,79931.0,27.5,13.9,54.1,21.4,12.1,5.1 +curated/1103333137,47125102010,05130206,Red,"KY,TN",1.0,Metropolitan core,Metropolitan,551.0,5362,79931.0,27.5,13.9,54.1,21.4,12.1,5.1 +curated/1106454555,51107611702,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1247.2,2417,174183.0,68.2,0.6,36.0,16.3,14.8,31.6 +curated/1109643936,36063021700,04120104,Niagara,"CN,NY",1.0,Metropolitan core,Metropolitan,1731.6,3288,45617.0,7.9,18.9,51.5,16.3,17.4,0.7 +curated/11098469355,17031839100,07120003,Chicago,"IL,IN",1.0,Metropolitan core,Metropolitan,19356.1,8355,132361.0,80.6,9.0,44.2,9.4,16.3,27.9 +curated/1109881281,42091206006,02040203,Schuylkill,PA,1.0,Metropolitan core,Metropolitan,1873.3,3323,84922.0,54.4,5.0,91.9,3.0,1.7,2.0 +curated/110ee06e426b6d92ddc3bbd7a5c87d77,13097080105,03130002,Middle Chattahoochee-Lake Harding,"AL,GA",1.0,Metropolitan core,Metropolitan,375.6,4442,114688.0,51.4,10.4,5.4,89.4,2.7,1.5 +curated/11113161710,04013616500,15070102,Aqua Fria,AZ,1.0,Metropolitan core,Metropolitan,4939.7,4416,83342.0,20.1,17.5,53.3,1.6,37.3,1.3 +curated/1173569101,19049050812,07100006,North Raccoon,IA,1.0,Metropolitan core,Metropolitan,231.4,5305,107083.0,63.3,18.4,74.4,14.0,2.4,4.9 +curated/1114969101,41067032603,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,1061.1,6723,143953.0,51.2,2.2,64.0,4.0,20.9,3.5 +curated/11167641842,24005404101,02060003,Gunpowder-Patapsco,"MD,PA",1.0,Metropolitan core,Metropolitan,1510.0,6932,104970.0,54.3,7.4,40.7,40.6,6.6,7.4 +curated/1116775094,32029970200,16050102,Truckee,"CA,NV",2.0,Metropolitan high commuting,Metropolitan,15.6,4140,93409.0,31.2,7.1,76.5,2.2,12.8,1.3 +curated/1116775095,32029970200,16050102,Truckee,"CA,NV",2.0,Metropolitan high commuting,Metropolitan,15.6,4140,93409.0,31.2,7.1,76.5,2.2,12.8,1.3 +curated/11168593074,24510040100,02060003,Gunpowder-Patapsco,"MD,PA",1.0,Metropolitan core,Metropolitan,14850.6,6387,63495.0,67.0,17.8,31.6,41.9,8.3,11.0 +curated/11168593094,24510240100,02060003,Gunpowder-Patapsco,"MD,PA",1.0,Metropolitan core,Metropolitan,5253.7,3662,130219.0,78.6,3.8,77.6,7.3,6.4,1.2 +curated/1121188409,49035102600,16020204,Jordan,UT,1.0,Metropolitan core,Metropolitan,4642.5,4068,57658.0,31.5,15.6,57.3,0.7,22.7,11.4 +curated/1121592786,48029171928,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,4340.9,6436,131661.0,46.6,6.0,22.5,10.8,63.2,0.7 +curated/1123249721,51107611018,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1671.9,4705,93315.0,57.8,14.0,70.2,4.8,10.1,12.0 +curated/1124864831,51107611812,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,984.4,4318,166288.0,62.4,5.8,24.6,16.2,12.3,34.3 +curated/1126159710,41059950900,17070103,Umatilla,OR,5.0,Micropolitan high commuting,Micropolitan,191.4,5480,72465.0,20.8,17.4,49.3,0.7,42.2,1.6 +curated/1126159711,41059950900,17070103,Umatilla,OR,5.0,Micropolitan high commuting,Micropolitan,191.4,5480,72465.0,20.8,17.4,49.3,0.7,42.2,1.6 +curated/1126159714,41059950900,17070103,Umatilla,OR,5.0,Micropolitan high commuting,Micropolitan,191.4,5480,72465.0,20.8,17.4,49.3,0.7,42.2,1.6 +curated/1126159715,41059950900,17070103,Umatilla,OR,5.0,Micropolitan high commuting,Micropolitan,191.4,5480,72465.0,20.8,17.4,49.3,0.7,42.2,1.6 +curated/1127951468,41059950800,17070103,Umatilla,OR,4.0,Micropolitan core,Micropolitan,256.5,7340,62259.0,5.9,16.1,63.2,1.0,31.5,0.2 +curated/1128589933,51107610604,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1552.0,6616,186125.0,66.9,3.2,61.6,13.2,10.6,7.3 +curated/1128589934,51107610604,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1552.0,6616,186125.0,66.9,3.2,61.6,13.2,10.6,7.3 +curated/1132632705,04013113601,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,6182.8,4133,67379.0,23.3,26.9,14.5,9.0,66.5,5.9 +curated/1133944585,17119403002,07140101,Cahokia-Joachim,"IL,MO",1.0,Metropolitan core,Metropolitan,2770.2,6955,112222.0,58.0,6.7,85.0,9.8,1.5,0.8 +curated/1134104431,51059481202,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,4329.8,6503,115365.0,47.0,5.9,35.5,8.7,35.4,13.1 +curated/1134911640,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/1134911641,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/1134911642,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/11365f95376f16820252d2e9a9f31503,06037207712,18070105,Los Angeles,CA,1.0,Metropolitan core,Metropolitan,30124.1,4967,63484.0,56.4,26.7,18.3,13.7,20.8,37.4 +curated/113789273671fc9fe13191488af484fc,34023000603,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,549.3,2243,151000.0,59.4,2.0,32.9,19.9,3.1,39.1 +curated/11400893880,08005006864,10190003,Middle South Platte-Cherry Creek,CO,1.0,Metropolitan core,Metropolitan,686.9,3501,126575.0,56.2,3.2,48.4,10.3,14.7,18.8 +curated/1143804764,24027606907,02060006,Patuxent,MD,1.0,Metropolitan core,Metropolitan,4168.6,6402,90578.0,34.2,8.1,19.0,37.7,27.5,10.1 +curated/1152747559,41013950200,17070305,Lower Crooked,OR,5.0,Micropolitan high commuting,Micropolitan,29.1,5072,83750.0,20.0,12.6,84.2,0.0,11.9,0.3 +curated/1152748037,41013950200,17070305,Lower Crooked,OR,5.0,Micropolitan high commuting,Micropolitan,29.1,5072,83750.0,20.0,12.6,84.2,0.0,11.9,0.3 +curated/1153935548,41067032700,17090010,Tualatin,OR,2.0,Metropolitan high commuting,Metropolitan,75.3,5890,130982.0,49.0,4.9,73.7,3.6,7.0,11.4 +curated/1154503131,39049006240,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,1000.9,5223,95482.0,60.4,4.5,68.4,0.0,12.2,15.2 +curated/1154503132,39049006240,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,1000.9,5223,95482.0,60.4,4.5,68.4,0.0,12.2,15.2 +curated/1154503133,39049006240,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,1000.9,5223,95482.0,60.4,4.5,68.4,0.0,12.2,15.2 +curated/1154636644,17043840201,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,1864.2,6189,121486.0,58.4,1.1,68.9,0.3,8.4,16.0 +curated/1160688107,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/1160814413,01089010704,06030002,Wheeler Lake,"AL,TN",1.0,Metropolitan core,Metropolitan,434.5,6752,86266.0,43.9,4.7,56.1,26.8,6.8,2.4 +curated/1160814415,01089010704,06030002,Wheeler Lake,"AL,TN",1.0,Metropolitan core,Metropolitan,434.5,6752,86266.0,43.9,4.7,56.1,26.8,6.8,2.4 +curated/1160814416,01089010704,06030002,Wheeler Lake,"AL,TN",1.0,Metropolitan core,Metropolitan,434.5,6752,86266.0,43.9,4.7,56.1,26.8,6.8,2.4 +curated/1161094246,51107611702,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1247.2,2417,174183.0,68.2,0.6,36.0,16.3,14.8,31.6 +curated/1161730862,51107611901,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1762.4,7113,250001.0,78.6,3.9,29.0,8.4,6.1,52.6 +curated/11666916913,04013319709,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,0.0,0,,,,,,, +curated/1173537116,53017950300,17020010,Upper Columbia-Entiat,WA,1.0,Metropolitan core,Metropolitan,102.8,7973,83618.0,19.8,7.7,62.7,0.5,31.9,0.3 +curated/1173537117,53017950300,17020010,Upper Columbia-Entiat,WA,1.0,Metropolitan core,Metropolitan,102.8,7973,83618.0,19.8,7.7,62.7,0.5,31.9,0.3 +curated/1173770902,51107611812,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,984.4,4318,166288.0,62.4,5.8,24.6,16.2,12.3,34.3 +curated/1173822721,53007961200,17020010,Upper Columbia-Entiat,WA,2.0,Metropolitan high commuting,Metropolitan,37.2,4381,91228.0,29.9,5.0,66.9,0.9,26.5,0.0 +curated/1173822722,53007961200,17020010,Upper Columbia-Entiat,WA,2.0,Metropolitan high commuting,Metropolitan,37.2,4381,91228.0,29.9,5.0,66.9,0.9,26.5,0.0 +curated/1173822723,53007961200,17020010,Upper Columbia-Entiat,WA,2.0,Metropolitan high commuting,Metropolitan,37.2,4381,91228.0,29.9,5.0,66.9,0.9,26.5,0.0 +curated/1177397497,04013422643,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,2946.2,5938,108833.0,30.2,4.4,69.6,3.0,17.7,1.1 +curated/1177794153,48113014159,12030103,Elm Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,1313.4,3234,232389.0,74.5,0.2,3.0,0.3,5.9,89.7 +curated/1312801354,31153010629,10230006,Big Papillion-Mosquito,"IA,NE",1.0,Metropolitan core,Metropolitan,292.5,4420,110182.0,58.6,2.3,86.1,0.7,8.0,4.5 +curated/1177893426,51107611702,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1247.2,2417,174183.0,68.2,0.6,36.0,16.3,14.8,31.6 +curated/1177975782,56021001902,10190009,Crow,"CO,WY",2.0,Metropolitan high commuting,Metropolitan,4.9,4777,108833.0,38.7,2.6,82.7,0.0,6.3,2.1 +curated/1177975783,56021001902,10190009,Crow,"CO,WY",2.0,Metropolitan high commuting,Metropolitan,4.9,4777,108833.0,38.7,2.6,82.7,0.0,6.3,2.1 +curated/1177975784,56021001902,10190009,Crow,"CO,WY",2.0,Metropolitan high commuting,Metropolitan,4.9,4777,108833.0,38.7,2.6,82.7,0.0,6.3,2.1 +curated/1177975788,56021001902,10190009,Crow,"CO,WY",2.0,Metropolitan high commuting,Metropolitan,4.9,4777,108833.0,38.7,2.6,82.7,0.0,6.3,2.1 +curated/1177975789,56021001902,10190009,Crow,"CO,WY",2.0,Metropolitan high commuting,Metropolitan,4.9,4777,108833.0,38.7,2.6,82.7,0.0,6.3,2.1 +curated/1178609569,42091206104,02040203,Schuylkill,PA,1.0,Metropolitan core,Metropolitan,1135.8,4124,180313.0,67.3,2.5,80.0,0.4,2.7,14.5 +curated/1179468c9b333a88653541c2b6662056,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/1181391920,51107611804,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,2433.4,8353,196742.0,69.8,4.5,28.1,5.8,12.3,43.1 +curated/1181391921,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/1181391922,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/11815482844,26115833100,04100001,Ottawa-Stony,"MI,OH",1.0,Metropolitan core,Metropolitan,552.2,5041,76128.0,17.9,5.4,91.5,1.8,1.7,0.9 +curated/1184066765,29047021900,10240012,Platte,"IA,MO",2.0,Metropolitan high commuting,Metropolitan,143.5,6710,126711.0,34.8,5.4,92.9,2.2,2.1,0.2 +curated/1188680247,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/1188680253,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/1188680254,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/1210421871,39099811302,05030103,Mahoning,"OH,PA",1.0,Metropolitan core,Metropolitan,1451.6,3066,60429.0,13.2,11.9,73.4,4.3,6.9,0.0 +curated/1188680255,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/1188691867,51107611019,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,3339.9,5633,220156.0,72.6,1.7,53.5,10.0,7.1,26.4 +curated/1188691868,51107611019,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,3339.9,5633,220156.0,72.6,1.7,53.5,10.0,7.1,26.4 +curated/1188691869,51107611019,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,3339.9,5633,220156.0,72.6,1.7,53.5,10.0,7.1,26.4 +curated/1188715508,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/1188715510,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/1191496040,35061980300,13020203,Rio Grande-Albuquerque,NM,10.0,Rural area,Rural,1.6,0,,,,,,, +curated/11924506303,06065040902,18070203,Santa Ana,CA,1.0,Metropolitan core,Metropolitan,1788.3,5166,98144.0,24.7,6.1,32.8,8.4,44.0,9.6 +curated/11938614120,04013319709,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,0.0,0,,,,,,, +curated/11938631189,04013319710,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,1143.8,2425,72668.0,40.9,31.9,41.5,7.5,28.7,5.2 +curated/1193914601,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/1193914602,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/11bc1c634ec28ec84eb32ad825c5f9c5,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/1202051225,19153010703,07100008,Lake Red Rock,IA,1.0,Metropolitan core,Metropolitan,2397.1,5653,73438.0,39.9,11.1,88.1,6.1,5.4,0.3 +curated/1207052719,13135050224,03130001,Upper Chattahoochee,GA,1.0,Metropolitan core,Metropolitan,1343.3,4062,122794.0,63.6,6.1,52.8,11.9,5.6,27.1 +curated/1210199365,32031003501,16050102,Truckee,"CA,NV",2.0,Metropolitan high commuting,Metropolitan,0.8,4169,102295.0,38.3,8.6,70.7,2.2,8.6,0.9 +curated/1210199366,32031003501,16050102,Truckee,"CA,NV",2.0,Metropolitan high commuting,Metropolitan,0.8,4169,102295.0,38.3,8.6,70.7,2.2,8.6,0.9 +curated/1210199367,32031003501,16050102,Truckee,"CA,NV",2.0,Metropolitan high commuting,Metropolitan,0.8,4169,102295.0,38.3,8.6,70.7,2.2,8.6,0.9 +curated/1210515186,47187050307,05130204,Harpeth,TN,1.0,Metropolitan core,Metropolitan,1427.3,3900,86289.0,59.5,3.2,84.0,3.3,4.3,5.2 +curated/12112201416,39017011123,05090203,Middle Ohio-Laughery,"IN,KY,OH",1.0,Metropolitan core,Metropolitan,802.5,4980,58472.0,30.9,24.2,45.6,29.9,9.7,8.7 +curated/12112236372,08031001707,10190003,Middle South Platte-Cherry Creek,CO,1.0,Metropolitan core,Metropolitan,10045.4,1931,130568.0,74.2,8.0,78.6,2.9,8.9,2.4 +curated/12112238944,48113010001,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,921.1,2299,34063.0,7.5,34.3,20.1,46.7,28.1,2.9 +curated/12112253571,32003000700,15010015,Las Vegas Wash,NV,1.0,Metropolitan core,Metropolitan,5026.7,3166,38229.0,13.2,37.1,37.6,32.2,21.5,3.3 +curated/12112266917,12031015926,03080103,Lower St. Johns,FL,1.0,Metropolitan core,Metropolitan,3234.3,9502,71509.0,59.0,7.8,51.1,16.4,8.4,18.1 +curated/12112270180,08005080400,10190003,Middle South Platte-Cherry Creek,CO,1.0,Metropolitan core,Metropolitan,5354.6,4185,99286.0,51.7,4.9,67.1,11.1,16.0,1.9 +curated/12112295055,47187050306,05130204,Harpeth,TN,1.0,Metropolitan core,Metropolitan,607.7,2120,126618.0,63.1,1.2,76.8,1.8,4.1,14.4 +curated/12112361725,37183053609,03020201,Upper Neuse,NC,1.0,Metropolitan core,Metropolitan,283.3,2404,95231.0,61.4,10.8,34.9,16.9,4.1,33.6 +curated/12112380995,12057011611,03100206,Tampa Bay,FL,1.0,Metropolitan core,Metropolitan,2339.7,4008,72304.0,27.3,11.1,31.4,2.8,56.6,7.0 +curated/1238705019,39035156102,04110002,Cuyahoga,OH,1.0,Metropolitan core,Metropolitan,1013.5,6014,115211.0,48.0,2.1,90.9,2.2,1.5,1.8 +curated/1320683840,32029970200,16050102,Truckee,"CA,NV",2.0,Metropolitan high commuting,Metropolitan,15.6,4140,93409.0,31.2,7.1,76.5,2.2,12.8,1.3 +curated/12112382397,49049000601,16020201,Utah Lake,UT,1.0,Metropolitan core,Metropolitan,1230.3,4534,86250.0,50.6,8.4,81.6,0.0,11.2,3.6 +curated/1211362828,55021970300,07070003,Castle Rock,WI,7.0,Small town core,Small town,56.2,4319,70475.0,23.9,10.2,84.3,2.2,9.1,0.7 +curated/1213758201,47165020602,05130201,Lower Cumberland-Old Hickory Lake,TN,2.0,Metropolitan high commuting,Metropolitan,99.5,4993,99247.0,28.0,8.1,88.5,4.5,2.7,0.5 +curated/1219083552,17031770400,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,2189.4,4625,85745.0,27.0,9.4,63.3,3.4,25.6,6.2 +curated/1219083554,17031770400,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,2189.4,4625,85745.0,27.0,9.4,63.3,3.4,25.6,6.2 +curated/1221862807,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/1222007663,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +curated/1222134968,51107611812,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,984.4,4318,166288.0,62.4,5.8,24.6,16.2,12.3,34.3 +curated/12221811811,36061003300,02030101,Lower Hudson,"CT,NJ,NY",1.0,Metropolitan core,Metropolitan,48953.1,5951,250001.0,94.4,3.5,67.9,0.9,5.7,9.5 +curated/12221880448,36061003300,02030101,Lower Hudson,"CT,NJ,NY",1.0,Metropolitan core,Metropolitan,48953.1,5951,250001.0,94.4,3.5,67.9,0.9,5.7,9.5 +curated/1226436454,19155031400,10230006,Big Papillion-Mosquito,"IA,NE",1.0,Metropolitan core,Metropolitan,499.2,3533,65652.0,22.9,11.8,78.9,1.0,15.2,2.1 +curated/1226436457,19155031400,10230006,Big Papillion-Mosquito,"IA,NE",1.0,Metropolitan core,Metropolitan,499.2,3533,65652.0,22.9,11.8,78.9,1.0,15.2,2.1 +curated/1226439731,41049970101,17070101,Middle Columbia-Lake Wallula,"OR,WA",10.0,Rural area,Rural,19.9,5396,68594.0,7.6,14.8,26.6,1.2,69.6,0.4 +curated/1227539675,51153901503,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",2.0,Metropolitan high commuting,Metropolitan,192.3,5695,185917.0,50.5,0.4,75.2,3.9,10.5,3.8 +curated/1227550179,48439106002,12030102,Lower West Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,724.2,3888,69139.0,11.8,12.2,7.2,45.8,45.2,0.0 +curated/1227604493,06085512032,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,3042.2,3754,173750.0,63.7,12.3,27.4,0.7,27.0,40.1 +curated/1227612684,51153901303,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,3084.1,5264,190417.0,54.5,7.0,49.4,9.5,26.9,8.9 +curated/1227614670,51153901304,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,487.1,3172,136842.0,36.7,4.4,64.3,3.3,17.8,4.3 +curated/1227682824,04013812200,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,3785.5,7847,120513.0,60.8,8.6,45.4,3.7,20.7,20.1 +curated/1227684019,04013812200,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,3785.5,7847,120513.0,60.8,8.6,45.4,3.7,20.7,20.1 +curated/1227684020,04013812200,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,3785.5,7847,120513.0,60.8,8.6,45.4,3.7,20.7,20.1 +curated/1227777116,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/1227883682,19153010703,07100008,Lake Red Rock,IA,1.0,Metropolitan core,Metropolitan,2397.1,5653,73438.0,39.9,11.1,88.1,6.1,5.4,0.3 +curated/1229e06c7db5df53d337b8fc2ff4d99e,53033027200,17110013,Duwamish,WA,1.0,Metropolitan core,Metropolitan,2338.8,3086,79871.0,19.7,12.9,33.6,5.9,32.3,20.8 +curated/12331366645,13121011901,03130001,Upper Chattahoochee,GA,1.0,Metropolitan core,Metropolitan,4101.4,2184,77838.0,37.6,23.3,24.3,58.9,5.9,7.8 +curated/1234741561,48139060206,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,1560.6,7521,75135.0,21.7,5.9,33.1,33.4,22.4,0.5 +curated/1235150788,31153010629,10230006,Big Papillion-Mosquito,"IA,NE",1.0,Metropolitan core,Metropolitan,292.5,4420,110182.0,58.6,2.3,86.1,0.7,8.0,4.5 +curated/1237493975,31153010629,10230006,Big Papillion-Mosquito,"IA,NE",1.0,Metropolitan core,Metropolitan,292.5,4420,110182.0,58.6,2.3,86.1,0.7,8.0,4.5 +curated/1237494981,31153010629,10200202,Lower Platte,NE,1.0,Metropolitan core,Metropolitan,292.5,4420,110182.0,58.6,2.3,86.1,0.7,8.0,4.5 +osm/way/696992451,51153901418,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,2723.2,5331,130461.0,41.5,10.3,14.6,26.9,45.5,9.9 +curated/12387534800,35001001800,13020203,Rio Grande-Albuquerque,NM,1.0,Metropolitan core,Metropolitan,2855.7,2694,27168.0,44.5,28.9,34.9,15.1,33.7,4.9 +curated/1243089554,41067032603,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,1061.1,6723,143953.0,51.2,2.2,64.0,4.0,20.9,3.5 +curated/1243089555,41067032603,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,1061.1,6723,143953.0,51.2,2.2,64.0,4.0,20.9,3.5 +curated/12437277166,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/12452254071,34023000603,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,549.3,2243,151000.0,59.4,2.0,32.9,19.9,3.1,39.1 +curated/12471740457,34017019900,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,2689.2,5417,99341.0,61.2,4.7,27.4,3.9,27.0,39.8 +curated/1252196797,51059490104,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,745.1,3642,141250.0,47.4,5.2,38.9,0.9,36.8,20.0 +curated/1252196798,51059490104,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,745.1,3642,141250.0,47.4,5.2,38.9,0.9,36.8,20.0 +curated/1252196799,51107611804,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,2433.4,8353,196742.0,69.8,4.5,28.1,5.8,12.3,43.1 +curated/1252196800,51107611804,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,2433.4,8353,196742.0,69.8,4.5,28.1,5.8,12.3,43.1 +curated/1252196801,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +curated/1252196802,39089755601,05040006,Licking,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +curated/1252196803,39089755601,05040006,Licking,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +curated/1252196804,39089755601,05040006,Licking,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +curated/1252196805,39159050601,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,465.3,11920,196731.0,77.3,0.2,68.5,4.0,2.1,23.9 +curated/1252196806,39159050601,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,465.3,11920,196731.0,77.3,0.2,68.5,4.0,2.1,23.9 +curated/1252196807,39159050601,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,465.3,11920,196731.0,77.3,0.2,68.5,4.0,2.1,23.9 +curated/1252196808,39049007961,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,1960.2,5495,170833.0,71.2,1.0,70.1,6.5,4.4,15.3 +curated/1252196809,39049007961,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,1960.2,5495,170833.0,71.2,1.0,70.1,6.5,4.4,15.3 +curated/1252196810,39049007961,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,1960.2,5495,170833.0,71.2,1.0,70.1,6.5,4.4,15.3 +curated/1252196811,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +curated/1252196812,39049007211,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,690.8,4128,244141.0,76.5,3.8,80.5,4.5,1.5,6.4 +curated/1252196813,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +curated/1252196814,39049009590,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,316.3,5603,74337.0,20.7,16.8,76.2,10.2,1.1,5.3 +curated/1252196815,51153901421,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,900.1,5497,218958.0,52.1,2.3,52.8,11.4,18.2,14.8 +curated/1252196816,41049970102,17070101,Middle Columbia-Lake Wallula,"OR,WA",6.0,Micropolitan low commuting,Micropolitan,68.8,3915,72719.0,9.2,13.8,65.7,0.7,31.2,0.0 +curated/1252196817,41049970102,17070101,Middle Columbia-Lake Wallula,"OR,WA",6.0,Micropolitan low commuting,Micropolitan,68.8,3915,72719.0,9.2,13.8,65.7,0.7,31.2,0.0 +curated/1252196818,41049970102,17070101,Middle Columbia-Lake Wallula,"OR,WA",6.0,Micropolitan low commuting,Micropolitan,68.8,3915,72719.0,9.2,13.8,65.7,0.7,31.2,0.0 +curated/1252196819,41049970102,17070101,Middle Columbia-Lake Wallula,"OR,WA",6.0,Micropolitan low commuting,Micropolitan,68.8,3915,72719.0,9.2,13.8,65.7,0.7,31.2,0.0 +curated/1252196820,41059950800,17070101,Middle Columbia-Lake Wallula,"OR,WA",4.0,Micropolitan core,Micropolitan,256.5,7340,62259.0,5.9,16.1,63.2,1.0,31.5,0.2 +curated/1287260557,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/1276373853,41013950301,17070305,Lower Crooked,OR,3.0,Metropolitan low commuting,Metropolitan,22.0,3920,119495.0,34.7,12.1,95.1,0.0,0.9,0.4 +curated/1252196821,41059950800,17070101,Middle Columbia-Lake Wallula,"OR,WA",4.0,Micropolitan core,Micropolitan,256.5,7340,62259.0,5.9,16.1,63.2,1.0,31.5,0.2 +curated/1252196822,41059951100,17070103,Umatilla,OR,4.0,Micropolitan core,Micropolitan,311.9,6548,65136.0,17.7,6.9,44.6,2.9,44.4,1.3 +curated/1252196823,41059951100,17070103,Umatilla,OR,4.0,Micropolitan core,Micropolitan,311.9,6548,65136.0,17.7,6.9,44.6,2.9,44.4,1.3 +curated/1252196824,39045032501,05030204,Hocking,OH,2.0,Metropolitan high commuting,Metropolitan,74.3,3162,97264.0,22.6,8.7,95.4,0.3,1.3,2.2 +curated/1252196825,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/1252196826,51107611804,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,2433.4,8353,196742.0,69.8,4.5,28.1,5.8,12.3,43.1 +curated/1253282099,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/1253282100,31153010702,10200202,Lower Platte,NE,2.0,Metropolitan high commuting,Metropolitan,118.1,4050,104350.0,34.9,4.7,92.6,0.1,3.8,0.3 +curated/1253282101,31153010701,10200202,Lower Platte,NE,2.0,Metropolitan high commuting,Metropolitan,36.0,2421,134432.0,42.5,1.9,93.9,1.9,2.1,0.2 +curated/1253282102,31153010701,10200202,Lower Platte,NE,2.0,Metropolitan high commuting,Metropolitan,36.0,2421,134432.0,42.5,1.9,93.9,1.9,2.1,0.2 +curated/1253282103,19153010601,07100008,Lake Red Rock,IA,1.0,Metropolitan core,Metropolitan,234.9,2853,61118.0,13.8,17.1,92.5,1.5,2.3,1.2 +curated/1253282104,19153010601,07100008,Lake Red Rock,IA,1.0,Metropolitan core,Metropolitan,234.9,2853,61118.0,13.8,17.1,92.5,1.5,2.3,1.2 +curated/1254161871,21107970302,05140205,Tradewater,KY,4.0,Micropolitan core,Micropolitan,358.4,5609,70495.0,29.9,22.2,86.7,6.3,0.5,2.9 +curated/12550746951,06085506401,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,9825.4,4758,172134.0,62.0,6.8,37.7,6.2,25.6,24.9 +curated/1258702591,13097080105,03130002,Middle Chattahoochee-Lake Harding,"AL,GA",1.0,Metropolitan core,Metropolitan,375.6,4442,114688.0,51.4,10.4,5.4,89.4,2.7,1.5 +curated/1263819877,32003002979,15010015,Las Vegas Wash,NV,1.0,Metropolitan core,Metropolitan,1814.3,5093,84803.0,30.7,4.1,34.6,6.6,16.6,35.8 +curated/1276518679,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/1276518684,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/1276518687,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/1278541792,39153506800,05040001,Tuscarawas,OH,1.0,Metropolitan core,Metropolitan,1730.9,2103,25208.0,10.8,35.3,45.7,43.1,2.0,1.1 +curated/1280340212,51107611812,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,984.4,4318,166288.0,62.4,5.8,24.6,16.2,12.3,34.3 +curated/1280340213,51107611702,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1247.2,2417,174183.0,68.2,0.6,36.0,16.3,14.8,31.6 +curated/1280340214,51153901507,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,2388.6,2978,161458.0,43.4,6.6,47.4,8.2,20.8,14.0 +curated/1280340215,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/1280340216,51153901509,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",2.0,Metropolitan high commuting,Metropolitan,293.1,8086,202560.0,64.0,4.3,61.6,13.8,12.2,5.5 +curated/1280340217,51153901509,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",2.0,Metropolitan high commuting,Metropolitan,293.1,8086,202560.0,64.0,4.3,61.6,13.8,12.2,5.5 +curated/1280344148,39159050601,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,465.3,11920,196731.0,77.3,0.2,68.5,4.0,2.1,23.9 +curated/1280344149,41059950800,17070101,Middle Columbia-Lake Wallula,"OR,WA",4.0,Micropolitan core,Micropolitan,256.5,7340,62259.0,5.9,16.1,63.2,1.0,31.5,0.2 +curated/1280344150,41059950800,17070101,Middle Columbia-Lake Wallula,"OR,WA",4.0,Micropolitan core,Micropolitan,256.5,7340,62259.0,5.9,16.1,63.2,1.0,31.5,0.2 +curated/1280344151,41059950800,17070101,Middle Columbia-Lake Wallula,"OR,WA",4.0,Micropolitan core,Micropolitan,256.5,7340,62259.0,5.9,16.1,63.2,1.0,31.5,0.2 +curated/1287260555,51153901507,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,2388.6,2978,161458.0,43.4,6.6,47.4,8.2,20.8,14.0 +curated/1280344152,41059950900,17070103,Umatilla,OR,5.0,Micropolitan high commuting,Micropolitan,191.4,5480,72465.0,20.8,17.4,49.3,0.7,42.2,1.6 +curated/1280344153,41059950900,17070103,Umatilla,OR,5.0,Micropolitan high commuting,Micropolitan,191.4,5480,72465.0,20.8,17.4,49.3,0.7,42.2,1.6 +curated/1280344154,41049970102,17070101,Middle Columbia-Lake Wallula,"OR,WA",6.0,Micropolitan low commuting,Micropolitan,68.8,3915,72719.0,9.2,13.8,65.7,0.7,31.2,0.0 +curated/1280344155,41049970102,17070101,Middle Columbia-Lake Wallula,"OR,WA",6.0,Micropolitan low commuting,Micropolitan,68.8,3915,72719.0,9.2,13.8,65.7,0.7,31.2,0.0 +curated/1280344156,41049970102,17070101,Middle Columbia-Lake Wallula,"OR,WA",6.0,Micropolitan low commuting,Micropolitan,68.8,3915,72719.0,9.2,13.8,65.7,0.7,31.2,0.0 +curated/1280344157,41049970101,17070101,Middle Columbia-Lake Wallula,"OR,WA",10.0,Rural area,Rural,19.9,5396,68594.0,7.6,14.8,26.6,1.2,69.6,0.4 +curated/1281982556,39049009590,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,316.3,5603,74337.0,20.7,16.8,76.2,10.2,1.1,5.3 +curated/1281982572,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +curated/1282332209,13117130603,03130001,Upper Chattahoochee,GA,1.0,Metropolitan core,Metropolitan,1426.8,9299,176417.0,78.0,1.2,46.1,14.8,5.2,30.8 +curated/1282875386,56021001902,10190009,Crow,"CO,WY",2.0,Metropolitan high commuting,Metropolitan,4.9,4777,108833.0,38.7,2.6,82.7,0.0,6.3,2.1 +curated/1283698132,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/1283734104,04013061300,15070102,Aqua Fria,AZ,2.0,Metropolitan high commuting,Metropolitan,1417.8,2193,75268.0,5.8,7.3,25.1,3.9,66.4,1.1 +curated/1287260553,51153901421,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,900.1,5497,218958.0,52.1,2.3,52.8,11.4,18.2,14.8 +curated/1287260554,51153901507,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,2388.6,2978,161458.0,43.4,6.6,47.4,8.2,20.8,14.0 +curated/1287260556,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/1287260558,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/1287260560,19155031900,10230006,Big Papillion-Mosquito,"IA,NE",2.0,Metropolitan high commuting,Metropolitan,128.8,3385,93393.0,34.3,2.8,93.9,0.0,1.9,0.4 +curated/1287260561,19155031900,10230006,Big Papillion-Mosquito,"IA,NE",2.0,Metropolitan high commuting,Metropolitan,128.8,3385,93393.0,34.3,2.8,93.9,0.0,1.9,0.4 +curated/1292169104,39035124201,04110002,Cuyahoga,OH,1.0,Metropolitan core,Metropolitan,4089.2,2637,52344.0,11.0,14.5,51.9,12.5,31.0,1.6 +curated/1292897241,51107611028,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,694.5,6124,250001.0,85.0,3.0,36.7,9.9,5.6,42.4 +curated/1292897242,51107611028,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,694.5,6124,250001.0,85.0,3.0,36.7,9.9,5.6,42.4 +curated/1292897243,51107611028,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,694.5,6124,250001.0,85.0,3.0,36.7,9.9,5.6,42.4 +curated/1294595615,47165020602,05130201,Lower Cumberland-Old Hickory Lake,TN,2.0,Metropolitan high commuting,Metropolitan,99.5,4993,99247.0,28.0,8.1,88.5,4.5,2.7,0.5 +curated/1296163129,06099000602,18040010,Upper Stanislaus,CA,1.0,Metropolitan core,Metropolitan,2007.3,3075,97670.0,19.0,13.8,33.6,3.6,44.9,2.9 +curated/1296723872,48029191814,12100301,Upper San Antonio,TX,1.0,Metropolitan core,Metropolitan,1767.1,6158,132000.0,52.3,5.7,43.6,5.3,36.1,2.6 +curated/12e483f07427eeafc0662d4498c9668b,06059052502,18070204,Newport Bay,CA,1.0,Metropolitan core,Metropolitan,5233.0,5675,150568.0,57.2,2.9,41.7,2.2,20.1,30.6 +curated/12ec1d2a1cfd796f43c7c34e24443e1c,12086003710,03090206,Florida Southeast Coast,FL,1.0,Metropolitan core,Metropolitan,16971.4,8380,101946.0,59.1,16.4,24.5,3.3,58.9,4.4 +curated/1300765126,48113019042,12030106,East Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,3250.1,9251,86795.0,46.4,19.6,31.5,40.5,8.6,16.7 +curated/1304357577,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/1307072785,27137000400,04010102,Beaver-Lester,MN,1.0,Metropolitan core,Metropolitan,695.6,5434,79375.0,54.2,16.7,88.1,1.6,1.9,4.1 +curated/1307920829,37119005533,03040105,Rocky,"NC,SC",1.0,Metropolitan core,Metropolitan,575.6,1469,78605.0,56.2,13.6,25.9,52.1,4.8,15.9 +curated/1309123033,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/1309123034,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/130c2dd59cc51575f184913bfb80fd1e,48085031418,12030106,East Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,2048.3,7120,208908.0,70.6,4.5,30.5,5.9,11.5,40.7 +curated/130da7ff1a2629120d197de42aa4e7ef,06075018000,18050004,San Francisco Bay,CA,1.0,Metropolitan core,Metropolitan,13200.9,3492,212439.0,61.9,18.5,31.3,6.7,26.5,29.5 +curated/1310628998,48029191405,12100301,Upper San Antonio,TX,1.0,Metropolitan core,Metropolitan,2437.5,8781,107008.0,63.1,4.2,50.2,6.5,37.2,2.0 +curated/1312792611,17037001500,07090006,Kishwaukee,"IL,WI",1.0,Metropolitan core,Metropolitan,258.2,4042,57122.0,16.9,9.2,52.6,3.6,40.7,0.7 +curated/1312792612,17037001500,07090006,Kishwaukee,"IL,WI",1.0,Metropolitan core,Metropolitan,258.2,4042,57122.0,16.9,9.2,52.6,3.6,40.7,0.7 +curated/1312792613,17037001500,07090006,Kishwaukee,"IL,WI",1.0,Metropolitan core,Metropolitan,258.2,4042,57122.0,16.9,9.2,52.6,3.6,40.7,0.7 +curated/1312795639,47165020602,05130201,Lower Cumberland-Old Hickory Lake,TN,2.0,Metropolitan high commuting,Metropolitan,99.5,4993,99247.0,28.0,8.1,88.5,4.5,2.7,0.5 +curated/1312795640,47165020602,05130201,Lower Cumberland-Old Hickory Lake,TN,2.0,Metropolitan high commuting,Metropolitan,99.5,4993,99247.0,28.0,8.1,88.5,4.5,2.7,0.5 +curated/1313995085,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/1314010354,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/1314012931,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/1314355599,32003002979,15010015,Las Vegas Wash,NV,1.0,Metropolitan core,Metropolitan,1814.3,5093,84803.0,30.7,4.1,34.6,6.6,16.6,35.8 +curated/1315636714,04013113601,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,6182.8,4133,67379.0,23.3,26.9,14.5,9.0,66.5,5.9 +curated/1317733642,51107980100,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,3.3,0,,,,,,, +curated/1317915930,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/1318322071,19181020300,07100008,Lake Red Rock,IA,2.0,Metropolitan high commuting,Metropolitan,66.0,3687,116010.0,35.2,8.4,89.7,2.0,5.2,1.1 +curated/1318322073,19181020300,07100008,Lake Red Rock,IA,2.0,Metropolitan high commuting,Metropolitan,66.0,3687,116010.0,35.2,8.4,89.7,2.0,5.2,1.1 +curated/1318322780,19049050902,07100006,North Raccoon,IA,2.0,Metropolitan high commuting,Metropolitan,80.2,8221,129484.0,56.7,1.7,89.4,0.0,4.0,3.1 +curated/1318653348,48139060206,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,1560.6,7521,75135.0,21.7,5.9,33.1,33.4,22.4,0.5 +curated/1318653349,48139060206,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,1560.6,7521,75135.0,21.7,5.9,33.1,33.4,22.4,0.5 +curated/1318653350,48139060206,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,1560.6,7521,75135.0,21.7,5.9,33.1,33.4,22.4,0.5 +curated/1319637945,51107611812,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,984.4,4318,166288.0,62.4,5.8,24.6,16.2,12.3,34.3 +curated/1319724559,39041012100,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,683.4,10816,206563.0,72.8,0.8,74.5,0.2,2.3,18.8 +curated/1320038649,45051051000,03040206,Waccamaw,"NC,SC",1.0,Metropolitan core,Metropolitan,2353.4,7613,76864.0,40.7,5.4,86.4,3.2,6.2,0.3 +curated/1339825480,31055007317,10230006,Big Papillion-Mosquito,"IA,NE",1.0,Metropolitan core,Metropolitan,190.1,4802,102781.0,36.7,3.5,67.3,7.5,11.2,6.4 +curated/1340746574,35061980300,13020203,Rio Grande-Albuquerque,NM,10.0,Rural area,Rural,1.6,0,,,,,,, +curated/1343100173,27053026812,07010206,Twin Cities,MN,1.0,Metropolitan core,Metropolitan,1516.5,8445,113860.0,46.2,4.5,52.8,18.9,3.3,16.1 +curated/1343760339,53025010500,17020015,Lower Crab,WA,10.0,Rural area,Rural,12.1,3090,98806.0,21.9,7.2,40.3,1.9,55.3,0.0 +curated/1343769701,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/1343774537,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/1344366214,48029172002,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,1403.4,32434,108359.0,30.8,3.7,22.9,14.8,52.7,4.0 +curated/1344369104,48029171926,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,2544.1,3039,45787.0,24.9,16.0,22.2,20.9,44.3,8.7 +curated/1344369111,48029172002,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,1403.4,32434,108359.0,30.8,3.7,22.9,14.8,52.7,4.0 +curated/1344376231,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/1344376232,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/1344897823,51153901504,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1454.5,4892,113115.0,56.1,3.2,65.7,15.2,6.3,9.2 +curated/1344901575,51107611601,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,3760.9,4754,144960.0,50.1,6.9,34.3,4.6,41.1,14.9 +curated/1346610234,39017000300,05080002,"Lower Great Miami, Indiana, Ohio","IN,OH",1.0,Metropolitan core,Metropolitan,3428.7,3618,54688.0,7.4,33.2,29.9,24.4,43.3,0.0 +curated/3406476814,12086980200,03090206,Florida Southeast Coast,FL,1.0,Metropolitan core,Metropolitan,0.0,0,,,,,,, +curated/1356594646,04013422643,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,2946.2,5938,108833.0,30.2,4.4,69.6,3.0,17.7,1.1 +curated/1357825755,04013111203,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,10025.0,2179,50862.0,35.2,20.5,19.2,40.2,21.8,3.1 +curated/1383b770fc262a5d5a064a357a037f54,48113010003,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,377.8,3333,83981.0,67.7,20.3,38.3,24.7,24.8,4.8 +curated/147cb40e4cb89494b7d36048d6b40dd2,13121011901,03130002,Middle Chattahoochee-Lake Harding,"AL,GA",1.0,Metropolitan core,Metropolitan,4101.4,2184,77838.0,37.6,23.3,24.3,58.9,5.9,7.8 +curated/15779cf043fceafdea1cb8002ed4a3fd,06067009010,18020111,Lower American,CA,1.0,Metropolitan core,Metropolitan,3188.8,6830,85556.0,32.7,12.0,38.6,26.3,18.0,10.7 +curated/15836f91b5d0b96d496875cd71bf395c,04013216845,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,1307.6,3673,88875.0,57.9,8.3,74.4,3.7,15.2,4.3 +curated/1589ee62fa7d5f104159d9f8587e3049,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/3468203102,22033002802,08070202,Amite,"LA,MS",1.0,Metropolitan core,Metropolitan,6536.2,5507,28488.0,71.5,30.6,54.2,29.2,8.3,5.7 +curated/15f0f2f5a4dcd77d06e6551db9f84eef,51107611006,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2224.8,5629,211667.0,62.6,2.1,51.0,6.9,18.9,19.7 +curated/164c4666b8e68280fb82f292580f5255,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/16b6dd538a950cf4f562387b67c8c109,06085504322,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,4456.5,5285,167583.0,72.1,14.2,8.6,4.8,9.3,72.7 +curated/172c384343815f9112b93fc9e76e1067,34013008100,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,14575.4,3958,33521.0,38.9,28.0,3.6,80.9,6.4,4.7 +curated/176fd938a4bc11e35f03bfba653597a8,12086003710,03090206,Florida Southeast Coast,FL,1.0,Metropolitan core,Metropolitan,16971.4,8380,101946.0,59.1,16.4,24.5,3.3,58.9,4.4 +curated/1825907839,35001000401,13020203,Rio Grande-Albuquerque,NM,1.0,Metropolitan core,Metropolitan,4532.8,4439,72120.0,57.0,11.4,40.3,1.6,43.8,3.3 +curated/2607827436,06073002801,18070304,San Diego,"CA,MX",1.0,Metropolitan core,Metropolitan,4831.6,5239,130833.0,60.3,32.3,61.0,3.5,15.5,14.1 +curated/3406467087,12086009102,03090206,Florida Southeast Coast,FL,1.0,Metropolitan core,Metropolitan,1047.7,3213,44455.0,15.0,15.7,3.1,14.1,81.4,1.2 +curated/0836938516,01073012913,03150202,Cahaba,AL,1.0,Metropolitan core,Metropolitan,3747.7,4841,65201.0,40.4,7.6,31.9,54.1,7.5,2.0 +curated/3732415309,41051010601,17090012,Lower Willamette,OR,1.0,Metropolitan core,Metropolitan,22129.6,1646,50455.0,43.4,30.8,68.2,11.8,7.1,7.3 +curated/4879481820,13121001302,03130001,Upper Chattahoochee,GA,1.0,Metropolitan core,Metropolitan,6898.1,1916,106661.0,76.5,8.7,62.7,23.2,4.8,3.8 +curated/5146323411,06001982100,18050002,San Pablo Bay,CA,1.0,Metropolitan core,Metropolitan,1594.1,1104,152250.0,93.6,35.5,38.7,9.7,16.7,30.7 +curated/5225685660,51680000500,02080203,Middle James-Buffalo,VA,1.0,Metropolitan core,Metropolitan,3487.6,675,48750.0,62.1,20.7,67.9,17.6,1.5,1.8 +curated/6401035673,40109106912,11100301,Middle North Canadian,OK,1.0,Metropolitan core,Metropolitan,1817.4,3372,37019.0,14.7,44.0,25.1,26.6,30.6,3.1 +curated/6625492701,35001002700,13020203,Rio Grande-Albuquerque,NM,1.0,Metropolitan core,Metropolitan,3186.7,4781,62036.0,49.1,10.8,38.9,4.5,49.4,0.0 +curated/6685432442,32029970200,16050102,Truckee,"CA,NV",2.0,Metropolitan high commuting,Metropolitan,15.6,4140,93409.0,31.2,7.1,76.5,2.2,12.8,1.3 +curated/6793837329,54065970800,02070004,Conococheague-Opequon,"MD,PA,VA,WV",10.0,Rural area,Rural,247.9,3771,60023.0,21.8,12.9,86.8,0.2,2.9,0.1 +curated/6808047613,40013796400,11140102,Blue,OK,4.0,Micropolitan core,Micropolitan,618.0,2684,39412.0,11.3,24.1,51.7,2.5,18.2,0.3 +curated/6856057098,48113020401,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,4118.1,2615,72551.0,50.6,27.7,33.3,29.9,26.1,3.6 +curated/7171975407,23005000300,01060001,Presumpscot,ME,1.0,Metropolitan core,Metropolitan,4907.6,3403,50091.0,51.7,16.4,70.2,9.0,10.3,3.5 +curated/7264976228,18157005500,05120108,Middle Wabash-Little Vermilion,"IL,IN",1.0,Metropolitan core,Metropolitan,11505.6,5462,12644.0,93.1,72.9,65.4,2.0,7.1,21.2 +curated/7264976991,18157005500,05120108,Middle Wabash-Little Vermilion,"IL,IN",1.0,Metropolitan core,Metropolitan,11505.6,5462,12644.0,93.1,72.9,65.4,2.0,7.1,21.2 +curated/7324132050,37063002037,03030002,Haw,NC,1.0,Metropolitan core,Metropolitan,1881.4,7417,83360.0,72.1,1.0,37.9,34.1,5.2,21.5 +curated/7324132051,37063002037,03030002,Haw,NC,1.0,Metropolitan core,Metropolitan,1881.4,7417,83360.0,72.1,1.0,37.9,34.1,5.2,21.5 +curated/7557854384,04013422514,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,5183.7,4655,85335.0,42.9,7.1,58.0,6.5,26.4,3.9 +curated/9092482804,51107611501,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2714.3,3703,117719.0,58.0,2.6,26.0,15.4,19.0,25.7 +curated/7557868585,04013422514,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,5183.7,4655,85335.0,42.9,7.1,58.0,6.5,26.4,3.9 +curated/7578821329,04013811400,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,5363.0,5479,131161.0,49.3,16.5,61.6,12.2,9.1,12.1 +curated/7737996606,04013523102,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,5729.5,5532,89217.0,35.6,19.7,38.3,12.5,44.3,3.1 +curated/7821940847,04013422636,15050100,Middle Gila,AZ,1.0,Metropolitan core,Metropolitan,3117.5,3765,82813.0,30.5,8.8,70.0,2.9,23.0,1.1 +curated/7985753364,51059460501,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,3121.6,2594,212679.0,82.5,6.8,59.5,0.2,7.2,24.8 +curated/8017899486,12001000400,03080102,Oklawaha,FL,1.0,Metropolitan core,Metropolitan,2296.8,5563,49661.0,34.3,29.5,44.2,38.6,10.4,1.2 +curated/8109664813,13121011901,03130002,Middle Chattahoochee-Lake Harding,"AL,GA",1.0,Metropolitan core,Metropolitan,4101.4,2184,77838.0,37.6,23.3,24.3,58.9,5.9,7.8 +curated/8165754026,55079013600,04040003,Milwaukee,WI,1.0,Metropolitan core,Metropolitan,13470.5,2046,32946.0,24.7,41.1,18.3,58.2,17.9,0.0 +curated/8238715059,06085504322,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,4456.5,5285,167583.0,72.1,14.2,8.6,4.8,9.3,72.7 +curated/8238715061,06085504322,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,4456.5,5285,167583.0,72.1,14.2,8.6,4.8,9.3,72.7 +curated/8477460442,06079011505,18060006,Central Coastal,CA,1.0,Metropolitan core,Metropolitan,41.1,5040,117695.0,55.6,5.8,67.8,2.9,18.9,3.9 +curated/8641856300,26099227300,04090003,Clinton,MI,1.0,Metropolitan core,Metropolitan,3362.6,4679,78167.0,39.2,8.9,79.3,8.3,1.2,4.3 +curated/8767284091,09110520302,01080205,Lower Connecticut,"CT,MA",,,Unknown,,4166,78285.0,65.5,12.6,73.7,1.5,5.4,18.2 +curated/8897151054,06085500800,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,7015.5,4834,151357.0,61.2,10.9,31.3,7.6,26.1,27.3 +curated/9190480200,48339691201,12040102,Spring,TX,1.0,Metropolitan core,Metropolitan,2639.4,3890,182063.0,70.7,1.7,81.3,3.9,12.9,0.6 +curated/9669340912,24510040100,02060003,Gunpowder-Patapsco,"MD,PA",1.0,Metropolitan core,Metropolitan,14850.6,6387,63495.0,67.0,17.8,31.6,41.9,8.3,11.0 +curated/9669405859,24510040100,02060003,Gunpowder-Patapsco,"MD,PA",1.0,Metropolitan core,Metropolitan,14850.6,6387,63495.0,67.0,17.8,31.6,41.9,8.3,11.0 +curated/9669639033,51059471201,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,10978.1,2916,121314.0,81.8,8.0,41.0,3.4,12.0,33.0 +curated/9721703993,55079110100,04040003,Milwaukee,WI,1.0,Metropolitan core,Metropolitan,3677.7,4038,49128.0,19.6,20.4,45.3,17.7,28.9,0.4 +curated/9736262934,36029009200,04120104,Niagara,"CN,NY",1.0,Metropolitan core,Metropolitan,2223.5,4465,57917.0,48.4,13.3,71.2,3.9,5.5,18.5 +curated/9808044830,35001002100,13020203,Rio Grande-Albuquerque,NM,1.0,Metropolitan core,Metropolitan,4314.6,1810,33875.0,45.7,21.5,24.4,2.3,63.0,0.7 +curated/9808044840,35001002100,13020203,Rio Grande-Albuquerque,NM,1.0,Metropolitan core,Metropolitan,4314.6,1810,33875.0,45.7,21.5,24.4,2.3,63.0,0.7 +curated/9861806598,29095015702,10270104,"Lower Kansas, Kansas","KS,MO",1.0,Metropolitan core,Metropolitan,17053.1,3728,72438.0,69.6,28.9,50.6,21.8,5.9,7.5 +curated/9922928085,29095015702,10270104,"Lower Kansas, Kansas","KS,MO",1.0,Metropolitan core,Metropolitan,17053.1,3728,72438.0,69.6,28.9,50.6,21.8,5.9,7.5 +curated/01695645a2092a49dc15612b30fcc6d2,12086003704,03090206,Florida Southeast Coast,FL,1.0,Metropolitan core,Metropolitan,18556.7,1309,48036.0,45.9,17.3,16.3,4.5,75.0,1.6 +osm/way/30827429,48113003103,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,12686.0,2408,64352.0,67.8,24.2,52.8,28.6,10.4,4.8 +curated/07fcc6e5cc3987c1946a36f501153c39,39089755301,05040006,Licking,OH,2.0,Metropolitan high commuting,Metropolitan,188.6,3305,90571.0,36.6,4.9,94.6,0.0,2.6,0.3 +curated/0a802af6c4d3c163094754afd4ba4709,13297110801,03070103,Upper Ocmulgee,GA,10.0,Rural area,Rural,231.3,4217,93820.0,26.2,6.9,73.1,17.5,4.3,0.0 +curated/1312295357,45003020301,03060106,Middle Savannah,"GA,SC",2.0,Metropolitan high commuting,Metropolitan,67.7,2299,63750.0,18.3,22.3,72.4,16.4,9.0,0.0 +curated/0d1959b69b96a5bc3a2abd6bd37af30c,51153901421,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,900.1,5497,218958.0,52.1,2.3,52.8,11.4,18.2,14.8 +curated/127f8a1c2b44b22273fa15564824cf80,08041007205,11020003,Fountain,CO,1.0,Metropolitan core,Metropolitan,1803.5,7501,107517.0,52.5,8.1,71.6,3.2,12.3,4.4 +curated/0ae15cecb27f462de06a6cb2418d28a1,06067007301,18020111,Lower American,CA,1.0,Metropolitan core,Metropolitan,1062.7,5450,54122.0,14.3,25.0,34.4,9.2,36.2,9.4 +curated/06561a7251c85c2d334841c79cb563fa,22017025300,11140304,Cross Bayou,"AR,LA,TX",1.0,Metropolitan core,Metropolitan,634.1,1316,15909.0,24.9,61.1,36.7,36.9,20.4,0.0 +curated/15aca7a657cc2d64b047b0a07b4fe1f8,09190020101,01100006,Saugatuck,"CT,NY",,,Unknown,,2746,85469.0,68.0,13.2,47.3,23.1,12.6,15.7 +curated/02279e82f3acc5bbd6d47043f4b78d9a,47037013702,05130202,Lower Cumberland-Sycamore,TN,1.0,Metropolitan core,Metropolitan,1800.2,3242,61053.0,56.4,19.2,32.2,52.3,1.0,3.1 +curated/05d0c8ec5dd27680435870d237d89f53,39049007531,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,4136.0,2602,42143.0,17.7,18.3,21.0,64.6,7.8,0.5 +curated/093f0a8edf77a6a78e181ecefea5e145,48085031901,12030106,East Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,2349.3,2753,51458.0,45.5,17.2,36.8,21.7,31.6,7.0 +curated/136e84a9dc2847c6cc0ceda030040ba2,53033008102,17110019,Puget Sound,WA,1.0,Metropolitan core,Metropolitan,13980.3,3680,157898.0,66.5,20.6,46.5,9.5,8.3,29.2 +curated/175c54ba5e749b6bcf66a304fc7d3a0d,36001001100,02020006,Middle Hudson,"MA,NY",1.0,Metropolitan core,Metropolitan,2717.7,2065,56591.0,47.6,28.5,62.6,27.2,4.4,2.7 +curated/141711ce6e8c863dcb691af947985985,56021000200,10190009,Crow,"CO,WY",1.0,Metropolitan core,Metropolitan,1577.5,4785,50625.0,14.3,14.0,50.5,0.5,40.3,3.5 +curated/178f79a3e8993a44315736857f85407f,51087200801,02080206,Lower James,VA,1.0,Metropolitan core,Metropolitan,1539.3,3153,72838.0,37.8,18.9,43.5,31.4,8.0,10.0 +curated/0c5f1bce05782b613ad1ede78370d2ad,48339691201,12040102,Spring,TX,1.0,Metropolitan core,Metropolitan,2639.4,3890,182063.0,70.7,1.7,81.3,3.9,12.9,0.6 +curated/05c24f51b9f8f285c6e00c2fbac21cd1,48113010001,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,921.1,2299,34063.0,7.5,34.3,20.1,46.7,28.1,2.9 +curated/126a838ed4ed0c66a6c5191573cef568,06037209300,18070104,Santa Monica Bay,CA,1.0,Metropolitan core,Metropolitan,39841.4,4917,31642.0,24.2,49.6,6.2,18.9,59.1,9.4 +curated/01e0819ac429984ddacf80e34c5472e6,47093004612,06010207,Lower Clinch,TN,1.0,Metropolitan core,Metropolitan,2376.4,3130,110967.0,58.5,2.1,83.7,4.0,5.4,4.5 +curated/0998245264,17031804202,07120006,Upper Fox,"IL,WI",1.0,Metropolitan core,Metropolitan,1491.8,7444,183859.0,68.1,4.6,60.2,0.0,2.4,33.5 +curated/0d2bf6d30df031e9d26c6bd434e551f9,39103405000,04110002,Cuyahoga,OH,2.0,Metropolitan high commuting,Metropolitan,196.0,4593,124118.0,49.4,7.6,89.5,0.0,0.5,0.0 +curated/03b519088ba6c812906afee5998f569d,37183052701,03020201,Upper Neuse,NC,1.0,Metropolitan core,Metropolitan,2299.0,6433,61372.0,44.6,7.6,41.7,17.0,34.0,0.8 +curated/0e9214a639d8bfe93e34c7879f7825fb,48113020402,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,2966.9,6294,82389.0,60.0,21.8,41.7,26.3,21.2,2.6 +curated/07302bdd00bf6c74ce8dad127bed43d3,08005006859,10190003,Middle South Platte-Cherry Creek,CO,1.0,Metropolitan core,Metropolitan,5511.9,3681,95029.0,69.5,4.9,60.5,2.9,13.9,19.6 +curated/1796dd8255ec1b20d0abacc76efc7dd1,51107611502,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2593.5,7269,131000.0,37.5,7.9,27.7,12.0,32.3,25.4 +curated/123cd1d5dd29945fa9e30aa148e3708a,06111004901,18070103,Calleguas,CA,1.0,Metropolitan core,Metropolitan,10931.1,7283,126966.0,30.0,10.9,20.6,3.7,55.6,14.7 +curated/13e866b77ad244b61b6fd85094b90330,06085512032,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,3042.2,3754,173750.0,63.7,12.3,27.4,0.7,27.0,40.1 +curated/106a2e7d97675830f30a1e486eb9a1bb,34023000403,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,7605.9,6531,130147.0,53.5,0.9,16.1,25.6,14.5,39.0 +curated/0b3371d4c8e9ad977599f77605540e39,51059481202,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,4329.8,6503,115365.0,47.0,5.9,35.5,8.7,35.4,13.1 +curated/0578393557,41013950301,17070305,Lower Crooked,OR,3.0,Metropolitan low commuting,Metropolitan,22.0,3920,119495.0,34.7,12.1,95.1,0.0,0.9,0.4 +osm/way/118650988,29095015800,10270104,"Lower Kansas, Kansas","KS,MO",1.0,Metropolitan core,Metropolitan,2459.3,2192,87083.0,64.9,10.1,77.3,9.5,3.8,5.2 +curated/1479c1d866644f83fda48c14f2d02287,27139080304,07020012,Lower Minnesota,MN,1.0,Metropolitan core,Metropolitan,1200.5,8445,150600.0,49.4,1.2,52.8,6.7,10.8,26.4 +curated/106906b24a71e5f8da20362d0713b99c,25017351500,01090001,Charles,MA,1.0,Metropolitan core,Metropolitan,4596.8,2926,85274.0,61.9,13.0,46.8,7.7,25.2,9.1 +curated/12d40542b87f6a17cb2085739becfeb8,27019091002,07020012,Lower Minnesota,MN,1.0,Metropolitan core,Metropolitan,1396.9,7559,173580.0,55.2,4.2,83.4,1.5,3.5,3.6 +curated/03c74031347ea7c52c8e8948ef19c32f,45019003106,03050201,Cooper,SC,1.0,Metropolitan core,Metropolitan,1719.7,9465,65313.0,27.3,13.3,38.8,40.6,9.8,2.4 +curated/0be3aa82fb99fbf0c31b79e78d999ecd,12086002402,03090206,Florida Southeast Coast,FL,1.0,Metropolitan core,Metropolitan,10606.4,6611,50977.0,17.0,19.5,3.3,3.4,93.3,0.0 +curated/005620c519ae0618b35d50e81f67c4c7,12095016902,03090101,Kissimmee,FL,1.0,Metropolitan core,Metropolitan,1536.2,5612,51761.0,18.9,20.6,8.9,10.0,76.5,0.0 +curated/073c1947b2117de63e133ddc3305d577,48201521800,12040104,Buffalo-San Jacinto,TX,1.0,Metropolitan core,Metropolitan,1931.1,4557,77584.0,24.4,6.6,23.7,6.8,52.2,14.7 +curated/04e97ef8c67f984da5be6d7e4610040d,39061000700,05090203,Middle Ohio-Laughery,"IN,KY,OH",1.0,Metropolitan core,Metropolitan,11339.8,3570,100863.0,62.4,6.6,70.5,12.9,5.1,4.4 +curated/0c737c1cec538838778275bc954b07e0,55079014400,04040003,Milwaukee,WI,1.0,Metropolitan core,Metropolitan,15193.4,3246,73365.0,69.8,21.3,67.0,6.5,8.4,11.2 +curated/095660806d1467412ebb8631967f1b64,06085512032,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,3042.2,3754,173750.0,63.7,12.3,27.4,0.7,27.0,40.1 +curated/03cdeb4eb895f77a2d8472b9e45a7829,48339694501,12040101,West Fork San Jacinto,TX,10.0,Rural area,Rural,100.9,2119,138472.0,27.8,1.2,87.6,0.9,9.5,0.0 +curated/00e5aefc17e407a47bd2d10a672991e5,37063002200,03020201,Upper Neuse,NC,1.0,Metropolitan core,Metropolitan,5348.6,3037,116146.0,82.1,13.4,63.5,15.2,8.2,4.5 +curated/06cb5b539a0d07cf1d6c96b09909cb4a,53061051601,17110012,Lake Washington,WA,1.0,Metropolitan core,Metropolitan,5873.0,5471,102004.0,40.5,11.3,40.7,11.4,22.8,14.2 +curated/06198bcd74587986f0869640d69b5e0a,48113019042,12030106,East Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,3250.1,9251,86795.0,46.4,19.6,31.5,40.5,8.6,16.7 +curated/1090d6b3a2270409c25bef10bc9b2053,36059406501,02030202,Southern Long Island,"NJ,NY,RI",1.0,Metropolitan core,Metropolitan,3999.2,7003,235676.0,73.8,4.7,79.4,1.3,8.8,3.9 +curated/07b84b1db29d89d51a8ded5a6afb8abb,48113020402,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,2966.9,6294,82389.0,60.0,21.8,41.7,26.3,21.2,2.6 +curated/13187846084b5666791bb8336d303d69,06059087302,18070201,Seal Beach,CA,1.0,Metropolitan core,Metropolitan,16710.0,7285,101065.0,26.6,7.5,11.3,6.1,67.5,13.4 +curated/1572bb95fd7dc8468cb3dd47d626a985,06081605400,18050004,San Francisco Bay,CA,1.0,Metropolitan core,Metropolitan,6216.5,6557,166972.0,58.1,5.4,55.4,0.0,17.8,22.1 +curated/027952e82584a4c9362b0a802aac1f48,37119005533,03040105,Rocky,"NC,SC",1.0,Metropolitan core,Metropolitan,575.6,1469,78605.0,56.2,13.6,25.9,52.1,4.8,15.9 +curated/0da4519afc146da0d3757b919f2f4376,36061011900,02030101,Lower Hudson,"CT,NJ,NY",1.0,Metropolitan core,Metropolitan,24297.0,1352,18050.0,19.8,45.8,26.3,43.0,24.5,1.9 +curated/0d27c36b5577e221987dc820dbf5beb8,17043846409,07120007,Lower Fox,IL,1.0,Metropolitan core,Metropolitan,1652.1,4438,184044.0,66.2,2.5,56.6,2.2,10.5,27.4 +curated/0c544f40170ba4fb8a13aba0501b7e0c,08035014014,10190003,Middle South Platte-Cherry Creek,CO,1.0,Metropolitan core,Metropolitan,1406.4,5762,107382.0,50.7,3.1,67.5,2.2,7.8,16.7 +curated/0826c173e679eb6befdde1dd1fb65ef6,51153901418,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,2723.2,5331,130461.0,41.5,10.3,14.6,26.9,45.5,9.9 +curated/01cbbb9d25e28d6ed29e9b05806905ae,36067003200,04140201,Seneca,NY,1.0,Metropolitan core,Metropolitan,7536.9,3315,57371.0,58.0,28.6,55.0,15.0,11.6,14.7 +curated/0795853621,31153010702,10200202,Lower Platte,NE,2.0,Metropolitan high commuting,Metropolitan,118.1,4050,104350.0,34.9,4.7,92.6,0.1,3.8,0.3 +curated/15f8fa7ab251d937e2c7cc8f3e044830,49035980100,16020204,Jordan,UT,1.0,Metropolitan core,Metropolitan,5.7,0,,,,,,, +curated/17106c3666f4a525fe764c9bf764cb23,31055007445,10230006,Big Papillion-Mosquito,"IA,NE",1.0,Metropolitan core,Metropolitan,2449.2,2667,55953.0,40.2,6.0,59.6,17.5,14.7,0.4 +curated/11348c25a76b170a6b803507ada8b1dd,39017011123,05090203,Middle Ohio-Laughery,"IN,KY,OH",1.0,Metropolitan core,Metropolitan,802.5,4980,58472.0,30.9,24.2,45.6,29.9,9.7,8.7 +curated/15655224340734b15c942f29f676638d,04013061024,15070101,Lower Gila-Painted Rock Reservoir,AZ,2.0,Metropolitan high commuting,Metropolitan,420.7,2741,106458.0,22.9,8.3,50.9,0.7,43.2,0.5 +curated/00780fe058c628ae9aec1597c796ad07,26065004491,04050004,Upper Grand,MI,1.0,Metropolitan core,Metropolitan,35400.3,1230,,66.7,,64.1,15.4,6.3,9.9 +curated/11106ebb90f486e22d2287136bd0a813,17031802702,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,2155.4,4370,94656.0,44.5,10.0,55.0,1.3,6.7,34.3 +curated/0ae513ee70918bc0dc4e37b8bb866b22,18097352300,05120201,Upper White,IN,1.0,Metropolitan core,Metropolitan,1734.7,1818,39583.0,9.7,25.2,4.0,79.6,7.4,0.0 +curated/02113f1b30853a3b79ef51713e371a90,09190044300,01100006,Saugatuck,"CT,NY",,,Unknown,,4507,131219.0,51.7,3.7,51.3,13.9,18.2,6.9 +curated/0014271367e0e039e1b1b386315f6581,13297110801,03070103,Upper Ocmulgee,GA,10.0,Rural area,Rural,231.3,4217,93820.0,26.2,6.9,73.1,17.5,4.3,0.0 +curated/11e630b3662df94b63a515b37aa680fa,55101001706,04040002,Pike-Root,"IL,WI",1.0,Metropolitan core,Metropolitan,1837.1,3990,81080.0,37.5,10.4,72.4,10.3,10.2,2.3 +curated/0bfe13467c8e05d473eb1deacb006d47,04013113100,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,9922.7,7031,40395.0,64.5,38.0,58.6,15.1,15.2,5.0 +curated/00a2a5969ed613217083c902e9941670,12031017200,03080103,Lower St. Johns,FL,1.0,Metropolitan core,Metropolitan,2172.3,2958,36983.0,24.5,44.8,33.3,49.5,15.4,0.0 +curated/056983d93e1528c1ab26a02a07b50f8c,41067033101,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,1254.1,3517,106858.0,33.5,10.0,60.3,8.2,25.4,1.6 +curated/0411a6774f18ca447c540ea39ddfe080,47037019503,05130202,Lower Cumberland-Sycamore,TN,1.0,Metropolitan core,Metropolitan,6054.0,4053,111057.0,79.3,8.6,77.1,8.3,6.6,2.5 +curated/15d60ea0cf6861cd9c562068848215a8,56021001302,10190009,Crow,"CO,WY",1.0,Metropolitan core,Metropolitan,1782.1,5280,115610.0,48.4,4.2,85.0,0.0,12.2,1.3 +curated/0fdab7c7e6f4f4a2ee3770201e6ece88,51107611020,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1359.5,7483,141250.0,64.3,0.7,33.4,8.9,10.5,38.9 +curated/1054c765d9b88097add0aba678374d4a,48029172002,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,1403.4,32434,108359.0,30.8,3.7,22.9,14.8,52.7,4.0 +curated/113aebaab90ceccadb0b7800c549a89c,34017019900,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,2689.2,5417,99341.0,61.2,4.7,27.4,3.9,27.0,39.8 +curated/0cc5e0f661064590161174c777499e75,13121011901,03130001,Upper Chattahoochee,GA,1.0,Metropolitan core,Metropolitan,4101.4,2184,77838.0,37.6,23.3,24.3,58.9,5.9,7.8 +curated/126334cafba14fdcca4db9db4685333d,24021752303,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",2.0,Metropolitan high commuting,Metropolitan,219.4,3878,162000.0,50.9,1.7,66.3,11.3,10.2,8.9 +curated/10a4fcd2300f8a885901ff9c392d2278,17031841900,07120003,Chicago,"IL,IN",1.0,Metropolitan core,Metropolitan,6744.5,6567,141017.0,62.3,15.1,37.6,21.6,14.1,21.8 +curated/1361737431ead6c6a92de6f7106709bf,25017321400,01070005,Concord,MA,1.0,Metropolitan core,Metropolitan,775.2,4466,116532.0,48.0,6.4,54.5,13.4,9.2,4.6 +curated/0a3d0e1953a26274675b048bf26de175,51061930706,02080103,Rapidan-Upper Rappahannock,VA,2.0,Metropolitan high commuting,Metropolitan,377.4,6039,80106.0,21.9,11.0,61.7,10.3,22.7,0.3 +curated/0b3cb5616025c49c9c145d956ee9f192,25025030302,01090001,Charles,MA,1.0,Metropolitan core,Metropolitan,10004.3,2408,148542.0,71.1,13.3,64.8,7.0,5.0,17.1 +osm/node/13746843367,41067030401,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,2996.5,4776,73523.0,45.3,6.6,60.2,3.5,21.8,9.5 +curated/07de496bbf2bcdfb0345355e21b3723a,51153901409,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,1156.0,9064,133432.0,53.6,3.2,42.5,29.6,13.5,9.4 +curated/0f916e49cf81fd94cdffdabec8f3d29b,06067007019,18020161,Upper Coon-Upper Auburn,CA,1.0,Metropolitan core,Metropolitan,1304.0,3216,107460.0,48.6,25.9,14.2,41.3,17.3,18.3 +curated/0da3cf047891b3031564c9ab49e2e13e,12099007012,03090206,Florida Southeast Coast,FL,1.0,Metropolitan core,Metropolitan,835.1,2551,101844.0,65.0,6.2,73.0,2.2,10.0,4.3 +curated/039b6fe9e2ee1201b00790d36cb42c3d,24510220100,02060003,Gunpowder-Patapsco,"MD,PA",1.0,Metropolitan core,Metropolitan,11231.1,4230,63585.0,69.1,15.6,68.8,14.0,3.1,10.3 +curated/0b6e07d6c75c63abd7035cbf07e8183b,48113010001,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,921.1,2299,34063.0,7.5,34.3,20.1,46.7,28.1,2.9 +curated/11301988e21b466ab6129bcd93a24dd4,17031842200,07120003,Chicago,"IL,IN",1.0,Metropolitan core,Metropolitan,7748.2,3807,162736.0,86.8,7.8,69.9,9.7,2.5,10.7 +curated/0a2bb92b5cafc228a879e06fa6872915,49035114500,16020204,Jordan,UT,1.0,Metropolitan core,Metropolitan,451.9,8052,99550.0,18.1,13.6,27.4,3.3,53.8,12.8 +curated/13823ba3edfceabc22939b0e384958a3,53053071207,17110014,Puyallup,WA,1.0,Metropolitan core,Metropolitan,4066.6,6770,81957.0,31.0,17.3,62.7,3.9,12.4,4.7 +curated/108810a52641e128ae6c8c366c2fa498,48085031670,12030103,Elm Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,925.1,1644,112750.0,70.0,2.3,56.4,12.0,12.7,15.4 +curated/0fe93dc8d28e0cdaf453bee05470fc73,13097080105,03130002,Middle Chattahoochee-Lake Harding,"AL,GA",1.0,Metropolitan core,Metropolitan,375.6,4442,114688.0,51.4,10.4,5.4,89.4,2.7,1.5 +curated/0614c650d3d379df2f330122eb530575,48113013806,12030103,Elm Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,1592.0,4297,90245.0,71.1,16.2,42.9,26.6,13.1,10.1 +curated/157e9783212fda7a4d8e7c4d130ecb45,48141001700,13040100,Rio Grande-Fort Quitman,"MX,NM,TX",1.0,Metropolitan core,Metropolitan,2675.3,1018,18264.0,9.2,66.7,11.8,4.9,82.2,0.0 +curated/11aa3c1984349976a7ee55784e25e67b,34031124402,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,4239.8,5723,119946.0,49.4,6.3,56.4,1.0,30.8,10.9 +curated/1469b9df8d3ea011f7c80589878ddda5,48113020402,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,2966.9,6294,82389.0,60.0,21.8,41.7,26.3,21.2,2.6 +curated/0a7f552d52187a0bcb912403ddb001b7,48113001705,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,8570.8,3008,104921.0,80.6,12.4,66.2,5.6,21.7,3.6 +curated/05ba62462a5bd6ca3e7b40b1302c9983,37119000104,03050103,Lower Catawba,"NC,SC",1.0,Metropolitan core,Metropolitan,7940.6,1948,107949.0,79.8,9.4,59.6,23.3,7.5,3.5 +curated/13b8366a6af42e6807cddae8cf703134,19153010804,07100008,Lake Red Rock,IA,1.0,Metropolitan core,Metropolitan,324.4,6167,106193.0,31.5,3.7,88.1,0.3,9.1,0.0 +curated/0ff9112fd5966a1cf273ce280930a3a5,55025001704,07090002,Middle Rock,"IL,WI",1.0,Metropolitan core,Metropolitan,25488.2,4175,52262.0,63.3,34.8,75.0,8.7,5.4,4.6 +curated/0576327e2bc5409443aa97854ae061ae,48113010001,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,921.1,2299,34063.0,7.5,34.3,20.1,46.7,28.1,2.9 +curated/07f09db4f979d718f59c3f14331aef52,39061026300,05090203,Middle Ohio-Laughery,"IN,KY,OH",1.0,Metropolitan core,Metropolitan,574.2,1245,16731.0,10.1,66.7,37.9,51.5,2.0,0.0 +curated/1358e7a7872d7a4d879dab11da69505b,51153901509,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",2.0,Metropolitan high commuting,Metropolitan,293.1,8086,202560.0,64.0,4.3,61.6,13.8,12.2,5.5 +curated/02c74cc5dc714ab95523882880952714,48085031418,12030106,East Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,2048.3,7120,208908.0,70.6,4.5,30.5,5.9,11.5,40.7 +curated/16a404b9e8f7d1c325f6cfc3e22e3cb9,51179010210,02070011,Lower Potomac,"MD,VA",1.0,Metropolitan core,Metropolitan,2452.5,12240,170639.0,52.1,1.5,38.1,34.8,16.7,2.3 +curated/0a3bbe94471055140effd94290ff473b,25017321400,01070005,Concord,MA,1.0,Metropolitan core,Metropolitan,775.2,4466,116532.0,48.0,6.4,54.5,13.4,9.2,4.6 +curated/11526819452,41039001201,17090002,Coast Fork Willamette,OR,4.0,Micropolitan core,Micropolitan,107.3,4180,78893.0,21.1,9.3,81.4,0.0,7.3,0.6 +curated/13a2e84dd5f02fac55a2cabf6bbeaca0,56021000200,10190009,Crow,"CO,WY",1.0,Metropolitan core,Metropolitan,1577.5,4785,50625.0,14.3,14.0,50.5,0.5,40.3,3.5 +curated/016d922b8ecdb128c1cb55c8c7829cbb,39041011563,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,1512.2,7688,186450.0,72.2,1.4,58.1,10.3,1.0,23.9 +curated/175c9d34fb678da028b74f233221a189,25013801200,01080201,Middle Connecticut,"MA,NH,VT",1.0,Metropolitan core,Metropolitan,8115.7,2593,17222.0,16.0,59.5,17.7,18.0,57.9,2.9 +curated/09f94c7aff8c94fb5b6c72419d2af3f3,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +curated/0588273961,34035053805,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,990.4,6543,118140.0,53.7,7.9,63.9,7.6,6.8,18.3 +curated/0a1beada8b57dc344d2ffd8e8517b3a2,06059086802,18070106,San Gabriel,CA,1.0,Metropolitan core,Metropolitan,7913.0,5577,126429.0,28.5,8.7,18.1,0.4,52.2,21.2 +curated/0209853483856eda5fe567ea5fa18e1f,54039000900,05050006,Upper Kanawha,WV,1.0,Metropolitan core,Metropolitan,2042.2,1231,17679.0,20.2,51.7,65.0,17.5,0.2,3.6 +curated/08a15a96a364fa5ca67cfc95ff4797c9,36063023401,04130001,Oak Orchard-Twelvemile,"CN,NY",2.0,Metropolitan high commuting,Metropolitan,311.3,6617,89500.0,30.1,13.5,82.9,2.5,7.6,0.3 +curated/046f925f1b4a440d655bbc25f4b6e7a4,42019910200,05030105,Connoquenessing,PA,10.0,Rural area,Rural,46.9,4657,72212.0,17.4,9.3,91.6,0.8,1.4,0.2 +curated/113934e6bc6fb47eed0a5f4c63eed940,39089755301,05040006,Licking,OH,2.0,Metropolitan high commuting,Metropolitan,188.6,3305,90571.0,36.6,4.9,94.6,0.0,2.6,0.3 +curated/118ef162fdce8a7330316b4697199628,37119002910,03050103,Lower Catawba,"NC,SC",1.0,Metropolitan core,Metropolitan,4684.4,3072,115732.0,73.9,3.0,82.2,3.8,2.7,2.8 +curated/10cf48b11eb934fe05992e1cb01a87ad,12095017001,03090101,Kissimmee,FL,1.0,Metropolitan core,Metropolitan,479.9,5947,77050.0,35.9,6.5,33.3,32.4,20.6,1.7 +curated/071a2700e9595138078dc5a7d9ed4892,06073017813,18070303,San Luis Rey-Escondido,CA,1.0,Metropolitan core,Metropolitan,2395.3,4583,135860.0,61.6,7.6,71.4,0.3,14.8,5.5 +curated/164fe97e5a20f1655fe17c328b2f9a8f,04013115200,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,1151.3,3532,57281.0,4.7,21.9,10.7,6.3,63.5,5.7 +curated/12486d57dfe310720e2676f6e035e001,12057011804,03100206,Tampa Bay,FL,1.0,Metropolitan core,Metropolitan,4602.9,5428,61377.0,20.2,14.7,7.7,3.8,80.8,7.1 +curated/0414055237,56021001902,10190009,Crow,"CO,WY",2.0,Metropolitan high commuting,Metropolitan,4.9,4777,108833.0,38.7,2.6,82.7,0.0,6.3,2.1 +curated/011254cd67c26c18a893cc46aecb57fa,18141002000,04050001,St. Joseph,"IN,MI",1.0,Metropolitan core,Metropolitan,4632.8,1153,29083.0,18.4,50.3,35.1,50.0,9.5,0.0 +curated/06c6c3a25d7d97a62fe8600037a952ba,36061008300,02030101,Lower Hudson,"CT,NJ,NY",1.0,Metropolitan core,Metropolitan,57299.8,3614,75000.0,61.2,22.6,38.6,2.7,33.2,11.1 +curated/0079bc0cd2dec6ffb323686c050d3de8,26163985100,04090004,Detroit,"CN,MI",1.0,Metropolitan core,Metropolitan,113.6,190,35921.0,15.1,36.5,13.7,82.1,0.0,4.2 +curated/0228f464803164f48de8077c7a11ca45,51107611005,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,5094.7,5447,149327.0,68.9,3.6,60.9,6.8,13.4,14.3 +curated/127a1b0f2b103e1b9a52079049f18f60,42003562700,05010009,Lower Allegheny,PA,1.0,Metropolitan core,Metropolitan,5569.4,1949,60658.0,70.8,17.3,68.8,13.3,4.1,10.8 +curated/0a1033dbf6d380742ff3a5b2dd3b5a4f,11001980000,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,70.0,17,,100.0,0.0,100.0,0.0,0.0,0.0 +curated/01e4b732fb8b5308ac74cfb11566f36a,39035107701,04110003,Ashtabula-Chagrin,"OH,PA",1.0,Metropolitan core,Metropolitan,7172.1,5963,60483.0,73.7,21.9,56.1,23.1,5.0,12.3 +curated/13f8c0e9a91432acb39da0f2f0b42940,48439113943,12030104,Denton,TX,1.0,Metropolitan core,Metropolitan,2604.4,6294,121465.0,39.5,9.2,40.0,12.8,15.8,22.1 +curated/0545730285,19153010601,07100008,Lake Red Rock,IA,1.0,Metropolitan core,Metropolitan,234.9,2853,61118.0,13.8,17.1,92.5,1.5,2.3,1.2 +curated/0c65d6c94fdab0c24b1ee7b0005d8de5,12086009010,03090206,Florida Southeast Coast,FL,1.0,Metropolitan core,Metropolitan,1079.7,7361,103785.0,56.0,4.9,13.1,1.9,78.0,4.7 +curated/14255fabd60680beaa08fdde93455018,06059075516,18070204,Newport Bay,CA,1.0,Metropolitan core,Metropolitan,2319.4,11338,115453.0,63.0,24.1,35.5,6.0,12.7,26.7 +curated/09fb9f5b2aaff306b2dc3fe11634c157,37081016405,03030003,Deep,NC,1.0,Metropolitan core,Metropolitan,563.3,1544,52708.0,32.3,11.7,38.1,53.6,4.4,0.4 +curated/041c27bd5f4aaec88e06ce19764dc7a1,55025003100,07090002,Middle Rock,"IL,WI",1.0,Metropolitan core,Metropolitan,1581.6,5930,99706.0,49.3,8.0,83.9,3.0,7.8,0.6 +curated/165f866148ac140d53d881e79643e36c,39049006239,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,2714.6,6377,100066.0,71.3,7.6,49.0,7.9,8.3,31.1 +curated/13a888b3762db0fd11932f817cb942cb,51107611811,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,6627.4,8319,193125.0,76.3,2.8,39.4,16.5,10.1,27.1 +curated/042414a37cf258d58b85000a4d88a157,06085512032,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,3042.2,3754,173750.0,63.7,12.3,27.4,0.7,27.0,40.1 +curated/0013924557,19153011028,07100006,North Raccoon,IA,1.0,Metropolitan core,Metropolitan,335.4,5306,75404.0,51.0,8.9,71.4,4.6,14.7,6.3 +curated/0f753863bcaed0baf6f331b825884bd5,48085031672,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,1652.6,2121,95089.0,46.2,6.5,53.4,14.2,14.5,9.1 +curated/0688722307,51087201404,02080206,Lower James,VA,2.0,Metropolitan high commuting,Metropolitan,253.3,4627,84632.0,20.5,9.0,74.5,19.3,1.6,1.5 +curated/1333205262,51107611004,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2380.2,8698,199111.0,75.2,3.5,53.8,7.4,11.0,19.7 +curated/168ee0db257a2e16e17ec87321f46f76,41051004300,17090012,Lower Willamette,OR,1.0,Metropolitan core,Metropolitan,122.4,1061,111250.0,64.9,6.1,82.3,0.0,8.9,7.1 +osm/way/1077131079,28033070421,08010211,Horn Lake-Nonconnah,"MS,TN",1.0,Metropolitan core,Metropolitan,1188.1,3536,60227.0,21.2,21.1,38.7,49.3,9.7,0.0 +curated/171acb66be5f264893c432c3d9ba5c14,13121010523,03130005,Upper Flint,GA,1.0,Metropolitan core,Metropolitan,1180.8,1888,60879.0,31.5,32.1,2.5,86.5,8.5,0.0 +curated/0943987942,53067012421,17110015,Nisqually,WA,2.0,Metropolitan high commuting,Metropolitan,632.5,3112,102614.0,35.2,9.1,58.8,6.2,16.4,2.2 +osm/way/1271571726,17043840201,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,1864.2,6189,121486.0,58.4,1.1,68.9,0.3,8.4,16.0 +curated/06a410ae1ebddd8a9bdebbb593ef57ea,17031770400,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,2189.4,4625,85745.0,27.0,9.4,63.3,3.4,25.6,6.2 +curated/13bd2225aa79cd68dc74a1ba7535f75d,13089021607,03130001,Upper Chattahoochee,GA,1.0,Metropolitan core,Metropolitan,4165.4,1760,86364.0,71.0,11.5,35.2,39.4,10.9,5.9 +curated/164a4ebf296c4ff0c038852953515656,34017014600,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,2101.8,4046,106250.0,36.7,4.9,8.6,1.4,80.8,8.7 +curated/092a75dd8eae81266bb872d888987020,25017352300,01090001,Charles,MA,1.0,Metropolitan core,Metropolitan,16075.5,4877,171633.0,84.2,4.6,46.0,15.7,3.4,29.4 +curated/11220746125,32003002847,15010015,Las Vegas Wash,NV,1.0,Metropolitan core,Metropolitan,1342.4,4104,48700.0,26.7,13.6,33.7,13.8,32.0,9.4 +curated/0c0c40d9c2c362829f873200bff86729,41039004200,17090003,Upper Willamette,OR,1.0,Metropolitan core,Metropolitan,2214.1,3282,46019.0,24.6,34.0,77.4,0.9,13.1,1.2 +curated/16dbb6c6e1f48c4305f561717b21a48a,53033022803,17110012,Lake Washington,WA,1.0,Metropolitan core,Metropolitan,4105.8,8604,175278.0,83.1,6.5,35.8,4.7,4.4,54.1 +curated/165760857ec974ff8c2b3e3b6ddd728e,04013111203,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,10025.0,2179,50862.0,35.2,20.5,19.2,40.2,21.8,3.1 +curated/00318951fb2e327f22fa502497aacb1b,41049970101,17070101,Middle Columbia-Lake Wallula,"OR,WA",10.0,Rural area,Rural,19.9,5396,68594.0,7.6,14.8,26.6,1.2,69.6,0.4 +curated/0f71061f679a8abe09664a6afcd99999,51179010210,02070011,Lower Potomac,"MD,VA",1.0,Metropolitan core,Metropolitan,2452.5,12240,170639.0,52.1,1.5,38.1,34.8,16.7,2.3 +curated/02ab878b37ed8cea99945e41b2032836,06097153002,18010110,Russian,CA,1.0,Metropolitan core,Metropolitan,7586.9,6847,88413.0,13.7,21.3,31.2,0.8,62.5,0.4 +curated/07ec2e4a07406bb8e5812cec122cca52,53061051601,17110012,Lake Washington,WA,1.0,Metropolitan core,Metropolitan,5873.0,5471,102004.0,40.5,11.3,40.7,11.4,22.8,14.2 +curated/1056eca658913c863c3e4b8f2dcb51d6,22071013400,08090203,Eastern Louisiana Coastal,"LA,MS",1.0,Metropolitan core,Metropolitan,4302.8,3693,52935.0,59.4,28.2,57.9,19.7,4.0,13.1 +curated/09b515c2f3895dc0a5e3a22fe2ec1691,42071012200,02050306,Lower Susquehanna,"MD,PA",1.0,Metropolitan core,Metropolitan,5300.7,6877,66123.0,19.0,5.8,84.3,3.3,7.4,2.2 +curated/02f4bb6bc8038a1a53aae1032343cb16,39061026300,05090203,Middle Ohio-Laughery,"IN,KY,OH",1.0,Metropolitan core,Metropolitan,574.2,1245,16731.0,10.1,66.7,37.9,51.5,2.0,0.0 +curated/0d579d4d684ac5c04d3b8bcb85e40d01,51107611018,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1671.9,4705,93315.0,57.8,14.0,70.2,4.8,10.1,12.0 +curated/0f44cc28f6503b11ffb36c69bc9410ba,36029016500,04120103,Buffalo-Eighteenmile,NY,1.0,Metropolitan core,Metropolitan,3200.1,2387,66231.0,57.9,19.1,48.1,27.2,11.7,7.2 +curated/09ed7c61065c109b13b37a5895a6fc92,17031839000,07120003,Chicago,"IL,IN",1.0,Metropolitan core,Metropolitan,55621.3,10391,106650.0,85.3,15.9,49.9,12.1,7.4,26.0 +curated/0007805491,39049007205,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,3144.1,6035,89750.0,50.6,4.5,74.5,10.9,2.6,2.6 +curated/01e3208cdbcd2a8e9fb1abc79b96daaf,51107611502,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,2593.5,7269,131000.0,37.5,7.9,27.7,12.0,32.3,25.4 +curated/060b3aebd2b009bdd474ade3f50d7aa6,32003002847,15010015,Las Vegas Wash,NV,1.0,Metropolitan core,Metropolitan,1342.4,4104,48700.0,26.7,13.6,33.7,13.8,32.0,9.4 +curated/0314032203,53063004900,17010305,Upper Spokane,"ID,WA",1.0,Metropolitan core,Metropolitan,3733.9,6206,83583.0,54.6,8.3,74.4,6.5,15.2,1.7 +curated/111b6c34bb155bf651cc376382a7115d,34031223802,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,2581.0,8135,106406.0,39.6,4.8,59.2,5.8,25.7,6.1 +curated/0ffb29f1044120bddc3f2172e799a40f,42003020300,05010009,Lower Allegheny,PA,1.0,Metropolitan core,Metropolitan,3003.7,1928,118375.0,87.4,7.5,78.3,2.6,4.5,10.9 +curated/0ee85bd903a4b8861bff120b3a22488c,51059490104,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,745.1,3642,141250.0,47.4,5.2,38.9,0.9,36.8,20.0 +curated/0ce1cca1ff161c13c610233df2b70f81,13045910600,03150108,Upper Tallapoosa,"AL,GA",4.0,Micropolitan core,Micropolitan,481.3,6728,65697.0,26.7,21.0,62.8,15.0,12.7,0.0 +curated/14a64da8492ff439431c86c4ed619a78,47187050802,05130204,Harpeth,TN,1.0,Metropolitan core,Metropolitan,1985.1,1124,90341.0,55.7,2.5,98.8,0.5,0.6,0.0 +curated/0460087665,41013950200,17070305,Lower Crooked,OR,5.0,Micropolitan high commuting,Micropolitan,29.1,5072,83750.0,20.0,12.6,84.2,0.0,11.9,0.3 +curated/08c83555d1a40d924f1d63aad32ad589,48201451700,12040104,Buffalo-San Jacinto,TX,1.0,Metropolitan core,Metropolitan,6318.5,4976,60417.0,37.1,18.1,15.7,45.1,26.2,7.9 +curated/142bccd6e85f6654beb649aef66263ec,25027731700,01090003,Blackstone,"MA,RI",1.0,Metropolitan core,Metropolitan,8354.5,4003,51524.0,48.9,38.8,39.1,5.4,32.0,19.8 +curated/03d281eb1722f41e00ca5d245fc467d0,04019004118,15050301,Upper Santa Cruz,"AZ,MX",1.0,Metropolitan core,Metropolitan,891.1,6117,81680.0,17.1,5.1,28.3,2.9,64.9,0.9 +curated/0beba9840b77a954ad11f6880c5f4bd5,36059406600,02030202,Southern Long Island,"NJ,NY,RI",1.0,Metropolitan core,Metropolitan,4029.9,4345,250001.0,74.6,2.3,75.7,0.0,4.9,12.2 +curated/1035123482,49049010115,16020201,Utah Lake,UT,2.0,Metropolitan high commuting,Metropolitan,125.8,4676,108906.0,27.2,1.7,77.9,0.3,17.6,0.0 +curated/00280c5a8f708ca99dd79e97aa25569a,36087012800,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,1623.3,7224,180536.0,57.4,3.9,84.2,0.4,7.1,7.2 +curated/0714941629,31153010701,10200202,Lower Platte,NE,2.0,Metropolitan high commuting,Metropolitan,36.0,2421,134432.0,42.5,1.9,93.9,1.9,2.1,0.2 +osm/way/328702348,41067031617,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,5062.1,6201,96250.0,51.0,12.0,44.6,3.6,21.2,22.0 +curated/107597aaa7ff10a4ec12cb64d3da425e,48113010003,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,377.8,3333,83981.0,67.7,20.3,38.3,24.7,24.8,4.8 +curated/15933ae86459df4e8f6be62e452bf0e7,53033027200,17110013,Duwamish,WA,1.0,Metropolitan core,Metropolitan,2338.8,3086,79871.0,19.7,12.9,33.6,5.9,32.3,20.8 +curated/00bed7c6189105326d4cea6caf39729d,51107611005,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,5094.7,5447,149327.0,68.9,3.6,60.9,6.8,13.4,14.3 +curated/149b0057f9c36960d2c3588f6568c3c9,37119000600,03050103,Lower Catawba,"NC,SC",1.0,Metropolitan core,Metropolitan,6637.0,3826,82708.0,44.7,19.5,41.5,43.2,7.2,4.2 +curated/0d79506b54a4ee6cdccef79f80db245a,12086014100,03090206,Florida Southeast Coast,FL,1.0,Metropolitan core,Metropolitan,101.4,2475,,3.1,34.8,17.3,35.1,45.0,0.4 +curated/0397d8e8b00ae34ee7d0720a1af209aa,06037980028,18070106,San Gabriel,CA,1.0,Metropolitan core,Metropolitan,1.6,0,,,,,,, +curated/0952159044,04013116204,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,3763.0,4173,72780.0,21.3,23.3,15.4,1.0,81.0,0.5 +curated/0f83c38852465a02e48d20637659a249,17043841605,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,480.1,3104,114795.0,47.8,7.1,70.2,4.2,13.4,7.0 +curated/113db96c8a293cf356c5a1ea615bf781,51059460501,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,3121.6,2594,212679.0,82.5,6.8,59.5,0.2,7.2,24.8 +curated/10af4d0c901c52b27b7aaf56f2b7e077,18097391001,05120201,Upper White,IN,1.0,Metropolitan core,Metropolitan,1647.5,2362,53529.0,62.9,45.1,61.9,8.8,9.7,13.2 +curated/1635f5983df6f3c9520aa8ca0a364f68,41067032604,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,5220.9,6749,96389.0,25.2,6.3,52.3,0.0,42.8,0.9 +curated/178431e73ecc00b319165b3504bdc423,06085500800,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,7015.5,4834,151357.0,61.2,10.9,31.3,7.6,26.1,27.3 +curated/08c3e9d4c554beec74affd75c47be75f,26125183000,04090003,Clinton,MI,1.0,Metropolitan core,Metropolitan,4165.9,3655,79412.0,53.0,8.2,83.1,2.0,0.0,6.1 +curated/2590601520,41033360701,17100308,Middle Rogue,OR,1.0,Metropolitan core,Metropolitan,3386.7,5178,56836.0,11.9,10.1,79.5,0.4,11.6,0.6 +curated/12ca864ef6ab36b0107e6231bc8fcd98,13097080106,03130002,Middle Chattahoochee-Lake Harding,"AL,GA",1.0,Metropolitan core,Metropolitan,1410.4,3901,62553.0,16.8,19.5,27.2,45.6,21.3,1.3 +curated/04d85b8d2b15698ea54dbe6560f3364c,08035014131,10190002,Upper South Platte,CO,1.0,Metropolitan core,Metropolitan,1188.5,6757,106083.0,65.5,4.9,86.9,0.1,4.9,5.2 +curated/0e79e17541244b3fc1486749f396b59a,06065041406,18070203,Santa Ana,CA,1.0,Metropolitan core,Metropolitan,8206.6,5991,84233.0,28.2,10.2,24.3,4.9,46.5,20.1 +curated/1718580deb264f032cb7267c4d44d0d7,06067005301,18020163,Lower Sacramento,CA,1.0,Metropolitan core,Metropolitan,2385.6,2332,94861.0,40.3,34.1,48.1,12.9,16.9,9.5 +curated/0fdc41595c8d54390192ccf29aba8cec,13121011636,03130001,Upper Chattahoochee,GA,1.0,Metropolitan core,Metropolitan,3170.7,1963,120021.0,61.1,3.6,22.4,7.0,19.6,48.4 +curated/0127f294e321bb3b22a90126f1599b76,33011002901,01070006,Merrimack River,"MA,NH",1.0,Metropolitan core,Metropolitan,813.9,8550,157784.0,64.1,4.6,83.8,0.0,3.9,5.6 +osm/way/1447049070,39049007931,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,2719.1,4362,130634.0,43.5,2.0,88.1,2.3,3.0,2.2 +curated/130e569918683afda863c1b7d24c4dcd,34023008504,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,1370.6,7853,133315.0,73.5,7.1,35.3,4.6,10.2,49.2 +curated/10306021f9e69c440e1bc27bf9c2b753,47157009501,08010211,Horn Lake-Nonconnah,"MS,TN",1.0,Metropolitan core,Metropolitan,3194.3,3237,79089.0,49.0,11.2,67.2,8.1,21.3,0.0 +curated/0a21d54381bdf606941b8a1019bfda8b,17031320102,07120003,Chicago,"IL,IN",1.0,Metropolitan core,Metropolitan,27667.4,5040,97725.0,80.8,13.3,44.8,3.3,14.7,30.7 +curated/16e5a13315fd680e9d6435eea5b0362c,19181020300,07100008,Lake Red Rock,IA,2.0,Metropolitan high commuting,Metropolitan,66.0,3687,116010.0,35.2,8.4,89.7,2.0,5.2,1.1 +curated/03a31a29491fa19b2046a7a93b478284,51107980100,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,3.3,0,,,,,,, +curated/0c5d0e6dd52e7b263bec8758a7e278ec,27053026104,07020012,Lower Minnesota,MN,1.0,Metropolitan core,Metropolitan,2192.7,4960,85899.0,62.9,13.8,69.5,15.0,2.9,4.9 +curated/01cff1162657458062bb34d94cf5d6fe,48113019042,12030106,East Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,3250.1,9251,86795.0,46.4,19.6,31.5,40.5,8.6,16.7 +curated/0a642ae8fb032f8a996dd7c8892788d2,41049970101,17070101,Middle Columbia-Lake Wallula,"OR,WA",10.0,Rural area,Rural,19.9,5396,68594.0,7.6,14.8,26.6,1.2,69.6,0.4 +curated/173ee8f2c8adf6489c1254c304cce340,25025060602,01090001,Charles,MA,1.0,Metropolitan core,Metropolitan,1983.9,453,143382.0,96.4,5.3,78.4,0.0,2.4,9.9 +curated/0640b8fb5239af90597055a0ba1eb7db,34017017900,02030101,Lower Hudson,"CT,NJ,NY",1.0,Metropolitan core,Metropolitan,12583.0,5455,190625.0,87.6,2.6,43.4,4.9,11.8,37.6 +curated/007350b901cddac1cf6714d062b758d1,40109109900,11100302,Lower North Canadian,OK,1.0,Metropolitan core,Metropolitan,1240.2,1345,56023.0,31.3,40.4,61.7,9.5,13.1,2.3 +osm/way/1092283612,36087013001,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,1546.0,2300,174725.0,50.3,9.3,64.0,0.6,17.8,14.9 +curated/1343b15c65d7c06433ea1235d2f68731,41067032604,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,5220.9,6749,96389.0,25.2,6.3,52.3,0.0,42.8,0.9 +curated/027d95bc34bf186e7d3469443b0e31b4,48113010003,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,377.8,3333,83981.0,67.7,20.3,38.3,24.7,24.8,4.8 +osm/way/1042260902,04003000301,15050202,Upper San Pedro,"AZ,MX",7.0,Small town core,Small town,563.4,4125,44412.0,21.8,14.5,73.6,0.0,16.8,0.5 +osm/way/1501455348,41059951202,17070103,Umatilla,OR,4.0,Micropolitan core,Micropolitan,857.1,4442,76611.0,19.2,4.4,43.0,0.0,48.7,2.6 +osm/way/247428943,36085029105,02030104,Sandy Hook-Staten Island,"NJ,NY",1.0,Metropolitan core,Metropolitan,6856.9,4467,118597.0,40.4,6.9,66.2,3.2,9.6,13.2 +osm/node/13154826378,51107611019,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,3339.9,5633,220156.0,72.6,1.7,53.5,10.0,7.1,26.4 +osm/way/58708529,06085505010,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,1433.7,4756,202663.0,64.4,9.9,15.6,3.8,11.7,65.1 +osm/way/1374895922,41059950900,17070103,Umatilla,OR,5.0,Micropolitan high commuting,Micropolitan,191.4,5480,72465.0,20.8,17.4,49.3,0.7,42.2,1.6 +osm/way/1268789798,56021002001,10190015,Upper Lodgepole,"CO,NE,WY",2.0,Metropolitan high commuting,Metropolitan,11.7,4564,69444.0,30.3,15.9,90.1,1.4,4.1,1.0 +osm/way/349925359,18059410802,05120204,Driftwood,IN,1.0,Metropolitan core,Metropolitan,506.6,4948,151026.0,52.9,2.2,93.5,2.9,0.8,0.4 +osm/way/39083541,13121011652,03130001,Upper Chattahoochee,GA,1.0,Metropolitan core,Metropolitan,1289.3,3219,129583.0,75.2,4.4,27.2,3.4,13.4,50.1 +osm/way/758306877,55127000400,07090002,Middle Rock,"IL,WI",4.0,Micropolitan core,Micropolitan,1253.6,3791,74853.0,37.5,22.7,74.1,1.7,14.7,5.8 +osm/way/290307022,04013115900,15060106,Lower Salt,AZ,1.0,Metropolitan core,Metropolitan,5907.2,5677,61944.0,10.4,17.0,10.3,11.5,75.1,0.3 +osm/way/1301559332,48221160212,12060201,Middle Brazos-Palo Pinto,TX,10.0,Rural area,Rural,169.3,4143,84590.0,27.7,3.1,65.9,0.0,30.9,0.8 +osm/way/1386017499,41059951100,17070103,Umatilla,OR,4.0,Micropolitan core,Micropolitan,311.9,6548,65136.0,17.7,6.9,44.6,2.9,44.4,1.3 +osm/way/42000820,36089490800,04150305,Raquette,NY,7.0,Small town core,Small town,110.1,3500,55139.0,49.6,30.7,92.8,0.6,0.7,4.3 +osm/way/193611216,34017019900,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,2689.2,5417,99341.0,61.2,4.7,27.4,3.9,27.0,39.8 +osm/way/1486780799,48085032016,12030106,East Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,2509.9,2252,190000.0,75.0,6.0,31.3,10.7,2.6,46.1 +osm/way/1229749896,36063022000,04120104,Niagara,"CN,NY",1.0,Metropolitan core,Metropolitan,2936.6,4008,65568.0,19.3,20.3,77.8,7.4,5.5,1.0 +osm/way/1238955733,36087012800,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,1623.3,7224,180536.0,57.4,3.9,84.2,0.4,7.1,7.2 +osm/way/1017518460,12011060113,03090206,Florida Southeast Coast,FL,1.0,Metropolitan core,Metropolitan,4024.7,7017,91643.0,37.4,9.2,13.5,41.9,27.1,9.3 +osm/way/1229749895,36063022000,04120104,Niagara,"CN,NY",1.0,Metropolitan core,Metropolitan,2936.6,4008,65568.0,19.3,20.3,77.8,7.4,5.5,1.0 +osm/way/1386017490,41049970102,17070101,Middle Columbia-Lake Wallula,"OR,WA",6.0,Micropolitan low commuting,Micropolitan,68.8,3915,72719.0,9.2,13.8,65.7,0.7,31.2,0.0 +osm/way/1383913490,36087012800,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,1623.3,7224,180536.0,57.4,3.9,84.2,0.4,7.1,7.2 +osm/way/1501455347,41059951202,17070103,Umatilla,OR,4.0,Micropolitan core,Micropolitan,857.1,4442,76611.0,19.2,4.4,43.0,0.0,48.7,2.6 +osm/node/13311012216,32003002847,15010015,Las Vegas Wash,NV,1.0,Metropolitan core,Metropolitan,1342.4,4104,48700.0,26.7,13.6,33.7,13.8,32.0,9.4 +osm/way/465032487,48113010003,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,377.8,3333,83981.0,67.7,20.3,38.3,24.7,24.8,4.8 +osm/way/832656125,36063022000,04120104,Niagara,"CN,NY",1.0,Metropolitan core,Metropolitan,2936.6,4008,65568.0,19.3,20.3,77.8,7.4,5.5,1.0 +osm/way/1493516631,51087201404,02080206,Lower James,VA,2.0,Metropolitan high commuting,Metropolitan,253.3,4627,84632.0,20.5,9.0,74.5,19.3,1.6,1.5 +osm/way/271893323,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +osm/way/1425043215,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +osm/way/653416730,41017001101,17070301,Upper Deschutes,OR,1.0,Metropolitan core,Metropolitan,2345.8,7650,111250.0,46.5,5.7,81.6,0.6,8.0,0.4 +osm/way/1334234458,42079216100,02050107,Upper Susquehanna-Lackawanna,PA,4.0,Micropolitan core,Micropolitan,140.1,4047,78560.0,26.0,6.2,86.6,0.0,12.3,0.7 +osm/way/1157356188,55033970802,07050007,Red Cedar,WI,4.0,Micropolitan core,Micropolitan,929.1,3615,56042.0,33.7,15.9,85.2,0.7,3.1,6.4 +osm/way/1229749893,36063022000,04120104,Niagara,"CN,NY",1.0,Metropolitan core,Metropolitan,2936.6,4008,65568.0,19.3,20.3,77.8,7.4,5.5,1.0 +osm/way/1498005255,20007968100,11060003,Medicine Lodge,"KS,OK",10.0,Rural area,Rural,5.7,2551,71618.0,25.8,13.6,89.3,0.1,5.8,0.0 +osm/way/465032201,48113010003,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,377.8,3333,83981.0,67.7,20.3,38.3,24.7,24.8,4.8 +osm/way/1386017498,41059951100,17070103,Umatilla,OR,4.0,Micropolitan core,Micropolitan,311.9,6548,65136.0,17.7,6.9,44.6,2.9,44.4,1.3 +osm/node/12766117170,36047001802,02030104,Sandy Hook-Staten Island,"NJ,NY",1.0,Metropolitan core,Metropolitan,26.0,0,,,,,,, +osm/way/1425043214,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +osm/way/1386926534,47157022700,08010211,Horn Lake-Nonconnah,"MS,TN",1.0,Metropolitan core,Metropolitan,2000.7,6506,28621.0,11.3,32.4,3.4,94.5,0.0,0.0 +osm/node/13746843366,41051010601,17090012,Lower Willamette,OR,1.0,Metropolitan core,Metropolitan,22129.6,1646,50455.0,43.4,30.8,68.2,11.8,7.1,7.3 +osm/way/747985149,48485013201,11130206,Wichita,"OK,TX",1.0,Metropolitan core,Metropolitan,1413.3,3751,48929.0,19.7,32.1,60.7,17.6,19.8,0.9 +osm/way/465032631,48113010003,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,377.8,3333,83981.0,67.7,20.3,38.3,24.7,24.8,4.8 +osm/way/331132308,41067031617,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,5062.1,6201,96250.0,51.0,12.0,44.6,3.6,21.2,22.0 +osm/way/1501436323,41049970102,17070101,Middle Columbia-Lake Wallula,"OR,WA",6.0,Micropolitan low commuting,Micropolitan,68.8,3915,72719.0,9.2,13.8,65.7,0.7,31.2,0.0 +osm/way/1465196736,41067032700,17090010,Tualatin,OR,2.0,Metropolitan high commuting,Metropolitan,75.3,5890,130982.0,49.0,4.9,73.7,3.6,7.0,11.4 +osm/way/578412815,35061980300,13020203,Rio Grande-Albuquerque,NM,10.0,Rural area,Rural,1.6,0,,,,,,, +osm/way/54121151,06085505010,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,1433.7,4756,202663.0,64.4,9.9,15.6,3.8,11.7,65.1 +osm/way/1493516625,51087201404,02080206,Lower James,VA,2.0,Metropolitan high commuting,Metropolitan,253.3,4627,84632.0,20.5,9.0,74.5,19.3,1.6,1.5 +osm/way/633034074,41049970102,17070101,Middle Columbia-Lake Wallula,"OR,WA",6.0,Micropolitan low commuting,Micropolitan,68.8,3915,72719.0,9.2,13.8,65.7,0.7,31.2,0.0 +osm/way/1454598380,41067032608,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,860.3,2242,101058.0,42.6,6.6,61.0,0.0,18.2,13.2 +osm/way/99861735,27053025907,07020012,Lower Minnesota,MN,1.0,Metropolitan core,Metropolitan,2119.9,4719,107868.0,54.6,3.3,72.1,8.8,9.8,5.8 +osm/way/1351049826,06085505010,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,1433.7,4756,202663.0,64.4,9.9,15.6,3.8,11.7,65.1 +osm/way/1493516624,51087201404,02080206,Lower James,VA,2.0,Metropolitan high commuting,Metropolitan,253.3,4627,84632.0,20.5,9.0,74.5,19.3,1.6,1.5 +osm/way/1432637062,48029172009,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,2595.3,11140,117074.0,45.9,4.5,29.0,16.6,44.8,6.2 +osm/way/1442054199,36063022000,04120104,Niagara,"CN,NY",1.0,Metropolitan core,Metropolitan,2936.6,4008,65568.0,19.3,20.3,77.8,7.4,5.5,1.0 +osm/way/1456953254,21071920301,05070203,Lower Levisa,KY,4.0,Micropolitan core,Micropolitan,164.9,2900,42174.0,15.9,23.0,99.4,0.1,0.0,0.0 +osm/way/1493516621,51087201404,02080206,Lower James,VA,2.0,Metropolitan high commuting,Metropolitan,253.3,4627,84632.0,20.5,9.0,74.5,19.3,1.6,1.5 +osm/way/1381264361,47157980300,08010211,Horn Lake-Nonconnah,"MS,TN",10.0,Rural area,Rural,0.0,0,,,,,,, +osm/way/1229749890,36063022000,04120104,Niagara,"CN,NY",1.0,Metropolitan core,Metropolitan,2936.6,4008,65568.0,19.3,20.3,77.8,7.4,5.5,1.0 +osm/way/31803515,06073008511,18070304,San Diego,"CA,MX",1.0,Metropolitan core,Metropolitan,933.0,5607,140403.0,58.4,6.9,34.1,6.2,24.3,31.2 +osm/way/379199519,48453000902,12090205,Austin-Travis Lakes,TX,1.0,Metropolitan core,Metropolitan,6644.8,7103,80692.0,65.5,11.0,52.4,4.0,37.0,3.0 +osm/node/13748555787,41051005001,17090012,Lower Willamette,OR,1.0,Metropolitan core,Metropolitan,26086.2,3331,114899.0,80.3,9.7,73.2,5.0,8.0,7.0 +osm/way/87058670,33015107400,01060003,Piscataqua-Salmon Falls,"MA,ME,NH",1.0,Metropolitan core,Metropolitan,233.3,1259,106000.0,59.3,5.7,93.8,0.0,0.3,2.0 +osm/way/1446350370,17043840201,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,1864.2,6189,121486.0,58.4,1.1,68.9,0.3,8.4,16.0 +osm/way/1493516629,51087201404,02080206,Lower James,VA,2.0,Metropolitan high commuting,Metropolitan,253.3,4627,84632.0,20.5,9.0,74.5,19.3,1.6,1.5 +osm/node/13748859030,41039003900,17090003,Upper Willamette,OR,1.0,Metropolitan core,Metropolitan,8517.7,4867,41632.0,33.9,42.2,73.2,2.6,8.2,4.0 +osm/way/1229749894,36063022000,04120104,Niagara,"CN,NY",1.0,Metropolitan core,Metropolitan,2936.6,4008,65568.0,19.3,20.3,77.8,7.4,5.5,1.0 +osm/way/1443620406,48439111314,12030102,Lower West Fork Trinity,TX,1.0,Metropolitan core,Metropolitan,3537.3,9121,162250.0,53.0,7.9,39.8,43.4,10.0,4.2 +osm/way/1465196735,41067032700,17090010,Tualatin,OR,2.0,Metropolitan high commuting,Metropolitan,75.3,5890,130982.0,49.0,4.9,73.7,3.6,7.0,11.4 +osm/way/1386017493,41049970101,17070101,Middle Columbia-Lake Wallula,"OR,WA",10.0,Rural area,Rural,19.9,5396,68594.0,7.6,14.8,26.6,1.2,69.6,0.4 +osm/way/1386017492,41049970101,17070101,Middle Columbia-Lake Wallula,"OR,WA",10.0,Rural area,Rural,19.9,5396,68594.0,7.6,14.8,26.6,1.2,69.6,0.4 +osm/way/1493516620,51087201404,02080206,Lower James,VA,2.0,Metropolitan high commuting,Metropolitan,253.3,4627,84632.0,20.5,9.0,74.5,19.3,1.6,1.5 +osm/way/1493516630,51087201404,02080206,Lower James,VA,2.0,Metropolitan high commuting,Metropolitan,253.3,4627,84632.0,20.5,9.0,74.5,19.3,1.6,1.5 +osm/way/611308188,49047968401,14060010,Lower Green-Diamond,"CO,UT",4.0,Micropolitan core,Micropolitan,1236.7,4057,55036.0,11.7,14.2,78.4,0.5,14.5,0.3 +osm/node/13409186015,42091205906,02040203,Schuylkill,PA,1.0,Metropolitan core,Metropolitan,834.9,2248,106250.0,52.8,2.9,78.5,3.7,8.3,4.4 +osm/way/166431620,31055007319,10230006,Big Papillion-Mosquito,"IA,NE",1.0,Metropolitan core,Metropolitan,3748.4,5391,99821.0,32.4,6.8,45.0,19.5,13.3,14.1 +osm/relation/4645970,41067032608,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,860.3,2242,101058.0,42.6,6.6,61.0,0.0,18.2,13.2 +osm/way/102129663,48029110100,12100301,Upper San Antonio,TX,1.0,Metropolitan core,Metropolitan,2879.4,3606,52109.0,52.8,12.1,42.6,6.5,48.7,0.8 +osm/node/12708029111,34021004314,02030105,Raritan,NJ,1.0,Metropolitan core,Metropolitan,911.5,5865,167458.0,85.9,7.8,29.0,2.9,10.9,54.6 +osm/way/1386017497,41059951100,17070103,Umatilla,OR,4.0,Micropolitan core,Micropolitan,311.9,6548,65136.0,17.7,6.9,44.6,2.9,44.4,1.3 +osm/way/1217649348,17031811800,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,3955.8,5660,100577.0,17.7,6.7,30.5,3.7,61.5,2.0 +osm/way/424945845,06037980013,18070106,San Gabriel,CA,1.0,Metropolitan core,Metropolitan,30.3,0,,,,,,, +osm/way/1493516633,51087201404,02080206,Lower James,VA,2.0,Metropolitan high commuting,Metropolitan,253.3,4627,84632.0,20.5,9.0,74.5,19.3,1.6,1.5 +osm/way/37877544,06085508708,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2463.3,6682,250001.0,89.0,7.3,12.2,0.2,7.5,75.6 +osm/way/1238955720,36087012800,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,1623.3,7224,180536.0,57.4,3.9,84.2,0.4,7.1,7.2 +osm/way/131874718,27123030202,07010206,Twin Cities,MN,1.0,Metropolitan core,Metropolitan,2291.7,1933,72641.0,62.1,9.8,59.7,24.6,2.4,6.9 +osm/node/13639231258,38017040800,09020104,Upper Red,"MN,ND",2.0,Metropolitan high commuting,Metropolitan,41.0,5373,141515.0,50.0,2.6,90.8,0.7,3.1,0.2 +osm/way/290703004,48113010003,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,377.8,3333,83981.0,67.7,20.3,38.3,24.7,24.8,4.8 +osm/way/54119667,06085505010,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,1433.7,4756,202663.0,64.4,9.9,15.6,3.8,11.7,65.1 +osm/way/1493516626,51087201404,02080206,Lower James,VA,2.0,Metropolitan high commuting,Metropolitan,253.3,4627,84632.0,20.5,9.0,74.5,19.3,1.6,1.5 +osm/way/843314844,04019004074,15050301,Upper Santa Cruz,"AZ,MX",1.0,Metropolitan core,Metropolitan,493.2,1781,91042.0,45.9,3.7,60.9,1.1,29.6,0.8 +osm/node/13042311881,06037206020,18070105,Los Angeles,CA,1.0,Metropolitan core,Metropolitan,17129.5,7629,155658.0,7.1,7.6,15.1,34.1,43.0,3.3 +osm/way/1446350367,17043840201,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,1864.2,6189,121486.0,58.4,1.1,68.9,0.3,8.4,16.0 +osm/way/471691757,41067032608,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,860.3,2242,101058.0,42.6,6.6,61.0,0.0,18.2,13.2 +osm/way/1387391201,51107611028,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,694.5,6124,250001.0,85.0,3.0,36.7,9.9,5.6,42.4 +osm/way/1386017491,41049970102,17070101,Middle Columbia-Lake Wallula,"OR,WA",6.0,Micropolitan low commuting,Micropolitan,68.8,3915,72719.0,9.2,13.8,65.7,0.7,31.2,0.0 +osm/way/1493516623,51087201404,02080206,Lower James,VA,2.0,Metropolitan high commuting,Metropolitan,253.3,4627,84632.0,20.5,9.0,74.5,19.3,1.6,1.5 +osm/way/1391966326,27003050236,07010206,Twin Cities,MN,1.0,Metropolitan core,Metropolitan,968.9,3792,177602.0,57.1,2.6,86.4,1.0,3.0,7.3 +osm/way/967131562,41029000201,17100308,Middle Rogue,OR,1.0,Metropolitan core,Metropolitan,7259.9,3698,50334.0,10.5,19.5,62.8,1.2,28.7,1.1 +osm/way/409027020,06037292001,18070106,San Gabriel,CA,1.0,Metropolitan core,Metropolitan,3515.2,4522,54319.0,18.7,32.7,4.5,17.5,53.1,23.2 +osm/way/1243089557,41067032603,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,1061.1,6723,143953.0,51.2,2.2,64.0,4.0,20.9,3.5 +osm/way/832658041,36063022000,04120104,Niagara,"CN,NY",1.0,Metropolitan core,Metropolitan,2936.6,4008,65568.0,19.3,20.3,77.8,7.4,5.5,1.0 +osm/way/465042594,48113010003,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,377.8,3333,83981.0,67.7,20.3,38.3,24.7,24.8,4.8 +osm/node/13546262077,54039012800,05050008,Lower Kanawha,WV,1.0,Metropolitan core,Metropolitan,1597.7,4128,79107.0,49.5,13.4,86.2,0.8,1.2,2.2 +osm/way/617511179,29510119101,07140101,Cahokia-Joachim,"IL,MO",1.0,Metropolitan core,Metropolitan,13549.0,2868,50313.0,61.9,26.3,42.1,31.0,3.1,17.2 +osm/way/1080170579,41067032603,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,1061.1,6723,143953.0,51.2,2.2,64.0,4.0,20.9,3.5 +osm/way/1493516628,51087201404,02080206,Lower James,VA,2.0,Metropolitan high commuting,Metropolitan,253.3,4627,84632.0,20.5,9.0,74.5,19.3,1.6,1.5 +osm/node/13154826379,51153901507,02070010,Middle Potomac-Anacostia-Occoquan,"DC,MD,VA",1.0,Metropolitan core,Metropolitan,2388.6,2978,161458.0,43.4,6.6,47.4,8.2,20.8,14.0 +osm/way/1504463315,48141004309,13040100,Rio Grande-Fort Quitman,"MX,NM,TX",1.0,Metropolitan core,Metropolitan,2692.2,5585,64724.0,22.7,21.5,8.4,1.3,89.8,0.0 +osm/way/818167571,31055001800,10230006,Big Papillion-Mosquito,"IA,NE",1.0,Metropolitan core,Metropolitan,6555.7,4969,76441.0,57.1,16.1,70.4,14.8,8.7,0.7 +osm/way/832656868,36063022000,04120104,Niagara,"CN,NY",1.0,Metropolitan core,Metropolitan,2936.6,4008,65568.0,19.3,20.3,77.8,7.4,5.5,1.0 +osm/node/12695496267,17031330101,04040002,Pike-Root,"IL,WI",1.0,Metropolitan core,Metropolitan,6316.3,4821,171388.0,87.9,10.0,52.0,7.8,4.6,28.6 +osm/way/1502710557,48029171912,12100302,Medina,TX,1.0,Metropolitan core,Metropolitan,2116.6,6929,92147.0,42.3,8.7,32.6,8.0,55.2,3.2 +osm/way/1126386234,41049970102,17070101,Middle Columbia-Lake Wallula,"OR,WA",6.0,Micropolitan low commuting,Micropolitan,68.8,3915,72719.0,9.2,13.8,65.7,0.7,31.2,0.0 +osm/way/1229749892,36063022000,04120104,Niagara,"CN,NY",1.0,Metropolitan core,Metropolitan,2936.6,4008,65568.0,19.3,20.3,77.8,7.4,5.5,1.0 +osm/way/615593145,13121011652,03130001,Upper Chattahoochee,GA,1.0,Metropolitan core,Metropolitan,1289.3,3219,129583.0,75.2,4.4,27.2,3.4,13.4,50.1 +osm/way/1493516632,51087201404,02080206,Lower James,VA,2.0,Metropolitan high commuting,Metropolitan,253.3,4627,84632.0,20.5,9.0,74.5,19.3,1.6,1.5 +osm/way/1501456882,41059951202,17070103,Umatilla,OR,4.0,Micropolitan core,Micropolitan,857.1,4442,76611.0,19.2,4.4,43.0,0.0,48.7,2.6 +osm/way/903236619,26163985300,04090004,Detroit,"CN,MI",1.0,Metropolitan core,Metropolitan,527.0,309,,20.4,39.7,56.3,38.8,0.0,0.0 +osm/way/1229749891,36063022000,04120104,Niagara,"CN,NY",1.0,Metropolitan core,Metropolitan,2936.6,4008,65568.0,19.3,20.3,77.8,7.4,5.5,1.0 +osm/way/492699069,06059075516,18070204,Newport Bay,CA,1.0,Metropolitan core,Metropolitan,2319.4,11338,115453.0,63.0,24.1,35.5,6.0,12.7,26.7 +osm/way/1501805557,41067032903,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,1665.5,3358,76481.0,16.9,18.9,41.8,0.1,55.6,0.0 +osm/way/818790301,34031124402,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,4239.8,5723,119946.0,49.4,6.3,56.4,1.0,30.8,10.9 +osm/way/328702401,41067031617,17090010,Tualatin,OR,1.0,Metropolitan core,Metropolitan,5062.1,6201,96250.0,51.0,12.0,44.6,3.6,21.2,22.0 +osm/way/1481581947,17043846409,07120007,Lower Fox,IL,1.0,Metropolitan core,Metropolitan,1652.1,4438,184044.0,66.2,2.5,56.6,2.2,10.5,27.4 +osm/way/1075445245,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +osm/way/471658485,48113002100,12030105,Upper Trinity,TX,1.0,Metropolitan core,Metropolitan,7110.4,3234,102148.0,65.2,9.6,41.8,26.1,16.2,8.9 +osm/way/159959672,40143002500,11110101,Polecat-Snake,OK,1.0,Metropolitan core,Metropolitan,3366.7,4351,65409.0,35.7,23.4,57.0,21.0,8.0,1.7 +osm/way/1386017495,41059951202,17070103,Umatilla,OR,4.0,Micropolitan core,Micropolitan,857.1,4442,76611.0,19.2,4.4,43.0,0.0,48.7,2.6 +osm/way/551387747,39049007048,05060001,Upper Scioto,OH,1.0,Metropolitan core,Metropolitan,5795.6,5936,102475.0,49.7,11.3,50.0,8.9,17.1,11.0 +osm/way/1501436324,41049970102,17070101,Middle Columbia-Lake Wallula,"OR,WA",6.0,Micropolitan low commuting,Micropolitan,68.8,3915,72719.0,9.2,13.8,65.7,0.7,31.2,0.0 +osm/way/209073658,06085505202,18050003,Coyote,CA,1.0,Metropolitan core,Metropolitan,2180.6,8273,164928.0,56.4,19.1,22.4,1.1,28.0,44.3 +osm/way/1493516619,51087201404,02080206,Lower James,VA,2.0,Metropolitan high commuting,Metropolitan,253.3,4627,84632.0,20.5,9.0,74.5,19.3,1.6,1.5 +osm/way/1333205263,51107610604,02070008,Middle Potomac-Catoctin,"DC,MD,VA,WV",1.0,Metropolitan core,Metropolitan,1552.0,6616,186125.0,66.9,3.2,61.6,13.2,10.6,7.3 +osm/way/1386017496,41059951202,17070103,Umatilla,OR,4.0,Micropolitan core,Micropolitan,857.1,4442,76611.0,19.2,4.4,43.0,0.0,48.7,2.6 +osm/way/1392657385,20091052804,10270104,"Lower Kansas, Kansas","KS,MO",1.0,Metropolitan core,Metropolitan,872.3,6457,183125.0,63.5,0.0,92.2,0.9,3.1,2.0 +osm/way/1217649350,17031811800,07120004,Des Plaines,"IL,WI",1.0,Metropolitan core,Metropolitan,3955.8,5660,100577.0,17.7,6.7,30.5,3.7,61.5,2.0 +osm/way/1383916144,34017019900,02030103,Hackensack-Passaic,"NJ,NY",1.0,Metropolitan core,Metropolitan,2689.2,5417,99341.0,61.2,4.7,27.4,3.9,27.0,39.8 +osm/node/13720841438,40143002500,11110101,Polecat-Snake,OK,1.0,Metropolitan core,Metropolitan,3366.7,4351,65409.0,35.7,23.4,57.0,21.0,8.0,1.7 +osm/way/1425043212,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 +osm/way/1427613546,39089755601,05060001,Upper Scioto,OH,2.0,Metropolitan high commuting,Metropolitan,95.2,2664,129625.0,47.0,2.4,94.9,0.0,0.0,1.4 diff --git a/output/master_data_center_state_energy_context.csv b/output/master_data_center_state_energy_context.csv new file mode 100644 index 0000000..dbe0b3a --- /dev/null +++ b/output/master_data_center_state_energy_context.csv @@ -0,0 +1,48 @@ +state_code,current_data_center_count,map_latitude,map_longitude,im3_project_count,im3_projected_it_power_mw,im3_cooling_energy_demand_mwh,im3_cooling_water_demand_mgy,im3_cooling_water_consumption_mgy,im3_avg_weighted_siting_score,im3_avg_normalized_locational_cost,im3_avg_normalized_gravity_score,seds_latest_year,seds_series_count,seds_selected_total_value +VA,378,38.81180123513644,-77.48445358366453,76.0,2736.0,0.0,3307.495679999999,2645.9966960000033,0.16464524066748473,0.2366938493068311,0.09259663202813818,,, +TX,162,31.509920265059563,-97.62641372338256,49.0,1764.0,0.0,2132.4643200000023,1705.9715539999997,0.00350041121207623,0.00018486843693128847,0.00681595398722118,,, +CA,147,36.6743835566224,-121.03746691674534,21.0,756.0,0.0,913.91328,731.1306659999999,0.009498709102457833,0.00963112411543682,0.009366294089478828,,, +IL,61,41.83977411585855,-87.98518544988711,16.0,576.0,0.0,696.31488,557.051936,0.06235921050437614,0.06746532657235553,0.05725309443639674,,, +OR,145,45.4770347075944,-120.9390505417634,14.0,504.0,0.0,609.27552,487.4204439999999,0.016703061443370994,0.010005638753125727,0.023400484133616232,,, +AZ,69,33.35143139388246,-111.8599097648615,14.0,504.0,685908.0,293.75784,235.00628579999997,0.22894142277116208,0.2160051752565124,0.24187767028581172,,, +IA,65,41.44566071909779,-94.26149737259419,14.0,504.0,0.0,609.27552,487.4204439999999,0.09821083960768505,0.1497288191285527,0.0466928600868174,,, +GA,50,33.75917632869643,-84.34900369690746,14.0,504.0,0.0,609.27552,487.4204439999999,0.07573816651050262,0.08431831295122912,0.06715802006977611,,, +WA,93,47.40058038575267,-120.65389054931781,11.0,396.0,189216.0,391.67712,313.34171399999997,0.008602897054563028,0.012114925824482491,0.005090868284643536,,, +PA,17,40.51861689987747,-77.14067159955545,10.0,360.0,0.0,435.1968,348.15745999999996,0.025611264607888918,0.046432172534256695,0.00479035668152121,,, +NJ,62,40.63657863750276,-74.33774092959604,9.0,324.0,0.0,391.67712,313.34171399999997,0.07951105237280956,0.04415559548391192,0.11486650926170719,,, +NY,48,42.0986494544888,-75.86702411728405,9.0,324.0,0.0,391.67712,313.34171399999997,0.033844266542779576,0.015562967240912412,0.052125565844646754,,, +NE,26,41.19044423571503,-96.21083342167539,8.0,288.0,0.0,348.15744,278.525968,0.023213461680844788,0.00994173426451155,0.036485189097178045,,, +ND,3,46.6009985,-97.43026833333334,8.0,288.0,0.0,348.15744,278.525968,0.1754766419137694,0.2637904066656519,0.08716287716188698,,, +NV,41,37.52887284950246,-116.95999289168654,7.0,252.0,0.0,304.63776,243.71022199999996,0.09370158681927372,0.13838366134523744,0.049019512293309996,,, +NC,31,35.515951937711286,-80.45619313915424,6.0,216.0,0.0,261.11808,208.89447599999997,0.017336791819723883,0.02155215545264995,0.013121428186797816,,, +OH,103,40.11289672434338,-82.9632959538231,5.0,180.0,0.0,217.5984,174.07872999999998,0.028173405916738482,0.027854599205723286,0.02849221262775366,,, +UT,17,40.27992287878221,-111.9244948339973,5.0,180.0,0.0,217.5984,174.07872999999998,0.071711762460987,0.045980594538791664,0.09744293038318233,,, +WY,22,41.2694301778197,-104.88440403454051,4.0,144.0,283824.0,43.51968,34.815746,0.14755687340545556,0.21318301702746534,0.08193072978344579,,, +SC,13,33.14909429058469,-80.10080479843208,4.0,144.0,0.0,174.07872,139.262984,0.1016155103641099,0.06996685870746874,0.13326416202075103,,, +TN,32,36.04624181258759,-86.94623740179134,3.0,108.0,0.0,130.55904,104.447238,0.10169703586035657,0.18104455608133466,0.02234951563937843,,, +FL,29,27.411439250882815,-81.13143447486134,3.0,108.0,283824.0,0.0,0.0,0.08202502654847077,0.1294847364539594,0.0345653166429822,,, +CO,27,39.51836862226617,-104.85288139276082,3.0,108.0,141912.0,65.27952,52.223619,0.005559275742971499,0.0064795144918877,0.004639036994055333,,, +AL,12,34.30076806872618,-86.35712687934489,3.0,108.0,0.0,130.55904,104.447238,0.0009726334592856833,0.00014293747388154497,0.001802329444689833,,, +KY,5,37.94511731391368,-85.43993183815397,3.0,108.0,0.0,130.55904,104.447238,0.0698208727274249,0.023908323736558768,0.11573342171829104,,, +MO,17,39.117889133868196,-93.5372434088145,2.0,72.0,0.0,87.03936,69.631492,0.0382817539994971,0.047006409422381296,0.0295570985766129,,, +MA,12,42.37838745843559,-71.37421289245025,2.0,72.0,0.0,87.03936,69.631492,0.0727448359176194,0.0192291585456955,0.12626051328954324,,, +OK,11,35.77427623773164,-96.24089812456369,2.0,72.0,0.0,87.03936,69.631492,0.05236513716444575,0.0689640790147675,0.035766195314124,,, +MN,15,44.980069700569416,-93.17958896920497,1.0,36.0,0.0,43.51968,34.815746,0.1809237101049204,0.2082387823395508,0.1536086378702902,,, +MI,13,42.46082727383233,-83.57434337241001,1.0,36.0,0.0,43.51968,34.815746,0.0566642628531991,0.0423349445013257,0.0709935812050726,,, +MT,3,46.16069827338828,-109.23879441517472,1.0,36.0,0.0,43.51968,34.815746,0.1285720285331266,0.2250467365641875,0.0320973205020656,,, +NM,17,34.84316652063309,-106.64757455359201,,,,,,,,,,, +WI,17,43.21578182334325,-88.79371779090025,,,,,,,,,,, +MD,16,39.252795209689744,-76.78697385304773,,,,,,,,,,, +IN,10,40.603351555794575,-86.52645175699342,,,,,,,,,,, +KS,8,38.71977107866478,-95.84686174722735,,,,,,,,,,, +CT,7,41.257283034952174,-73.19770117764624,,,,,,,,,,, +MS,5,32.39151784524035,-90.32332510585482,,,,,,,,,,, +ID,4,43.267254168631325,-113.90666627597611,,,,,,,,,,, +NH,4,43.031734736446104,-71.04302199169723,,,,,,,,,,, +WV,3,38.77825380000001,-80.518261,,,,,,,,,,, +LA,3,30.956981986997324,-91.664033994836,,,,,,,,,,, +DC,2,38.89899305000002,-77.032767,,,,,,,,,,, +ME,2,43.77645494131252,-70.09226452273563,,,,,,,,,,, +PR,2,18.432131450000014,-66.08033840000002,,,,,,,,,,, +AR,2,35.002725817804865,-92.0928146845728,,,,,,,,,,, +SD,2,43.60344233895939,-96.80197609920154,,,,,,,,,,,