{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 32,
   "id": "08988603-7a9b-4a0d-a90a-67856c5b9ac9",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "application/vnd.jupyter.widget-view+json": {
       "model_id": "f3410b8abc564cf48031b13732333687",
       "version_major": 2,
       "version_minor": 1
      },
      "text/plain": [
       "Map(layers=[ScatterplotLayer(get_radius=<pyarrow.lib.FloatArray object at 0x77038ccd37c0>\n",
       "[\n",
       "  429746,\n",
       "  300131…"
      ]
     },
     "execution_count": 32,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "#import leafmap.deck as leafmap\n",
    "import geopandas as gpd\n",
    "\n",
    "#m = leafmap.Map(center=(40, -100), zoom=3)\n",
    "DATA_URL = 'https://data.source.coop/cboettig/conservation-policy/Inflation_Reduction_Act_Projects.geojson'\n",
    "gdf = gpd.read_file(DATA_URL)\n",
    "\n",
    "\n",
    "\n",
    "from lonboard import Map, ScatterplotLayer\n",
    "from lonboard.colormap import apply_continuous_cmap\n",
    "\n",
    "layer = ScatterplotLayer.from_geopandas(\n",
    "    gdf,\n",
    "   # get_position=[\"LONGITUDE\", \"LATITUDE\"],\n",
    "    get_radius= gdf.FUNDING_NUMERIC, # \"FUNDING_NUMERIC\",\n",
    "    #get_fill_color = [255,255,0, 140],\n",
    "    # elevation_scale=.01,\n",
    "    #pickable=True,\n",
    "    #auto_highlight=True,\n",
    ")\n",
    "m = Map(layer)\n",
    "\n",
    "m"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 12,
   "id": "f9ccbbc7-8396-41ea-9d68-3d25406b0a43",
   "metadata": {},
   "outputs": [],
   "source": [
    "import geopandas as gpd\n",
    "import pydeck as pdk\n",
    "\n",
    "DATA_URL = 'https://data.source.coop/cboettig/conservation-policy/Inflation_Reduction_Act_Projects.geojson'\n",
    "df = gpd.read_file(DATA_URL)\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 34,
   "id": "fad16a43-338f-4209-9d10-ae72b41ee0b4",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "\n",
       "        <iframe\n",
       "            width=\"100%\"\n",
       "            height=500\n",
       "            frameborder=\"0\"\n",
       "            srcdoc=\"&lt;!DOCTYPE html&gt;\n",
       "&lt;html&gt;\n",
       "  &lt;head&gt;\n",
       "    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\n",
       "    &lt;title&gt;pydeck&lt;/title&gt;\n",
       "        &lt;script src=&quot;https://api.tiles.mapbox.com/mapbox-gl-js/v1.13.0/mapbox-gl.js&quot;&gt;&lt;/script&gt;\n",
       "        &lt;link rel=&quot;stylesheet&quot; href=&quot;https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css&quot; /&gt;\n",
       "    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css&quot; /&gt;\n",
       "    &lt;script src=&#x27;https://cdn.jsdelivr.net/npm/@deck.gl/jupyter-widget@~9.0.*/dist/index.js&#x27;&gt;&lt;/script&gt;\n",
       "    &lt;style&gt;\n",
       "    body {\n",
       "  margin: 0;\n",
       "  padding: 0;\n",
       "  overflow: hidden;\n",
       "}\n",
       "\n",
       "#deck-container {\n",
       "  width: 100vw;\n",
       "  height: 100vh;\n",
       "}\n",
       "\n",
       "#deck-container canvas {\n",
       "  z-index: 1;\n",
       "  background: none;\n",
       "}\n",
       "    &lt;/style&gt;\n",
       "  &lt;/head&gt;\n",
       "  &lt;body&gt;\n",
       "    &lt;div id=&quot;deck-container&quot;&gt;\n",
       "    &lt;/div&gt;\n",
       "  &lt;/body&gt;\n",
       "  &lt;script&gt;\n",
       "    const container = document.getElementById(&#x27;deck-container&#x27;);\n",
       "    const jsonInput = {\n",
       "  &quot;initialViewState&quot;: {\n",
       "    &quot;bearing&quot;: 0,\n",
       "    &quot;latitude&quot;: 35,\n",
       "    &quot;longitude&quot;: -100,\n",
       "    &quot;maxZoom&quot;: 16,\n",
       "    &quot;pitch&quot;: 45,\n",
       "    &quot;zoom&quot;: 4\n",
       "  },\n",
       "  &quot;layers&quot;: [\n",
       "    {\n",
       "      &quot;@@type&quot;: &quot;ColumnLayer&quot;,\n",
       "      &quot;autoHighlight&quot;: true,\n",
       "      &quot;data&quot;: [\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Madison, WI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Madison&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;429746&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 429746.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-128&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.07313,\n",
       "          &quot;LONGITUDE&quot;: -89.38644,\n",
       "          &quot;OBJECTID&quot;: 1,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Madison&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Wisconsin&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -89.3864399999999,\n",
       "              43.07313\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Pittsfield, MA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Pittsfield&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;300131&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 300131.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-119&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.44776,\n",
       "          &quot;LONGITUDE&quot;: -73.25413,\n",
       "          &quot;OBJECTID&quot;: 2,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Berkshire Environmental Action Team&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Massachusetts&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -73.25413,\n",
       "              42.4477600000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Charleston, SC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Charleston&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;499715&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 499715.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-127&quot;,\n",
       "          &quot;LATITUDE&quot;: 32.78115,\n",
       "          &quot;LONGITUDE&quot;: -79.9316,\n",
       "          &quot;OBJECTID&quot;: 3,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Charleston Community Research to Action Board&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;SC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;South Carolina&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -79.9316,\n",
       "              32.78115\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;New Bedford, MA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;New Bedford&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;391822&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 391822.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-129&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.6378,\n",
       "          &quot;LONGITUDE&quot;: -70.93089,\n",
       "          &quot;OBJECTID&quot;: 4,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of New Bedford&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Massachusetts&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -70.93089,\n",
       "              41.6378\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Philadelphia, PA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Philadelphia&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;392658&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 392658.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-131&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.95222,\n",
       "          &quot;LONGITUDE&quot;: -75.16218,\n",
       "          &quot;OBJECTID&quot;: 5,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Philadelphia&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Pennsylvania&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -75.16218,\n",
       "              39.9522200000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Paramount, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Paramount&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;319754&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 319754.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-130&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.88516,\n",
       "          &quot;LONGITUDE&quot;: -118.1614,\n",
       "          &quot;OBJECTID&quot;: 6,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Paramount&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -118.1614,\n",
       "              33.88516\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;East Chicago, IN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;East Chicago&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;200000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 200000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-141&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.63133,\n",
       "          &quot;LONGITUDE&quot;: -87.48082,\n",
       "          &quot;OBJECTID&quot;: 7,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;East Chicago Calumet Coalition Community Advisory Group Inc.&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Indiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -87.4808199999999,\n",
       "              41.63133\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Elizabeth, NJ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Elizabeth&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-148&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.66381,\n",
       "          &quot;LONGITUDE&quot;: -74.21144,\n",
       "          &quot;OBJECTID&quot;: 8,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Housing Authority of the City of Elizabeth&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NJ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Jersey&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -74.21144,\n",
       "              40.66381\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Fort Collins, CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Fort Collins&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;499139&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 499139.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-144&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.58147,\n",
       "          &quot;LONGITUDE&quot;: -105.07662,\n",
       "          &quot;OBJECTID&quot;: 9,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Fort Collins&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.07662,\n",
       "              40.58147\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Amherst, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Amherst&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;499963&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 499963.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-167&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.97839,\n",
       "          &quot;LONGITUDE&quot;: -78.79976,\n",
       "          &quot;OBJECTID&quot;: 10,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Research Foundation of SUNY Amherst&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -78.79976,\n",
       "              42.97839\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Birmingham, AL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Birmingham&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;437889&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 437889.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-173&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.52072,\n",
       "          &quot;LONGITUDE&quot;: -86.81179,\n",
       "          &quot;OBJECTID&quot;: 11,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Southern Research Institute&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Alabama&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -86.81179,\n",
       "              33.52072\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Pueblo de San Ildefonso, NM&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Pueblo de San Ildefonso&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;485466&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 485466.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-164&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.89259,\n",
       "          &quot;LONGITUDE&quot;: -106.11784,\n",
       "          &quot;OBJECTID&quot;: 12,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Pueblo de San Ildefonso&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NM&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Mexico&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -106.11784,\n",
       "              35.89259\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Shoshone Paiute, ID&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Shoshone Paiute&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;99985&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 99985.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-170&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.033797555,\n",
       "          &quot;LONGITUDE&quot;: -116.186844142,\n",
       "          &quot;OBJECTID&quot;: 13,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Shoshone Paiute Tribes of Duck Valley&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;ID&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Idaho&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -116.186844142,\n",
       "              42.033797555\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Detroit, MI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Detroit&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;496700&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 496700.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-179&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.33168,\n",
       "          &quot;LONGITUDE&quot;: -83.048,\n",
       "          &quot;OBJECTID&quot;: 14,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;The Green Door Initiative&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Michigan&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -83.048,\n",
       "              42.33168\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Albany, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Albany&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;499032&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 499032.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-177&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.65155,\n",
       "          &quot;LONGITUDE&quot;: -73.75521,\n",
       "          &quot;OBJECTID&quot;: 15,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;SUNY at Albany&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -73.75521,\n",
       "              42.65155\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Reno, NV&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Reno&quot;,\n",
       "          &quot;COUNTY&quot;: &quot;Washoe&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;213204&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 213204.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-187&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.52766,\n",
       "          &quot;LONGITUDE&quot;: -119.81353,\n",
       "          &quot;OBJECTID&quot;: 16,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Washoe County District Health Department&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NV&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Nevada&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.81353,\n",
       "              39.52766\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Winnebago, NE&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Winnebago&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;266064&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 266064.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-188&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.23609,\n",
       "          &quot;LONGITUDE&quot;: -96.47233,\n",
       "          &quot;OBJECTID&quot;: 17,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Winnebago Tribal Council&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NE&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Nebraska&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -96.47233,\n",
       "              42.23609\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Upper Mattaponi, VA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Upper Mattaponi&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;449988&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 449988.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-184&quot;,\n",
       "          &quot;LATITUDE&quot;: 37.732232987,\n",
       "          &quot;LONGITUDE&quot;: -77.115009492,\n",
       "          &quot;OBJECTID&quot;: 18,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Upper Mattaponi Indian Tribe&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;VA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Virginia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -77.1150094919999,\n",
       "              37.732232987\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Supai, AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Supai&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-245&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.23693,\n",
       "          &quot;LONGITUDE&quot;: -112.68908,\n",
       "          &quot;OBJECTID&quot;: 19,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Tribal Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Havasupai Tribe&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -112.68908,\n",
       "              36.23693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Huslia, AK&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Huslia&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-246&quot;,\n",
       "          &quot;LATITUDE&quot;: 65.70209,\n",
       "          &quot;LONGITUDE&quot;: -156.38685,\n",
       "          &quot;OBJECTID&quot;: 20,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Tribal Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Huslia Village&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AK&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Alaska&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -156.38685,\n",
       "              65.70209\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Fort Yukon, AK&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Fort Yukon&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-247&quot;,\n",
       "          &quot;LATITUDE&quot;: 66.56489,\n",
       "          &quot;LONGITUDE&quot;: -145.24142,\n",
       "          &quot;OBJECTID&quot;: 21,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Tribal Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Native Village of Fort Yukon&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AK&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Alaska&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -145.24142,\n",
       "              66.56489\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Nelson Lagoon, AK&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Nelson Lagoon&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-249&quot;,\n",
       "          &quot;LATITUDE&quot;: 55.98556,\n",
       "          &quot;LONGITUDE&quot;: -161.09278,\n",
       "          &quot;OBJECTID&quot;: 22,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Tribal Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Native Village of Nelson Lagoon&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AK&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Alaska&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -161.09278,\n",
       "              55.98556\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Charenton, LA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Charenton&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-244&quot;,\n",
       "          &quot;LATITUDE&quot;: 29.88337,\n",
       "          &quot;LONGITUDE&quot;: -91.52399,\n",
       "          &quot;OBJECTID&quot;: 23,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Tribal Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Chitimacha Tribe&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;LA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Louisiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -91.52399,\n",
       "              29.88337\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Princeton, ME&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Princeton&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-252&quot;,\n",
       "          &quot;LATITUDE&quot;: 45.22461,\n",
       "          &quot;LONGITUDE&quot;: -67.57573,\n",
       "          &quot;OBJECTID&quot;: 24,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Tribal Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Passamaquoddy Indian Tribe&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;ME&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Maine&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -67.57573,\n",
       "              45.22461\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Point Lay, AK&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Point Lay&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-250&quot;,\n",
       "          &quot;LATITUDE&quot;: 69.7428,\n",
       "          &quot;LONGITUDE&quot;: -163.01125,\n",
       "          &quot;OBJECTID&quot;: 25,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Tribal Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Native Village of Point Lay&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AK&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Alaska&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -163.01125,\n",
       "              69.7428\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Klamath, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Klamath&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-254&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.53172,\n",
       "          &quot;LONGITUDE&quot;: -124.04098,\n",
       "          &quot;OBJECTID&quot;: 26,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Tribal Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Yurok Tribe&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -124.04098,\n",
       "              41.53172\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Tule River, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Tule River&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-182&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.1589758490001,\n",
       "          &quot;LONGITUDE&quot;: -118.719647427,\n",
       "          &quot;OBJECTID&quot;: 27,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Tule River Tribal Council&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -118.719647427,\n",
       "              36.1589758490001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Quincy, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Quincy&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;182500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 182500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-263&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.93673,\n",
       "          &quot;LONGITUDE&quot;: -120.94812,\n",
       "          &quot;OBJECTID&quot;: 28,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Hazardous Fuels Reduction Projects in Wildland Urban Interface&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Pacific Southwest - Quincy Area&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.94812,\n",
       "              39.93673\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Spokane, WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Spokane&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;3000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 3000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-265&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.65726,\n",
       "          &quot;LONGITUDE&quot;: -117.41162,\n",
       "          &quot;OBJECTID&quot;: 29,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Hazardous Fuels Reduction Projects in Wildland Urban Interface&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Pacific Northwest - Spokane area&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -117.41162,\n",
       "              47.6572600000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Sandy, OR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Sandy&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;3000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 3000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-267&quot;,\n",
       "          &quot;LATITUDE&quot;: 45.39644,\n",
       "          &quot;LONGITUDE&quot;: -122.25898,\n",
       "          &quot;OBJECTID&quot;: 30,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Hazardous Fuels Reduction Projects in Wildland Urban Interface&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Pacific Northwest - Sandy Area&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oregon&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.25898,\n",
       "              45.39644\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Grangeville, ID&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Grangeville&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;18000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 18000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-268&quot;,\n",
       "          &quot;LATITUDE&quot;: 45.92574,\n",
       "          &quot;LONGITUDE&quot;: -116.11966,\n",
       "          &quot;OBJECTID&quot;: 31,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Hazardous Fuels Reduction Projects in Wildland Urban Interface&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Nez Perce-Clearwater-Lower Salmon&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;ID&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Idaho&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -116.11966,\n",
       "              45.92574\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Salt River Pima-Maricopa, AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Salt River Pima-Maricopa&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;404372&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 404372.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-169&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.487095,\n",
       "          &quot;LONGITUDE&quot;: -111.864796,\n",
       "          &quot;OBJECTID&quot;: 32,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Salt River Pima-Maricopa Indian Community&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.864796,\n",
       "              33.4870950000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Redding, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Redding&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;15200000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 15200000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-272&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.58762,\n",
       "          &quot;LONGITUDE&quot;: -122.39249,\n",
       "          &quot;OBJECTID&quot;: 33,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Vegetation and Watershed Management Projects&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Pacific Southwest - Redding Area&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.39249,\n",
       "              40.5876200000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;St. George, UT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;St. George&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-269&quot;,\n",
       "          &quot;LATITUDE&quot;: 37.10976,\n",
       "          &quot;LONGITUDE&quot;: -113.5833,\n",
       "          &quot;OBJECTID&quot;: 34,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Hazardous Fuels Reduction Projects in Wildland Urban Interface&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Dixie NF&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;UT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Utah&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -113.5833,\n",
       "              37.10976\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Fairbanks, AK&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Fairbanks&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-349&quot;,\n",
       "          &quot;LATITUDE&quot;: 64.84527,\n",
       "          &quot;LONGITUDE&quot;: -147.72213,\n",
       "          &quot;OBJECTID&quot;: 35,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;University of Alaska Fairbanks&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AK&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Alaska&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -147.72213,\n",
       "              64.84527\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Anchorage, AK&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Anchorage&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-351&quot;,\n",
       "          &quot;LATITUDE&quot;: 61.21753,\n",
       "          &quot;LONGITUDE&quot;: -149.85815,\n",
       "          &quot;OBJECTID&quot;: 36,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;University of Alaska Anchorage&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AK&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Alaska&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -149.85815,\n",
       "              61.2175300000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Levelock, AK&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Levelock&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-353&quot;,\n",
       "          &quot;LATITUDE&quot;: 59.11254,\n",
       "          &quot;LONGITUDE&quot;: -156.85558,\n",
       "          &quot;OBJECTID&quot;: 37,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Levelock Village Council&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AK&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Alaska&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -156.85558,\n",
       "              59.1125400000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Jacksonville, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Jacksonville&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-382&quot;,\n",
       "          &quot;LATITUDE&quot;: 30.33147,\n",
       "          &quot;LONGITUDE&quot;: -81.65622,\n",
       "          &quot;OBJECTID&quot;: 38,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Groundwork Jacksonville&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -81.65622,\n",
       "              30.33147\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Jacksonville, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Jacksonville&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-383&quot;,\n",
       "          &quot;LATITUDE&quot;: 30.33147,\n",
       "          &quot;LONGITUDE&quot;: -81.65622,\n",
       "          &quot;OBJECTID&quot;: 39,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Groundwork Jacksonville&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -81.65622,\n",
       "              30.33147\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Salt Lake City, UT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Salt Lake City&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;15600000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 15600000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-273&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.76031,\n",
       "          &quot;LONGITUDE&quot;: -111.88822,\n",
       "          &quot;OBJECTID&quot;: 40,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Vegetation and Watershed Management Projects&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Uinta-Wasatch-Cache NF&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;UT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Utah&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.88822,\n",
       "              40.7603100000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Gary, IN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Gary&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-398&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.60369,\n",
       "          &quot;LONGITUDE&quot;: -87.33717,\n",
       "          &quot;OBJECTID&quot;: 41,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;National Audubon Society&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Indiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -87.33717,\n",
       "              41.60369\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Port St. Joe, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Port St. Joe&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-388&quot;,\n",
       "          &quot;LATITUDE&quot;: 29.81263,\n",
       "          &quot;LONGITUDE&quot;: -85.30368,\n",
       "          &quot;OBJECTID&quot;: 42,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Port St. Joe&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -85.30368,\n",
       "              29.8126300000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;New Orleans, LA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;New Orleans&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-405&quot;,\n",
       "          &quot;LATITUDE&quot;: 29.9537,\n",
       "          &quot;LONGITUDE&quot;: -90.07775,\n",
       "          &quot;OBJECTID&quot;: 43,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of New Orleans&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;LA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Louisiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -90.07775,\n",
       "              29.9537\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Annapolis, MD&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Annapolis&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-413&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.97678,\n",
       "          &quot;LONGITUDE&quot;: -76.49014,\n",
       "          &quot;OBJECTID&quot;: 44,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;BoatUS Foundation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MD&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Maryland&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -76.4901399999999,\n",
       "              38.97678\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Wellfleet, MA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Wellfleet&quot;,\n",
       "          &quot;COUNTY&quot;: &quot;Barnstable&quot;,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-417&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.92984,\n",
       "          &quot;LONGITUDE&quot;: -70.01685,\n",
       "          &quot;OBJECTID&quot;: 45,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Town of Wellfleet&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Massachusetts&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -70.01685,\n",
       "              41.92984\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Baltimore, MD&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Baltimore&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-414&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.29058,\n",
       "          &quot;LONGITUDE&quot;: -76.60926,\n",
       "          &quot;OBJECTID&quot;: 46,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;South Baltimore Gateway Community Impact District Management&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MD&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Maryland&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -76.60926,\n",
       "              39.29058\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Chelsea, MA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Chelsea&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-422&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.39376,\n",
       "          &quot;LONGITUDE&quot;: -71.03237,\n",
       "          &quot;OBJECTID&quot;: 47,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Chelsea&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Massachusetts&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -71.03237,\n",
       "              42.39376\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Cape Cod, MA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Cape Cod&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-423&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.6862,\n",
       "          &quot;LONGITUDE&quot;: -70.24308,\n",
       "          &quot;OBJECTID&quot;: 48,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Woods Hole Sea Grant (Massachusetts)&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Massachusetts&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -70.24308,\n",
       "              41.6862\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Los Angeles, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Los Angeles&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;42100000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 42100000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-271&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.05357,\n",
       "          &quot;LONGITUDE&quot;: -118.24545,\n",
       "          &quot;OBJECTID&quot;: 49,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Hazardous Fuels Reduction Projects in Wildland Urban Interface&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Southern California Fireshed Risk Reduction Strategy&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -118.24545,\n",
       "              34.05357\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Grand Ronde, OR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Grand Ronde&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-449&quot;,\n",
       "          &quot;LATITUDE&quot;: 45.06015,\n",
       "          &quot;LONGITUDE&quot;: -123.60932,\n",
       "          &quot;OBJECTID&quot;: 50,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Confederated Tribes of Grand Ronde&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oregon&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -123.60932,\n",
       "              45.0601500000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Rochester, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Rochester&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-436&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.1558,\n",
       "          &quot;LONGITUDE&quot;: -77.61632,\n",
       "          &quot;OBJECTID&quot;: 51,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;New York Sea Grant&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -77.61632,\n",
       "              43.1558\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Providence, RI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Providence&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-458&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.82388,\n",
       "          &quot;LONGITUDE&quot;: -71.41198,\n",
       "          &quot;OBJECTID&quot;: 52,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Providence&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;RI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Rhode Island&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -71.41198,\n",
       "              41.82388\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;New York, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;New York&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-435&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.71453,\n",
       "          &quot;LONGITUDE&quot;: -74.00712,\n",
       "          &quot;OBJECTID&quot;: 53,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;New York City Department of Parks and Recreation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -74.00712,\n",
       "              40.71453\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Huntsville, AL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Huntsville&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;28368&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 28368.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-523&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.72929,\n",
       "          &quot;LONGITUDE&quot;: -86.5851,\n",
       "          &quot;OBJECTID&quot;: 54,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Huntsville Air Pollution Control Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Alabama&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -86.5851,\n",
       "              34.72929\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Philadelphia, PA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Philadelphia&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;193504&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 193504.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-514&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.95222,\n",
       "          &quot;LONGITUDE&quot;: -75.16218,\n",
       "          &quot;OBJECTID&quot;: 55,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Philadelphia Air Management Services&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Pennsylvania&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -75.16218,\n",
       "              39.9522200000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Kashia Band of Pomo Indians of the Stewarts Point Rancheria, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Kashia Band of Pomo Indians of the Stewarts Point Rancheria&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-363&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.65658,\n",
       "          &quot;LONGITUDE&quot;: -123.33897,\n",
       "          &quot;OBJECTID&quot;: 56,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Kashia Band of Pomo Indians of the Stewarts Point Rancheria&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -123.33897,\n",
       "              38.65658\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Nashville, TN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Nashville&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;64826&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 64826.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-545&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.16784,\n",
       "          &quot;LONGITUDE&quot;: -86.77816,\n",
       "          &quot;OBJECTID&quot;: 57,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Nashville/Davidson&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Tennessee&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -86.77816,\n",
       "              36.16784\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Dayton, OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Dayton&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;37023&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 37023.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-552&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.7592,\n",
       "          &quot;LONGITUDE&quot;: -84.19381,\n",
       "          &quot;OBJECTID&quot;: 58,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Regional Air Pollution Control Agency&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -84.19381,\n",
       "              39.7592\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Albuquerque, NM&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Albuquerque&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;106873&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 106873.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-560&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.08423,\n",
       "          &quot;LONGITUDE&quot;: -106.64905,\n",
       "          &quot;OBJECTID&quot;: 59,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Albuquerque&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NM&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Mexico&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -106.64905,\n",
       "              35.08423\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Atlanta, GA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Atlanta&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-688&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.74831,\n",
       "          &quot;LONGITUDE&quot;: -84.39111,\n",
       "          &quot;OBJECTID&quot;: 60,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Atlanta Regional Commission&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;GA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Georgia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -84.39111,\n",
       "              33.7483100000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Austin, TX&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Austin&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-707&quot;,\n",
       "          &quot;LATITUDE&quot;: 30.26759,\n",
       "          &quot;LONGITUDE&quot;: -97.74299,\n",
       "          &quot;OBJECTID&quot;: 61,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Austin Office of Sustainability&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TX&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Texas&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -97.74299,\n",
       "              30.26759\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;San Antonio, TX&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;San Antonio&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-703&quot;,\n",
       "          &quot;LATITUDE&quot;: 29.42458,\n",
       "          &quot;LONGITUDE&quot;: -98.49461,\n",
       "          &quot;OBJECTID&quot;: 62,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of San Antonio\\u2019s Office of Sustainability&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TX&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Texas&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -98.49461,\n",
       "              29.42458\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Columbus, OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Columbus&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-711&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.96199,\n",
       "          &quot;LONGITUDE&quot;: -83.00275,\n",
       "          &quot;OBJECTID&quot;: 63,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Columbus Department of Public Utilities&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -83.00275,\n",
       "              39.9619900000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Jacksonville, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Jacksonville&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-719&quot;,\n",
       "          &quot;LATITUDE&quot;: 30.33147,\n",
       "          &quot;LONGITUDE&quot;: -81.65622,\n",
       "          &quot;OBJECTID&quot;: 64,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Jacksonville&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -81.65622,\n",
       "              30.33147\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Birmingham, AL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Birmingham&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-730&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.52072,\n",
       "          &quot;LONGITUDE&quot;: -86.81179,\n",
       "          &quot;OBJECTID&quot;: 65,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Birmingham&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Alabama&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -86.81179,\n",
       "              33.52072\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Honolulu, HI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Honolulu&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-734&quot;,\n",
       "          &quot;LATITUDE&quot;: 21.30493,\n",
       "          &quot;LONGITUDE&quot;: -157.85788,\n",
       "          &quot;OBJECTID&quot;: 66,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City and County of Honolulu Office of Climate Change, Sustainability and Resiliency&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;HI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Hawaii&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -157.85788,\n",
       "              21.30493\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Omaha, NE&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Omaha&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-738&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.26068,\n",
       "          &quot;LONGITUDE&quot;: -95.94026,\n",
       "          &quot;OBJECTID&quot;: 67,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Omaha&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NE&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Nebraska&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -95.94026,\n",
       "              41.26068\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Louisville, KY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Louisville&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;89707&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 89707.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-535&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.25489,\n",
       "          &quot;LONGITUDE&quot;: -85.76666,\n",
       "          &quot;OBJECTID&quot;: 68,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Louisville&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;KY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Kentucky&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -85.76666,\n",
       "              38.25489\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Albuquerque, NM&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Albuquerque&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-741&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.08423,\n",
       "          &quot;LONGITUDE&quot;: -106.64905,\n",
       "          &quot;OBJECTID&quot;: 69,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Albuquerque Sustainability Office&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NM&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Mexico&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -106.64905,\n",
       "              35.08423\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Bakersfield, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Bakersfield&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-742&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.3673,\n",
       "          &quot;LONGITUDE&quot;: -119.01886,\n",
       "          &quot;OBJECTID&quot;: 70,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Bakersfield&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.01886,\n",
       "              35.3673000000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Knoxville, TN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Knoxville&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-744&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.96068,\n",
       "          &quot;LONGITUDE&quot;: -83.92103,\n",
       "          &quot;OBJECTID&quot;: 71,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Knoxville, Office of Sustainability&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Tennessee&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -83.92103,\n",
       "              35.96068\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Salt Lake, UT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Salt Lake&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-727&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.76031,\n",
       "          &quot;LONGITUDE&quot;: -111.88822,\n",
       "          &quot;OBJECTID&quot;: 72,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Salt Lake City Department of Sustainability&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;UT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Utah&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.88822,\n",
       "              40.7603100000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;McAllen, TX&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;McAllen&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-745&quot;,\n",
       "          &quot;LATITUDE&quot;: 26.2077,\n",
       "          &quot;LONGITUDE&quot;: -98.22931,\n",
       "          &quot;OBJECTID&quot;: 73,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of McAllen&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TX&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Texas&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -98.22931,\n",
       "              26.2077\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Baton Rouge, LA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Baton Rouge&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-746&quot;,\n",
       "          &quot;LATITUDE&quot;: 30.44335,\n",
       "          &quot;LONGITUDE&quot;: -91.18664,\n",
       "          &quot;OBJECTID&quot;: 74,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Baton Rouge&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;LA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Louisiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -91.18664,\n",
       "              30.44335\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Columbia, SC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Columbia&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-752&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.99882,\n",
       "          &quot;LONGITUDE&quot;: -81.04537,\n",
       "          &quot;OBJECTID&quot;: 75,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Columbia&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;SC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;South Carolina&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -81.04537,\n",
       "              33.99882\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;El Paso, TX&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;El Paso&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-747&quot;,\n",
       "          &quot;LATITUDE&quot;: 31.75916,\n",
       "          &quot;LONGITUDE&quot;: -106.48749,\n",
       "          &quot;OBJECTID&quot;: 76,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of El Paso&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TX&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Texas&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -106.48749,\n",
       "              31.7591600000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Gilbert, AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Gilbert&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1440000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1440000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-887&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.33051,\n",
       "          &quot;LONGITUDE&quot;: -111.79026,\n",
       "          &quot;OBJECTID&quot;: 77,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Drought Mitigation&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation and Efficiency Program agreement with the Town of Gilbert&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.79026,\n",
       "              33.3305100000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Rapid City, SD&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Rapid City&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-758&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.08146,\n",
       "          &quot;LONGITUDE&quot;: -103.2308,\n",
       "          &quot;OBJECTID&quot;: 78,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Rapid City&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;SD&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;South Dakota&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -103.2308,\n",
       "              44.08146\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Louisville, KY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Louisville&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-725&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.25489,\n",
       "          &quot;LONGITUDE&quot;: -85.76666,\n",
       "          &quot;OBJECTID&quot;: 79,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Louisville Mayor&#x27;s Office of Sustainability&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;KY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Kentucky&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -85.76666,\n",
       "              38.25489\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Phoenix, AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Phoenix&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;60000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 60000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-888&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.44825,\n",
       "          &quot;LONGITUDE&quot;: -112.0758,\n",
       "          &quot;OBJECTID&quot;: 80,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Drought Mitigation&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation and Efficiency Program with the City of Phoenix&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -112.0758,\n",
       "              33.44825\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Peoria, AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Peoria&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;8640000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 8640000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-890&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.57725,\n",
       "          &quot;LONGITUDE&quot;: -112.24165,\n",
       "          &quot;OBJECTID&quot;: 81,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Drought Mitigation&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Water Savings Agreement with the City of Peoria&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -112.24165,\n",
       "              33.57725\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Tucson, AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Tucson&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;44000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 44000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-889&quot;,\n",
       "          &quot;LATITUDE&quot;: 32.22177,\n",
       "          &quot;LONGITUDE&quot;: -110.96977,\n",
       "          &quot;OBJECTID&quot;: 82,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Drought Mitigation&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Water Savings Agreement with City of Tucson&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -110.96977,\n",
       "              32.22177\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Prescott, AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Prescott&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;9600000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 9600000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1171&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.54142,\n",
       "          &quot;LONGITUDE&quot;: -112.46873,\n",
       "          &quot;OBJECTID&quot;: 83,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Hazardous Fuels Reduction Projects in Wildland Urban Interface&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Greater Prescott Area Wildfire Protection and Restoration&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -112.46873,\n",
       "              34.5414200000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Custer, SD&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Custer&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1176&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.76961,\n",
       "          &quot;LONGITUDE&quot;: -103.60206,\n",
       "          &quot;OBJECTID&quot;: 84,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Hazardous Fuels Reduction Projects in Wildland Urban Interface&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Fuel Breaks&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;SD&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;South Dakota&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -103.60206,\n",
       "              43.7696100000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Missoula, MT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Missoula&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1175&quot;,\n",
       "          &quot;LATITUDE&quot;: 46.87278,\n",
       "          &quot;LONGITUDE&quot;: -113.99625,\n",
       "          &quot;OBJECTID&quot;: 85,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Hazardous Fuels Reduction Projects in Wildland Urban Interface&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Fuel Breaks&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Montana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -113.99625,\n",
       "              46.87278\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Kalispell, MT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Kalispell&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1174&quot;,\n",
       "          &quot;LATITUDE&quot;: 48.20189,\n",
       "          &quot;LONGITUDE&quot;: -114.315,\n",
       "          &quot;OBJECTID&quot;: 86,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Hazardous Fuels Reduction Projects in Wildland Urban Interface&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Fuel Breaks&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Montana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -114.315,\n",
       "              48.20189\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Laramie, WY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Laramie&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1178&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.31339,\n",
       "          &quot;LONGITUDE&quot;: -105.59072,\n",
       "          &quot;OBJECTID&quot;: 87,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Hazardous Fuels Reduction Projects in Wildland Urban Interface&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Fuel Breaks&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Wyoming&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.59072,\n",
       "              41.31339\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Delta, CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Delta&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1177&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.74518,\n",
       "          &quot;LONGITUDE&quot;: -108.07087,\n",
       "          &quot;OBJECTID&quot;: 88,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Hazardous Fuels Reduction Projects in Wildland Urban Interface&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Fuel Breaks&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -108.07087,\n",
       "              38.74518\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Durango, CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Durango&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1179&quot;,\n",
       "          &quot;LATITUDE&quot;: 37.27367,\n",
       "          &quot;LONGITUDE&quot;: -107.8793,\n",
       "          &quot;OBJECTID&quot;: 89,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Hazardous Fuels Reduction Projects in Wildland Urban Interface&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Fuel Breaks&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -107.8793,\n",
       "              37.27367\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;K\\u012bhei, HI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;K\\u012bhei&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;17000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 17000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1218&quot;,\n",
       "          &quot;LATITUDE&quot;: 20.7825,\n",
       "          &quot;LONGITUDE&quot;: -156.46334,\n",
       "          &quot;OBJECTID&quot;: 90,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Facilities of the National Oceanic and Atmospheric Administration and National Marine Sanctuaries&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Hawaiian Islands Humpback Whale National Marine Sanctuary&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;HI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Hawaii&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -156.46334,\n",
       "              20.7825\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Springfield, OR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Springfield&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1180&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.04787,\n",
       "          &quot;LONGITUDE&quot;: -123.01955,\n",
       "          &quot;OBJECTID&quot;: 91,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Hazardous Fuels Reduction Projects in Wildland Urban Interface&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Fuel Breaks&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oregon&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -123.01955,\n",
       "              44.04787\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Nanjemoy, MD&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Nanjemoy&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1219&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.45531,\n",
       "          &quot;LONGITUDE&quot;: -77.2152,\n",
       "          &quot;OBJECTID&quot;: 92,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Facilities of the National Oceanic and Atmospheric Administration and National Marine Sanctuaries&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Mallows Bay-Potomac River National Marine Sanctuary&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MD&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Maryland&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -77.2152,\n",
       "              38.45531\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Seaside, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Seaside&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;7000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 7000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1220&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.60404,\n",
       "          &quot;LONGITUDE&quot;: -121.8535,\n",
       "          &quot;OBJECTID&quot;: 93,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Facilities of the National Oceanic and Atmospheric Administration and National Marine Sanctuaries&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Monterey Bay National Marine Sanctuary&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -121.8535,\n",
       "              36.60404\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Provincetown, MA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Provincetown&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;15000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 15000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1222&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.04967,\n",
       "          &quot;LONGITUDE&quot;: -70.18846,\n",
       "          &quot;OBJECTID&quot;: 94,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Facilities of the National Oceanic and Atmospheric Administration and National Marine Sanctuaries&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Stellwagen Bank National Marine Sanctuary&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Massachusetts&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -70.18846,\n",
       "              42.04967\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Cibola, AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Cibola&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;3240000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 3240000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1250&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.36815,\n",
       "          &quot;LONGITUDE&quot;: -114.66427,\n",
       "          &quot;OBJECTID&quot;: 95,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Drought Mitigation&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Cibola Valley Irrigation and Drainage District&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -114.66427,\n",
       "              33.36815\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Port Angeles, WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Port Angeles&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;3000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 3000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1221&quot;,\n",
       "          &quot;LATITUDE&quot;: 48.11872,\n",
       "          &quot;LONGITUDE&quot;: -123.4313,\n",
       "          &quot;OBJECTID&quot;: 96,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Facilities of the National Oceanic and Atmospheric Administration and National Marine Sanctuaries&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Olympic Coast National Marine Sanctuary&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -123.4313,\n",
       "              48.1187200000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;San Francisco, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;San Francisco&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1217&quot;,\n",
       "          &quot;LATITUDE&quot;: 37.77712,\n",
       "          &quot;LONGITUDE&quot;: -122.41966,\n",
       "          &quot;OBJECTID&quot;: 97,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Facilities of the National Oceanic and Atmospheric Administration and National Marine Sanctuaries&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Greater Farallones and Cordell Bank National Marine Sanctuaries&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.41966,\n",
       "              37.77712\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Scottsdale, AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Scottsdale&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;7200000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 7200000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1253&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.494,\n",
       "          &quot;LONGITUDE&quot;: -111.92052,\n",
       "          &quot;OBJECTID&quot;: 98,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Drought Mitigation&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Scottsdale&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.92052,\n",
       "              33.494\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Glendale, AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Glendale&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;8400000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 8400000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1254&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.53861,\n",
       "          &quot;LONGITUDE&quot;: -112.18622,\n",
       "          &quot;OBJECTID&quot;: 99,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Drought Mitigation&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Glendale&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -112.18622,\n",
       "              33.53861\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Anchorage, AK&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Anchorage&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2349&quot;,\n",
       "          &quot;LATITUDE&quot;: 61.21753,\n",
       "          &quot;LONGITUDE&quot;: -149.85815,\n",
       "          &quot;OBJECTID&quot;: 100,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Wooch een y\\u00e9i jidan\\u00e9: Alaska Native Community Forest Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AK&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Alaska&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -149.85815,\n",
       "              61.2175300000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Anchorage, AK&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Anchorage&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2350&quot;,\n",
       "          &quot;LATITUDE&quot;: 61.21753,\n",
       "          &quot;LONGITUDE&quot;: -149.85815,\n",
       "          &quot;OBJECTID&quot;: 101,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Community Reforestation in Anchorage, Alaska&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AK&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Alaska&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -149.85815,\n",
       "              61.2175300000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Virginia Beach, VA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: &quot;Virginia Beach&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1864561&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1864561.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2314&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.75531,\n",
       "          &quot;LONGITUDE&quot;: -76.05968,\n",
       "          &quot;OBJECTID&quot;: 102,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Quantifying the Efficacy of Wastewater Alkalinity Enhancement on mCDR and Acidification Mitigation in a Large Estuary&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;VA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Virginia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -76.05968,\n",
       "              36.7553100000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;North Charleston, SC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;North Charleston&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;59800000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 59800000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2317&quot;,\n",
       "          &quot;LATITUDE&quot;: 32.87734,\n",
       "          &quot;LONGITUDE&quot;: -80.0086,\n",
       "          &quot;OBJECTID&quot;: 103,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Facilities of the National Oceanic and Atmospheric Administration and National Marine Sanctuaries&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Research ship pier renovations&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;SC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;South Carolina&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.0086,\n",
       "              32.8773400000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Metlakatla, AK&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Metlakatla&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;105244&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 105244.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2351&quot;,\n",
       "          &quot;LATITUDE&quot;: 55.13036,\n",
       "          &quot;LONGITUDE&quot;: -131.57701,\n",
       "          &quot;OBJECTID&quot;: 104,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Community Food Forest on Annette Islands Reserve&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AK&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Alaska&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -131.57701,\n",
       "              55.1303600000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Anchorage, AK&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Anchorage&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2352&quot;,\n",
       "          &quot;LATITUDE&quot;: 61.21753,\n",
       "          &quot;LONGITUDE&quot;: -149.85815,\n",
       "          &quot;OBJECTID&quot;: 105,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;RurAL CAP GROW Forestry Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AK&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Alaska&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -149.85815,\n",
       "              61.2175300000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Birmingham, AL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Birmingham&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;3571064&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 3571064.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2353&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.52072,\n",
       "          &quot;LONGITUDE&quot;: -86.81179,\n",
       "          &quot;OBJECTID&quot;: 106,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Cool Green Solutions&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Alabama&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -86.81179,\n",
       "              33.52072\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Montgomery, AL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Montgomery&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2354&quot;,\n",
       "          &quot;LATITUDE&quot;: 32.38015,\n",
       "          &quot;LONGITUDE&quot;: -86.30005,\n",
       "          &quot;OBJECTID&quot;: 107,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Equitable Urban Tree Canopy Enhancement for Underserved Populations in Montgomery, Alabama&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Alabama&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -86.3000499999999,\n",
       "              32.3801500000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Montgomery, AL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Montgomery&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2355&quot;,\n",
       "          &quot;LATITUDE&quot;: 32.38015,\n",
       "          &quot;LONGITUDE&quot;: -86.30005,\n",
       "          &quot;OBJECTID&quot;: 108,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Planting Trees, Building Capacity, and Engaging Students in Disadvantaged Communities&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Alabama&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -86.3000499999999,\n",
       "              32.3801500000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Fayetteville, AR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Fayetteville&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2674100&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2674100.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2357&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.06354,\n",
       "          &quot;LONGITUDE&quot;: -94.15791,\n",
       "          &quot;OBJECTID&quot;: 109,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Connecting Community to Urban Streams and Forests in a Low-Income Neighborhood at Walker Park, Fayetteville, AR&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arkansas&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -94.15791,\n",
       "              36.06354\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Phoenix, AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Phoenix&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2358&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.44825,\n",
       "          &quot;LONGITUDE&quot;: -112.0758,\n",
       "          &quot;OBJECTID&quot;: 110,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Greater Phoenix Urban Forestry Accelerator&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -112.0758,\n",
       "              33.44825\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Chandler, AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Chandler&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;767000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 767000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2359&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.30338,\n",
       "          &quot;LONGITUDE&quot;: -111.84083,\n",
       "          &quot;OBJECTID&quot;: 111,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Planting for Livability in the Desert Environment: \\u00a0Growing the Urban Forest in Chandler, Arizona&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.84083,\n",
       "              33.30338\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Mesa, AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Mesa&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;824900&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 824900.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2360&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.41704,\n",
       "          &quot;LONGITUDE&quot;: -111.83146,\n",
       "          &quot;OBJECTID&quot;: 112,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Trees Are Cool&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.83146,\n",
       "              33.41704\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Peoria, AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Peoria&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;200000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 200000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2361&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.57725,\n",
       "          &quot;LONGITUDE&quot;: -112.24165,\n",
       "          &quot;OBJECTID&quot;: 113,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Peoria Arizona Community Forestry Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -112.24165,\n",
       "              33.57725\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Phoenix, AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Phoenix&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;10000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 10000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2362&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.44825,\n",
       "          &quot;LONGITUDE&quot;: -112.0758,\n",
       "          &quot;OBJECTID&quot;: 114,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Roots of Phoenix&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -112.0758,\n",
       "              33.44825\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Tucson, AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Tucson&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2363&quot;,\n",
       "          &quot;LATITUDE&quot;: 32.22177,\n",
       "          &quot;LONGITUDE&quot;: -110.96977,\n",
       "          &quot;OBJECTID&quot;: 115,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Grow Tucson: A Community-Led Urban Forestry Proposal in Tucson, Arizona&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -110.96977,\n",
       "              32.22177\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Tucson, AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Tucson&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;401087&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 401087.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2364&quot;,\n",
       "          &quot;LATITUDE&quot;: 32.22177,\n",
       "          &quot;LONGITUDE&quot;: -110.96977,\n",
       "          &quot;OBJECTID&quot;: 116,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;SOMBRA in the Desert: climate resilience, shade equity, and food security in Southern Arizona&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -110.96977,\n",
       "              32.22177\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Azusa, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Azusa&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2366&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.13361,\n",
       "          &quot;LONGITUDE&quot;: -117.90599,\n",
       "          &quot;OBJECTID&quot;: 117,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Community Canopy: Nurturing Climate Resilience in Disadvantaged Neighborhoods through Urban Forestry&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -117.90599,\n",
       "              34.13361\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Bellflower, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Bellflower&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2367&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.88326,\n",
       "          &quot;LONGITUDE&quot;: -118.12229,\n",
       "          &quot;OBJECTID&quot;: 118,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Bellflower Urban Forestry Management Plan &amp; Tree Planting and Maintenance&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -118.12229,\n",
       "              33.88326\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Berkeley, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Berkeley&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2368&quot;,\n",
       "          &quot;LATITUDE&quot;: 37.86988,\n",
       "          &quot;LONGITUDE&quot;: -122.27054,\n",
       "          &quot;OBJECTID&quot;: 119,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Trees Make Life Better&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.27054,\n",
       "              37.8698800000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Carson, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Carson&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2369&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.83161,\n",
       "          &quot;LONGITUDE&quot;: -118.26209,\n",
       "          &quot;OBJECTID&quot;: 120,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;The City of Carson&#x27;s Urban Forestry Master Plan&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -118.26209,\n",
       "              33.83161\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Little Rock, AR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Little Rock&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1563071&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1563071.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2356&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.7487,\n",
       "          &quot;LONGITUDE&quot;: -92.27485,\n",
       "          &quot;OBJECTID&quot;: 121,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Pathways to the Future Program Proposal (UCF-PTF)&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arkansas&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -92.27485,\n",
       "              34.7487\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Chula Vista, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Chula Vista&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2370&quot;,\n",
       "          &quot;LATITUDE&quot;: 32.6409,\n",
       "          &quot;LONGITUDE&quot;: -117.08428,\n",
       "          &quot;OBJECTID&quot;: 122,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Chula Vista Urban Forest Tree Inventory and Forest Management Plan&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -117.08428,\n",
       "              32.6409\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Corona, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Corona&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;100000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 100000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2372&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.87925,\n",
       "          &quot;LONGITUDE&quot;: -117.57483,\n",
       "          &quot;OBJECTID&quot;: 123,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Corona Urban and Community Forestry&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -117.57483,\n",
       "              33.87925\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Concord, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Concord&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2371&quot;,\n",
       "          &quot;LATITUDE&quot;: 37.98165,\n",
       "          &quot;LONGITUDE&quot;: -122.02583,\n",
       "          &quot;OBJECTID&quot;: 124,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Concord Urban &amp; Community Forestry Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.02583,\n",
       "              37.98165\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Escondido, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Escondido&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;665500&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 665500.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2374&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.12354,\n",
       "          &quot;LONGITUDE&quot;: -117.08234,\n",
       "          &quot;OBJECTID&quot;: 125,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Escondido Urban Forestry Management Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -117.08234,\n",
       "              33.12354\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;El Cajon, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;El Cajon&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;834965&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 834965.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2373&quot;,\n",
       "          &quot;LATITUDE&quot;: 32.79495,\n",
       "          &quot;LONGITUDE&quot;: -116.95903,\n",
       "          &quot;OBJECTID&quot;: 126,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Parkway Tree Installation and Maintenance in Disadvantaged Areas&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -116.95903,\n",
       "              32.79495\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Fremont, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Fremont&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;383472&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 383472.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2375&quot;,\n",
       "          &quot;LATITUDE&quot;: 37.55148,\n",
       "          &quot;LONGITUDE&quot;: -121.9833,\n",
       "          &quot;OBJECTID&quot;: 127,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Reforestation of Fremont&#x27;s DACs and Community Urban Forestry Trainings&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -121.9833,\n",
       "              37.55148\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Goleta, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Goleta&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2377&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.43575,\n",
       "          &quot;LONGITUDE&quot;: -119.82516,\n",
       "          &quot;OBJECTID&quot;: 128,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Goleta, California Urban Forest Climate Adaptation Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.82516,\n",
       "              34.43575\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Glendale, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Glendale&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;100000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 100000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2376&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.14633,\n",
       "          &quot;LONGITUDE&quot;: -118.24864,\n",
       "          &quot;OBJECTID&quot;: 129,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Glendale Canopy Improvement&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -118.24864,\n",
       "              34.14633\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Hanford, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Hanford&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2378&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.32743,\n",
       "          &quot;LONGITUDE&quot;: -119.64589,\n",
       "          &quot;OBJECTID&quot;: 130,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Hanford Goes Green&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.64589,\n",
       "              36.32743\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Hayward, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Hayward&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2379&quot;,\n",
       "          &quot;LATITUDE&quot;: 37.67134,\n",
       "          &quot;LONGITUDE&quot;: -122.08556,\n",
       "          &quot;OBJECTID&quot;: 131,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Urban Forestry Software and Hazardous Tree Removal/Replacement&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.08556,\n",
       "              37.67134\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Bowling Green, KY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Bowling Green&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-757&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.99462,\n",
       "          &quot;LONGITUDE&quot;: -86.44558,\n",
       "          &quot;OBJECTID&quot;: 132,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Bowling Green&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;KY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Kentucky&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -86.4455799999999,\n",
       "              36.99462\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Laguna Beach, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Laguna Beach&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;100000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 100000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2380&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.54536,\n",
       "          &quot;LONGITUDE&quot;: -117.78153,\n",
       "          &quot;OBJECTID&quot;: 133,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Seed Funding for Urban Tree Canopy Management and Analytical Resources&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -117.78153,\n",
       "              33.5453600000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Long Beach, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Long Beach&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2381&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.76672,\n",
       "          &quot;LONGITUDE&quot;: -118.1924,\n",
       "          &quot;OBJECTID&quot;: 134,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Growing a Climate Resilient Long Beach: A Community Based Approach to Urban Forestry and Rainwater Harvesting&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -118.1924,\n",
       "              33.76672\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Oakland, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Oakland&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;8000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 8000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2383&quot;,\n",
       "          &quot;LATITUDE&quot;: 37.80508,\n",
       "          &quot;LONGITUDE&quot;: -122.27307,\n",
       "          &quot;OBJECTID&quot;: 135,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Oakland: Equity through Urban Forestry&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.27307,\n",
       "              37.80508\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Oxnard, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Oxnard&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;333502&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 333502.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2384&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.20034,\n",
       "          &quot;LONGITUDE&quot;: -119.18013,\n",
       "          &quot;OBJECTID&quot;: 136,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Oxnard Urban Forestry - North Oxnard&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.18013,\n",
       "              34.20034\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Oxnard, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Oxnard&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;651423&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 651423.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2385&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.20034,\n",
       "          &quot;LONGITUDE&quot;: -119.18013,\n",
       "          &quot;OBJECTID&quot;: 137,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Oxnard Urban Forestry - South Oxnard&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.18013,\n",
       "              34.20034\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Petaluma, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Petaluma&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2386&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.23262,\n",
       "          &quot;LONGITUDE&quot;: -122.64426,\n",
       "          &quot;OBJECTID&quot;: 138,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Petaluma Canopy&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.64426,\n",
       "              38.23262\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Pittsburg, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Pittsburg&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2387&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.01946,\n",
       "          &quot;LONGITUDE&quot;: -121.88851,\n",
       "          &quot;OBJECTID&quot;: 139,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Pittsburg Urban Forest Management Launch&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -121.88851,\n",
       "              38.01946\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Sacramento, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Sacramento&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2389&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.57944,\n",
       "          &quot;LONGITUDE&quot;: -121.49085,\n",
       "          &quot;OBJECTID&quot;: 140,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Sacramento&#x27;s Equitable and Resilient Urban Forest Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -121.49085,\n",
       "              38.57944\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Riverside, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Riverside&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2388&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.98171,\n",
       "          &quot;LONGITUDE&quot;: -117.37404,\n",
       "          &quot;OBJECTID&quot;: 141,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Community &amp; Forestry Resiliency&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -117.37404,\n",
       "              33.98171\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;San Diego, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;San Diego&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;10000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 10000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2390&quot;,\n",
       "          &quot;LATITUDE&quot;: 32.71568,\n",
       "          &quot;LONGITUDE&quot;: -117.16171,\n",
       "          &quot;OBJECTID&quot;: 142,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Ready, Set, Grow San Diego&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -117.16171,\n",
       "              32.71568\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;San Jose, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;San Jose&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2391&quot;,\n",
       "          &quot;LATITUDE&quot;: 37.33865,\n",
       "          &quot;LONGITUDE&quot;: -121.88542,\n",
       "          &quot;OBJECTID&quot;: 143,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Alum Rock and Overfelt Gardens Urban Forest Management&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -121.88542,\n",
       "              37.33865\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;San Jose, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;San Jose&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5644300&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5644300.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2392&quot;,\n",
       "          &quot;LATITUDE&quot;: 37.33865,\n",
       "          &quot;LONGITUDE&quot;: -121.88542,\n",
       "          &quot;OBJECTID&quot;: 144,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of San Jose Community Forest Investment Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -121.88542,\n",
       "              37.33865\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Santa Ana, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Santa Ana&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1023000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1023000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2393&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.74958,\n",
       "          &quot;LONGITUDE&quot;: -117.87446,\n",
       "          &quot;OBJECTID&quot;: 145,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Santa Ana Urban Forest Reforestation Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -117.87446,\n",
       "              33.74958\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Los Angeles, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Los Angeles&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2365&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.05357,\n",
       "          &quot;LONGITUDE&quot;: -118.24545,\n",
       "          &quot;OBJECTID&quot;: 146,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Tree Planting in Disadvantaged Los Angeles Neighborhoods&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -118.24545,\n",
       "              34.05357\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Santa Cruz, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Santa Cruz&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2394&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.97424,\n",
       "          &quot;LONGITUDE&quot;: -122.03098,\n",
       "          &quot;OBJECTID&quot;: 147,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Expanding Tree Canopy, Improving Tree Care, and Growing Community Capacity in Santa Cruz, California&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.03098,\n",
       "              36.9742400000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Vallejo, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Vallejo&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1734070&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1734070.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2396&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.10095,\n",
       "          &quot;LONGITUDE&quot;: -122.25495,\n",
       "          &quot;OBJECTID&quot;: 148,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Waterfront Revival&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.25495,\n",
       "              38.10095\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Signal Hill, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Signal Hill&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2395&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.79677,\n",
       "          &quot;LONGITUDE&quot;: -118.1677,\n",
       "          &quot;OBJECTID&quot;: 149,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Signal Hill Street Tree Planting Program Plan&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -118.1677,\n",
       "              33.79677\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Los Angeles, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Los Angeles&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;3000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 3000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2382&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.05357,\n",
       "          &quot;LONGITUDE&quot;: -118.24545,\n",
       "          &quot;OBJECTID&quot;: 150,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;BeLeaf in Equity&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -118.24545,\n",
       "              34.05357\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Vista, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Vista&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1593798&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1593798.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2397&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.20239,\n",
       "          &quot;LONGITUDE&quot;: -117.23505,\n",
       "          &quot;OBJECTID&quot;: 151,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;N. Santa Fe Corridor Vista CA Landscaping and Irrigation Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -117.23505,\n",
       "              33.20239\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Walnut Creek, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Walnut Creek&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;100000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 100000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2398&quot;,\n",
       "          &quot;LATITUDE&quot;: 37.90162,\n",
       "          &quot;LONGITUDE&quot;: -122.06189,\n",
       "          &quot;OBJECTID&quot;: 152,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Walnut Creek Urban &amp; Community Forestry 2023&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.06189,\n",
       "              37.90162\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;San Francisco, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;San Francisco&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2399&quot;,\n",
       "          &quot;LATITUDE&quot;: 37.77712,\n",
       "          &quot;LONGITUDE&quot;: -122.41966,\n",
       "          &quot;OBJECTID&quot;: 153,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Climate and Economic Justice in Southeast San Francisco Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.41966,\n",
       "              37.77712\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Napa, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Napa&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1560761&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1560761.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2402&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.29911,\n",
       "          &quot;LONGITUDE&quot;: -122.28541,\n",
       "          &quot;OBJECTID&quot;: 154,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Our Napa Forests: Growing an Equitable Tree Canopy Through Cross-Jurisdictional Collaboration&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.28541,\n",
       "              38.29911\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;San Diego, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;San Diego&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2404&quot;,\n",
       "          &quot;LATITUDE&quot;: 32.71568,\n",
       "          &quot;LONGITUDE&quot;: -117.16171,\n",
       "          &quot;OBJECTID&quot;: 155,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;San Diego Regional Plan and Plant Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -117.16171,\n",
       "              32.71568\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;San Francisco, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;San Francisco&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;12000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 12000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2403&quot;,\n",
       "          &quot;LATITUDE&quot;: 37.77712,\n",
       "          &quot;LONGITUDE&quot;: -122.41966,\n",
       "          &quot;OBJECTID&quot;: 156,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Justice, Jobs and Trees: A San Francisco Climate Solution&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.41966,\n",
       "              37.77712\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;San Luis Obispo, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;San Luis Obispo&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;3773164&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 3773164.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2406&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.28579,\n",
       "          &quot;LONGITUDE&quot;: -120.66275,\n",
       "          &quot;OBJECTID&quot;: 157,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Climate adapted trees for California&#x27;s disadvantaged communities: closing the loop from seed to sustainable canopy&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.66275,\n",
       "              35.28579\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Watsonville, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Watsonville&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;3275191&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 3275191.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2407&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.90909,\n",
       "          &quot;LONGITUDE&quot;: -121.75559,\n",
       "          &quot;OBJECTID&quot;: 158,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Growing Tree Canopy, Climate Resilience, and Green Jobs Pathways in the Pajaro Valley&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -121.75559,\n",
       "              36.90909\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Aurora, CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Aurora&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2409&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.70932,\n",
       "          &quot;LONGITUDE&quot;: -104.81458,\n",
       "          &quot;OBJECTID&quot;: 159,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Reinvesting in Aurora&#x27;s Urban Canopy for Social Equity and Climate Resilience&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -104.81458,\n",
       "              39.70932\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Colorado Springs, CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Colorado Springs&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;9000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 9000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2410&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.83352,\n",
       "          &quot;LONGITUDE&quot;: -104.82181,\n",
       "          &quot;OBJECTID&quot;: 160,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Colorado Springs - Urban Forest Improvements&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -104.82181,\n",
       "              38.8335200000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Denver, CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Denver&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2411&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.74001,\n",
       "          &quot;LONGITUDE&quot;: -104.99202,\n",
       "          &quot;OBJECTID&quot;: 161,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Denver Community Tree Planting Initiative Expansion&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -104.99202,\n",
       "              39.74001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Los Angeles, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Los Angeles&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2400&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.05357,\n",
       "          &quot;LONGITUDE&quot;: -118.24545,\n",
       "          &quot;OBJECTID&quot;: 162,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Greening Watts&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -118.24545,\n",
       "              34.05357\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Los Angeles, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Los Angeles&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;8000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 8000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2401&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.05357,\n",
       "          &quot;LONGITUDE&quot;: -118.24545,\n",
       "          &quot;OBJECTID&quot;: 163,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Early Action Implementation for LA County Urban Forest Management Plan&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -118.24545,\n",
       "              34.05357\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Greeley, CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Greeley&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;689134&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 689134.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2413&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.4236,\n",
       "          &quot;LONGITUDE&quot;: -104.69445,\n",
       "          &quot;OBJECTID&quot;: 164,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Greeley Tree Canopy Rescue&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -104.69445,\n",
       "              40.4236000000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Monte Vista, CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Monte Vista&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2414&quot;,\n",
       "          &quot;LATITUDE&quot;: 37.58055,\n",
       "          &quot;LONGITUDE&quot;: -106.14591,\n",
       "          &quot;OBJECTID&quot;: 165,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Monte Vista Urban Canopy&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -106.14591,\n",
       "              37.5805500000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Westminster, CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Westminster&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;230000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 230000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2415&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.86347,\n",
       "          &quot;LONGITUDE&quot;: -105.05001,\n",
       "          &quot;OBJECTID&quot;: 166,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Expanding an Equitable Urban Tree Canopy in Westminster, Colorado&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.05001,\n",
       "              39.86347\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Los Angeles, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Los Angeles&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;8000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 8000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2405&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.05357,\n",
       "          &quot;LONGITUDE&quot;: -118.24545,\n",
       "          &quot;OBJECTID&quot;: 167,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;From Redlining to Greenlining: Planting Justice in SoCal&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -118.24545,\n",
       "              34.05357\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Glenwood Springs, CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Glenwood Springs&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;600000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 600000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2412&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.54603,\n",
       "          &quot;LONGITUDE&quot;: -107.3237,\n",
       "          &quot;OBJECTID&quot;: 168,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Glenwood Springs Tree Planting, Maintenance, and Education Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -107.3237,\n",
       "              39.54603\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Norwalk, CT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Norwalk&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2419&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.11366,\n",
       "          &quot;LONGITUDE&quot;: -73.40765,\n",
       "          &quot;OBJECTID&quot;: 169,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Norwalk Improvements to Increase Urban Forestry&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Connecticut&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -73.40765,\n",
       "              41.11366\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Hartford, CT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Hartford&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;6000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 6000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2417&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.76381,\n",
       "          &quot;LONGITUDE&quot;: -72.67397,\n",
       "          &quot;OBJECTID&quot;: 170,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Capitol Forest Stewardship Initiative&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Connecticut&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -72.6739699999999,\n",
       "              41.76381\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;New Haven, CT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;New Haven&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;362000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 362000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2418&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.30801,\n",
       "          &quot;LONGITUDE&quot;: -72.92432,\n",
       "          &quot;OBJECTID&quot;: 171,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;A Strategic Vision for New Haven&#x27;s Urban Forest&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Connecticut&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -72.92432,\n",
       "              41.30801\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Stamford, CT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Stamford&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2420&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.05195,\n",
       "          &quot;LONGITUDE&quot;: -73.54222,\n",
       "          &quot;OBJECTID&quot;: 172,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Growing Together Stamford&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Connecticut&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -73.54222,\n",
       "              41.05195\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Bridgeport, CT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Bridgeport&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1708335&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1708335.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2421&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.18213,\n",
       "          &quot;LONGITUDE&quot;: -73.19064,\n",
       "          &quot;OBJECTID&quot;: 173,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Revitalizing the Urban Landscape through Equitable Tree Plantings and Monitoring in Bridgeport, CT.&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Connecticut&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -73.19064,\n",
       "              41.18213\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Wheat Ridge, CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Wheat Ridge&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;669073&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 669073.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2416&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.75845,\n",
       "          &quot;LONGITUDE&quot;: -105.08018,\n",
       "          &quot;OBJECTID&quot;: 174,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Expanding the Urban Tree Canopy in Wheat Ridge&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.08018,\n",
       "              39.75845\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;New Haven, CT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;New Haven&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2640847&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2640847.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2422&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.30801,\n",
       "          &quot;LONGITUDE&quot;: -72.92432,\n",
       "          &quot;OBJECTID&quot;: 175,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Tree Equity and Employment&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Connecticut&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -72.92432,\n",
       "              41.30801\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Stratford, CT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Stratford&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2424&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.19875,\n",
       "          &quot;LONGITUDE&quot;: -73.13308,\n",
       "          &quot;OBJECTID&quot;: 176,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Town of Stratford South End Tree Inventory, Management Plan &amp; Arboretum&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Connecticut&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -73.1330799999999,\n",
       "              41.1987500000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;New Haven, CT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;New Haven&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2230355&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2230355.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2423&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.30801,\n",
       "          &quot;LONGITUDE&quot;: -72.92432,\n",
       "          &quot;OBJECTID&quot;: 177,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Connecticut Urban Forest Network for Equity and Resilience&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Connecticut&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -72.92432,\n",
       "              41.30801\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Dover, DE&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Dover&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2426&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.15803,\n",
       "          &quot;LONGITUDE&quot;: -75.52473,\n",
       "          &quot;OBJECTID&quot;: 178,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;The Delaware Forest Service Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;DE&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Delaware&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -75.52473,\n",
       "              39.15803\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Homestead, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Homestead&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;755668&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 755668.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2429&quot;,\n",
       "          &quot;LATITUDE&quot;: 25.4765,\n",
       "          &quot;LONGITUDE&quot;: -80.46552,\n",
       "          &quot;OBJECTID&quot;: 179,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Urban Forest Reforestation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.46552,\n",
       "              25.4765\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Hollywood, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Hollywood&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;455659&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 455659.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2428&quot;,\n",
       "          &quot;LATITUDE&quot;: 26.01067,\n",
       "          &quot;LONGITUDE&quot;: -80.16026,\n",
       "          &quot;OBJECTID&quot;: 180,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Hollywood Urban Forestry Resiliency&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.1602599999999,\n",
       "              26.0106700000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Kissimmee, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Kissimmee&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;100000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 100000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2430&quot;,\n",
       "          &quot;LATITUDE&quot;: 28.29457,\n",
       "          &quot;LONGITUDE&quot;: -81.40663,\n",
       "          &quot;OBJECTID&quot;: 181,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Lancaster Ranch Park Reforestation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -81.40663,\n",
       "              28.2945700000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Washington, DC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Washington&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;9115260&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 9115260.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2425&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.89037,\n",
       "          &quot;LONGITUDE&quot;: -77.03196,\n",
       "          &quot;OBJECTID&quot;: 182,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Advancing Tree Equity in the Washington Metropolitan Region&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;DC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;District of Columbia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -77.03196,\n",
       "              38.89037\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Margate, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Margate&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;100000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 100000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2431&quot;,\n",
       "          &quot;LATITUDE&quot;: 26.24239,\n",
       "          &quot;LONGITUDE&quot;: -80.20462,\n",
       "          &quot;OBJECTID&quot;: 183,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Margate Tree Canopy Improvement&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.20462,\n",
       "              26.2423900000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Opa-locka, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Opa-locka&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2434&quot;,\n",
       "          &quot;LATITUDE&quot;: 25.90457,\n",
       "          &quot;LONGITUDE&quot;: -80.25298,\n",
       "          &quot;OBJECTID&quot;: 184,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Opa-locka&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.25298,\n",
       "              25.90457\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Miami, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Miami&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2432&quot;,\n",
       "          &quot;LATITUDE&quot;: 25.77481,\n",
       "          &quot;LONGITUDE&quot;: -80.19773,\n",
       "          &quot;OBJECTID&quot;: 185,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Miami Urban Forest and Green Workforce Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.19773,\n",
       "              25.77481\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Orlando, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Orlando&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2435&quot;,\n",
       "          &quot;LATITUDE&quot;: 28.53823,\n",
       "          &quot;LONGITUDE&quot;: -81.37739,\n",
       "          &quot;OBJECTID&quot;: 186,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Orlando Urban &amp; Community Forestry Grant&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -81.37739,\n",
       "              28.5382300000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Pensacola, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Pensacola&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2437&quot;,\n",
       "          &quot;LATITUDE&quot;: 30.42099,\n",
       "          &quot;LONGITUDE&quot;: -87.21726,\n",
       "          &quot;OBJECTID&quot;: 187,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Pensacola&#x27;s Urban Forests Forever Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -87.21726,\n",
       "              30.42099\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Panama City, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Panama City&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2436&quot;,\n",
       "          &quot;LATITUDE&quot;: 30.15987,\n",
       "          &quot;LONGITUDE&quot;: -85.66033,\n",
       "          &quot;OBJECTID&quot;: 188,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Eastside Panama City Tree Canopy Restoration&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -85.66033,\n",
       "              30.1598700000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Miami Beach, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Miami Beach&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2433&quot;,\n",
       "          &quot;LATITUDE&quot;: 25.79339,\n",
       "          &quot;LONGITUDE&quot;: -80.13493,\n",
       "          &quot;OBJECTID&quot;: 189,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Beachwalk Reforestation Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.1349299999999,\n",
       "              25.79339\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Cape Coral, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Cape Coral&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2427&quot;,\n",
       "          &quot;LATITUDE&quot;: 26.62982,\n",
       "          &quot;LONGITUDE&quot;: -81.95675,\n",
       "          &quot;OBJECTID&quot;: 190,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Cape Coral Urban Parks and Greenspace Reforestation Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -81.95675,\n",
       "              26.62982\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Tamarac, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Tamarac&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;516485&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 516485.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2441&quot;,\n",
       "          &quot;LATITUDE&quot;: 26.21515,\n",
       "          &quot;LONGITUDE&quot;: -80.27285,\n",
       "          &quot;OBJECTID&quot;: 191,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Tamarac Roadway Urban Froestry&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.27285,\n",
       "              26.21515\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Riviera Beach, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Riviera Beach&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1350000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1350000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2439&quot;,\n",
       "          &quot;LATITUDE&quot;: 26.78349,\n",
       "          &quot;LONGITUDE&quot;: -80.06401,\n",
       "          &quot;OBJECTID&quot;: 192,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Riviera Beach Urban Forestry Renewal Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.0640099999999,\n",
       "              26.78349\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Tampa, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Tampa&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2442&quot;,\n",
       "          &quot;LATITUDE&quot;: 27.94653,\n",
       "          &quot;LONGITUDE&quot;: -82.45927,\n",
       "          &quot;OBJECTID&quot;: 193,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Trees for Tampa&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -82.45927,\n",
       "              27.94653\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Port St. Lucie, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Port St. Lucie&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2438&quot;,\n",
       "          &quot;LATITUDE&quot;: 27.27481,\n",
       "          &quot;LONGITUDE&quot;: -80.36367,\n",
       "          &quot;OBJECTID&quot;: 194,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Grow Green, Port St. Lucie&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.36367,\n",
       "              27.2748100000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Satellite Beach, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Satellite Beach&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;806240&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 806240.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2440&quot;,\n",
       "          &quot;LATITUDE&quot;: 28.17235,\n",
       "          &quot;LONGITUDE&quot;: -80.60208,\n",
       "          &quot;OBJECTID&quot;: 195,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Satellite Beach Urban Forest Management Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.60208,\n",
       "              28.17235\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Miami, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Miami&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2445&quot;,\n",
       "          &quot;LATITUDE&quot;: 25.77481,\n",
       "          &quot;LONGITUDE&quot;: -80.19773,\n",
       "          &quot;OBJECTID&quot;: 196,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Growing Miami\\u2019s Green Corridor&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.19773,\n",
       "              25.77481\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Miami, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Miami&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;10000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 10000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2446&quot;,\n",
       "          &quot;LATITUDE&quot;: 25.77481,\n",
       "          &quot;LONGITUDE&quot;: -80.19773,\n",
       "          &quot;OBJECTID&quot;: 197,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Miami-Dade County Department of Parks, Recreation and Outdoor Spaces&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.19773,\n",
       "              25.77481\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Winter Haven, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Winter Haven&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;347804&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 347804.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2444&quot;,\n",
       "          &quot;LATITUDE&quot;: 28.02232,\n",
       "          &quot;LONGITUDE&quot;: -81.73295,\n",
       "          &quot;OBJECTID&quot;: 198,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Winter Haven Urban Forest Master Plan Implementation Phase 1&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -81.73295,\n",
       "              28.02232\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Tarpon Springs, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Tarpon Springs&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;100000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 100000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2443&quot;,\n",
       "          &quot;LATITUDE&quot;: 28.15084,\n",
       "          &quot;LONGITUDE&quot;: -82.75306,\n",
       "          &quot;OBJECTID&quot;: 199,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Tarpon Springs Raise the Limb for Safety Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -82.75306,\n",
       "              28.15084\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Atlanta, GA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Atlanta&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2451&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.74831,\n",
       "          &quot;LONGITUDE&quot;: -84.39111,\n",
       "          &quot;OBJECTID&quot;: 200,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City in a Forest: Protecting Atlanta&#x27;s Legacy&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;GA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Georgia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -84.39111,\n",
       "              33.7483100000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Sanderson, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Sanderson&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2250700&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2250700.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2447&quot;,\n",
       "          &quot;LATITUDE&quot;: 30.25051,\n",
       "          &quot;LONGITUDE&quot;: -82.27137,\n",
       "          &quot;OBJECTID&quot;: 201,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Osceola Tree Canopy Improvement Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -82.27137,\n",
       "              30.2505100000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Decatur, GA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Decatur&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;100000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 100000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2452&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.77437,\n",
       "          &quot;LONGITUDE&quot;: -84.29658,\n",
       "          &quot;OBJECTID&quot;: 202,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Downtown Decatur Canopy Management and Resilience Plan&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;GA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Georgia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -84.29658,\n",
       "              33.77437\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Wellington, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Wellington&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;747500&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 747500.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2449&quot;,\n",
       "          &quot;LATITUDE&quot;: 26.64393,\n",
       "          &quot;LONGITUDE&quot;: -80.27001,\n",
       "          &quot;OBJECTID&quot;: 203,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Improving Wellington&#x27;s Tree Canopy&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.27001,\n",
       "              26.6439300000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Atlanta, GA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Atlanta&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;439100&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 439100.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2453&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.74831,\n",
       "          &quot;LONGITUDE&quot;: -84.39111,\n",
       "          &quot;OBJECTID&quot;: 204,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Atlanta Watershed Learning Network&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;GA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Georgia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -84.39111,\n",
       "              33.7483100000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Atlanta, GA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Atlanta&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2454&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.74831,\n",
       "          &quot;LONGITUDE&quot;: -84.39111,\n",
       "          &quot;OBJECTID&quot;: 205,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Canopy for Just Communities&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;GA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Georgia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -84.39111,\n",
       "              33.7483100000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Virginia Gardens, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Virginia Gardens&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;150000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 150000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2448&quot;,\n",
       "          &quot;LATITUDE&quot;: 25.80967,\n",
       "          &quot;LONGITUDE&quot;: -80.30272,\n",
       "          &quot;OBJECTID&quot;: 206,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Tree Inventory and Master Plan&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.30272,\n",
       "              25.80967\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Atlanta, GA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Atlanta&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;10000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 10000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2455&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.74831,\n",
       "          &quot;LONGITUDE&quot;: -84.39111,\n",
       "          &quot;OBJECTID&quot;: 207,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Promoting Tree Equity and Urban Forestry Workforce Diversity in Atlanta&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;GA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Georgia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -84.39111,\n",
       "              33.7483100000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Honolulu, HI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Honolulu&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2457&quot;,\n",
       "          &quot;LATITUDE&quot;: 21.30493,\n",
       "          &quot;LONGITUDE&quot;: -157.85788,\n",
       "          &quot;OBJECTID&quot;: 208,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Planning, Planting, and Partnering for Oahu&#x27;s Urban and Community Forest&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;HI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Hawaii&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -157.85788,\n",
       "              21.30493\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Captain Cook, HI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Captain Cook&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2458&quot;,\n",
       "          &quot;LATITUDE&quot;: 19.49399,\n",
       "          &quot;LONGITUDE&quot;: -155.91841,\n",
       "          &quot;OBJECTID&quot;: 209,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Resilient Forests - Strong Communities: \\u00a0Anchoring a Public Forestry Campaign in Hawaii&#x27;s Only Federally-designated Community Forest&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;HI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Hawaii&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -155.91841,\n",
       "              19.49399\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Honolulu, HI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Honolulu&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2459&quot;,\n",
       "          &quot;LATITUDE&quot;: 21.30493,\n",
       "          &quot;LONGITUDE&quot;: -157.85788,\n",
       "          &quot;OBJECTID&quot;: 210,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Trees for People: Growing an Urban Community Food &amp; Native Forest&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;HI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Hawaii&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -157.85788,\n",
       "              21.30493\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Honolulu, HI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Honolulu&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;585500&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 585500.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2460&quot;,\n",
       "          &quot;LATITUDE&quot;: 21.30493,\n",
       "          &quot;LONGITUDE&quot;: -157.85788,\n",
       "          &quot;OBJECTID&quot;: 211,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Native Hawaiian Hardwoods&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;HI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Hawaii&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -157.85788,\n",
       "              21.30493\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Honolulu, HI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Honolulu&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2461&quot;,\n",
       "          &quot;LATITUDE&quot;: 21.30493,\n",
       "          &quot;LONGITUDE&quot;: -157.85788,\n",
       "          &quot;OBJECTID&quot;: 212,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Grow Right Ahead: \\u00a0Urban Forestry for an Equitable Future&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;HI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Hawaii&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -157.85788,\n",
       "              21.30493\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Honolulu, HI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Honolulu&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;20000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 20000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2462&quot;,\n",
       "          &quot;LATITUDE&quot;: 21.30493,\n",
       "          &quot;LONGITUDE&quot;: -157.85788,\n",
       "          &quot;OBJECTID&quot;: 213,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;MALU Subawards Meaningful Arboriculture to Limit Vulnerability in Urban &amp; Community Areas&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;HI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Hawaii&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -157.85788,\n",
       "              21.30493\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Kailua, HI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Kailua&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;9000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 9000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2463&quot;,\n",
       "          &quot;LATITUDE&quot;: 21.39688,\n",
       "          &quot;LONGITUDE&quot;: -157.73946,\n",
       "          &quot;OBJECTID&quot;: 214,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Qualified Arboricultural Workforce Development for Pacific Island Disadvantaged Communities: Building Climate Resiliency, Community Health, and Welfare&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;HI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Hawaii&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -157.73946,\n",
       "              21.39688\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Hilo, HI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Hilo&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2456&quot;,\n",
       "          &quot;LATITUDE&quot;: 19.71924,\n",
       "          &quot;LONGITUDE&quot;: -155.08185,\n",
       "          &quot;OBJECTID&quot;: 215,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Pilina Aina: Providing Access to Place-Based, Biocultural Stewardship Learning Opportunities for Hawaii&#x27;s Students and Teachers&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;HI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Hawaii&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -155.08185,\n",
       "              19.71924\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Ames, IA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Ames&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;810500&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 810500.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2465&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.02534,\n",
       "          &quot;LONGITUDE&quot;: -93.6202,\n",
       "          &quot;OBJECTID&quot;: 216,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Amazing Ames: A Thriving Canopy for a Thriving Community&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Iowa&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -93.6202,\n",
       "              42.02534\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Decorah, IA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Decorah&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;629652&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 629652.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2468&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.30388,\n",
       "          &quot;LONGITUDE&quot;: -91.79093,\n",
       "          &quot;OBJECTID&quot;: 217,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Decorah Urban Forest Revitalization Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Iowa&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -91.79093,\n",
       "              43.30388\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Cedar Rapids, IA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Cedar Rapids&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;6000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 6000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2466&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.97646,\n",
       "          &quot;LONGITUDE&quot;: -91.67346,\n",
       "          &quot;OBJECTID&quot;: 218,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;ReLeaf Cedar Rapids: Bringing Back a Community&#x27;s Trees&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Iowa&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -91.67346,\n",
       "              41.97646\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Council Bluffs, IA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Council Bluffs&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;600000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 600000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2467&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.25818,\n",
       "          &quot;LONGITUDE&quot;: -95.8511,\n",
       "          &quot;OBJECTID&quot;: 219,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;UCF Council Bluffs&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Iowa&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -95.8511,\n",
       "              41.25818\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Dubuque, IA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Dubuque&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1499978&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1499978.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2470&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.49913,\n",
       "          &quot;LONGITUDE&quot;: -90.66327,\n",
       "          &quot;OBJECTID&quot;: 220,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Branching Out Dubuque&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Iowa&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -90.66327,\n",
       "              42.49913\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Hilo, HI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Hilo&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2464&quot;,\n",
       "          &quot;LATITUDE&quot;: 19.71924,\n",
       "          &quot;LONGITUDE&quot;: -155.08185,\n",
       "          &quot;OBJECTID&quot;: 221,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Native Hawaiian Homestead Associations: Community Forests and Family Trees for Native Hawaiian Health and Well-Being&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;HI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Hawaii&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -155.08185,\n",
       "              19.71924\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Hailey, ID&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Hailey&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;139390&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 139390.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2473&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.52107,\n",
       "          &quot;LONGITUDE&quot;: -114.31644,\n",
       "          &quot;OBJECTID&quot;: 222,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Growing Our Equitable Urban Forest - Kiwanis Park Tree Planting Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;ID&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Idaho&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -114.31644,\n",
       "              43.5210700000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Des Moines, IA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Des Moines&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2469&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.58981,\n",
       "          &quot;LONGITUDE&quot;: -93.61538,\n",
       "          &quot;OBJECTID&quot;: 223,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Expanding the Urban Canopy in Disadvantaged Communities of Des Moines&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Iowa&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -93.61538,\n",
       "              41.58981\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Malad City, ID&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Malad City&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2474&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.18695,\n",
       "          &quot;LONGITUDE&quot;: -112.2473,\n",
       "          &quot;OBJECTID&quot;: 224,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Malad City, Idaho Urban Forestry Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;ID&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Idaho&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -112.2473,\n",
       "              42.18695\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Nampa, ID&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Nampa&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2475&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.58263,\n",
       "          &quot;LONGITUDE&quot;: -116.56962,\n",
       "          &quot;OBJECTID&quot;: 225,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Preserve, Protect, and Enhance Nampa&#x27;s Urban Forest&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;ID&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Idaho&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -116.56962,\n",
       "              43.58263\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Des Moines, IA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Des Moines&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;3190613&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 3190613.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2472&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.58981,\n",
       "          &quot;LONGITUDE&quot;: -93.61538,\n",
       "          &quot;OBJECTID&quot;: 226,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Increasing Opportunities in Iowa to Protect, Enhance and Expand Community Forests&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Iowa&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -93.61538,\n",
       "              41.58981\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Rexburg, ID&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Rexburg&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2477&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.82608,\n",
       "          &quot;LONGITUDE&quot;: -111.78252,\n",
       "          &quot;OBJECTID&quot;: 227,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Growing Green for Rexburg&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;ID&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Idaho&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.78252,\n",
       "              43.82608\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Pocatello, ID&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Pocatello&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2476&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.87497,\n",
       "          &quot;LONGITUDE&quot;: -112.45056,\n",
       "          &quot;OBJECTID&quot;: 228,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Pocatello Urban Forest&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;ID&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Idaho&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -112.45056,\n",
       "              42.87497\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Boise, ID&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Boise&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1076500&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1076500.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2479&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.60764,\n",
       "          &quot;LONGITUDE&quot;: -116.1934,\n",
       "          &quot;OBJECTID&quot;: 229,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Treasure Valley Canopy Equity&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;ID&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Idaho&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -116.1934,\n",
       "              43.6076400000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Aurora, IL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Aurora&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2480&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.7571,\n",
       "          &quot;LONGITUDE&quot;: -88.31613,\n",
       "          &quot;OBJECTID&quot;: 230,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Improving Aurora&#x27;s Urban Forest&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Illinois&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -88.31613,\n",
       "              41.7571\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Danville, IL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Danville&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2481&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.15982,\n",
       "          &quot;LONGITUDE&quot;: -87.63042,\n",
       "          &quot;OBJECTID&quot;: 231,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Community Roots: Danville&#x27;s Urban Reforestation and Revitalization Plan&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Illinois&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -87.63042,\n",
       "              40.15982\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Decatur, IL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Decatur&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;750000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 750000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2482&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.84585,\n",
       "          &quot;LONGITUDE&quot;: -88.95209,\n",
       "          &quot;OBJECTID&quot;: 232,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;21st Century Decatur Urban Forests Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Illinois&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -88.9520899999999,\n",
       "              39.84585\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Evanston, IL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Evanston&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;802500&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 802500.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2483&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.05702,\n",
       "          &quot;LONGITUDE&quot;: -87.68645,\n",
       "          &quot;OBJECTID&quot;: 233,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Improving urban forest health in Evanston&#x27;s Channel-side parks&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Illinois&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -87.68645,\n",
       "              42.0570200000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Kewanee, IL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Kewanee&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;220685&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 220685.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2484&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.2473,\n",
       "          &quot;LONGITUDE&quot;: -89.92486,\n",
       "          &quot;OBJECTID&quot;: 234,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Kewanee Il&#x27;s Community Forest Plan&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Illinois&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -89.92486,\n",
       "              41.2473000000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Soda Springs, ID&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Soda Springs&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2478&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.65468,\n",
       "          &quot;LONGITUDE&quot;: -111.60291,\n",
       "          &quot;OBJECTID&quot;: 235,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Ledge Creek Recreation Area&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;ID&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Idaho&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.60291,\n",
       "              42.65468\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;West Des Moines, IA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;West Des Moines&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2471&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.5677,\n",
       "          &quot;LONGITUDE&quot;: -93.75694,\n",
       "          &quot;OBJECTID&quot;: 236,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Delivering Environmental Justice to WDM&#x27;S Most Underserved &amp; Environmentally Sensitive Neghborhoods&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Iowa&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -93.75694,\n",
       "              41.5677000000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Lisle, IL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Lisle&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;15000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 15000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2487&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.79884,\n",
       "          &quot;LONGITUDE&quot;: -88.07191,\n",
       "          &quot;OBJECTID&quot;: 237,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Building Urban and Community Forestry Resilience and Capacity in Under-Resourced Communities and Neighborhoods Across Illinois&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Illinois&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -88.07191,\n",
       "              41.79884\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Chicago, IL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Chicago&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1999835&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1999835.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2486&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.88425,\n",
       "          &quot;LONGITUDE&quot;: -87.63245,\n",
       "          &quot;OBJECTID&quot;: 238,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Faith Action to Expand Tree Equity and Forestry Workforce in Disadvantaged Communities in Illinois, Indiana, and Wisconsin&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Illinois&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -87.63245,\n",
       "              41.8842500000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Rantoul, IL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Rantoul&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;250000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 250000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2490&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.3085,\n",
       "          &quot;LONGITUDE&quot;: -88.14622,\n",
       "          &quot;OBJECTID&quot;: 239,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Village of Rantoul&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Illinois&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -88.14622,\n",
       "              40.3085\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Springfield, IL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Springfield&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;889027&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 889027.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2485&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.8013,\n",
       "          &quot;LONGITUDE&quot;: -89.6436,\n",
       "          &quot;OBJECTID&quot;: 240,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Springfield Urban Forestry Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Illinois&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -89.6436,\n",
       "              39.8013\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Skokie, IL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Skokie&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;327740&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 327740.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2491&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.02634,\n",
       "          &quot;LONGITUDE&quot;: -87.75545,\n",
       "          &quot;OBJECTID&quot;: 241,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Educating and Planting Private and Public Trees with a Focus on Skokie&#x27;s Climate and Economic Justice Disadvantaged Areas&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Illinois&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -87.7554499999999,\n",
       "              42.02634\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Chicago, IL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Chicago&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2488&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.88425,\n",
       "          &quot;LONGITUDE&quot;: -87.63245,\n",
       "          &quot;OBJECTID&quot;: 242,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Collective Urban Forestry Stewardship in Chicago, IL&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Illinois&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -87.63245,\n",
       "              41.8842500000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Bloomington, IN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Bloomington&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;100000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 100000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2492&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.1666,\n",
       "          &quot;LONGITUDE&quot;: -86.5348,\n",
       "          &quot;OBJECTID&quot;: 243,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Bloomington Urban Forest Storm Resilience and Access Plan&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Indiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -86.5348,\n",
       "              39.1666000000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Elkhart, IN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Elkhart&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2493&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.68676,\n",
       "          &quot;LONGITUDE&quot;: -85.97567,\n",
       "          &quot;OBJECTID&quot;: 244,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Trees for the Hart Public Education and Climate Resilience for the City of Elkhart&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Indiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -85.97567,\n",
       "              41.68676\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Goshen, IN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Goshen&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2494&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.58918,\n",
       "          &quot;LONGITUDE&quot;: -85.83695,\n",
       "          &quot;OBJECTID&quot;: 245,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Connecting People to Forests and Food&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Indiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -85.83695,\n",
       "              41.58918\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Huntington, IN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Huntington&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2495&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.88284,\n",
       "          &quot;LONGITUDE&quot;: -85.49425,\n",
       "          &quot;OBJECTID&quot;: 246,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Huntington Tree Canopy Equitable Growth Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Indiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -85.49425,\n",
       "              40.88284\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Indianapolis, IN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Indianapolis&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;12000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 12000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2496&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.76691,\n",
       "          &quot;LONGITUDE&quot;: -86.15012,\n",
       "          &quot;OBJECTID&quot;: 247,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Indianapolis Canopy Growth and Resilience Initiative&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Indiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -86.15012,\n",
       "              39.7669100000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Muncie, IN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Muncie&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2499&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.19316,\n",
       "          &quot;LONGITUDE&quot;: -85.38173,\n",
       "          &quot;OBJECTID&quot;: 248,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Rooted in Community&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Indiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -85.38173,\n",
       "              40.19316\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Michigan City, IN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Michigan City&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2498&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.71936,\n",
       "          &quot;LONGITUDE&quot;: -86.90317,\n",
       "          &quot;OBJECTID&quot;: 249,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Michigan City Urban Reforestation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Indiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -86.90317,\n",
       "              41.71936\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Arlington Heights, IL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Arlington Heights&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;100000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 100000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2489&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.08729,\n",
       "          &quot;LONGITUDE&quot;: -87.98044,\n",
       "          &quot;OBJECTID&quot;: 250,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Updated Tree Inventory, Urban Forest Management Plan Development, &amp; Community Outreach&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Illinois&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -87.98044,\n",
       "              42.0872900000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Bloomington, IN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Bloomington&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2501&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.1666,\n",
       "          &quot;LONGITUDE&quot;: -86.5348,\n",
       "          &quot;OBJECTID&quot;: 251,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;The Urban Green Infrastructure (UGI) Resilience Cohort for Indiana&#x27;s Disadvantaged Communities&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Indiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -86.5348,\n",
       "              39.1666000000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;South Bend, IN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;South Bend&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1867730&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1867730.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2500&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.67907,\n",
       "          &quot;LONGITUDE&quot;: -86.25405,\n",
       "          &quot;OBJECTID&quot;: 252,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;South Bend Urban Tree Nursery Network&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Indiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -86.25405,\n",
       "              41.67907\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;La Porte, IN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;La Porte&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2497&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.60954,\n",
       "          &quot;LONGITUDE&quot;: -86.72139,\n",
       "          &quot;OBJECTID&quot;: 253,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of La Porte Urban Canopy Enhancement&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Indiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -86.72139,\n",
       "              41.60954\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Hutchinson, KS&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Hutchinson&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;250000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 250000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2502&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.05725,\n",
       "          &quot;LONGITUDE&quot;: -97.93248,\n",
       "          &quot;OBJECTID&quot;: 254,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Dead tree removal on right of ways&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;KS&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Kansas&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -97.9324799999999,\n",
       "              38.0572500000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Olathe, KS&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Olathe&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2503&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.88353,\n",
       "          &quot;LONGITUDE&quot;: -94.81852,\n",
       "          &quot;OBJECTID&quot;: 255,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Fostering Forestry: A Plan to Advance the Health &amp; Wellness of Urban Forests in Olathe, Kansas&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;KS&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Kansas&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -94.81852,\n",
       "              38.8835300000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Elizabethtown, KY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Elizabethtown&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;526500&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 526500.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2505&quot;,\n",
       "          &quot;LATITUDE&quot;: 37.69367,\n",
       "          &quot;LONGITUDE&quot;: -85.85912,\n",
       "          &quot;OBJECTID&quot;: 256,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Increasing Climate Resilience, Green Career Pathways, and Urban Forestry Initiatives in Kentucky&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;KY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Kentucky&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -85.85912,\n",
       "              37.69367\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Louisville, KY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Louisville&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;12000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 12000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2506&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.25489,\n",
       "          &quot;LONGITUDE&quot;: -85.76666,\n",
       "          &quot;OBJECTID&quot;: 257,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Louisville Equitable Forest Initiative&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;KY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Kentucky&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -85.76666,\n",
       "              38.25489\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Lake Charles, LA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Lake Charles&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;866078&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 866078.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2508&quot;,\n",
       "          &quot;LATITUDE&quot;: 30.22403,\n",
       "          &quot;LONGITUDE&quot;: -93.22011,\n",
       "          &quot;OBJECTID&quot;: 258,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;ReTree LC Corridor Enhancements&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;LA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Louisiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -93.22011,\n",
       "              30.22403\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Baton Rouge, LA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Baton Rouge&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;9504066&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 9504066.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2510&quot;,\n",
       "          &quot;LATITUDE&quot;: 30.44335,\n",
       "          &quot;LONGITUDE&quot;: -91.18664,\n",
       "          &quot;OBJECTID&quot;: 259,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;The GREEN LAB - Generating Resources for Environmental Excellence Network (GREEN) toward Leadership and Advancement Building (LAB)&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;LA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Louisiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -91.18664,\n",
       "              30.44335\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;New Orleans, LA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;New Orleans&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;8000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 8000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2509&quot;,\n",
       "          &quot;LATITUDE&quot;: 29.9537,\n",
       "          &quot;LONGITUDE&quot;: -90.07775,\n",
       "          &quot;OBJECTID&quot;: 260,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;New Orleans Canopy Training, Urban Reforestation, and Neighborhood Leadership (NOCTURNL)&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;LA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Louisiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -90.07775,\n",
       "              29.9537\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Newport, KY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Newport&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;998750&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 998750.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2504&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.08826,\n",
       "          &quot;LONGITUDE&quot;: -84.49018,\n",
       "          &quot;OBJECTID&quot;: 261,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Newport Westside Reforestation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;KY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Kentucky&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -84.49018,\n",
       "              39.08826\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Baton Rouge, LA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Baton Rouge&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;6000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 6000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2511&quot;,\n",
       "          &quot;LATITUDE&quot;: 30.44335,\n",
       "          &quot;LONGITUDE&quot;: -91.18664,\n",
       "          &quot;OBJECTID&quot;: 262,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Agroforestry Apprenticeship Program To Promote Tree Equity, Climate Resilience, and Workforce Readiness in Baton Rouge, LA&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;LA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Louisiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -91.18664,\n",
       "              30.44335\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Boston, MA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Boston&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;11406762&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 11406762.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2512&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.35866,\n",
       "          &quot;LONGITUDE&quot;: -71.05674,\n",
       "          &quot;OBJECTID&quot;: 263,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Healthy Places Boston: Growing an Accessible, Inclusive and Resilient Urban Forest&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Massachusetts&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -71.05674,\n",
       "              42.35866\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Holyoke, MA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Holyoke&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2515&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.20696,\n",
       "          &quot;LONGITUDE&quot;: -72.60743,\n",
       "          &quot;OBJECTID&quot;: 264,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Urban Forest Equity Plan Implementation in Holyoke, Massachusetts&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Massachusetts&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -72.60743,\n",
       "              42.20696\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Haverhill, MA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Haverhill&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2514&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.7776,\n",
       "          &quot;LONGITUDE&quot;: -71.07654,\n",
       "          &quot;OBJECTID&quot;: 265,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Investing in Haverhill&#x27;s Urban Forest with Equity and Resilience&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Massachusetts&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -71.07654,\n",
       "              42.7776\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Lynn, MA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Lynn&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;550000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 550000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2516&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.46399,\n",
       "          &quot;LONGITUDE&quot;: -70.95077,\n",
       "          &quot;OBJECTID&quot;: 266,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;The City of Holyoke&#x27;s Urban Forest Equity Plan &quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Massachusetts&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -70.95077,\n",
       "              42.4639900000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Quincy, MA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Quincy&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;750000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 750000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2517&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.2523,\n",
       "          &quot;LONGITUDE&quot;: -71.00417,\n",
       "          &quot;OBJECTID&quot;: 267,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Urban Forest Climate Resiliency &amp; Equity Plan&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Massachusetts&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -71.00417,\n",
       "              42.2523\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Watertown, MA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Watertown&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;100000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 100000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2518&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.36761,\n",
       "          &quot;LONGITUDE&quot;: -71.18788,\n",
       "          &quot;OBJECTID&quot;: 268,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Tree Planting in the City of Watertown, Massachusetts&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Massachusetts&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -71.18788,\n",
       "              42.36761\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Springfield, MA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Springfield&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;6000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 6000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2519&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.10125,\n",
       "          &quot;LONGITUDE&quot;: -72.58929,\n",
       "          &quot;OBJECTID&quot;: 269,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Springfield \\&quot;Speaks for the Trees\\&quot; Revitalizing Urban Tree Canopy in Underserved Communities&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Massachusetts&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -72.58929,\n",
       "              42.10125\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Fall River, MA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Fall River&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2513&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.69735,\n",
       "          &quot;LONGITUDE&quot;: -71.14365,\n",
       "          &quot;OBJECTID&quot;: 270,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Fall River Urban Tree Canopy Expansion Initiative&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Massachusetts&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -71.14365,\n",
       "              41.69735\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Southbridge, MA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Southbridge&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2520&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.07457,\n",
       "          &quot;LONGITUDE&quot;: -72.03279,\n",
       "          &quot;OBJECTID&quot;: 271,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Implement an Urban and Community Forestry Program in the Town of Southbridge&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Massachusetts&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -72.03279,\n",
       "              42.07457\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Baltimore, MD&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Baltimore&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;7000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 7000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2521&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.29058,\n",
       "          &quot;LONGITUDE&quot;: -76.60926,\n",
       "          &quot;OBJECTID&quot;: 272,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Baltimore Tree Trust&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MD&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Maryland&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -76.60926,\n",
       "              39.29058\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Annapolis, MD&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Annapolis&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;17000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 17000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2522&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.97678,\n",
       "          &quot;LONGITUDE&quot;: -76.49014,\n",
       "          &quot;OBJECTID&quot;: 273,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;The Mid-Atlantic Environmental Justice Fund - Urban and Community Forestry&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MD&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Maryland&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -76.4901399999999,\n",
       "              38.97678\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Annapolis, MD&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Annapolis&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2523&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.97678,\n",
       "          &quot;LONGITUDE&quot;: -76.49014,\n",
       "          &quot;OBJECTID&quot;: 274,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Gather and Grow&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MD&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Maryland&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -76.4901399999999,\n",
       "              38.97678\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Baltimore, MD&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Baltimore&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;3000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 3000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2524&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.29058,\n",
       "          &quot;LONGITUDE&quot;: -76.60926,\n",
       "          &quot;OBJECTID&quot;: 275,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Baltimore Community Canopy: A Civic Works Urban Reforestation Initiative&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MD&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Maryland&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -76.60926,\n",
       "              39.29058\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Chevy Chase, MD&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Chevy Chase&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1359369&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1359369.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2526&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.98249,\n",
       "          &quot;LONGITUDE&quot;: -77.08722,\n",
       "          &quot;OBJECTID&quot;: 276,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Tree-Cosystems for Green Communities&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MD&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Maryland&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -77.08722,\n",
       "              38.98249\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Augusta, ME&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Augusta&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1567194&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1567194.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2528&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.31804,\n",
       "          &quot;LONGITUDE&quot;: -69.7763,\n",
       "          &quot;OBJECTID&quot;: 277,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Maine Conservation Corps - Community Tree Stewards&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;ME&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Maine&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -69.7763,\n",
       "              44.3180400000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Baltimore, MD&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Baltimore&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2527&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.29058,\n",
       "          &quot;LONGITUDE&quot;: -76.60926,\n",
       "          &quot;OBJECTID&quot;: 278,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Stillmeadow PeacePark and Learning Center for the Clinical Study and Teaching of Urban Ecology and Environmental Justice&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MD&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Maryland&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -76.60926,\n",
       "              39.29058\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Detroit, MI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Detroit&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;3000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 3000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2530&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.33168,\n",
       "          &quot;LONGITUDE&quot;: -83.048,\n",
       "          &quot;OBJECTID&quot;: 279,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Detroit Resilient Tree Canopy Initiative&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Michigan&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -83.048,\n",
       "              42.33168\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Cheverly, MD&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Cheverly&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2525&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.92505,\n",
       "          &quot;LONGITUDE&quot;: -76.90718,\n",
       "          &quot;OBJECTID&quot;: 280,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Sembrando el Futuro / Embajadores de los \\u00c1rboles&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MD&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Maryland&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -76.90718,\n",
       "              38.92505\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Ann Arbor, MI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Ann Arbor&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2529&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.2821,\n",
       "          &quot;LONGITUDE&quot;: -83.74847,\n",
       "          &quot;OBJECTID&quot;: 281,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Understanding Ann Arbor&#x27;s Tree Canopy: Tools for Mapping and Assessing Future Opportunities&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Michigan&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -83.7484699999999,\n",
       "              42.2821\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Hamtramck, MI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Hamtramck&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2531&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.39966,\n",
       "          &quot;LONGITUDE&quot;: -83.05108,\n",
       "          &quot;OBJECTID&quot;: 282,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Hamtramck&#x27;s Environmental Urban Forestry Plan&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Michigan&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -83.05108,\n",
       "              42.39966\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Jackson, MI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Jackson&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;757275&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 757275.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2532&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.24555,\n",
       "          &quot;LONGITUDE&quot;: -84.4005,\n",
       "          &quot;OBJECTID&quot;: 283,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Urban Reforestation Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Michigan&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -84.4005,\n",
       "              42.24555\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Pontiac, MI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Pontiac&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2535&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.63687,\n",
       "          &quot;LONGITUDE&quot;: -83.28841,\n",
       "          &quot;OBJECTID&quot;: 284,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Pontiac Urban Forestry Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Michigan&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -83.2884099999999,\n",
       "              42.63687\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Lansing, MI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Lansing&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2534&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.73194,\n",
       "          &quot;LONGITUDE&quot;: -84.55225,\n",
       "          &quot;OBJECTID&quot;: 285,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Restoring Roots: Greater Lansing Urban &amp; Community Forestry Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Michigan&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -84.55225,\n",
       "              42.7319400000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Kalamazoo, MI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Kalamazoo&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2533&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.29159,\n",
       "          &quot;LONGITUDE&quot;: -85.58768,\n",
       "          &quot;OBJECTID&quot;: 286,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Growing A Greener Kalamazoo&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Michigan&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -85.58768,\n",
       "              42.29159\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Flint, MI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Flint&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2538&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.01148,\n",
       "          &quot;LONGITUDE&quot;: -83.68683,\n",
       "          &quot;OBJECTID&quot;: 287,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Vibrant Canopy, Vital Community in Greater Flint, MI&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Michigan&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -83.68683,\n",
       "              43.01148\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Detroit, MI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Detroit&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;9692422&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 9692422.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2539&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.33168,\n",
       "          &quot;LONGITUDE&quot;: -83.048,\n",
       "          &quot;OBJECTID&quot;: 288,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Increasing Detroit&#x27;s Tree Canopy through Community Engagement, Education and Workforce Training&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Michigan&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -83.048,\n",
       "              42.33168\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Sterling Heights, MI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Sterling Heights&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2536&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.5934,\n",
       "          &quot;LONGITUDE&quot;: -83.01356,\n",
       "          &quot;OBJECTID&quot;: 289,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Sterling Heights Urban Reforestation Initiative&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Michigan&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -83.01356,\n",
       "              42.5934\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Grand Rapids, MI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Grand Rapids&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2537&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.96642,\n",
       "          &quot;LONGITUDE&quot;: -85.67195,\n",
       "          &quot;OBJECTID&quot;: 290,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Forest Justice in Greater Grand Rapids&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Michigan&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -85.67195,\n",
       "              42.96642\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Minneapolis, MN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Minneapolis&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;8000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 8000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2540&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.97902,\n",
       "          &quot;LONGITUDE&quot;: -93.26494,\n",
       "          &quot;OBJECTID&quot;: 291,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Minneapolis Equitable Tree Canopy Management Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Minnesota&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -93.26494,\n",
       "              44.97902\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Richfield, MN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Richfield&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;498075&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 498075.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2541&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.88152,\n",
       "          &quot;LONGITUDE&quot;: -93.26792,\n",
       "          &quot;OBJECTID&quot;: 292,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Increasing Urban Tree Canopy in Southeast Richfield, MN&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Minnesota&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -93.26792,\n",
       "              44.8815200000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Rochester, MN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Rochester&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2542&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.01932,\n",
       "          &quot;LONGITUDE&quot;: -92.45933,\n",
       "          &quot;OBJECTID&quot;: 293,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Healthy Trees, Healthy City Initiative&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Minnesota&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -92.45933,\n",
       "              44.01932\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Saint Paul, MN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Saint Paul&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2543&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.94441,\n",
       "          &quot;LONGITUDE&quot;: -93.09327,\n",
       "          &quot;OBJECTID&quot;: 294,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Saint Paul Urban &amp; Community Forestry Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Minnesota&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -93.09327,\n",
       "              44.94441\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Shoreview, MN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Shoreview&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;210000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 210000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2544&quot;,\n",
       "          &quot;LATITUDE&quot;: 45.08242,\n",
       "          &quot;LONGITUDE&quot;: -93.13409,\n",
       "          &quot;OBJECTID&quot;: 295,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Boulevard Tree Replanting after Ash Removals from EAB&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Minnesota&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -93.13409,\n",
       "              45.08242\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Saint Paul, MN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Saint Paul&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;10000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 10000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2545&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.94441,\n",
       "          &quot;LONGITUDE&quot;: -93.09327,\n",
       "          &quot;OBJECTID&quot;: 296,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Cooling Minnesota Communities (CMC): Expanding Tree Canopies, Empowering Communities, and Increasing Access&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Minnesota&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -93.09327,\n",
       "              44.94441\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Minneapolis, MN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Minneapolis&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;10000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 10000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2546&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.97902,\n",
       "          &quot;LONGITUDE&quot;: -93.26494,\n",
       "          &quot;OBJECTID&quot;: 297,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Beating the Heat Island in Hennepin County&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Minnesota&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -93.26494,\n",
       "              44.97902\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Minneapolis, MN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Minneapolis&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1730396&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1730396.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2547&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.97902,\n",
       "          &quot;LONGITUDE&quot;: -93.26494,\n",
       "          &quot;OBJECTID&quot;: 298,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Urban Tree Diversity in the Upper Midwest: Resilience Through Education&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Minnesota&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -93.26494,\n",
       "              44.97902\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Bellafontaine, MO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Bellafontaine&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2548&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.6568,\n",
       "          &quot;LONGITUDE&quot;: -90.5544,\n",
       "          &quot;OBJECTID&quot;: 299,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Community Parks Revitalization Plan&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Missouri&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -90.5544,\n",
       "              38.6568\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Branch Park, KY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Branch Park&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2507&quot;,\n",
       "          &quot;LATITUDE&quot;: 37.91973,\n",
       "          &quot;LONGITUDE&quot;: -83.25502,\n",
       "          &quot;OBJECTID&quot;: 300,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Increasing Access to Nature for BIPOC Neighborhoods, Reducing Urban Heat, Improving Stormwater Management, Expanding Urban Tree Canopy, and Enhancing Community Connectivity through Town Branch Park&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;KY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Kentucky&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -83.25502,\n",
       "              37.9197300000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Jackson, MS&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Jackson&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;10000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 10000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2552&quot;,\n",
       "          &quot;LATITUDE&quot;: 32.29896,\n",
       "          &quot;LONGITUDE&quot;: -90.18044,\n",
       "          &quot;OBJECTID&quot;: 301,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Gateways to a Greener Jackson&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MS&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Mississippi&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -90.18044,\n",
       "              32.2989600000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Jackson, MS&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Jackson&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1512500&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1512500.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2551&quot;,\n",
       "          &quot;LATITUDE&quot;: 32.29896,\n",
       "          &quot;LONGITUDE&quot;: -90.18044,\n",
       "          &quot;OBJECTID&quot;: 302,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Going Green for a Cool, Healthy Jackson (CHJ)&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MS&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Mississippi&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -90.18044,\n",
       "              32.2989600000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Kansas City, MO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Kansas City&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;12000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 12000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2549&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.10344,\n",
       "          &quot;LONGITUDE&quot;: -94.58311,\n",
       "          &quot;OBJECTID&quot;: 303,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Kansas City Urban Forest Canopy&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Missouri&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -94.58311,\n",
       "              39.10344\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Vicksburg, MS&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Vicksburg&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2554&quot;,\n",
       "          &quot;LATITUDE&quot;: 32.35004,\n",
       "          &quot;LONGITUDE&quot;: -90.88155,\n",
       "          &quot;OBJECTID&quot;: 304,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;U.S. Forest Service Urban &amp; Community Forestry Inflation Reduction Act&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MS&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Mississippi&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -90.88155,\n",
       "              32.35004\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Jackson, MS&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Jackson&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2555&quot;,\n",
       "          &quot;LATITUDE&quot;: 32.29896,\n",
       "          &quot;LONGITUDE&quot;: -90.18044,\n",
       "          &quot;OBJECTID&quot;: 305,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Planting Trees with Environmental Assessments (PTEA) Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MS&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Mississippi&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -90.18044,\n",
       "              32.2989600000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Canton, MS&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Canton&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;300000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 300000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2553&quot;,\n",
       "          &quot;LATITUDE&quot;: 32.61258,\n",
       "          &quot;LONGITUDE&quot;: -90.03472,\n",
       "          &quot;OBJECTID&quot;: 306,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Madison County-Sulphur Springs Park Urban Renewal&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MS&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Mississippi&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -90.0347199999999,\n",
       "              32.61258\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Billings, MT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Billings&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2557&quot;,\n",
       "          &quot;LATITUDE&quot;: 45.78426,\n",
       "          &quot;LONGITUDE&quot;: -108.50607,\n",
       "          &quot;OBJECTID&quot;: 307,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Billings Urban Forestry Grant for Disadvantaged Areas&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Montana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -108.50607,\n",
       "              45.7842600000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;St. Louis, MO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;St. Louis&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;8000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 8000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2550&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.62775,\n",
       "          &quot;LONGITUDE&quot;: -90.19956,\n",
       "          &quot;OBJECTID&quot;: 308,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Rebuilding St. Louis City&#x27;s Tree Canopy in Underserved Communities&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Missouri&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -90.19956,\n",
       "              38.62775\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Helena, MT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Helena&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1243151&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1243151.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2558&quot;,\n",
       "          &quot;LATITUDE&quot;: 46.58976,\n",
       "          &quot;LONGITUDE&quot;: -112.02065,\n",
       "          &quot;OBJECTID&quot;: 309,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Trees for Indigenous Nations&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Montana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -112.02065,\n",
       "              46.58976\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Butte, MT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Butte&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;145250&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 145250.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2559&quot;,\n",
       "          &quot;LATITUDE&quot;: 46.00175,\n",
       "          &quot;LONGITUDE&quot;: -112.52089,\n",
       "          &quot;OBJECTID&quot;: 310,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Stodden Park Hazard Tree Abatement and Sustainable Urban Reforestation Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Montana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -112.52089,\n",
       "              46.0017500000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Durham, NC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Durham&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5273538&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5273538.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2562&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.99544,\n",
       "          &quot;LONGITUDE&quot;: -78.8965,\n",
       "          &quot;OBJECTID&quot;: 311,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Durham Urban Forestry Tree Canopy Improvement Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;North Carolina&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -78.8965,\n",
       "              35.99544\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Stoneville, MS&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Stoneville&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2556&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.42258,\n",
       "          &quot;LONGITUDE&quot;: -90.91736,\n",
       "          &quot;OBJECTID&quot;: 312,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Expanding Tree Cover in Vulnerable and Disadvantaged Communities in Arkansas and Mississippi to Make Them Healthier, More Resilient and More Economically Sustainable&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MS&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Mississippi&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -90.91736,\n",
       "              33.42258\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Charlotte, NC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Charlotte&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2560&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.22286,\n",
       "          &quot;LONGITUDE&quot;: -80.83796,\n",
       "          &quot;OBJECTID&quot;: 313,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Charlotte Canopy Care Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;North Carolina&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.83796,\n",
       "              35.22286\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Greensboro, NC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Greensboro&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;825000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 825000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2563&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.06908,\n",
       "          &quot;LONGITUDE&quot;: -79.79505,\n",
       "          &quot;OBJECTID&quot;: 314,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Keeping the Green in Greensboro, NC: A Tree Canopy Assessment &amp; Equity Prioritization&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;North Carolina&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -79.79505,\n",
       "              36.06908\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Raleigh, NC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Raleigh&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2564&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.78547,\n",
       "          &quot;LONGITUDE&quot;: -78.6427,\n",
       "          &quot;OBJECTID&quot;: 315,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Raleigh Urban Forestry Equity Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;North Carolina&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -78.6427,\n",
       "              35.78547\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Bismarck, ND&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Bismarck&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2566&quot;,\n",
       "          &quot;LATITUDE&quot;: 46.80536,\n",
       "          &quot;LONGITUDE&quot;: -100.77969,\n",
       "          &quot;OBJECTID&quot;: 316,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;The North Dakota Forest Service Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;ND&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;North Dakota&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -100.77969,\n",
       "              46.8053600000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Charlotte, NC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Charlotte&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;600000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 600000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2561&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.22286,\n",
       "          &quot;LONGITUDE&quot;: -80.83796,\n",
       "          &quot;OBJECTID&quot;: 317,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Charlotte Tree Maintenance Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;North Carolina&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.83796,\n",
       "              35.22286\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Lebanon, NH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Lebanon&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;244275&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 244275.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2569&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.64508,\n",
       "          &quot;LONGITUDE&quot;: -72.2538,\n",
       "          &quot;OBJECTID&quot;: 318,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Lebanon NH Green Streets Initiative&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Hampshire&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -72.2538,\n",
       "              43.64508\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Lincoln, NE&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Lincoln&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;10000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 10000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2568&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.81362,\n",
       "          &quot;LONGITUDE&quot;: -96.7073,\n",
       "          &quot;OBJECTID&quot;: 319,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Strengthening Nebraska&#x27;s Urban Forest Infrastructure&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NE&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Nebraska&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -96.7073,\n",
       "              40.8136200000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Cary, NC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Cary&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2565&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.78996,\n",
       "          &quot;LONGITUDE&quot;: -78.78116,\n",
       "          &quot;OBJECTID&quot;: 320,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;My Tree Our Tree Branching Out&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;North Carolina&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -78.78116,\n",
       "              35.7899600000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Manchester, NH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Manchester&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2277742&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2277742.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2570&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.9912,\n",
       "          &quot;LONGITUDE&quot;: -71.4631,\n",
       "          &quot;OBJECTID&quot;: 321,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Manchester, NH Urban Forest Equity Planning and Implementation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Hampshire&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -71.4630999999999,\n",
       "              42.9912\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;South Sioux City, NE&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;South Sioux City&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2567&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.47063,\n",
       "          &quot;LONGITUDE&quot;: -96.41396,\n",
       "          &quot;OBJECTID&quot;: 322,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Improving South Sioux City&#x27;s Community Forest&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NE&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Nebraska&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -96.41396,\n",
       "              42.47063\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Camden, NJ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Camden&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;3000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 3000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2572&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.94525,\n",
       "          &quot;LONGITUDE&quot;: -75.11913,\n",
       "          &quot;OBJECTID&quot;: 323,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;FY23 Camden City Tree Planting Initiative&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NJ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Jersey&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -75.11913,\n",
       "              39.94525\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;East Newark, NJ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;East Newark&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2571&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.75209,\n",
       "          &quot;LONGITUDE&quot;: -74.15964,\n",
       "          &quot;OBJECTID&quot;: 324,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Urban Arborist for Job Training at East Newark Riverfront Park&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NJ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Jersey&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -74.15964,\n",
       "              40.7520900000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Hoboken, NJ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Hoboken&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2574&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.73718,\n",
       "          &quot;LONGITUDE&quot;: -74.03096,\n",
       "          &quot;OBJECTID&quot;: 325,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Hoboken Urban Forestry Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NJ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Jersey&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -74.0309599999999,\n",
       "              40.7371800000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Rahway, NJ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Rahway&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2576&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.60451,\n",
       "          &quot;LONGITUDE&quot;: -74.27379,\n",
       "          &quot;OBJECTID&quot;: 326,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Rahway Hazardous Tree Replacement Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NJ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Jersey&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -74.27379,\n",
       "              40.60451\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Jackson, NJ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Jackson&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;4246079&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 4246079.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2577&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.7765,\n",
       "          &quot;LONGITUDE&quot;: -74.86238,\n",
       "          &quot;OBJECTID&quot;: 327,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Planting Environmental Justice One Tree at a Time&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NJ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Jersey&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -74.86238,\n",
       "              39.7765\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Kearny, NJ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Kearny&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;548280&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 548280.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2579&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.76463,\n",
       "          &quot;LONGITUDE&quot;: -74.14826,\n",
       "          &quot;OBJECTID&quot;: 328,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Kearny Urban Forest Canopy and Stormwater Mitigation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NJ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Jersey&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -74.1482599999999,\n",
       "              40.7646300000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Newark, NJ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Newark&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;8000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 8000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2578&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.73197,\n",
       "          &quot;LONGITUDE&quot;: -74.17421,\n",
       "          &quot;OBJECTID&quot;: 329,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Newark Tree Canopy Initiative: Growing &amp; Proud of It&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NJ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Jersey&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -74.17421,\n",
       "              40.73197\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Montclair, NJ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Montclair&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2580&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.81242,\n",
       "          &quot;LONGITUDE&quot;: -74.21281,\n",
       "          &quot;OBJECTID&quot;: 330,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Montclair, NJ&#x27;s Initiative for Equitable Urban Tree Access and Climate Resilience&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NJ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Jersey&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -74.21281,\n",
       "              40.81242\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Egg Harbor, NJ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Egg Harbor&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2573&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.52873,\n",
       "          &quot;LONGITUDE&quot;: -74.64794,\n",
       "          &quot;OBJECTID&quot;: 331,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;The Proactive and Systematic Expansion and Maintenance of Green Infrastructure in the City of Egg Harbor&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NJ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Jersey&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -74.64794,\n",
       "              39.5287300000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Albuquerque, NM&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Albuquerque&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2581&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.08423,\n",
       "          &quot;LONGITUDE&quot;: -106.64905,\n",
       "          &quot;OBJECTID&quot;: 332,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Increasing Albuquerque&#x27;s Urban Tree Canopy&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NM&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Mexico&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -106.64905,\n",
       "              35.08423\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Santa Fe, NM&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Santa Fe&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2582&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.69177,\n",
       "          &quot;LONGITUDE&quot;: -105.93824,\n",
       "          &quot;OBJECTID&quot;: 333,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Santa Fe Urban and Community Forestry&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NM&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Mexico&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.93824,\n",
       "              35.69177\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Albuquerque, NM&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Albuquerque&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2584&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.08423,\n",
       "          &quot;LONGITUDE&quot;: -106.64905,\n",
       "          &quot;OBJECTID&quot;: 334,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;South Valley Community Forestry Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NM&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Mexico&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -106.64905,\n",
       "              35.08423\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Las Cruces, NM&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Las Cruces&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2583&quot;,\n",
       "          &quot;LATITUDE&quot;: 32.30691,\n",
       "          &quot;LONGITUDE&quot;: -106.77785,\n",
       "          &quot;OBJECTID&quot;: 335,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;DASWCD NeighborWoods Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NM&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Mexico&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -106.77785,\n",
       "              32.3069100000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Taos, NM&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Taos&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2585&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.41202,\n",
       "          &quot;LONGITUDE&quot;: -105.57412,\n",
       "          &quot;OBJECTID&quot;: 336,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Rocky Mountain Youth Corps Urban Foresters&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NM&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Mexico&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.57412,\n",
       "              36.41202\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Albuquerque, NM&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Albuquerque&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2586&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.08423,\n",
       "          &quot;LONGITUDE&quot;: -106.64905,\n",
       "          &quot;OBJECTID&quot;: 337,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;NeighborWoods and Tree Stewards: Engaging Disadvantaged Communities in The Land of Enchantment&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NM&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Mexico&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -106.64905,\n",
       "              35.08423\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Silver City, NM&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Silver City&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2587&quot;,\n",
       "          &quot;LATITUDE&quot;: 32.77022,\n",
       "          &quot;LONGITUDE&quot;: -108.27496,\n",
       "          &quot;OBJECTID&quot;: 338,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Rural Southwest New Mexico Integrated Urban Forestry Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NM&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Mexico&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -108.27496,\n",
       "              32.77022\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Las Vegas, NV&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Las Vegas&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2588&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.17193,\n",
       "          &quot;LONGITUDE&quot;: -115.14001,\n",
       "          &quot;OBJECTID&quot;: 339,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Las Vegas Urban Heat Island Mitigation Tree Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NV&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Nevada&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -115.14001,\n",
       "              36.17193\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Reno, NV&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Reno&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2590&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.52766,\n",
       "          &quot;LONGITUDE&quot;: -119.81353,\n",
       "          &quot;OBJECTID&quot;: 340,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Filling the GAPP - Green Airway Planting Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NV&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Nevada&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.81353,\n",
       "              39.52766\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Las Vegas, NV&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Las Vegas&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2589&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.17193,\n",
       "          &quot;LONGITUDE&quot;: -115.14001,\n",
       "          &quot;OBJECTID&quot;: 341,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of North Las Vegas Urban and Community Forestry&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NV&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Nevada&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -115.14001,\n",
       "              36.17193\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Reno, NV&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Reno&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2592&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.52766,\n",
       "          &quot;LONGITUDE&quot;: -119.81353,\n",
       "          &quot;OBJECTID&quot;: 342,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Soulful Seeds Urban Orchard Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NV&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Nevada&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.81353,\n",
       "              39.52766\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Las Vegas, NV&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Las Vegas&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;3000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 3000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2591&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.17193,\n",
       "          &quot;LONGITUDE&quot;: -115.14001,\n",
       "          &quot;OBJECTID&quot;: 343,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Increasing Tree Equity for a More Sustainable Nevada&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NV&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Nevada&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -115.14001,\n",
       "              36.17193\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Las Vegas, NV&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Las Vegas&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2593&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.17193,\n",
       "          &quot;LONGITUDE&quot;: -115.14001,\n",
       "          &quot;OBJECTID&quot;: 344,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Las Vegas Urban Forest Center&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NV&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Nevada&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -115.14001,\n",
       "              36.17193\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Las Vegas, NV&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Las Vegas&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;247136&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 247136.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2594&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.17193,\n",
       "          &quot;LONGITUDE&quot;: -115.14001,\n",
       "          &quot;OBJECTID&quot;: 345,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Zion Urban Forest&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NV&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Nevada&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -115.14001,\n",
       "              36.17193\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Syracuse, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Syracuse&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;9000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 9000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2596&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.05042,\n",
       "          &quot;LONGITUDE&quot;: -76.14738,\n",
       "          &quot;OBJECTID&quot;: 346,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Regional Urban and Community Forestry Planning, Implementation, and Capacity Building for Disadvantaged Communities in Central New York&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -76.1473799999999,\n",
       "              43.05042\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Jersey City, NJ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Jersey City&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2575&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.71748,\n",
       "          &quot;LONGITUDE&quot;: -74.04385,\n",
       "          &quot;OBJECTID&quot;: 347,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Martin Luther King Drive, Green Corridor Outreach Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NJ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Jersey&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -74.04385,\n",
       "              40.7174800000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Troy, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Troy&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2343487&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2343487.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2595&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.73449,\n",
       "          &quot;LONGITUDE&quot;: -73.68809,\n",
       "          &quot;OBJECTID&quot;: 348,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Planting the Future of New York&#x27;s Capital Region: A Forestry Program for Our Underserved Urban Communities&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -73.68809,\n",
       "              42.73449\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Albany, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Albany&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1888678&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1888678.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2597&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.65155,\n",
       "          &quot;LONGITUDE&quot;: -73.75521,\n",
       "          &quot;OBJECTID&quot;: 349,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Working the Plan: Implementing Block Pruning to Maintain and Preserve Albany&#x27;s Street Trees&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -73.75521,\n",
       "              42.65155\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Auburn, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Auburn&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;945000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 945000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2598&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.92936,\n",
       "          &quot;LONGITUDE&quot;: -76.56591,\n",
       "          &quot;OBJECTID&quot;: 350,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Auburn Urban Forestry Disadvantaged Communities Initiative&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -76.56591,\n",
       "              42.92936\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Buffalo, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Buffalo&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;8000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 8000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2599&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.88545,\n",
       "          &quot;LONGITUDE&quot;: -78.87846,\n",
       "          &quot;OBJECTID&quot;: 351,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;B.E.S.T. (Buffalo Equity in Street Trees) Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -78.87846,\n",
       "              42.88545\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Kingston, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Kingston&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2601&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.92698,\n",
       "          &quot;LONGITUDE&quot;: -73.99737,\n",
       "          &quot;OBJECTID&quot;: 352,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Kingston Urban Forester&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -73.99737,\n",
       "              41.9269800000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Glens Falls, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Glens Falls&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;400000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 400000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2600&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.31122,\n",
       "          &quot;LONGITUDE&quot;: -73.64376,\n",
       "          &quot;OBJECTID&quot;: 353,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Glens Falls Urban Tree Care And Planting Grant&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -73.64376,\n",
       "              43.31122\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Syracuse, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Syracuse&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2605&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.05042,\n",
       "          &quot;LONGITUDE&quot;: -76.14738,\n",
       "          &quot;OBJECTID&quot;: 354,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Rooting for Syracuse: A community-based approach to advancing tree equity&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -76.1473799999999,\n",
       "              43.05042\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Mount Vernon, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Mount Vernon&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2603&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.75431,\n",
       "          &quot;LONGITUDE&quot;: -78.88955,\n",
       "          &quot;OBJECTID&quot;: 355,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Mount Vernon NY Urban Forestry Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -73.8377044489999,\n",
       "              40.912451251\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Rochester, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Rochester&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;3000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 3000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2604&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.1558,\n",
       "          &quot;LONGITUDE&quot;: -77.61632,\n",
       "          &quot;OBJECTID&quot;: 356,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;2023 USDA UCF GRANT - ROCHESTER, NY&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -77.61632,\n",
       "              43.1558\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Utica, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Utica&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2606&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.09589,\n",
       "          &quot;LONGITUDE&quot;: -75.24258,\n",
       "          &quot;OBJECTID&quot;: 357,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Utica Urban Forest Revitalization&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -75.24258,\n",
       "              43.09589\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Yonkers, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Yonkers&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2608&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.93299,\n",
       "          &quot;LONGITUDE&quot;: -73.89874,\n",
       "          &quot;OBJECTID&quot;: 358,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;YCAP Tree Planting&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -73.89874,\n",
       "              40.9329900000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Yonkers, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Yonkers&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5526563&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5526563.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2610&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.93299,\n",
       "          &quot;LONGITUDE&quot;: -73.89874,\n",
       "          &quot;OBJECTID&quot;: 359,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Creating the Urban Forestry and Climate Resilience Technical and Career Pathway at the Barack Obama High School in Southwest Yonkers&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -73.89874,\n",
       "              40.9329900000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Buffalo, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Buffalo&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5218834&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5218834.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2609&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.88545,\n",
       "          &quot;LONGITUDE&quot;: -78.87846,\n",
       "          &quot;OBJECTID&quot;: 360,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Erie County, NY Community Tree and Climate Equity Partnership Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -78.87846,\n",
       "              42.88545\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Long Beach, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Long Beach&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;100000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 100000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2602&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.58939,\n",
       "          &quot;LONGITUDE&quot;: -73.66608,\n",
       "          &quot;OBJECTID&quot;: 361,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Long Beach Tree Replanting Initiative&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -73.66608,\n",
       "              40.58939\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Utica, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Utica&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;338195&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 338195.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2613&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.09589,\n",
       "          &quot;LONGITUDE&quot;: -75.24258,\n",
       "          &quot;OBJECTID&quot;: 362,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;F.T. Proctor Park Restoration Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -75.24258,\n",
       "              43.09589\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;White Plains, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;White Plains&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2607&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.03379,\n",
       "          &quot;LONGITUDE&quot;: -73.76344,\n",
       "          &quot;OBJECTID&quot;: 363,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;White Plains Urban and Community Forestry Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -73.76344,\n",
       "              41.0337900000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Port Jervis, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Port Jervis&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2614&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.37485,\n",
       "          &quot;LONGITUDE&quot;: -74.69142,\n",
       "          &quot;OBJECTID&quot;: 364,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Port Jervis - USDA UCF 2023&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -74.6914199999999,\n",
       "              41.37485\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Akwesasne, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Akwesasne&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;597248&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 597248.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2615&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.97876,\n",
       "          &quot;LONGITUDE&quot;: -74.64302,\n",
       "          &quot;OBJECTID&quot;: 365,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Akwesasne Urban Tree Canopy Assessment FY23 Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -74.64302,\n",
       "              44.9787600000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Albany, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Albany&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2617&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.65155,\n",
       "          &quot;LONGITUDE&quot;: -73.75521,\n",
       "          &quot;OBJECTID&quot;: 366,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Urban Climate Adaptation of Forest Ecosystems with Disadvantaged Communities and Youth in Albany, New York&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -73.75521,\n",
       "              42.65155\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;New York City, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;New York City&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;10000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 10000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2611&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.71453,\n",
       "          &quot;LONGITUDE&quot;: -74.00712,\n",
       "          &quot;OBJECTID&quot;: 367,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;NYC Forested Natural Areas Care and Job Training&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -74.00712,\n",
       "              40.71453\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;New York City, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;New York City&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2612&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.71453,\n",
       "          &quot;LONGITUDE&quot;: -74.00712,\n",
       "          &quot;OBJECTID&quot;: 368,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Stewarding Canopy and Community in Central Queens&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -74.00712,\n",
       "              40.71453\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Hastings, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Hastings&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;433275&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 433275.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2620&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.3737,\n",
       "          &quot;LONGITUDE&quot;: -76.15119,\n",
       "          &quot;OBJECTID&quot;: 369,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Forest Regeneration in Southern Westchester County&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -76.15119,\n",
       "              43.3737\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Smithtown, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Smithtown&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2619&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.84723,\n",
       "          &quot;LONGITUDE&quot;: -73.23461,\n",
       "          &quot;OBJECTID&quot;: 370,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Town of Smithtown Urban Tree Canopy Improvement Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -73.23461,\n",
       "              40.84723\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Haverstraw, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Haverstraw&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2621&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.19654,\n",
       "          &quot;LONGITUDE&quot;: -73.96471,\n",
       "          &quot;OBJECTID&quot;: 371,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Chair Factory Redevelopment&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -73.96471,\n",
       "              41.19654\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;North Hempstead, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;North Hempstead&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2618&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.79657,\n",
       "          &quot;LONGITUDE&quot;: -73.69935,\n",
       "          &quot;OBJECTID&quot;: 372,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;North Hempstead Branches Out Initiative&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -73.69935,\n",
       "              40.79657\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Lancaster, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Lancaster&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;255584&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 255584.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2622&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.90039,\n",
       "          &quot;LONGITUDE&quot;: -78.67017,\n",
       "          &quot;OBJECTID&quot;: 373,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Village of Lancaster Tree Equity and Education Initiative&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -78.67017,\n",
       "              42.9003900000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Akron, OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Akron&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2623&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.08431,\n",
       "          &quot;LONGITUDE&quot;: -81.51431,\n",
       "          &quot;OBJECTID&quot;: 374,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Project ACORN: Akron Community-Owned Reforestation Network&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -81.51431,\n",
       "              41.0843100000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Canton, OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Canton&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;255500&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 255500.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2625&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.79788,\n",
       "          &quot;LONGITUDE&quot;: -81.37194,\n",
       "          &quot;OBJECTID&quot;: 375,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Revitalization of Urban Forest within Disadvantaged Communities in the City of Canton&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -81.3719399999999,\n",
       "              40.79788\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Circleville, OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Circleville&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2626&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.60099,\n",
       "          &quot;LONGITUDE&quot;: -82.94218,\n",
       "          &quot;OBJECTID&quot;: 376,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Green Circleville Initiative&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -82.94218,\n",
       "              39.60099\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Dayton, OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Dayton&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2628&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.7592,\n",
       "          &quot;LONGITUDE&quot;: -84.19381,\n",
       "          &quot;OBJECTID&quot;: 377,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Dayton Urban and Community Forestry Grant&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -84.19381,\n",
       "              39.7592\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Coschocton, OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Coschocton&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2627&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.27229,\n",
       "          &quot;LONGITUDE&quot;: -81.86665,\n",
       "          &quot;OBJECTID&quot;: 378,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Coshocton Urban Tree Renewal&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -81.8666499999999,\n",
       "              40.27229\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Euclid, OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Euclid&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;525400&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 525400.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2629&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.59946,\n",
       "          &quot;LONGITUDE&quot;: -81.52682,\n",
       "          &quot;OBJECTID&quot;: 379,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Urban Forestry Master Planning Initiative&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -81.52682,\n",
       "              41.5994600000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;New York City, NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;New York City&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2616&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.71453,\n",
       "          &quot;LONGITUDE&quot;: -74.00712,\n",
       "          &quot;OBJECTID&quot;: 380,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Branching Out: Leveraging Workforce Development and Building Partnerships to Grow Green Leaders and Community Forestry in The Bronx&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -74.00712,\n",
       "              40.71453\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Bowling Green, OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Bowling Green&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;415000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 415000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2624&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.37573,\n",
       "          &quot;LONGITUDE&quot;: -83.65046,\n",
       "          &quot;OBJECTID&quot;: 381,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Bowling Green Canopy Tree Project: The Preservation and Extension of an Old Growth Urban Forest&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -83.65046,\n",
       "              41.37573\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Fostoria, OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Fostoria&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2630&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.15568,\n",
       "          &quot;LONGITUDE&quot;: -83.41235,\n",
       "          &quot;OBJECTID&quot;: 382,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Fostoria Urban Forestry Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -83.41235,\n",
       "              41.1556800000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Obetz, OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Obetz&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;100000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 100000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2633&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.8797,\n",
       "          &quot;LONGITUDE&quot;: -82.95554,\n",
       "          &quot;OBJECTID&quot;: 383,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Tree Canopy Improvement Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -82.95554,\n",
       "              39.8797\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Lyndhurst, OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Lyndhurst&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;100000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 100000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2632&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.51993,\n",
       "          &quot;LONGITUDE&quot;: -81.48747,\n",
       "          &quot;OBJECTID&quot;: 384,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;The City of Lyndhurst Oak Wilt Pruning Project and Planting Vacancies&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -81.48747,\n",
       "              41.51993\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Stow, OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Stow&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;316483&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 316483.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2635&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.1686,\n",
       "          &quot;LONGITUDE&quot;: -81.44038,\n",
       "          &quot;OBJECTID&quot;: 385,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Stow Ohio Workforce Development&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -81.44038,\n",
       "              41.1686\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Toledo, OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Toledo&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;6098294&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 6098294.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2636&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.65404,\n",
       "          &quot;LONGITUDE&quot;: -83.53674,\n",
       "          &quot;OBJECTID&quot;: 386,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Restoring and Enhancing Tree Canopy for Resilience, Equity, and Engagement in Toledo (RE-TREE Toledo)&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -83.53674,\n",
       "              41.6540400000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Xenia, OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Xenia&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;324950&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 324950.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2637&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.68511,\n",
       "          &quot;LONGITUDE&quot;: -83.92817,\n",
       "          &quot;OBJECTID&quot;: 387,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Xenia HUB District &amp; East End Urban Canopy Renewal&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -83.92817,\n",
       "              39.6851100000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Dayton, OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Dayton&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1450450&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1450450.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2638&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.7592,\n",
       "          &quot;LONGITUDE&quot;: -84.19381,\n",
       "          &quot;OBJECTID&quot;: 388,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Possum Creek MetroPark and Spring Run Conservation Area Forestry Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -84.19381,\n",
       "              39.7592\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Port Clinton, OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Port Clinton&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;959000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 959000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2634&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.51329,\n",
       "          &quot;LONGITUDE&quot;: -82.94145,\n",
       "          &quot;OBJECTID&quot;: 389,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Western Lake Erie Urban &amp; Community Forestry Advancement in Ottawa County, Ohio&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -82.94145,\n",
       "              41.51329\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Millfield, OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Millfield&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;317284&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 317284.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2639&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.43793,\n",
       "          &quot;LONGITUDE&quot;: -82.10226,\n",
       "          &quot;OBJECTID&quot;: 390,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Uplifting People and Place Through Youth and Young Adult Apprenticeships in Sustainable Forestry and Agroforestry&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -82.10226,\n",
       "              39.4379300000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Marble Cliff, OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Marble Cliff&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;100000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 100000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2640&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.98898,\n",
       "          &quot;LONGITUDE&quot;: -83.0593,\n",
       "          &quot;OBJECTID&quot;: 391,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Marble Cliff Community Forestry Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -83.0593,\n",
       "              39.98898\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Ada, OK&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Ada&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;230500&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 230500.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2642&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.77506,\n",
       "          &quot;LONGITUDE&quot;: -96.67866,\n",
       "          &quot;OBJECTID&quot;: 392,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Ada OK Urban Forestry&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OK&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oklahoma&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -96.67866,\n",
       "              34.77506\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Edmond, OK&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Edmond&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2643&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.6549,\n",
       "          &quot;LONGITUDE&quot;: -97.47813,\n",
       "          &quot;OBJECTID&quot;: 393,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Edmond Releaf&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OK&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oklahoma&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -97.47813,\n",
       "              35.6549\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Tulsa, OK&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Tulsa&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2271922&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2271922.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2644&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.15011,\n",
       "          &quot;LONGITUDE&quot;: -95.99352,\n",
       "          &quot;OBJECTID&quot;: 394,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Low Income Pruning and Planting&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OK&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oklahoma&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -95.99352,\n",
       "              36.15011\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Youngstown, OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Youngstown&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2641&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.0981,\n",
       "          &quot;LONGITUDE&quot;: -80.65079,\n",
       "          &quot;OBJECTID&quot;: 395,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Mahoning Valley TreeCorps&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.65079,\n",
       "              41.0981\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Hermiston, OR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Hermiston&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2645&quot;,\n",
       "          &quot;LATITUDE&quot;: 45.84051,\n",
       "          &quot;LONGITUDE&quot;: -119.28947,\n",
       "          &quot;OBJECTID&quot;: 396,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Urban and Community Forest Health and Biodiversity for Long-term Resilience&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oregon&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.28947,\n",
       "              45.84051\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Pendleton, OR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Pendleton&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2647&quot;,\n",
       "          &quot;LATITUDE&quot;: 45.67179,\n",
       "          &quot;LONGITUDE&quot;: -118.7864,\n",
       "          &quot;OBJECTID&quot;: 397,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Pendleton Urban Forestry Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oregon&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -118.7864,\n",
       "              45.67179\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Hillsboro, OR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Hillsboro&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;340835&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 340835.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2646&quot;,\n",
       "          &quot;LATITUDE&quot;: 45.52268,\n",
       "          &quot;LONGITUDE&quot;: -122.99044,\n",
       "          &quot;OBJECTID&quot;: 398,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Riparian Forest Rescue! Save our unique urban forest from the invasive ash borer&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oregon&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.99044,\n",
       "              45.52268\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Salem, OR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Salem&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2648&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.93326,\n",
       "          &quot;LONGITUDE&quot;: -123.04381,\n",
       "          &quot;OBJECTID&quot;: 399,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Building a More Resilient and Equitable Tree Canopy in Salem, Oregon&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oregon&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -123.04381,\n",
       "              44.93326\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Green, OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Green&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;263425&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 263425.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2631&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.94727,\n",
       "          &quot;LONGITUDE&quot;: -81.46523,\n",
       "          &quot;OBJECTID&quot;: 400,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Hiring an Urban Forester&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -81.46523,\n",
       "              40.9472700000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Eugene, OR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Eugene&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;12000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 12000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2651&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.04992,\n",
       "          &quot;LONGITUDE&quot;: -123.08837,\n",
       "          &quot;OBJECTID&quot;: 401,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Northwest Youth Corps NW Community Forestry Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oregon&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -123.08837,\n",
       "              44.04992\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Portland, OR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Portland&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;7000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 7000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2649&quot;,\n",
       "          &quot;LATITUDE&quot;: 45.51179,\n",
       "          &quot;LONGITUDE&quot;: -122.67563,\n",
       "          &quot;OBJECTID&quot;: 402,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Portland/Vancouver Canopy Collective&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oregon&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.67563,\n",
       "              45.51179\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Portland, OR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Portland&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;12000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 12000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2650&quot;,\n",
       "          &quot;LATITUDE&quot;: 45.51179,\n",
       "          &quot;LONGITUDE&quot;: -122.67563,\n",
       "          &quot;OBJECTID&quot;: 403,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Engaging low-canopy neighborhoods in community tree planting&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oregon&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.67563,\n",
       "              45.51179\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Salem, OR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Salem&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;22857196&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 22857196.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2652&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.93326,\n",
       "          &quot;LONGITUDE&quot;: -123.04381,\n",
       "          &quot;OBJECTID&quot;: 404,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Growing Equity in Oregon&#x27;s Urban and Community Forests: Investing in Disadvantaged Communities to Promote Social, Economic, and Environmental Well-Being&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oregon&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -123.04381,\n",
       "              44.93326\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Connellsville, PA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Connellsville&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2656&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.01782,\n",
       "          &quot;LONGITUDE&quot;: -79.58849,\n",
       "          &quot;OBJECTID&quot;: 405,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Connellsville Community Tree Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Pennsylvania&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -79.58849,\n",
       "              40.01782\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Allentown, PA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Allentown&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;920800&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 920800.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2655&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.60263,\n",
       "          &quot;LONGITUDE&quot;: -75.47027,\n",
       "          &quot;OBJECTID&quot;: 406,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Allentown Urban Forestry&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Pennsylvania&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -75.47027,\n",
       "              40.60263\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;State College, PA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;State College&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;369355&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 369355.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2654&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.79373,\n",
       "          &quot;LONGITUDE&quot;: -77.8607,\n",
       "          &quot;OBJECTID&quot;: 407,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Borough of State College Urban Forestry Sustainability Plan&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Pennsylvania&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -77.8607,\n",
       "              40.79373\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Harrisburg, PA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Harrisburg&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2658&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.25986,\n",
       "          &quot;LONGITUDE&quot;: -76.88223,\n",
       "          &quot;OBJECTID&quot;: 408,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Harrisburg City Riverside&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Pennsylvania&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -76.8822299999999,\n",
       "              40.25986\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Easton, PA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Easton&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2657&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.6912,\n",
       "          &quot;LONGITUDE&quot;: -75.20983,\n",
       "          &quot;OBJECTID&quot;: 409,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Easton Urban Forest Equity Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Pennsylvania&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -75.20983,\n",
       "              40.6912\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Harrisburg, PA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Harrisburg&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2659&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.25986,\n",
       "          &quot;LONGITUDE&quot;: -76.88223,\n",
       "          &quot;OBJECTID&quot;: 410,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Harrisburg City TreeVestment&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Pennsylvania&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -76.8822299999999,\n",
       "              40.25986\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Lancaster, PA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Lancaster&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2660&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.03832,\n",
       "          &quot;LONGITUDE&quot;: -76.30134,\n",
       "          &quot;OBJECTID&quot;: 411,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Proactive Systemic Maintenance: Pruning, Planting and Removal&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Pennsylvania&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -76.30134,\n",
       "              40.03832\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Mechanicsburg, PA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Mechanicsburg&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2653&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.2132,\n",
       "          &quot;LONGITUDE&quot;: -77.00834,\n",
       "          &quot;OBJECTID&quot;: 412,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Trees for All&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Pennsylvania&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -77.00834,\n",
       "              40.2132\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Pittsburgh, PA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Pittsburgh&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2661&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.43851,\n",
       "          &quot;LONGITUDE&quot;: -79.99734,\n",
       "          &quot;OBJECTID&quot;: 413,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Pittsburgh Vacant Lots Tree Planting&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Pennsylvania&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -79.99734,\n",
       "              40.4385100000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Johnstown, PA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Johnstown&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;659300&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 659300.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2662&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.32726,\n",
       "          &quot;LONGITUDE&quot;: -78.91835,\n",
       "          &quot;OBJECTID&quot;: 414,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Johnstown Urban Orchard&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Pennsylvania&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -78.91835,\n",
       "              40.3272600000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Pittsburgh, PA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Pittsburgh&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;8000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 8000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2663&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.43851,\n",
       "          &quot;LONGITUDE&quot;: -79.99734,\n",
       "          &quot;OBJECTID&quot;: 415,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Pittsburgh Canopy Alliance&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Pennsylvania&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -79.99734,\n",
       "              40.4385100000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Philadelphia, PA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Philadelphia&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;12000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 12000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2664&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.95222,\n",
       "          &quot;LONGITUDE&quot;: -75.16218,\n",
       "          &quot;OBJECTID&quot;: 416,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Philly Tree Plan Implementation: Growing an Equitable Forest&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Pennsylvania&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -75.16218,\n",
       "              39.9522200000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Sabana Grande, PR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Sabana Grande&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;7000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 7000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2666&quot;,\n",
       "          &quot;LATITUDE&quot;: 18.07806,\n",
       "          &quot;LONGITUDE&quot;: -66.96185,\n",
       "          &quot;OBJECTID&quot;: 417,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Urban Trees for Resilience, Equity, &amp; Empowerment in Puerto Rico (U-TREE-PR)&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Puerto Rico&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -66.96185,\n",
       "              18.0780600000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;East Providence, RI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;East Providence&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;750000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 750000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2668&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.81971,\n",
       "          &quot;LONGITUDE&quot;: -71.37583,\n",
       "          &quot;OBJECTID&quot;: 418,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;East Providence Tree Equity, Workforce, and Education Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;RI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Rhode Island&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -71.37583,\n",
       "              41.81971\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;San Juan, PR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;San Juan&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2667&quot;,\n",
       "          &quot;LATITUDE&quot;: 18.46536,\n",
       "          &quot;LONGITUDE&quot;: -66.11691,\n",
       "          &quot;OBJECTID&quot;: 419,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Rooted in the Ri\\u00ado Piedras Network: A Justice-Centered Approach to Green Infrastructure Planning to Enhance Community Resilience in the City of San Juan&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Puerto Rico&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -66.11691,\n",
       "              18.46536\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Pawtucket, RI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Pawtucket&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;3000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 3000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2670&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.87976,\n",
       "          &quot;LONGITUDE&quot;: -71.38246,\n",
       "          &quot;OBJECTID&quot;: 420,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Tree Greening of Pawtucket&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;RI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Rhode Island&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -71.38246,\n",
       "              41.87976\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Columbia, SC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Columbia&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;290015&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 290015.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2671&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.99882,\n",
       "          &quot;LONGITUDE&quot;: -81.04537,\n",
       "          &quot;OBJECTID&quot;: 421,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Free Trees for the Community&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;SC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;South Carolina&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -81.04537,\n",
       "              33.99882\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;North Augusta, SC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;North Augusta&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;459301&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 459301.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2672&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.49634,\n",
       "          &quot;LONGITUDE&quot;: -81.96984,\n",
       "          &quot;OBJECTID&quot;: 422,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;NA Urban Tree Canopy Expansion Project Along Right of Ways&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;SC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;South Carolina&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -81.96984,\n",
       "              33.49634\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Orangeburg, SC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Orangeburg&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2674&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.48935,\n",
       "          &quot;LONGITUDE&quot;: -80.86472,\n",
       "          &quot;OBJECTID&quot;: 423,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Expansion of Urban Forestry and Green Infrastructure in South Carolina&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;SC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;South Carolina&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.86472,\n",
       "              33.4893500000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Sioux Falls, SD&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Sioux Falls&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;3000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 3000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2675&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.54577,\n",
       "          &quot;LONGITUDE&quot;: -96.73128,\n",
       "          &quot;OBJECTID&quot;: 424,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Sioux Falls Communi-Tree Assistance Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;SD&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;South Dakota&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -96.73128,\n",
       "              43.54577\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Chattanooga, TN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Chattanooga&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;6000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 6000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2676&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.04672,\n",
       "          &quot;LONGITUDE&quot;: -85.30947,\n",
       "          &quot;OBJECTID&quot;: 425,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Take Root Chattanooga&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Tennessee&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -85.30947,\n",
       "              35.04672\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Cranston, RI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Cranston&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;3000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 3000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2669&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.77884,\n",
       "          &quot;LONGITUDE&quot;: -71.43525,\n",
       "          &quot;OBJECTID&quot;: 426,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Enhancing Urban and Community Forest in Rhode Island&#x27;s Health Equity Zones&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;RI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Rhode Island&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -71.4352499999999,\n",
       "              41.7788400000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Knoxville, TN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Knoxville&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1723731&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1723731.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2677&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.96068,\n",
       "          &quot;LONGITUDE&quot;: -83.92103,\n",
       "          &quot;OBJECTID&quot;: 427,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Growing Urban Tree Canopy in Knoxville, Tennessee&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Tennessee&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -83.92103,\n",
       "              35.96068\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Nashville, TN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Nashville&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1004804&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1004804.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2678&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.16784,\n",
       "          &quot;LONGITUDE&quot;: -86.77816,\n",
       "          &quot;OBJECTID&quot;: 428,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Tennessee Tree Day&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Tennessee&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -86.77816,\n",
       "              36.16784\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Knoxville, TN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Knoxville&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2586006&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2586006.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2680&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.96068,\n",
       "          &quot;LONGITUDE&quot;: -83.92103,\n",
       "          &quot;OBJECTID&quot;: 429,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Gravel Tree Stormwater Systems: Bringing Ecosystem Services, Education, and Workforce Development to East Knoxville&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Tennessee&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -83.92103,\n",
       "              35.96068\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Nashville, TN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Nashville&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2679&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.16784,\n",
       "          &quot;LONGITUDE&quot;: -86.77816,\n",
       "          &quot;OBJECTID&quot;: 430,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Restoration of an Urban, Forested Wetland at Tennessee State University to Improve Educational Opportunities and Ecosystem Services&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Tennessee&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -86.77816,\n",
       "              36.16784\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Pflugerville, TX&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Pflugerville&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;150000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 150000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2683&quot;,\n",
       "          &quot;LATITUDE&quot;: 30.44056,\n",
       "          &quot;LONGITUDE&quot;: -97.61994,\n",
       "          &quot;OBJECTID&quot;: 431,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Windermere South Replanting Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TX&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Texas&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -97.61994,\n",
       "              30.4405600000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Garland, TX&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Garland&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2682&quot;,\n",
       "          &quot;LATITUDE&quot;: 32.91427,\n",
       "          &quot;LONGITUDE&quot;: -96.63655,\n",
       "          &quot;OBJECTID&quot;: 432,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Tree Garland&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TX&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Texas&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -96.63655,\n",
       "              32.91427\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Arlington, TX&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Arlington&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;150000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 150000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2681&quot;,\n",
       "          &quot;LATITUDE&quot;: 32.7356,\n",
       "          &quot;LONGITUDE&quot;: -97.10772,\n",
       "          &quot;OBJECTID&quot;: 433,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Arlington- Chinese Privet removal&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TX&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Texas&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -97.10772,\n",
       "              32.7356\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;San Marcos, TX&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;San Marcos&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;299722&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 299722.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2684&quot;,\n",
       "          &quot;LATITUDE&quot;: 29.88608,\n",
       "          &quot;LONGITUDE&quot;: -97.92818,\n",
       "          &quot;OBJECTID&quot;: 434,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of San Marcos, Texas \\u00a0- Urban and Community Forestry Strategic Management Plan&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TX&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Texas&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -97.9281799999999,\n",
       "              29.88608\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Logan, UT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Logan&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;300000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 300000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2687&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.73691,\n",
       "          &quot;LONGITUDE&quot;: -111.83482,\n",
       "          &quot;OBJECTID&quot;: 435,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Logan City Forestry Tree Purchase &amp; Education Plan&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;UT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Utah&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.83482,\n",
       "              41.7369100000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Houston, TX&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Houston&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;15000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 15000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2685&quot;,\n",
       "          &quot;LATITUDE&quot;: 29.76078,\n",
       "          &quot;LONGITUDE&quot;: -95.36952,\n",
       "          &quot;OBJECTID&quot;: 436,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;ForUsTree: Creating an Inclusive Community Canopy within Houston and Harris County&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TX&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Texas&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -95.36952,\n",
       "              29.7607800000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Dallas, TX&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Dallas&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;15000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 15000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2686&quot;,\n",
       "          &quot;LATITUDE&quot;: 32.77822,\n",
       "          &quot;LONGITUDE&quot;: -96.79512,\n",
       "          &quot;OBJECTID&quot;: 437,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;South Dallas Neighborhood Greening Initiative&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TX&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Texas&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -96.7951199999999,\n",
       "              32.77822\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Moab, UT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Moab&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;502040&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 502040.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2688&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.57327,\n",
       "          &quot;LONGITUDE&quot;: -109.54921,\n",
       "          &quot;OBJECTID&quot;: 438,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Moab City Urban Forestry Management Plan and Stewardship&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;UT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Utah&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -109.54921,\n",
       "              38.57327\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Logan, UT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Logan&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;3000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 3000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2689&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.73691,\n",
       "          &quot;LONGITUDE&quot;: -111.83482,\n",
       "          &quot;OBJECTID&quot;: 439,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Seeding a tree culture in Utah - Resources for disadvantaged communities&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;UT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Utah&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.83482,\n",
       "              41.7369100000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Charlottesville, VA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Charlottesville&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;150000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 150000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2690&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.03213,\n",
       "          &quot;LONGITUDE&quot;: -78.47756,\n",
       "          &quot;OBJECTID&quot;: 440,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Charlottesville Urban Forest Management Planning: An Adaptive Approach&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;VA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Virginia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -78.47756,\n",
       "              38.0321300000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Fairfax, VA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Fairfax&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2691&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.84185,\n",
       "          &quot;LONGITUDE&quot;: -77.30905,\n",
       "          &quot;OBJECTID&quot;: 441,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Stewarding, Planting, Restoring Our Urban Trees (SPROUT) in Fairfax City&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;VA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Virginia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -77.30905,\n",
       "              38.8418500000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Rock Hill, SC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Rock Hill&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2673&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.92428,\n",
       "          &quot;LONGITUDE&quot;: -81.02709,\n",
       "          &quot;OBJECTID&quot;: 442,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Urban Forest Initiative for Rock Hill&#x27;s Disadvantaged Areas&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;SC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;South Carolina&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -81.02709,\n",
       "              34.9242800000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Norfolk, VA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Norfolk&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2692&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.84686,\n",
       "          &quot;LONGITUDE&quot;: -76.28514,\n",
       "          &quot;OBJECTID&quot;: 443,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Norfolk Urban Forestry Capacity Building: Increasing Canopy Resilience and Equity in Underserved Communities&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;VA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Virginia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -76.28514,\n",
       "              36.84686\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Winchester, VA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Winchester&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;550000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 550000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2694&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.184,\n",
       "          &quot;LONGITUDE&quot;: -78.16405,\n",
       "          &quot;OBJECTID&quot;: 444,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Winchester Greening and Urban Tree Maintenance Projec&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;VA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Virginia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -78.16405,\n",
       "              39.184\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Richmond, VA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Richmond&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;6000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 6000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2693&quot;,\n",
       "          &quot;LATITUDE&quot;: 37.54068,\n",
       "          &quot;LONGITUDE&quot;: -77.43367,\n",
       "          &quot;OBJECTID&quot;: 445,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Black and Brown-Led, Coalition-Based Urban Greening in Richmond, VA&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;VA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Virginia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -77.43367,\n",
       "              37.5406800000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Norfolk, VA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Norfolk&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2695&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.84686,\n",
       "          &quot;LONGITUDE&quot;: -76.28514,\n",
       "          &quot;OBJECTID&quot;: 446,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Hampton\\u00a0Roads\\u00a0Blue\\u00a0Green\\u00a0Oasis&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;VA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Virginia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -76.28514,\n",
       "              36.84686\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Norfolk, VA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Norfolk&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;4000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 4000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2696&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.84686,\n",
       "          &quot;LONGITUDE&quot;: -76.28514,\n",
       "          &quot;OBJECTID&quot;: 447,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Norfolk Blue-Greenway Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;VA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Virginia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -76.28514,\n",
       "              36.84686\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Frederiksted, VI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Frederiksted&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2697&quot;,\n",
       "          &quot;LATITUDE&quot;: 17.71457,\n",
       "          &quot;LONGITUDE&quot;: -64.88293,\n",
       "          &quot;OBJECTID&quot;: 448,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Strength of Our R.O.O.T.S.: The Community&#x27;s Reclamation Of Our Trees &amp; Soil in the St. George Village Botanical Garden, St. Croix, U.S. Virgin Islands&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;VI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;U.S. Virgin Islands&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -64.88293,\n",
       "              17.71457\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Rutland, VT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Rutland&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2699&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.60509,\n",
       "          &quot;LONGITUDE&quot;: -72.97828,\n",
       "          &quot;OBJECTID&quot;: 449,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Rutland City Urban Tree Canopy Enhancement in Disadvantaged Areas&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;VT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Vermont&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -72.97828,\n",
       "              43.60509\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Christiansted, VI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Christiansted&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2698&quot;,\n",
       "          &quot;LATITUDE&quot;: 17.74672,\n",
       "          &quot;LONGITUDE&quot;: -64.70418,\n",
       "          &quot;OBJECTID&quot;: 450,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Healing Forests to Heal the Underserved for Life&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;VI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;U.S. Virgin Islands&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -64.70418,\n",
       "              17.74672\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Winooski, VT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Winooski&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2700&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.49142,\n",
       "          &quot;LONGITUDE&quot;: -73.18759,\n",
       "          &quot;OBJECTID&quot;: 451,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Winooski Main Street Tree Plantings&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;VT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Vermont&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -73.18759,\n",
       "              44.49142\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Lynnwood, WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Lynnwood&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1308198&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1308198.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2703&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.82557,\n",
       "          &quot;LONGITUDE&quot;: -122.29245,\n",
       "          &quot;OBJECTID&quot;: 452,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;South Lynnwood Urban Forestry and Stewardship Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.29245,\n",
       "              47.82557\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Newport, VT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Newport&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;363190&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 363190.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2701&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.93534,\n",
       "          &quot;LONGITUDE&quot;: -72.21062,\n",
       "          &quot;OBJECTID&quot;: 453,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Tree Enhancement Of Newport VT City Streets and Parks&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;VT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Vermont&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -72.21062,\n",
       "              44.93534\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Port Townsend, WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Port Townsend&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;230507&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 230507.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2705&quot;,\n",
       "          &quot;LATITUDE&quot;: 48.1212,\n",
       "          &quot;LONGITUDE&quot;: -122.77263,\n",
       "          &quot;OBJECTID&quot;: 454,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Climate &amp; Economic Justice Grant - Castle Hill Neighborhood Tree Canopy&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.77263,\n",
       "              48.1212\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Oak Harbor, WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Oak Harbor&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1680140&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1680140.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2704&quot;,\n",
       "          &quot;LATITUDE&quot;: 48.29077,\n",
       "          &quot;LONGITUDE&quot;: -122.64682,\n",
       "          &quot;OBJECTID&quot;: 455,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Oak Harbor WA Urban &amp; Community Forestry Program Development&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.64682,\n",
       "              48.2907700000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Port Townsend, WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Port Townsend&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;240517&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 240517.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2706&quot;,\n",
       "          &quot;LATITUDE&quot;: 48.1212,\n",
       "          &quot;LONGITUDE&quot;: -122.77263,\n",
       "          &quot;OBJECTID&quot;: 456,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Urban &amp; Community Forestry Future&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.77263,\n",
       "              48.1212\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Seattle, WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Seattle&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;900000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 900000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2707&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.60357,\n",
       "          &quot;LONGITUDE&quot;: -122.32945,\n",
       "          &quot;OBJECTID&quot;: 457,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Delridge Native Forest Garden&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.32945,\n",
       "              47.60357\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Seattle, WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Seattle&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;12000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 12000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2708&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.60357,\n",
       "          &quot;LONGITUDE&quot;: -122.32945,\n",
       "          &quot;OBJECTID&quot;: 458,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Growing Seattle: Community-driven urban forestry and job training&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.32945,\n",
       "              47.60357\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Spokane, WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Spokane&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;6000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 6000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2710&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.65726,\n",
       "          &quot;LONGITUDE&quot;: -117.41162,\n",
       "          &quot;OBJECTID&quot;: 459,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Tree Equity Spokane&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -117.41162,\n",
       "              47.6572600000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Shoreline, WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Shoreline&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2709&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.75744,\n",
       "          &quot;LONGITUDE&quot;: -122.34477,\n",
       "          &quot;OBJECTID&quot;: 460,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Enhancing Urban Forestry Efforts in the City of Shoreline&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.34477,\n",
       "              47.75744\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Tumwater, WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Tumwater&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;334588&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 334588.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2711&quot;,\n",
       "          &quot;LATITUDE&quot;: 46.98541,\n",
       "          &quot;LONGITUDE&quot;: -122.91222,\n",
       "          &quot;OBJECTID&quot;: 461,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Tumwater Urban Forestry Capacity and Equity Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.91222,\n",
       "              46.9854100000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Snoqualmie, WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Snoqualmie&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1374299&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1374299.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2714&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.52716,\n",
       "          &quot;LONGITUDE&quot;: -121.82432,\n",
       "          &quot;OBJECTID&quot;: 462,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Snoqualmie Tribe Ancestral Lands Culturally Modified Tree Protection Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -121.82432,\n",
       "              47.52716\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Vancouver, WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Vancouver&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;300000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 300000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2712&quot;,\n",
       "          &quot;LATITUDE&quot;: 45.63248,\n",
       "          &quot;LONGITUDE&quot;: -122.67156,\n",
       "          &quot;OBJECTID&quot;: 463,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Vancouver Urban Forestry Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.67156,\n",
       "              45.63248\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Snohomish, WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Snohomish&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2480761&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2480761.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2713&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.91265,\n",
       "          &quot;LONGITUDE&quot;: -122.09305,\n",
       "          &quot;OBJECTID&quot;: 464,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Growing Urban Forest in Snohomish County&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.09305,\n",
       "              47.91265\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Pullman, WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Pullman&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1786431&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1786431.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2716&quot;,\n",
       "          &quot;LATITUDE&quot;: 46.73015,\n",
       "          &quot;LONGITUDE&quot;: -117.18147,\n",
       "          &quot;OBJECTID&quot;: 465,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Empowering community college students to equitably enhance urban forests&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -117.18147,\n",
       "              46.73015\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Wheeling, WV&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Wheeling&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2719&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.06398,\n",
       "          &quot;LONGITUDE&quot;: -80.72141,\n",
       "          &quot;OBJECTID&quot;: 466,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;WV Ecosystem Career Engagement and Training&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WV&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;West Virginia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.72141,\n",
       "              40.0639800000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Milwaukee, WI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Milwaukee&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;12000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 12000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2717&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.04223,\n",
       "          &quot;LONGITUDE&quot;: -87.9069,\n",
       "          &quot;OBJECTID&quot;: 467,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Growing Milwaukee&#x27;s Tree Canopy and Community Resilience&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Wisconsin&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -87.9069,\n",
       "              43.0422300000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Casper, WY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Casper&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;699900&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 699900.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2720&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.85008,\n",
       "          &quot;LONGITUDE&quot;: -106.32713,\n",
       "          &quot;OBJECTID&quot;: 468,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Branch Across Casper&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Wyoming&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -106.32713,\n",
       "              42.85008\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;College Place, WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;College Place&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;730413&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 730413.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2702&quot;,\n",
       "          &quot;LATITUDE&quot;: 46.03456,\n",
       "          &quot;LONGITUDE&quot;: -118.38864,\n",
       "          &quot;OBJECTID&quot;: 469,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of College Place: Urban Forestry Enhancement Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -118.38864,\n",
       "              46.03456\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Spokane Valley, WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Spokane Valley&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;6000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 6000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2715&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.65713,\n",
       "          &quot;LONGITUDE&quot;: -117.24696,\n",
       "          &quot;OBJECTID&quot;: 470,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Spokane County Natural Resource Apprenticeship Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -117.24696,\n",
       "              47.6571300000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Lincoln, NE&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Lincoln&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;10000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 10000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2724&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.81362,\n",
       "          &quot;LONGITUDE&quot;: -96.7073,\n",
       "          &quot;OBJECTID&quot;: 471,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Arbor Day Foundation IRA Regranting Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NE&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Nebraska&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -96.7073,\n",
       "              40.8136200000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Boulder, CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Boulder&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2400000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2400000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2725&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.01574,\n",
       "          &quot;LONGITUDE&quot;: -105.27924,\n",
       "          &quot;OBJECTID&quot;: 472,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Building Resilience in Frontline Communities&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.27924,\n",
       "              40.0157400000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Washington, DC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Washington&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;10000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 10000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2722&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.89037,\n",
       "          &quot;LONGITUDE&quot;: -77.03196,\n",
       "          &quot;OBJECTID&quot;: 473,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;American Forests Catalyst Fund: Fostering Community-Led Action to Advance Tree Equity&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;DC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;District of Columbia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -77.03196,\n",
       "              38.89037\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Rock Springs, WY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Rock Springs&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;100000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 100000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2721&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.58632,\n",
       "          &quot;LONGITUDE&quot;: -109.22267,\n",
       "          &quot;OBJECTID&quot;: 474,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;City of Rock Springs Community Forest Initiative&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Wyoming&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -109.22267,\n",
       "              41.5863200000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Washington, DC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Washington&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2723&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.89037,\n",
       "          &quot;LONGITUDE&quot;: -77.03196,\n",
       "          &quot;OBJECTID&quot;: 475,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;SFI Urban and Community Forest Improvement Program&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;DC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;District of Columbia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -77.03196,\n",
       "              38.89037\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Washington, DC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Washington&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;7000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 7000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2727&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.89037,\n",
       "          &quot;LONGITUDE&quot;: -77.03196,\n",
       "          &quot;OBJECTID&quot;: 476,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Rising From Roots: Addressing Historical Health Disparities and Environment Justice through Urban Forestry at 1890 Land-Grant Universities&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;DC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;District of Columbia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -77.03196,\n",
       "              38.89037\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Washington, DC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Washington&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2728&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.89037,\n",
       "          &quot;LONGITUDE&quot;: -77.03196,\n",
       "          &quot;OBJECTID&quot;: 477,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Growing Resilience Through Forested Community Schoolyards&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;DC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;District of Columbia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -77.03196,\n",
       "              38.89037\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Washington, DC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Washington&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2729&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.89037,\n",
       "          &quot;LONGITUDE&quot;: -77.03196,\n",
       "          &quot;OBJECTID&quot;: 478,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Grassroots Grantmaking for Tree Canopy Restoration across Latino Communitie&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;DC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;District of Columbia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -77.03196,\n",
       "              38.89037\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Washington, DC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Washington&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2731&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.89037,\n",
       "          &quot;LONGITUDE&quot;: -77.03196,\n",
       "          &quot;OBJECTID&quot;: 479,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Nuestros Bosques (Our Forests) IRA Initiative&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;DC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;District of Columbia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -77.03196,\n",
       "              38.89037\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Washington, DC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: &quot;Washington&quot;,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2732&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.89037,\n",
       "          &quot;LONGITUDE&quot;: -77.03196,\n",
       "          &quot;OBJECTID&quot;: 480,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Urban and Community Forestry Assistance Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Urban and Community Forestry Corps (UCFC) Initiative&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;DC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;District of Columbia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -77.03196,\n",
       "              38.89037\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Berkshire County, MA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Berkshire County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;465589&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 465589.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-120&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.3706300860001,\n",
       "          &quot;LONGITUDE&quot;: -73.20637965,\n",
       "          &quot;OBJECTID&quot;: 481,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Berkshire Regional Planning Commission&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Massachusetts&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -73.20637965,\n",
       "              42.3706300860001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Imperial County, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Imperial County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;481250&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 481250.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-149&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.022684199,\n",
       "          &quot;LONGITUDE&quot;: -115.335515235,\n",
       "          &quot;OBJECTID&quot;: 482,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Imperial County APCD&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -115.335515235,\n",
       "              33.022684199\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Salt Lake County, UT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Salt Lake County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-168&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.6604799180001,\n",
       "          &quot;LONGITUDE&quot;: -111.913406162,\n",
       "          &quot;OBJECTID&quot;: 483,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Salt Lake County&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;UT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Utah&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.913406162,\n",
       "              40.6604799180001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;San Mateo County, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;San Mateo County&quot;,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-361&quot;,\n",
       "          &quot;LATITUDE&quot;: 37.4221516760001,\n",
       "          &quot;LONGITUDE&quot;: -122.328656932,\n",
       "          &quot;OBJECTID&quot;: 484,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;San Mateo County Resource Conservation District&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.328656932,\n",
       "              37.422151676\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Miami-Dade County, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Miami-Dade County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;499988&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 499988.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-156&quot;,\n",
       "          &quot;LATITUDE&quot;: 25.614182982,\n",
       "          &quot;LONGITUDE&quot;: -80.567906444,\n",
       "          &quot;OBJECTID&quot;: 485,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Miami-Dade County/Solid Waste Management&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.567906444,\n",
       "              25.614182982\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Sarasota County, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Sarasota County&quot;,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-376&quot;,\n",
       "          &quot;LATITUDE&quot;: 27.1805109640001,\n",
       "          &quot;LONGITUDE&quot;: -82.322258029,\n",
       "          &quot;OBJECTID&quot;: 486,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Sarasota County Board of County Commissioners&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -82.322258029,\n",
       "              27.1805109640001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Escambia County, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Escambia County&quot;,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-377&quot;,\n",
       "          &quot;LATITUDE&quot;: 30.7007411220001,\n",
       "          &quot;LONGITUDE&quot;: -87.377329794,\n",
       "          &quot;OBJECTID&quot;: 487,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Escambia County Board of County Commissioners&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -87.377329794,\n",
       "              30.7007411220001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Pinellas County, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Pinellas County&quot;,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-384&quot;,\n",
       "          &quot;LATITUDE&quot;: 27.9313377230001,\n",
       "          &quot;LONGITUDE&quot;: -82.721940468,\n",
       "          &quot;OBJECTID&quot;: 488,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Pinellas County Government&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -82.721940468,\n",
       "              27.9313377230001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Allegheny County, PA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Allegheny County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;200945&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 200945.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-515&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.4686070340001,\n",
       "          &quot;LONGITUDE&quot;: -79.9804238409999,\n",
       "          &quot;OBJECTID&quot;: 489,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Allegheny County Health Department&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Pennsylvania&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -79.9804238409999,\n",
       "              40.4686070340001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Broward County, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Broward County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;38994&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 38994.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-526&quot;,\n",
       "          &quot;LATITUDE&quot;: 26.12401,\n",
       "          &quot;LONGITUDE&quot;: -80.14357,\n",
       "          &quot;OBJECTID&quot;: 490,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Broward County&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.14357,\n",
       "              26.1240100000001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Jefferson County, AL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Jefferson County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;64000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 64000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-524&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.5542796300001,\n",
       "          &quot;LONGITUDE&quot;: -86.896525179,\n",
       "          &quot;OBJECTID&quot;: 491,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Jefferson County&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Alabama&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -86.896525179,\n",
       "              33.5542796300001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Hillsborough County, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Hillsborough County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;63065&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 63065.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-528&quot;,\n",
       "          &quot;LATITUDE&quot;: 27.9302292510001,\n",
       "          &quot;LONGITUDE&quot;: -82.307857484,\n",
       "          &quot;OBJECTID&quot;: 492,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Hillsborough County&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -82.307857484,\n",
       "              27.9302292510001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Duval County, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Duval County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;67340&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 67340.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-527&quot;,\n",
       "          &quot;LATITUDE&quot;: 30.3309777150001,\n",
       "          &quot;LONGITUDE&quot;: -81.672024356,\n",
       "          &quot;OBJECTID&quot;: 493,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Duval County&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -81.672024356,\n",
       "              30.3309777150001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Miami-Dade County, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Miami-Dade County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;60008&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 60008.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-529&quot;,\n",
       "          &quot;LATITUDE&quot;: 25.614182982,\n",
       "          &quot;LONGITUDE&quot;: -80.567906444,\n",
       "          &quot;OBJECTID&quot;: 494,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Miami-Dade County&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.567906444,\n",
       "              25.614182982\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Orange County, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Orange County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;41450&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 41450.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-530&quot;,\n",
       "          &quot;LATITUDE&quot;: 28.510129335,\n",
       "          &quot;LONGITUDE&quot;: -81.311714151,\n",
       "          &quot;OBJECTID&quot;: 495,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Orange County&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -81.311714151,\n",
       "              28.510129335\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Pinellas County, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Pinellas County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;35889&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 35889.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-532&quot;,\n",
       "          &quot;LATITUDE&quot;: 27.9313377230001,\n",
       "          &quot;LONGITUDE&quot;: -82.721940468,\n",
       "          &quot;OBJECTID&quot;: 496,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Pinellas County&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -82.721940468,\n",
       "              27.9313377230001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Palm Beach County, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Palm Beach County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;33071&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 33071.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-531&quot;,\n",
       "          &quot;LATITUDE&quot;: 26.6240548440001,\n",
       "          &quot;LONGITUDE&quot;: -80.430030014,\n",
       "          &quot;OBJECTID&quot;: 497,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Palm Beach County&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.430030014,\n",
       "              26.6240548440001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Forsyth County, NC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Forsyth County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;52019&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 52019.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-538&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.130538432,\n",
       "          &quot;LONGITUDE&quot;: -80.256301198,\n",
       "          &quot;OBJECTID&quot;: 498,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Forsyth County&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;North Carolina&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.256301198,\n",
       "              36.130538432\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Mecklenburg County, NC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Mecklenburg County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;71934&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 71934.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-539&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.241478762,\n",
       "          &quot;LONGITUDE&quot;: -80.8308055049999,\n",
       "          &quot;OBJECTID&quot;: 499,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Mecklenburg County&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;North Carolina&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.8308055049999,\n",
       "              35.241478762\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Hamilton County, TN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Hamilton County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;63478&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 63478.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-543&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.1793047850001,\n",
       "          &quot;LONGITUDE&quot;: -85.166823892,\n",
       "          &quot;OBJECTID&quot;: 500,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Chatt/Hamilton County&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Tennessee&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -85.166823892,\n",
       "              35.1793047850001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Buncombe County, NC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Buncombe County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;46214&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 46214.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-540&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.61113182,\n",
       "          &quot;LONGITUDE&quot;: -82.530093049,\n",
       "          &quot;OBJECTID&quot;: 501,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Ashville-Buncombe County&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;North Carolina&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -82.530093049,\n",
       "              35.61113182\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Jefferson Parish County, LA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Jefferson Parish County&quot;,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-399&quot;,\n",
       "          &quot;LATITUDE&quot;: 29.725779426,\n",
       "          &quot;LONGITUDE&quot;: -90.108909189,\n",
       "          &quot;OBJECTID&quot;: 502,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Jefferson Parish&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;LA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Louisiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -90.108909189,\n",
       "              29.725779426\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;San Diego County, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;San Diego County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;219107&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 219107.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-575&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.033898607,\n",
       "          &quot;LONGITUDE&quot;: -116.756411731,\n",
       "          &quot;OBJECTID&quot;: 503,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;San Diego County APCD&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -116.756411731,\n",
       "              33.033898607\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Shelby County, TN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Shelby County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;68356&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 68356.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-544&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.1850124040001,\n",
       "          &quot;LONGITUDE&quot;: -89.887418409,\n",
       "          &quot;OBJECTID&quot;: 504,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Shelby County&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Tennessee&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -89.887418409,\n",
       "              35.1850124040001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Cook County, IL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Cook County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;84977&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 84977.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-547&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.8401485470001,\n",
       "          &quot;LONGITUDE&quot;: -87.816823222,\n",
       "          &quot;OBJECTID&quot;: 505,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Cook County&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Illinois&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -87.816823222,\n",
       "              41.8401485470001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Ventura County, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Ventura County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;159242&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 159242.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-579&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.456802795,\n",
       "          &quot;LONGITUDE&quot;: -119.083581075,\n",
       "          &quot;OBJECTID&quot;: 506,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Ventura County APCD&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.083581075,\n",
       "              34.456802795\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Hamilton County, OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Hamilton County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;61548&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 61548.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-553&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.1960451580001,\n",
       "          &quot;LONGITUDE&quot;: -84.5420805099999,\n",
       "          &quot;OBJECTID&quot;: 507,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Hamilton County&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -84.5420805099999,\n",
       "              39.1960451580001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Maricopa County, AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Maricopa County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;161467&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 161467.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-581&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.3488313550001,\n",
       "          &quot;LONGITUDE&quot;: -112.491258716,\n",
       "          &quot;OBJECTID&quot;: 508,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Maricopa County AQD&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -112.491258716,\n",
       "              33.3488313550001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Clark County, NV&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Clark County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;123159&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 123159.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-584&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.217623261,\n",
       "          &quot;LONGITUDE&quot;: -115.023209772,\n",
       "          &quot;OBJECTID&quot;: 509,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Clark County DEQ&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NV&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Nevada&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -115.023209772,\n",
       "              36.217623261\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Santa Barbara County, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Santa Barbara County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;73400&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 73400.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-577&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.6735859680001,\n",
       "          &quot;LONGITUDE&quot;: -120.017087887,\n",
       "          &quot;OBJECTID&quot;: 510,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Santa Barbara County APCD&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.017087887,\n",
       "              34.673585968\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Pima County, AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Pima County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;76258&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 76258.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-582&quot;,\n",
       "          &quot;LATITUDE&quot;: 32.0972730230001,\n",
       "          &quot;LONGITUDE&quot;: -111.789765122,\n",
       "          &quot;OBJECTID&quot;: 511,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Pima County Department of Environmental Quality&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.789765122,\n",
       "              32.0972730230001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Washoe County, NV&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Washoe County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;100962&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 100962.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-585&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.6869600220001,\n",
       "          &quot;LONGITUDE&quot;: -119.665991091,\n",
       "          &quot;OBJECTID&quot;: 512,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Washoe County AQMD&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NV&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Nevada&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.665991091,\n",
       "              40.686960022\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Clark County, NV&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Clark County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-708&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.217623261,\n",
       "          &quot;LONGITUDE&quot;: -115.023209772,\n",
       "          &quot;OBJECTID&quot;: 513,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Clark County Department of Environment and Sustainability&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NV&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Nevada&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -115.023209772,\n",
       "              36.217623261\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Miami-Dade County, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Miami-Dade County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-687&quot;,\n",
       "          &quot;LATITUDE&quot;: 25.614182982,\n",
       "          &quot;LONGITUDE&quot;: -80.567906444,\n",
       "          &quot;OBJECTID&quot;: 514,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Miami-Dade County Office of Resilience&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.567906444,\n",
       "              25.614182982\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;San Bernardino County, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;San Bernardino County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-692&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.841417569,\n",
       "          &quot;LONGITUDE&quot;: -116.178549159,\n",
       "          &quot;OBJECTID&quot;: 515,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;San Bernardino County Transportation Authority&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -116.178549159,\n",
       "              34.841417569\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Santa Clara County, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Santa Clara County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-715&quot;,\n",
       "          &quot;LATITUDE&quot;: 37.2317385600001,\n",
       "          &quot;LONGITUDE&quot;: -121.694820974,\n",
       "          &quot;OBJECTID&quot;: 516,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;County of Santa Clara&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -121.694820974,\n",
       "              37.2317385600001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Pima County, AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Pima County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-733&quot;,\n",
       "          &quot;LATITUDE&quot;: 32.0972730230001,\n",
       "          &quot;LONGITUDE&quot;: -111.789765122,\n",
       "          &quot;OBJECTID&quot;: 517,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Pima County Department of Environmental Quality&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.789765122,\n",
       "              32.0972730230001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Sarasota County, FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Sarasota County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-751&quot;,\n",
       "          &quot;LATITUDE&quot;: 27.1805109640001,\n",
       "          &quot;LONGITUDE&quot;: -82.322258029,\n",
       "          &quot;OBJECTID&quot;: 518,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Sarasota County&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -82.322258029,\n",
       "              27.1805109640001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Polk County, IA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Polk County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-754&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.6854131860001,\n",
       "          &quot;LONGITUDE&quot;: -93.5734445859999,\n",
       "          &quot;OBJECTID&quot;: 519,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Polk County&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Iowa&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -93.5734445859999,\n",
       "              41.6854131860001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;San Mateo County, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;U.S. Geological Survey&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;San Mateo County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;TBD&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1230&quot;,\n",
       "          &quot;LATITUDE&quot;: 37.4221516760001,\n",
       "          &quot;LONGITUDE&quot;: -122.328656932,\n",
       "          &quot;OBJECTID&quot;: 520,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;USGS 3D Elevation Program (3DEP)&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Creation of Quality Level 1 Lidar 3DEP datasets for San Mateo County\\u00a0&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.328656932,\n",
       "              37.422151676\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;San Luis Obispo County, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;U.S. Geological Survey&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;San Luis Obispo County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;TBD&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1231&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.386819577,\n",
       "          &quot;LONGITUDE&quot;: -120.403577116,\n",
       "          &quot;OBJECTID&quot;: 521,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;USGS 3D Elevation Program (3DEP)&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Filling in San Luis Obispo County\\u2019s Gaps in Lidar Data\\u00a0&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.403577116,\n",
       "              35.386819577\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Los Angeles County, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Los Angeles County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-682&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.3427737320001,\n",
       "          &quot;LONGITUDE&quot;: -118.220937772,\n",
       "          &quot;OBJECTID&quot;: 522,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;County of Los Angeles&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -118.220937772,\n",
       "              34.3427737320001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;San Juan County, PR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;San Juan County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-714&quot;,\n",
       "          &quot;LATITUDE&quot;: 18.3867876240001,\n",
       "          &quot;LONGITUDE&quot;: -66.060679841,\n",
       "          &quot;OBJECTID&quot;: 523,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Municipality of San Juan Planning Office&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Puerto Rico&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -66.060679841,\n",
       "              18.3867876240001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;498537&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 498537.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-114&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.998550562,\n",
       "          &quot;LONGITUDE&quot;: -105.547816373,\n",
       "          &quot;OBJECTID&quot;: 524,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;350 Colorado&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;TX&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;499197&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 499197.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-115&quot;,\n",
       "          &quot;LATITUDE&quot;: 31.462733046,\n",
       "          &quot;LONGITUDE&quot;: -99.33305009,\n",
       "          &quot;OBJECTID&quot;: 525,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Achieving Community Tasks Successfully (ACTS)&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TX&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Texas&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -99.33305009,\n",
       "              31.462733046\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Solano County, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;U.S. Geological Survey&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Solano County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;30000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 30000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1233&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.277934428,\n",
       "          &quot;LONGITUDE&quot;: -121.927240218,\n",
       "          &quot;OBJECTID&quot;: 526,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;USGS 3D Elevation Program (3DEP)&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Lidar Acquisition flight for Solano County Regional GIS Consortium\\u00a0&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -121.927240218,\n",
       "              38.277934428\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;499100&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 499100.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-116&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 527,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Air Resources Board&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;AK&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;301987&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 301987.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-117&quot;,\n",
       "          &quot;LATITUDE&quot;: 64.8080878980001,\n",
       "          &quot;LONGITUDE&quot;: -151.004157815,\n",
       "          &quot;OBJECTID&quot;: 528,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Aleutian Pribilof Islands Association&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AK&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Alaska&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -151.004157815,\n",
       "              64.8080878980001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;365368&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 365368.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-122&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.5393443350001,\n",
       "          &quot;LONGITUDE&quot;: -79.185417913,\n",
       "          &quot;OBJECTID&quot;: 529,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Blue Ridge Environmental Defense League&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;North Carolina&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -79.185417913,\n",
       "              35.5393443350001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;TX&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;453732&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 453732.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-123&quot;,\n",
       "          &quot;LATITUDE&quot;: 31.462733046,\n",
       "          &quot;LONGITUDE&quot;: -99.33305009,\n",
       "          &quot;OBJECTID&quot;: 530,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Capital Area Council of Governments&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TX&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Texas&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -99.33305009,\n",
       "              31.462733046\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;472656&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 472656.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-121&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.998550562,\n",
       "          &quot;LONGITUDE&quot;: -105.547816373,\n",
       "          &quot;OBJECTID&quot;: 531,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Black Parents United Foundation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;TX&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;206540&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 206540.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-124&quot;,\n",
       "          &quot;LATITUDE&quot;: 31.462733046,\n",
       "          &quot;LONGITUDE&quot;: -99.33305009,\n",
       "          &quot;OBJECTID&quot;: 532,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Capital Area Council of Governments&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TX&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Texas&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -99.33305009,\n",
       "              31.462733046\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;TX&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-126&quot;,\n",
       "          &quot;LATITUDE&quot;: 31.462733046,\n",
       "          &quot;LONGITUDE&quot;: -99.33305009,\n",
       "          &quot;OBJECTID&quot;: 533,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Centro Fronterizo del Obrero (dba) La Mujer Obrera&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TX&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Texas&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -99.33305009,\n",
       "              31.462733046\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;GA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;498401&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 498401.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-125&quot;,\n",
       "          &quot;LATITUDE&quot;: 32.6483245540001,\n",
       "          &quot;LONGITUDE&quot;: -83.4445344009999,\n",
       "          &quot;OBJECTID&quot;: 534,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Center for Sustainable Communities&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;GA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Georgia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -83.4445344009999,\n",
       "              32.6483245540001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;PA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;419446&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 419446.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-132&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.8965116540001,\n",
       "          &quot;LONGITUDE&quot;: -77.838750776,\n",
       "          &quot;OBJECTID&quot;: 535,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Clean Air Council&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Pennsylvania&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -77.838750776,\n",
       "              40.896511654\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-133&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 536,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Coalition for Clean Air&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;185029&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 185029.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-134&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.293016451,\n",
       "          &quot;LONGITUDE&quot;: -111.664753988,\n",
       "          &quot;OBJECTID&quot;: 537,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Cocopah Indian Tribe&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-135&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 538,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Comite Civico del Valle, Inc.&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-136&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 539,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Comite Civico del Valle, Inc.&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;PA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;499145&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 499145.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-137&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.8965116540001,\n",
       "          &quot;LONGITUDE&quot;: -77.838750776,\n",
       "          &quot;OBJECTID&quot;: 540,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Community Foundation for the Alleghenies&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Pennsylvania&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -77.838750776,\n",
       "              40.896511654\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Lake County, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;U.S. Geological Survey&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Lake County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;24184&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 24184.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1232&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.1026533890001,\n",
       "          &quot;LONGITUDE&quot;: -122.750897425,\n",
       "          &quot;OBJECTID&quot;: 541,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;USGS 3D Elevation Program (3DEP)&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Lake County, California Wildfire Prevention Planning, Response, and Resiliency\\u00a0&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -122.750897425,\n",
       "              39.1026533890001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;IL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;440485&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 440485.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-142&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.11404657,\n",
       "          &quot;LONGITUDE&quot;: -89.158650902,\n",
       "          &quot;OBJECTID&quot;: 542,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Ecology Action Center&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Illinois&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -89.158650902,\n",
       "              40.11404657\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NV&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;150000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 150000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-143&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.356482037,\n",
       "          &quot;LONGITUDE&quot;: -116.655436405,\n",
       "          &quot;OBJECTID&quot;: 543,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Fallon Paiute Shoshone Tribe&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NV&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Nevada&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -116.655436405,\n",
       "              39.356482037\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;DE&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;357852&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 357852.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-138&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.008127276,\n",
       "          &quot;LONGITUDE&quot;: -75.4674721439999,\n",
       "          &quot;OBJECTID&quot;: 544,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Community Housing and Empowerment Connections Inc.&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;DE&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Delaware&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -75.4674721439999,\n",
       "              39.008127276\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;PA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;430001&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 430001.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-145&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.8965116540001,\n",
       "          &quot;LONGITUDE&quot;: -77.838750776,\n",
       "          &quot;OBJECTID&quot;: 545,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;FracTracker Alliance&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Pennsylvania&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -77.838750776,\n",
       "              40.896511654\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;PA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;495301&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 495301.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-146&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.8965116540001,\n",
       "          &quot;LONGITUDE&quot;: -77.838750776,\n",
       "          &quot;OBJECTID&quot;: 546,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;FracTracker Alliance&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Pennsylvania&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -77.838750776,\n",
       "              40.896511654\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;PA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;333121&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 333121.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-150&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.8965116540001,\n",
       "          &quot;LONGITUDE&quot;: -77.838750776,\n",
       "          &quot;OBJECTID&quot;: 547,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;JASTECH Development Services&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Pennsylvania&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -77.838750776,\n",
       "              40.896511654\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;482662&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 482662.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-147&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.4130567990001,\n",
       "          &quot;LONGITUDE&quot;: -82.7112151859999,\n",
       "          &quot;OBJECTID&quot;: 548,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Groundwork Ohio River Valley&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -82.7112151859999,\n",
       "              40.4130567990001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;LA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;498480&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 498480.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-155&quot;,\n",
       "          &quot;LATITUDE&quot;: 30.1858461670001,\n",
       "          &quot;LONGITUDE&quot;: -91.42642,\n",
       "          &quot;OBJECTID&quot;: 549,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;LSU Health Foundation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;LA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Louisiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -91.42642,\n",
       "              30.1858461670001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-159&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 550,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Oxnard Harbor District&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;499347&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 499347.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-160&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 551,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Pepperwood Foundation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;498828&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 498828.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-161&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 552,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Play Marin&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;440000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 440000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-157&quot;,\n",
       "          &quot;LATITUDE&quot;: 28.5660448950001,\n",
       "          &quot;LONGITUDE&quot;: -81.6886487899999,\n",
       "          &quot;OBJECTID&quot;: 553,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;National Coalition of 100 Black Women - Central Florida Chapter, Inc.&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -81.6886487899999,\n",
       "              28.5660448950001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;PA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;365887&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 365887.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-163&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.8965116540001,\n",
       "          &quot;LONGITUDE&quot;: -77.838750776,\n",
       "          &quot;OBJECTID&quot;: 554,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Promote PT Inc DBA Protect PT&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Pennsylvania&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -77.838750776,\n",
       "              40.896511654\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;499900&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 499900.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-172&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 555,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;South Coast AQMD&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;100000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 100000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-174&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 556,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Special Service for Groups, Inc&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;TN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;491171&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 491171.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-178&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.843002697,\n",
       "          &quot;LONGITUDE&quot;: -86.3430511769999,\n",
       "          &quot;OBJECTID&quot;: 557,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;The Enterprise Center&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Tennessee&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -86.3430511769999,\n",
       "              35.843002697\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-165&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.71453,\n",
       "          &quot;LONGITUDE&quot;: -74.00712,\n",
       "          &quot;OBJECTID&quot;: 558,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Red Hook Initiative&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -74.00712,\n",
       "              40.71453\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;SD&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;406482&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 406482.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-180&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.436128,\n",
       "          &quot;LONGITUDE&quot;: -100.230536743,\n",
       "          &quot;OBJECTID&quot;: 559,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;The Keya Foundation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;SD&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;South Dakota&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -100.230536743,\n",
       "              44.436128\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;499939&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 499939.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-166&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.71453,\n",
       "          &quot;LONGITUDE&quot;: -74.00712,\n",
       "          &quot;OBJECTID&quot;: 560,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Research Foundation for the State University of New York, University at Albany&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -74.00712,\n",
       "              40.71453\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;486000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 486000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-181&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.293016451,\n",
       "          &quot;LONGITUDE&quot;: -111.664753988,\n",
       "          &quot;OBJECTID&quot;: 561,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;The Navajo Nation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;416395&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 416395.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-183&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 562,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;United Latinos, Promoviendo Accion Civica&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;IL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;456170&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 456170.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-186&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.11404657,\n",
       "          &quot;LONGITUDE&quot;: -89.158650902,\n",
       "          &quot;OBJECTID&quot;: 563,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Warehouse Workers&#x27; Justice Center&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Illinois&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -89.158650902,\n",
       "              40.11404657\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;250000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 250000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-243&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 564,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Drought Mitigation&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Salton Sea&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;27250000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 27250000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-275&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.5393443350001,\n",
       "          &quot;LONGITUDE&quot;: -79.185417913,\n",
       "          &quot;OBJECTID&quot;: 565,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Refuge System Resiliency&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Albemarle-Pamlico Sound&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;North Carolina&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -79.185417913,\n",
       "              35.5393443350001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;7000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 7000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-281&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.293016451,\n",
       "          &quot;LONGITUDE&quot;: -111.664753988,\n",
       "          &quot;OBJECTID&quot;: 566,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Refuge System Resiliency&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;San Bernardino National Wildlife Refuge&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;AK&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-350&quot;,\n",
       "          &quot;LATITUDE&quot;: 64.8080878980001,\n",
       "          &quot;LONGITUDE&quot;: -151.004157815,\n",
       "          &quot;OBJECTID&quot;: 567,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;National Forest Foundation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AK&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Alaska&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -151.004157815,\n",
       "              64.8080878980001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-356&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 568,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Gold Ridge Resource Conservation District&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-190&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.71453,\n",
       "          &quot;LONGITUDE&quot;: -74.00712,\n",
       "          &quot;OBJECTID&quot;: 569,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Fenceline Air Monitoring&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Youth Ministries for Peace and Justice Inc&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -74.00712,\n",
       "              40.71453\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-357&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 570,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;The Nature Conservancy&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-359&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 571,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Smith River Alliance&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-360&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 572,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Greater Farallones Association&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-364&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 573,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Pinoleville Pomo Nation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-365&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 574,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Mid Klamath Watershed Council&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-366&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 575,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Salmon River Restoration Council&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-368&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 576,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Restoration Planning for China Camp State Park&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-283&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.0334993330001,\n",
       "          &quot;LONGITUDE&quot;: -109.645067732,\n",
       "          &quot;OBJECTID&quot;: 577,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Refuge System Resiliency&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Charles M. Russell National Wildlife Refuge&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Montana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -109.645067732,\n",
       "              47.0334993330001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-369&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 578,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Elkhorn Slough Foundation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-370&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 579,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;University of Southern California Sea Grant&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-371&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 580,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Nature Nexus Institute&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MP&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-373&quot;,\n",
       "          &quot;LATITUDE&quot;: 15.1888247700001,\n",
       "          &quot;LONGITUDE&quot;: 145.753510487,\n",
       "          &quot;OBJECTID&quot;: 581,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Pacific Coastal Research &amp; Planning&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MP&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Northern Mariana Islands&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              145.753510487,\n",
       "              15.1888247700001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MP&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-374&quot;,\n",
       "          &quot;LATITUDE&quot;: 15.1888247700001,\n",
       "          &quot;LONGITUDE&quot;: 145.753510487,\n",
       "          &quot;OBJECTID&quot;: 582,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Pacific Coastal Research &amp; Planning&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MP&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Northern Mariana Islands&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              145.753510487,\n",
       "              15.1888247700001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-378&quot;,\n",
       "          &quot;LATITUDE&quot;: 28.5660448950001,\n",
       "          &quot;LONGITUDE&quot;: -81.6886487899999,\n",
       "          &quot;OBJECTID&quot;: 583,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Mote Marine Laboratory &amp; Aquarium&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -81.6886487899999,\n",
       "              28.5660448950001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-387&quot;,\n",
       "          &quot;LATITUDE&quot;: 28.5660448950001,\n",
       "          &quot;LONGITUDE&quot;: -81.6886487899999,\n",
       "          &quot;OBJECTID&quot;: 584,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Phillip and Patricia Frost Museum of Science&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -81.6886487899999,\n",
       "              28.5660448950001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-385&quot;,\n",
       "          &quot;LATITUDE&quot;: 28.5660448950001,\n",
       "          &quot;LONGITUDE&quot;: -81.6886487899999,\n",
       "          &quot;OBJECTID&quot;: 585,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;University of Florida&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -81.6886487899999,\n",
       "              28.5660448950001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;HI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-390&quot;,\n",
       "          &quot;LATITUDE&quot;: 21.439542579,\n",
       "          &quot;LONGITUDE&quot;: -157.94363193,\n",
       "          &quot;OBJECTID&quot;: 586,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation International Foundation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;HI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Hawaii&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -157.94363193,\n",
       "              21.439542579\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;HI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-391&quot;,\n",
       "          &quot;LATITUDE&quot;: 21.439542579,\n",
       "          &quot;LONGITUDE&quot;: -157.94363193,\n",
       "          &quot;OBJECTID&quot;: 587,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;M\\u0101lama Maunalua&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;HI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Hawaii&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -157.94363193,\n",
       "              21.439542579\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;HI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;3194361&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 3194361.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-392&quot;,\n",
       "          &quot;LATITUDE&quot;: 21.439542579,\n",
       "          &quot;LONGITUDE&quot;: -157.94363193,\n",
       "          &quot;OBJECTID&quot;: 588,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;The Coral Reef Alliance&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;HI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Hawaii&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -157.94363193,\n",
       "              21.439542579\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;HI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-395&quot;,\n",
       "          &quot;LATITUDE&quot;: 21.439542579,\n",
       "          &quot;LONGITUDE&quot;: -157.94363193,\n",
       "          &quot;OBJECTID&quot;: 589,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Hawaiian Islands Land Trust&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;HI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Hawaii&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -157.94363193,\n",
       "              21.439542579\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;HI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-396&quot;,\n",
       "          &quot;LATITUDE&quot;: 21.439542579,\n",
       "          &quot;LONGITUDE&quot;: -157.94363193,\n",
       "          &quot;OBJECTID&quot;: 590,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Kuleana Coral Reefs&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;HI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Hawaii&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -157.94363193,\n",
       "              21.439542579\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;LA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-401&quot;,\n",
       "          &quot;LATITUDE&quot;: 30.1858461670001,\n",
       "          &quot;LONGITUDE&quot;: -91.42642,\n",
       "          &quot;OBJECTID&quot;: 591,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Terrebonne Parish Consolidated Government&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;LA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Louisiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -91.42642,\n",
       "              30.1858461670001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;LA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-402&quot;,\n",
       "          &quot;LATITUDE&quot;: 30.1858461670001,\n",
       "          &quot;LONGITUDE&quot;: -91.42642,\n",
       "          &quot;OBJECTID&quot;: 592,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;The Water Institute of the Gulf&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;LA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Louisiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -91.42642,\n",
       "              30.1858461670001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;LA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-403&quot;,\n",
       "          &quot;LATITUDE&quot;: 30.1858461670001,\n",
       "          &quot;LONGITUDE&quot;: -91.42642,\n",
       "          &quot;OBJECTID&quot;: 593,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Wayti Services, LLC&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;LA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Louisiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -91.42642,\n",
       "              30.1858461670001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;LA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-404&quot;,\n",
       "          &quot;LATITUDE&quot;: 30.1858461670001,\n",
       "          &quot;LONGITUDE&quot;: -91.42642,\n",
       "          &quot;OBJECTID&quot;: 594,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Coalition to Restore Coastal Louisiana&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;LA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Louisiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -91.42642,\n",
       "              30.1858461670001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-418&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.3586703240001,\n",
       "          &quot;LONGITUDE&quot;: -71.718185,\n",
       "          &quot;OBJECTID&quot;: 595,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Massachusetts Audubon Society&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Massachusetts&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -71.718185,\n",
       "              42.3586703240001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-421&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.3586703240001,\n",
       "          &quot;LONGITUDE&quot;: -71.718185,\n",
       "          &quot;OBJECTID&quot;: 596,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Ipswich River Watershed Association&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Massachusetts&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -71.718185,\n",
       "              42.3586703240001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-424&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.3586703240001,\n",
       "          &quot;LONGITUDE&quot;: -71.718185,\n",
       "          &quot;OBJECTID&quot;: 597,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Massachusetts Institute of Technology Sea Grant&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Massachusetts&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -71.718185,\n",
       "              42.3586703240001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NJ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-430&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.613348353,\n",
       "          &quot;LONGITUDE&quot;: -74.728565,\n",
       "          &quot;OBJECTID&quot;: 598,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Stockton University&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NJ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Jersey&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -74.728565,\n",
       "              39.613348353\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-425&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.1251998340001,\n",
       "          &quot;LONGITUDE&quot;: -84.1966975,\n",
       "          &quot;OBJECTID&quot;: 599,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;The Edsel and Eleanor Ford House&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Michigan&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -84.1966975,\n",
       "              44.1251998340001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;Los Angeles County, CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;U.S. Geological Survey&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: &quot;Los Angeles County&quot;,\n",
       "          &quot;FUNDING&quot;: &quot;24184&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 24184.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1234&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.3427737320001,\n",
       "          &quot;LONGITUDE&quot;: -118.220937772,\n",
       "          &quot;OBJECTID&quot;: 600,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;USGS 3D Elevation Program (3DEP)&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Los Angeles County Los Angeles Regional Imagery Consortium (LARIAC) 2023 Quality Level 1 Lidar Collection\\u00a0&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -118.220937772,\n",
       "              34.3427737320001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-437&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.5393443350001,\n",
       "          &quot;LONGITUDE&quot;: -79.185417913,\n",
       "          &quot;OBJECTID&quot;: 601,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;North Carolina Coastal Federation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;North Carolina&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -79.185417913,\n",
       "              35.5393443350001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-439&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.5393443350001,\n",
       "          &quot;LONGITUDE&quot;: -79.185417913,\n",
       "          &quot;OBJECTID&quot;: 602,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;North Carolina Wildlife Resources Commission&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;North Carolina&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -79.185417913,\n",
       "              35.5393443350001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-438&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.5393443350001,\n",
       "          &quot;LONGITUDE&quot;: -79.185417913,\n",
       "          &quot;OBJECTID&quot;: 603,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;North Carolina Coastal Federation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;North Carolina&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -79.185417913,\n",
       "              35.5393443350001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;OR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-445&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.9387802410001,\n",
       "          &quot;LONGITUDE&quot;: -120.558560912,\n",
       "          &quot;OBJECTID&quot;: 604,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;McKenzie Watershed Alliance&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oregon&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.558560912,\n",
       "              43.9387802410001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;OR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-446&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.9387802410001,\n",
       "          &quot;LONGITUDE&quot;: -120.558560912,\n",
       "          &quot;OBJECTID&quot;: 605,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Johnson Creek Watershed Council&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oregon&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.558560912,\n",
       "              43.9387802410001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-434&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.71453,\n",
       "          &quot;LONGITUDE&quot;: -74.00712,\n",
       "          &quot;OBJECTID&quot;: 606,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Buffalo Niagara Waterkeeper&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -74.00712,\n",
       "              40.71453\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;PR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-453&quot;,\n",
       "          &quot;LATITUDE&quot;: 18.2226064980001,\n",
       "          &quot;LONGITUDE&quot;: -66.468953431,\n",
       "          &quot;OBJECTID&quot;: 607,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Isla Mar Research Expeditions&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Puerto Rico&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -66.468953431,\n",
       "              18.2226064980001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;PR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-452&quot;,\n",
       "          &quot;LATITUDE&quot;: 18.2226064980001,\n",
       "          &quot;LONGITUDE&quot;: -66.468953431,\n",
       "          &quot;OBJECTID&quot;: 608,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Protectores de Cuencas&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Puerto Rico&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -66.468953431,\n",
       "              18.2226064980001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;PR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-451&quot;,\n",
       "          &quot;LATITUDE&quot;: 18.2226064980001,\n",
       "          &quot;LONGITUDE&quot;: -66.468953431,\n",
       "          &quot;OBJECTID&quot;: 609,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Institute for Socio-Ecological Research&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Puerto Rico&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -66.468953431,\n",
       "              18.2226064980001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;PR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-455&quot;,\n",
       "          &quot;LATITUDE&quot;: 18.2226064980001,\n",
       "          &quot;LONGITUDE&quot;: -66.468953431,\n",
       "          &quot;OBJECTID&quot;: 610,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;University of Puerto Rico at Aguadilla&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Puerto Rico&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -66.468953431,\n",
       "              18.2226064980001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;TX&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-466&quot;,\n",
       "          &quot;LATITUDE&quot;: 31.462733046,\n",
       "          &quot;LONGITUDE&quot;: -99.33305009,\n",
       "          &quot;OBJECTID&quot;: 611,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;The University of Texas at Austin&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TX&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Texas&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -99.33305009,\n",
       "              31.462733046\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;TX&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-467&quot;,\n",
       "          &quot;LATITUDE&quot;: 31.462733046,\n",
       "          &quot;LONGITUDE&quot;: -99.33305009,\n",
       "          &quot;OBJECTID&quot;: 612,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;The Matagorda Bay Foundation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TX&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Texas&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -99.33305009,\n",
       "              31.462733046\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;PR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-456&quot;,\n",
       "          &quot;LATITUDE&quot;: 18.2226064980001,\n",
       "          &quot;LONGITUDE&quot;: -66.468953431,\n",
       "          &quot;OBJECTID&quot;: 613,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Franklin\\u2019s Promise Coalition&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Puerto Rico&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -66.468953431,\n",
       "              18.2226064980001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-478&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.4112518430001,\n",
       "          &quot;LONGITUDE&quot;: -120.556263187,\n",
       "          &quot;OBJECTID&quot;: 614,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Hood Canal Salmon Enhancement Group&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;VA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-474&quot;,\n",
       "          &quot;LATITUDE&quot;: 37.512820504,\n",
       "          &quot;LONGITUDE&quot;: -78.697948713,\n",
       "          &quot;OBJECTID&quot;: 615,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Mattaponi Indian Tribe and Reservation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;VA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Virginia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -78.697948713,\n",
       "              37.512820504\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;PR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-457&quot;,\n",
       "          &quot;LATITUDE&quot;: 18.2226064980001,\n",
       "          &quot;LONGITUDE&quot;: -66.468953431,\n",
       "          &quot;OBJECTID&quot;: 616,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;The Ocean Foundation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Puerto Rico&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -66.468953431,\n",
       "              18.2226064980001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;OR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-479&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.9387802410001,\n",
       "          &quot;LONGITUDE&quot;: -120.558560912,\n",
       "          &quot;OBJECTID&quot;: 617,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Lower Columbia Estuary Partnership&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oregon&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.558560912,\n",
       "              43.9387802410001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-480&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.4112518430001,\n",
       "          &quot;LONGITUDE&quot;: -120.556263187,\n",
       "          &quot;OBJECTID&quot;: 618,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Nooksack Indian Tribe&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-484&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.4112518430001,\n",
       "          &quot;LONGITUDE&quot;: -120.556263187,\n",
       "          &quot;OBJECTID&quot;: 619,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Lummi Nation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-485&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.4112518430001,\n",
       "          &quot;LONGITUDE&quot;: -120.556263187,\n",
       "          &quot;OBJECTID&quot;: 620,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Edmonds College&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-481&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.4112518430001,\n",
       "          &quot;LONGITUDE&quot;: -120.556263187,\n",
       "          &quot;OBJECTID&quot;: 621,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Lummi Nation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-486&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.4112518430001,\n",
       "          &quot;LONGITUDE&quot;: -120.556263187,\n",
       "          &quot;OBJECTID&quot;: 622,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Skagit River System Cooperative&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;WI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-490&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.644833367,\n",
       "          &quot;LONGITUDE&quot;: -89.739185424,\n",
       "          &quot;OBJECTID&quot;: 623,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;University of Wisconsin System Board of Regents&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Wisconsin&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -89.739185424,\n",
       "              44.644833367\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: null,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-487&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.4112518430001,\n",
       "          &quot;LONGITUDE&quot;: -120.556263187,\n",
       "          &quot;OBJECTID&quot;: 624,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Long Live the Kings&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;30231&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 30231.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-555&quot;,\n",
       "          &quot;LATITUDE&quot;: 46.348855766,\n",
       "          &quot;LONGITUDE&quot;: -94.200790583,\n",
       "          &quot;OBJECTID&quot;: 625,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Grand Portage&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Minnesota&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -94.2007905829999,\n",
       "              46.348855766\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;209530&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 209530.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-572&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 626,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Bay Area AQMD&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;42079&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 42079.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-573&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 627,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Monterey Bay ARD&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;158731&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 158731.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-574&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 628,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Sacramento Metro AQMD&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;655042&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 655042.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-578&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 629,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;South Coast AQMD&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;ME&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;29763&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 29763.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-594&quot;,\n",
       "          &quot;LATITUDE&quot;: 45.3152499220001,\n",
       "          &quot;LONGITUDE&quot;: -69.203947061,\n",
       "          &quot;OBJECTID&quot;: 630,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Mikmaq Nation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;ME&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Maine&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -69.203947061,\n",
       "              45.3152499220001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;ME&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;31090&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 31090.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-595&quot;,\n",
       "          &quot;LATITUDE&quot;: 45.3152499220001,\n",
       "          &quot;LONGITUDE&quot;: -69.203947061,\n",
       "          &quot;OBJECTID&quot;: 631,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Penobscot Indian Nation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;ME&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Maine&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -69.203947061,\n",
       "              45.3152499220001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;283005&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 283005.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-576&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 632,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;San Joaquin Valley APCD&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;29956&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 29956.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-596&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.3586703240001,\n",
       "          &quot;LONGITUDE&quot;: -71.718185,\n",
       "          &quot;OBJECTID&quot;: 633,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Wampanoag Tribe of Gay Head (Aquinnah)&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Massachusetts&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -71.718185,\n",
       "              42.3586703240001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;30231&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 30231.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-599&quot;,\n",
       "          &quot;LATITUDE&quot;: 46.348855766,\n",
       "          &quot;LONGITUDE&quot;: -94.200790583,\n",
       "          &quot;OBJECTID&quot;: 634,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Red Lake&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Minnesota&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -94.2007905829999,\n",
       "              46.348855766\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;43448&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 43448.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-598&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.5393443350001,\n",
       "          &quot;LONGITUDE&quot;: -79.185417913,\n",
       "          &quot;OBJECTID&quot;: 635,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Eastern Band of Cherokee Indians&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;North Carolina&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -79.185417913,\n",
       "              35.5393443350001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;30231&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 30231.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-600&quot;,\n",
       "          &quot;LATITUDE&quot;: 46.348855766,\n",
       "          &quot;LONGITUDE&quot;: -94.200790583,\n",
       "          &quot;OBJECTID&quot;: 636,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Mille Lacs&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Minnesota&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -94.2007905829999,\n",
       "              46.348855766\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;30235&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 30235.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-601&quot;,\n",
       "          &quot;LATITUDE&quot;: 46.348855766,\n",
       "          &quot;LONGITUDE&quot;: -94.200790583,\n",
       "          &quot;OBJECTID&quot;: 637,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Leech Lake&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Minnesota&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -94.2007905829999,\n",
       "              46.348855766\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;WI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;30232&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 30232.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-603&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.644833367,\n",
       "          &quot;LONGITUDE&quot;: -89.739185424,\n",
       "          &quot;OBJECTID&quot;: 638,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Forest County Potawatomi Community&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Wisconsin&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -89.739185424,\n",
       "              44.644833367\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;30231&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 30231.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-602&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.1251998340001,\n",
       "          &quot;LONGITUDE&quot;: -84.1966975,\n",
       "          &quot;OBJECTID&quot;: 639,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Keweenaw Bay Indian Community&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Michigan&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -84.1966975,\n",
       "              44.1251998340001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;OK&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;71903&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 71903.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-606&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.58268395,\n",
       "          &quot;LONGITUDE&quot;: -97.5085993609999,\n",
       "          &quot;OBJECTID&quot;: 640,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Kaw Nation of Oklahoma&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OK&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oklahoma&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -97.5085993609999,\n",
       "              35.58268395\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;OK&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;43141&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 43141.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-605&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.58268395,\n",
       "          &quot;LONGITUDE&quot;: -97.5085993609999,\n",
       "          &quot;OBJECTID&quot;: 641,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Cherokee Nation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OK&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oklahoma&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -97.5085993609999,\n",
       "              35.58268395\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;OK&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;57521&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 57521.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-607&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.58268395,\n",
       "          &quot;LONGITUDE&quot;: -97.5085993609999,\n",
       "          &quot;OBJECTID&quot;: 642,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;IT426 - Quapaw Tribe of Oklahoma&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OK&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oklahoma&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -97.5085993609999,\n",
       "              35.58268395\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NM&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;34156&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 34156.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-611&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.4213265340001,\n",
       "          &quot;LONGITUDE&quot;: -106.108403845,\n",
       "          &quot;OBJECTID&quot;: 643,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Southern Ute&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NM&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Mexico&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -106.108403845,\n",
       "              34.421326534\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;UT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;39050&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 39050.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-612&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.323725193,\n",
       "          &quot;LONGITUDE&quot;: -111.678248391,\n",
       "          &quot;OBJECTID&quot;: 644,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Northwestern Band of the Shoshone&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;UT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Utah&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.678248391,\n",
       "              39.323725193\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NE&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;TBD&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-609&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.5272703260001,\n",
       "          &quot;LONGITUDE&quot;: -99.811107307,\n",
       "          &quot;OBJECTID&quot;: 645,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Winnebago&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NE&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Nebraska&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -99.811107307,\n",
       "              41.5272703260001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;KS&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;TBD&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: null,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-608&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.484726713,\n",
       "          &quot;LONGITUDE&quot;: -98.380170629,\n",
       "          &quot;OBJECTID&quot;: 646,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Prairie Band&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;KS&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Kansas&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -98.380170629,\n",
       "              38.484726713\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NE&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;97282&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 97282.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-610&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.5272703260001,\n",
       "          &quot;LONGITUDE&quot;: -99.811107307,\n",
       "          &quot;OBJECTID&quot;: 647,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Santee Sioux Nation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NE&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Nebraska&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -99.811107307,\n",
       "              41.5272703260001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;ND&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;34196&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 34196.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-615&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.4462733400001,\n",
       "          &quot;LONGITUDE&quot;: -100.46938737,\n",
       "          &quot;OBJECTID&quot;: 648,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Spirit Lake&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;ND&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;North Dakota&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -100.46938737,\n",
       "              47.4462733400001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;UT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;33666&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 33666.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-616&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.323725193,\n",
       "          &quot;LONGITUDE&quot;: -111.678248391,\n",
       "          &quot;OBJECTID&quot;: 649,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Ute Indian&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;UT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Utah&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.678248391,\n",
       "              39.323725193\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;54186&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 54186.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-613&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.998550562,\n",
       "          &quot;LONGITUDE&quot;: -105.547816373,\n",
       "          &quot;OBJECTID&quot;: 650,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Ute Mountain Ute&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;67869&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 67869.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-618&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.293016451,\n",
       "          &quot;LONGITUDE&quot;: -111.664753988,\n",
       "          &quot;OBJECTID&quot;: 651,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Gila River EPA&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;67869&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 67869.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-619&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 652,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;La Jolla EPA&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;67869&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 67869.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-620&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 653,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Morongo EPA&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;67869&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 67869.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-622&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 654,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Pechanga EPA&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;UT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;67869&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 67869.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-621&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.323725193,\n",
       "          &quot;LONGITUDE&quot;: -111.678248391,\n",
       "          &quot;OBJECTID&quot;: 655,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Navajo EPA&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;UT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Utah&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.678248391,\n",
       "              39.323725193\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;39050&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 39050.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-614&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.0334993330001,\n",
       "          &quot;LONGITUDE&quot;: -109.645067732,\n",
       "          &quot;OBJECTID&quot;: 656,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Confederated Salish and Kootenai (CSKT)&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Montana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -109.645067732,\n",
       "              47.0334993330001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;67869&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 67869.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-623&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.293016451,\n",
       "          &quot;LONGITUDE&quot;: -111.664753988,\n",
       "          &quot;OBJECTID&quot;: 657,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Salt River EPA&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;ID&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;43990&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 43990.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-624&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.3889953940001,\n",
       "          &quot;LONGITUDE&quot;: -114.659446938,\n",
       "          &quot;OBJECTID&quot;: 658,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Coeur d&#x27;Alene&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;ID&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Idaho&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -114.659446938,\n",
       "              44.388995394\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;OR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;32763&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 32763.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-625&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.9387802410001,\n",
       "          &quot;LONGITUDE&quot;: -120.558560912,\n",
       "          &quot;OBJECTID&quot;: 659,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;CTLUSI&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oregon&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.558560912,\n",
       "              43.9387802410001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;39050&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 39050.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-617&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.0334993330001,\n",
       "          &quot;LONGITUDE&quot;: -109.645067732,\n",
       "          &quot;OBJECTID&quot;: 660,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Blackfeet Tribe&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Montana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -109.645067732,\n",
       "              47.0334993330001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;ID&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;82768&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 82768.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-627&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.3889953940001,\n",
       "          &quot;LONGITUDE&quot;: -114.659446938,\n",
       "          &quot;OBJECTID&quot;: 661,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Nez Perce&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;ID&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Idaho&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -114.659446938,\n",
       "              44.388995394\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;25145&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 25145.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-626&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.4112518430001,\n",
       "          &quot;LONGITUDE&quot;: -120.556263187,\n",
       "          &quot;OBJECTID&quot;: 662,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Makah&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;ID&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;78219&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 78219.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-629&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.3889953940001,\n",
       "          &quot;LONGITUDE&quot;: -114.659446938,\n",
       "          &quot;OBJECTID&quot;: 663,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Shoshone-Bannock&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;ID&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Idaho&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -114.659446938,\n",
       "              44.388995394\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;22838&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 22838.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-628&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.4112518430001,\n",
       "          &quot;LONGITUDE&quot;: -120.556263187,\n",
       "          &quot;OBJECTID&quot;: 664,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Quinault&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;27452&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 27452.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-630&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.4112518430001,\n",
       "          &quot;LONGITUDE&quot;: -120.556263187,\n",
       "          &quot;OBJECTID&quot;: 665,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Swinomish&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;36122&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 36122.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-631&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.4112518430001,\n",
       "          &quot;LONGITUDE&quot;: -120.556263187,\n",
       "          &quot;OBJECTID&quot;: 666,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Tulalip&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;OR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;46356&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 46356.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-632&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.9387802410001,\n",
       "          &quot;LONGITUDE&quot;: -120.558560912,\n",
       "          &quot;OBJECTID&quot;: 667,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Umatilla&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oregon&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.558560912,\n",
       "              43.9387802410001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;IL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-683&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.11404657,\n",
       "          &quot;LONGITUDE&quot;: -89.158650902,\n",
       "          &quot;OBJECTID&quot;: 668,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Metropolitan Mayors Caucus&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Illinois&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -89.158650902,\n",
       "              40.11404657\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;TX&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-684&quot;,\n",
       "          &quot;LATITUDE&quot;: 31.462733046,\n",
       "          &quot;LONGITUDE&quot;: -99.33305009,\n",
       "          &quot;OBJECTID&quot;: 669,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;North Central Texas Council of Governments&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TX&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Texas&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -99.33305009,\n",
       "              31.462733046\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;TX&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-685&quot;,\n",
       "          &quot;LATITUDE&quot;: 31.462733046,\n",
       "          &quot;LONGITUDE&quot;: -99.33305009,\n",
       "          &quot;OBJECTID&quot;: 670,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Houston-Galveston Area Council&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TX&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Texas&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -99.33305009,\n",
       "              31.462733046\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;PA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-686&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.8965116540001,\n",
       "          &quot;LONGITUDE&quot;: -77.838750776,\n",
       "          &quot;OBJECTID&quot;: 671,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Delaware Valley Regional Planning Commission&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Pennsylvania&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -77.838750776,\n",
       "              40.896511654\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-689&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.3586703240001,\n",
       "          &quot;LONGITUDE&quot;: -71.718185,\n",
       "          &quot;OBJECTID&quot;: 672,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Metropolitan Area Planning Council&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Massachusetts&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -71.718185,\n",
       "              42.3586703240001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-690&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.293016451,\n",
       "          &quot;LONGITUDE&quot;: -111.664753988,\n",
       "          &quot;OBJECTID&quot;: 673,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Maricopa Association of Governments&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-691&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 674,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Bay Area Air Quality Management District&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-694&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.4112518430001,\n",
       "          &quot;LONGITUDE&quot;: -120.556263187,\n",
       "          &quot;OBJECTID&quot;: 675,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Puget Sound Clean Air Agency&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-693&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.1251998340001,\n",
       "          &quot;LONGITUDE&quot;: -84.1966975,\n",
       "          &quot;OBJECTID&quot;: 676,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Southeast Michigan Council of Governments&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Michigan&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -84.1966975,\n",
       "              44.1251998340001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-695&quot;,\n",
       "          &quot;LATITUDE&quot;: 46.348855766,\n",
       "          &quot;LONGITUDE&quot;: -94.200790583,\n",
       "          &quot;OBJECTID&quot;: 677,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Metropolitan Council&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Minnesota&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -94.2007905829999,\n",
       "              46.348855766\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-681&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.71453,\n",
       "          &quot;LONGITUDE&quot;: -74.00712,\n",
       "          &quot;OBJECTID&quot;: 678,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;New York City Economic Development Corporation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -74.00712,\n",
       "              40.71453\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-696&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 679,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;San Diego Association of Governments&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-700&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.3679827460001,\n",
       "          &quot;LONGITUDE&quot;: -92.477746617,\n",
       "          &quot;OBJECTID&quot;: 680,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;East-West Gateway Council of Governments&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Missouri&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -92.477746617,\n",
       "              38.3679827460001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MD&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-699&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.8181992840001,\n",
       "          &quot;LONGITUDE&quot;: -76.15873,\n",
       "          &quot;OBJECTID&quot;: 681,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Baltimore Metropolitan Council&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MD&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Maryland&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -76.15873,\n",
       "              38.8181992840001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-697&quot;,\n",
       "          &quot;LATITUDE&quot;: 28.5660448950001,\n",
       "          &quot;LONGITUDE&quot;: -81.6886487899999,\n",
       "          &quot;OBJECTID&quot;: 682,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Tampa Bay Regional Planning Council&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -81.6886487899999,\n",
       "              28.5660448950001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-702&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.5393443350001,\n",
       "          &quot;LONGITUDE&quot;: -79.185417913,\n",
       "          &quot;OBJECTID&quot;: 683,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Centralina Regional Council&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;North Carolina&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -79.185417913,\n",
       "              35.5393443350001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;OR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-704&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.9387802410001,\n",
       "          &quot;LONGITUDE&quot;: -120.558560912,\n",
       "          &quot;OBJECTID&quot;: 684,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Oregon Metro&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oregon&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.558560912,\n",
       "              43.9387802410001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-698&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.998550562,\n",
       "          &quot;LONGITUDE&quot;: -105.547816373,\n",
       "          &quot;OBJECTID&quot;: 685,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Denver Regional Council of Governments&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;FL&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-701&quot;,\n",
       "          &quot;LATITUDE&quot;: 28.5660448950001,\n",
       "          &quot;LONGITUDE&quot;: -81.6886487899999,\n",
       "          &quot;OBJECTID&quot;: 686,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;East Central Florida Regional Planning Council&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;FL&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Florida&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -81.6886487899999,\n",
       "              28.5660448950001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-705&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 687,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Sacramento Metropolitan Air Quality Management District&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;PA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-706&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.8965116540001,\n",
       "          &quot;LONGITUDE&quot;: -77.838750776,\n",
       "          &quot;OBJECTID&quot;: 688,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Southwestern Pennsylvania Commission&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Pennsylvania&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -77.838750776,\n",
       "              40.896511654\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-710&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.3679827460001,\n",
       "          &quot;LONGITUDE&quot;: -92.477746617,\n",
       "          &quot;OBJECTID&quot;: 689,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Mid-America Regional Council&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Missouri&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -92.477746617,\n",
       "              38.3679827460001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-709&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.4130567990001,\n",
       "          &quot;LONGITUDE&quot;: -82.7112151859999,\n",
       "          &quot;OBJECTID&quot;: 690,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Ohio-Kentucky-Indiana Regional Council of Governments&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -82.7112151859999,\n",
       "              40.4130567990001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;IN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-712&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.919806964,\n",
       "          &quot;LONGITUDE&quot;: -86.2817934879999,\n",
       "          &quot;OBJECTID&quot;: 691,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Central Indiana Regional Development Authority&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Indiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -86.2817934879999,\n",
       "              39.919806964\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;TN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-716&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.843002697,\n",
       "          &quot;LONGITUDE&quot;: -86.3430511769999,\n",
       "          &quot;OBJECTID&quot;: 692,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Greater Nashville Regional Council&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Tennessee&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -86.3430511769999,\n",
       "              35.843002697\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-713&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.4130567990001,\n",
       "          &quot;LONGITUDE&quot;: -82.7112151859999,\n",
       "          &quot;OBJECTID&quot;: 693,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Northeast Ohio Areawide Coordinating Agency&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -82.7112151859999,\n",
       "              40.4130567990001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;RI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-718&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.48871294,\n",
       "          &quot;LONGITUDE&quot;: -71.4543194669999,\n",
       "          &quot;OBJECTID&quot;: 694,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Southeastern Regional Planning &amp; Economic Development District&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;RI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Rhode Island&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -71.4543194669999,\n",
       "              41.48871294\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;VA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-717&quot;,\n",
       "          &quot;LATITUDE&quot;: 37.512820504,\n",
       "          &quot;LONGITUDE&quot;: -78.697948713,\n",
       "          &quot;OBJECTID&quot;: 695,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Hampton Roads Planning District Commission&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;VA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Virginia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -78.697948713,\n",
       "              37.512820504\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;WI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-720&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.644833367,\n",
       "          &quot;LONGITUDE&quot;: -89.739185424,\n",
       "          &quot;OBJECTID&quot;: 696,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Southeastern Wisconsin Regional Planning Commission&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Wisconsin&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -89.739185424,\n",
       "              44.644833367\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;OK&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-721&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.58268395,\n",
       "          &quot;LONGITUDE&quot;: -97.5085993609999,\n",
       "          &quot;OBJECTID&quot;: 697,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Association of Central Oklahoma Governments&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OK&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oklahoma&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -97.5085993609999,\n",
       "              35.58268395\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;TN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-723&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.843002697,\n",
       "          &quot;LONGITUDE&quot;: -86.3430511769999,\n",
       "          &quot;OBJECTID&quot;: 698,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Memphis-Shelby County Office of Sustainability &amp; Resilience&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;TN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Tennessee&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -86.3430511769999,\n",
       "              35.843002697\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-722&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.5393443350001,\n",
       "          &quot;LONGITUDE&quot;: -79.185417913,\n",
       "          &quot;OBJECTID&quot;: 699,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Triangle J Council of Governments&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;North Carolina&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -79.185417913,\n",
       "              35.5393443350001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;VA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-724&quot;,\n",
       "          &quot;LATITUDE&quot;: 37.512820504,\n",
       "          &quot;LONGITUDE&quot;: -78.697948713,\n",
       "          &quot;OBJECTID&quot;: 700,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Richmond Regional Planning District Commission&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;VA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Virginia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -78.697948713,\n",
       "              37.512820504\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;LA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-726&quot;,\n",
       "          &quot;LATITUDE&quot;: 30.1858461670001,\n",
       "          &quot;LONGITUDE&quot;: -91.42642,\n",
       "          &quot;OBJECTID&quot;: 701,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;New Orleans Regional Planning Commission&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;LA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Louisiana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -91.42642,\n",
       "              30.1858461670001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-728&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.57350273,\n",
       "          &quot;LONGITUDE&quot;: -72.738305908,\n",
       "          &quot;OBJECTID&quot;: 702,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Capitol Region Council of Governments&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Connecticut&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -72.738305908,\n",
       "              41.57350273\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-732&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.1251998340001,\n",
       "          &quot;LONGITUDE&quot;: -84.1966975,\n",
       "          &quot;OBJECTID&quot;: 703,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Grand Valley Metro Council&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Michigan&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -84.1966975,\n",
       "              44.1251998340001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;OK&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-735&quot;,\n",
       "          &quot;LATITUDE&quot;: 35.58268395,\n",
       "          &quot;LONGITUDE&quot;: -97.5085993609999,\n",
       "          &quot;OBJECTID&quot;: 704,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Indian Nations Council of Governments&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OK&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oklahoma&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -97.5085993609999,\n",
       "              35.58268395\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-736&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 705,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Fresno Council of Governments&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-737&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.3586703240001,\n",
       "          &quot;LONGITUDE&quot;: -71.718185,\n",
       "          &quot;OBJECTID&quot;: 706,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Central Massachusetts Regional Planning Council&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Massachusetts&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -71.718185,\n",
       "              42.3586703240001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-729&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.71453,\n",
       "          &quot;LONGITUDE&quot;: -74.00712,\n",
       "          &quot;OBJECTID&quot;: 707,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Niagara Frontier Transportation Authority&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -74.00712,\n",
       "              40.71453\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-731&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.71453,\n",
       "          &quot;LONGITUDE&quot;: -74.00712,\n",
       "          &quot;OBJECTID&quot;: 708,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Genesee/Finger Lakes Regional Planning Council&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -74.00712,\n",
       "              40.71453\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;SC&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-740&quot;,\n",
       "          &quot;LATITUDE&quot;: 33.9038634090001,\n",
       "          &quot;LONGITUDE&quot;: -80.893752347,\n",
       "          &quot;OBJECTID&quot;: 709,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Appalachian Council of Governments&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;SC&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;South Carolina&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.893752347,\n",
       "              33.903863409\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-739&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.57350273,\n",
       "          &quot;LONGITUDE&quot;: -72.738305908,\n",
       "          &quot;OBJECTID&quot;: 710,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Connecticut Metropolitan Council of Governments&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Connecticut&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -72.738305908,\n",
       "              41.57350273\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;PA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-749&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.8965116540001,\n",
       "          &quot;LONGITUDE&quot;: -77.838750776,\n",
       "          &quot;OBJECTID&quot;: 711,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Lehigh Valley Planning Commission&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;PA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Pennsylvania&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -77.838750776,\n",
       "              40.896511654\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-750&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 712,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;County of Ventura County Executive Office Sustainability Division&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-748&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.57350273,\n",
       "          &quot;LONGITUDE&quot;: -72.738305908,\n",
       "          &quot;OBJECTID&quot;: 713,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;South Central Regional Council of Governments&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Connecticut&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -72.738305908,\n",
       "              41.57350273\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-753&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.4130567990001,\n",
       "          &quot;LONGITUDE&quot;: -82.7112151859999,\n",
       "          &quot;OBJECTID&quot;: 714,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Miami Valley Regional Planning Commission&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -82.7112151859999,\n",
       "              40.4130567990001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;IA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-756&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.074698104,\n",
       "          &quot;LONGITUDE&quot;: -93.499972411,\n",
       "          &quot;OBJECTID&quot;: 715,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;East Central Iowa Council of Governments&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;IA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Iowa&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -93.499972411,\n",
       "              42.074698104\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;KY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-755&quot;,\n",
       "          &quot;LATITUDE&quot;: 37.5272325240001,\n",
       "          &quot;LONGITUDE&quot;: -85.287620068,\n",
       "          &quot;OBJECTID&quot;: 716,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Lexington-Fayette Urban County Government&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;KY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Kentucky&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -85.287620068,\n",
       "              37.527232524\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-743&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.71453,\n",
       "          &quot;LONGITUDE&quot;: -74.00712,\n",
       "          &quot;OBJECTID&quot;: 717,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Climate Pollution Reduction Grants: Planning Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Capital District Regional Planning Commission&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -74.00712,\n",
       "              40.71453\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;AK&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-760&quot;,\n",
       "          &quot;LATITUDE&quot;: 64.8080878980001,\n",
       "          &quot;LONGITUDE&quot;: -151.004157815,\n",
       "          &quot;OBJECTID&quot;: 718,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Ecosystem Restoration&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Birch Creek and Fortymile Wild &amp; Scenic River&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AK&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Alaska&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -151.004157815,\n",
       "              64.8080878980001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;ID&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;9100000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 9100000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-764&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.3889953940001,\n",
       "          &quot;LONGITUDE&quot;: -114.659446938,\n",
       "          &quot;OBJECTID&quot;: 719,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Ecosystem Restoration&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Upper Salmon River&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;ID&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Idaho&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -114.659446938,\n",
       "              44.388995394\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;ID&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;7850000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 7850000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-765&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.3889953940001,\n",
       "          &quot;LONGITUDE&quot;: -114.659446938,\n",
       "          &quot;OBJECTID&quot;: 720,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Ecosystem Restoration&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;East Idaho Rivers and Plains&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;ID&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Idaho&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -114.659446938,\n",
       "              44.388995394\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;ID&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;10000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 10000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-766&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.3889953940001,\n",
       "          &quot;LONGITUDE&quot;: -114.659446938,\n",
       "          &quot;OBJECTID&quot;: 721,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Ecosystem Restoration&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Snake River Plain&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;ID&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Idaho&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -114.659446938,\n",
       "              44.388995394\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NV&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;6000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 6000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-767&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.356482037,\n",
       "          &quot;LONGITUDE&quot;: -116.655436405,\n",
       "          &quot;OBJECTID&quot;: 722,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Ecosystem Restoration&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Humboldt O&#x27;Neil Basin&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NV&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Nevada&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -116.655436405,\n",
       "              39.356482037\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NV&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;6000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 6000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-768&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.356482037,\n",
       "          &quot;LONGITUDE&quot;: -116.655436405,\n",
       "          &quot;OBJECTID&quot;: 723,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Ecosystem Restoration&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Montana Mountains&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NV&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Nevada&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -116.655436405,\n",
       "              39.356482037\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;OR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-769&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.9387802410001,\n",
       "          &quot;LONGITUDE&quot;: -120.558560912,\n",
       "          &quot;OBJECTID&quot;: 724,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Ecosystem Restoration&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Southeast Oregon Sagebrush&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oregon&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.558560912,\n",
       "              43.9387802410001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;9980000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 9980000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-763&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.0334993330001,\n",
       "          &quot;LONGITUDE&quot;: -109.645067732,\n",
       "          &quot;OBJECTID&quot;: 725,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Ecosystem Restoration&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Missouri Headwaters, Southwest Montana&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Montana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -109.645067732,\n",
       "              47.0334993330001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;6760000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 6760000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-761&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.0334993330001,\n",
       "          &quot;LONGITUDE&quot;: -109.645067732,\n",
       "          &quot;OBJECTID&quot;: 726,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Ecosystem Restoration&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;The Hi-Line Sagebrush Anchor, North Central Montana&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Montana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -109.645067732,\n",
       "              47.0334993330001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;OR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-770&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.9387802410001,\n",
       "          &quot;LONGITUDE&quot;: -120.558560912,\n",
       "          &quot;OBJECTID&quot;: 727,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Ecosystem Restoration&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Southwest Oregon&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oregon&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.558560912,\n",
       "              43.9387802410001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;9540000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 9540000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-762&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.0334993330001,\n",
       "          &quot;LONGITUDE&quot;: -109.645067732,\n",
       "          &quot;OBJECTID&quot;: 728,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Ecosystem Restoration&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Blackfoot-Clark Fork&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Montana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -109.645067732,\n",
       "              47.0334993330001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5590000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5590000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-772&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.293016451,\n",
       "          &quot;LONGITUDE&quot;: -111.664753988,\n",
       "          &quot;OBJECTID&quot;: 729,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Ecosystem Restoration&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Yanawant&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;7600000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 7600000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-771&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 730,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Ecosystem Restoration&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Cosumnes Watershed&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;WY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;10000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 10000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-775&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.999604339,\n",
       "          &quot;LONGITUDE&quot;: -107.551610158,\n",
       "          &quot;OBJECTID&quot;: 731,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Ecosystem Restoration&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;La Barge&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Wyoming&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -107.551610158,\n",
       "              42.999604339\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;UT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;9730000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 9730000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-773&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.323725193,\n",
       "          &quot;LONGITUDE&quot;: -111.678248391,\n",
       "          &quot;OBJECTID&quot;: 732,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Ecosystem Restoration&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Color Country Converging&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;UT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Utah&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.678248391,\n",
       "              39.323725193\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;WY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;10000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 10000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-776&quot;,\n",
       "          &quot;LATITUDE&quot;: 42.999604339,\n",
       "          &quot;LONGITUDE&quot;: -107.551610158,\n",
       "          &quot;OBJECTID&quot;: 733,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Ecosystem Restoration&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Muddy Creek&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Wyoming&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -107.551610158,\n",
       "              42.999604339\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;UT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;9600000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 9600000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-774&quot;,\n",
       "          &quot;LATITUDE&quot;: 39.323725193,\n",
       "          &quot;LONGITUDE&quot;: -111.678248391,\n",
       "          &quot;OBJECTID&quot;: 734,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Ecosystem Restoration&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Upper Bear River&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;UT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Utah&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.678248391,\n",
       "              39.323725193\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;9590000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 9590000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-780&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.293016451,\n",
       "          &quot;LONGITUDE&quot;: -111.664753988,\n",
       "          &quot;OBJECTID&quot;: 735,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Ecosystem Restoration&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Sky Islands&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NM&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;7600000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 7600000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-779&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.4213265340001,\n",
       "          &quot;LONGITUDE&quot;: -106.108403845,\n",
       "          &quot;OBJECTID&quot;: 736,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Ecosystem Restoration&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Lower Pecos&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NM&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Mexico&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -106.108403845,\n",
       "              34.421326534\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;6000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 6000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-885&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.293016451,\n",
       "          &quot;LONGITUDE&quot;: -111.664753988,\n",
       "          &quot;OBJECTID&quot;: 737,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Drought Mitigation&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Water Savings Agreement with Metropolitan Water District&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;16720000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 16720000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-886&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.293016451,\n",
       "          &quot;LONGITUDE&quot;: -111.664753988,\n",
       "          &quot;OBJECTID&quot;: 738,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Drought Mitigation&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Fort McDowell Yavapai Nation System Conservation Implementation Agreement Indian Tribe (SCIA)&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;AR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;6000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 6000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1087&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.8999237250001,\n",
       "          &quot;LONGITUDE&quot;: -92.4388847,\n",
       "          &quot;OBJECTID&quot;: 739,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Forest Legacy Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Maumelle Water Excellence, Phase 2&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arkansas&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -92.4388846999999,\n",
       "              34.8999237250001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;AR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1455000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1455000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1088&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.8999237250001,\n",
       "          &quot;LONGITUDE&quot;: -92.4388847,\n",
       "          &quot;OBJECTID&quot;: 740,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Forest Legacy Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;White River Headwaters Preserve Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arkansas&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -92.4388846999999,\n",
       "              34.8999237250001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-777&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.998550562,\n",
       "          &quot;LONGITUDE&quot;: -105.547816373,\n",
       "          &quot;OBJECTID&quot;: 741,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Ecosystem Restoration&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;North Park&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;6100000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 6100000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-778&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.998550562,\n",
       "          &quot;LONGITUDE&quot;: -105.547816373,\n",
       "          &quot;OBJECTID&quot;: 742,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Ecosystem Restoration&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;San Luis Valley&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1900000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1900000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1089&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.293016451,\n",
       "          &quot;LONGITUDE&quot;: -111.664753988,\n",
       "          &quot;OBJECTID&quot;: 743,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Forest Legacy Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Bull Basin Forest Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;OR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;460000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 460000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1097&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.9387802410001,\n",
       "          &quot;LONGITUDE&quot;: -120.558560912,\n",
       "          &quot;OBJECTID&quot;: 744,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Forest Legacy Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Minam Conservation &amp; Connectivity Project, Phase 2&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oregon&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.558560912,\n",
       "              43.9387802410001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MS&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;7180000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 7180000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1095&quot;,\n",
       "          &quot;LATITUDE&quot;: 32.7239777990001,\n",
       "          &quot;LONGITUDE&quot;: -89.657175808,\n",
       "          &quot;OBJECTID&quot;: 745,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Forest Legacy Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Wolf River Forest Conservation Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MS&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Mississippi&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -89.657175808,\n",
       "              32.7239777990001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;OH&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2870000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2870000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1096&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.4130567990001,\n",
       "          &quot;LONGITUDE&quot;: -82.7112151859999,\n",
       "          &quot;OBJECTID&quot;: 746,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Forest Legacy Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Pike Forest Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OH&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Ohio&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -82.7112151859999,\n",
       "              40.4130567990001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;3620000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 3620000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1092&quot;,\n",
       "          &quot;LATITUDE&quot;: 41.57350273,\n",
       "          &quot;LONGITUDE&quot;: -72.738305908,\n",
       "          &quot;OBJECTID&quot;: 747,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Forest Legacy Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;The Last Green Valley Forest Legacy Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Connecticut&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -72.738305908,\n",
       "              41.57350273\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;SD&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1490000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1490000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1099&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.436128,\n",
       "          &quot;LONGITUDE&quot;: -100.230536743,\n",
       "          &quot;OBJECTID&quot;: 748,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Forest Legacy Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Big Sioux River Forest&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;SD&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;South Dakota&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -100.230536743,\n",
       "              44.436128\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;OR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;10245000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 10245000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1098&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.9387802410001,\n",
       "          &quot;LONGITUDE&quot;: -120.558560912,\n",
       "          &quot;OBJECTID&quot;: 749,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Forest Legacy Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Tualatin Mountain Forest Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oregon&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.558560912,\n",
       "              43.9387802410001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;VI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5910000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5910000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1102&quot;,\n",
       "          &quot;LATITUDE&quot;: 17.728114454,\n",
       "          &quot;LONGITUDE&quot;: -64.8190875,\n",
       "          &quot;OBJECTID&quot;: 750,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Forest Legacy Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Inner Brass Island Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;VI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;U.S. Virgin Islands&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -64.8190875,\n",
       "              17.728114454\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;WV&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1104&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.6424149370001,\n",
       "          &quot;LONGITUDE&quot;: -80.613616641,\n",
       "          &quot;OBJECTID&quot;: 751,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Forest Legacy Program&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;South Fork Lost River Phase 4&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WV&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;West Virginia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -80.613616641,\n",
       "              38.6424149370001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;56500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 56500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1164&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.293016451,\n",
       "          &quot;LONGITUDE&quot;: -111.664753988,\n",
       "          &quot;OBJECTID&quot;: 752,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Hazardous Fuels Reduction Projects in Wildland Urban Interface&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Four Forests Restoration Initiative&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;OR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;7100000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 7100000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1165&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.9387802410001,\n",
       "          &quot;LONGITUDE&quot;: -120.558560912,\n",
       "          &quot;OBJECTID&quot;: 753,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Hazardous Fuels Reduction Projects in Wildland Urban Interface&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Central Oregon Landscape&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oregon&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.558560912,\n",
       "              43.9387802410001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;10800000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 10800000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1166&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.4112518430001,\n",
       "          &quot;LONGITUDE&quot;: -120.556263187,\n",
       "          &quot;OBJECTID&quot;: 754,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Hazardous Fuels Reduction Projects in Wildland Urban Interface&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Central Washington Initiative&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NM&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;5100000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 5100000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1168&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.4213265340001,\n",
       "          &quot;LONGITUDE&quot;: -106.108403845,\n",
       "          &quot;OBJECTID&quot;: 755,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Hazardous Fuels Reduction Projects in Wildland Urban Interface&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Enchanted Circle&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NM&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Mexico&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -106.108403845,\n",
       "              34.421326534\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;133500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 133500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1170&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 756,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Hazardous Fuels Reduction Projects in Wildland Urban Interface&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;North Yuba Landscape&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;ID&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;22400000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 22400000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1172&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.3889953940001,\n",
       "          &quot;LONGITUDE&quot;: -114.659446938,\n",
       "          &quot;OBJECTID&quot;: 757,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Hazardous Fuels Reduction Projects in Wildland Urban Interface&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Southwest Idaho Landscape&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;ID&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Idaho&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -114.659446938,\n",
       "              44.388995394\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;33000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 33000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1173&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 758,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Hazardous Fuels Reduction Projects in Wildland Urban Interface&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Stanislaus Landscape&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;AK&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;793000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 793000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1223&quot;,\n",
       "          &quot;LATITUDE&quot;: 64.8080878980001,\n",
       "          &quot;LONGITUDE&quot;: -151.004157815,\n",
       "          &quot;OBJECTID&quot;: 759,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Enhancing Climate Change Resilience and Food Security Through Co-Stewardship Capacity Building&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AK&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Alaska&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -151.004157815,\n",
       "              64.8080878980001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;AK&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;U.S. Geological Survey&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;15534&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 15534.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1226&quot;,\n",
       "          &quot;LATITUDE&quot;: 64.8080878980001,\n",
       "          &quot;LONGITUDE&quot;: -151.004157815,\n",
       "          &quot;OBJECTID&quot;: 760,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;USGS 3D Elevation Program (3DEP)&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Lake and Peninsula Borough Lidar\\u00a0&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AK&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Alaska&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -151.004157815,\n",
       "              64.8080878980001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Forest Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;21800000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 21800000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1167&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.998550562,\n",
       "          &quot;LONGITUDE&quot;: -105.547816373,\n",
       "          &quot;OBJECTID&quot;: 761,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Hazardous Fuels Reduction Projects in Wildland Urban Interface&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Colorado Front Range&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;311000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 311000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1233&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.1251998340001,\n",
       "          &quot;LONGITUDE&quot;: -84.1966975,\n",
       "          &quot;OBJECTID&quot;: 762,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Mitigation of high priority Abandoned Mine Lands features in Keweenaw\\nNational Historical Park&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Michigan&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -84.1966975,\n",
       "              44.1251998340001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MD&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;446000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 446000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1236&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.8181992840001,\n",
       "          &quot;LONGITUDE&quot;: -76.15873,\n",
       "          &quot;OBJECTID&quot;: 763,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Promote Climate Resilience in Priority Forests Using Integrated Forest Management&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MD&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Maryland&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -76.15873,\n",
       "              38.8181992840001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;AK&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;525000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 525000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1244&quot;,\n",
       "          &quot;LATITUDE&quot;: 64.8080878980001,\n",
       "          &quot;LONGITUDE&quot;: -151.004157815,\n",
       "          &quot;OBJECTID&quot;: 764,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Facilitate planning for potential Wood Bison recovery in eastern Alaska&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AK&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Alaska&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -151.004157815,\n",
       "              64.8080878980001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;50000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 50000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1248&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.293016451,\n",
       "          &quot;LONGITUDE&quot;: -111.664753988,\n",
       "          &quot;OBJECTID&quot;: 765,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Drought Mitigation&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Gila River Indian Community (GRIC)&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;3888000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 3888000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1249&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 766,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Drought Mitigation&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;GM Gabrych Family Limited Partnership&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;22400000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 22400000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1251&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.293016451,\n",
       "          &quot;LONGITUDE&quot;: -111.664753988,\n",
       "          &quot;OBJECTID&quot;: 767,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Drought Mitigation&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;ASARCO&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;AZ&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;7681000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 7681000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1252&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.293016451,\n",
       "          &quot;LONGITUDE&quot;: -111.664753988,\n",
       "          &quot;OBJECTID&quot;: 768,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Drought Mitigation&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;San Carlos Apache Tribe&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AZ&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Arizona&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1699000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1699000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1255&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 769,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Mitigation of high priority Abandoned Mine Lands features in Death Valley National Park&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;4200000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 4200000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1257&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 770,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conduct Comprehensive Environmental Response, Compensation, and Liability Act (CERCLA) Removal Action at El Capitan EDL #171&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;HI&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2900000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2900000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1256&quot;,\n",
       "          &quot;LATITUDE&quot;: 21.439542579,\n",
       "          &quot;LONGITUDE&quot;: -157.94363193,\n",
       "          &quot;OBJECTID&quot;: 771,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Prevent Extinction of Hawaii Forest Birds\\u00a0&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;HI&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Hawaii&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -157.94363193,\n",
       "              21.439542579\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;AK&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1450000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1450000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2261&quot;,\n",
       "          &quot;LATITUDE&quot;: 64.8080878980001,\n",
       "          &quot;LONGITUDE&quot;: -151.004157815,\n",
       "          &quot;OBJECTID&quot;: 772,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation And Ecosystem Restoration - Fortymile and Ikh\\u00e8enjik River - Birch Creek, AK&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;AK&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Alaska&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -151.004157815,\n",
       "              64.8080878980001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;300000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 300000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2264&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 773,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation And Ecosystem Restoration - Cosumnes Watershed, CA&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;300000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 300000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2265&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 774,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation And Ecosystem Restoration - Cosumnes Watershed, CA&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;325000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 325000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2266&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 775,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation And Ecosystem Restoration - Cosumnes Watershed, CA&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;250000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 250000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2267&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 776,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation And Ecosystem Restoration - Cosumnes Watershed, CA&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;150000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 150000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2268&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 777,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation And Ecosystem Restoration - Cosumnes Watershed, CA&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;300000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 300000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-1243&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.0334993330001,\n",
       "          &quot;LONGITUDE&quot;: -109.645067732,\n",
       "          &quot;OBJECTID&quot;: 778,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Advance Bison Reintroduction at Glacier National Park&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Montana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -109.645067732,\n",
       "              47.0334993330001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;275000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 275000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2269&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 779,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation And Ecosystem Restoration - Cosumnes Watershed, CA&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2270&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.998550562,\n",
       "          &quot;LONGITUDE&quot;: -105.547816373,\n",
       "          &quot;OBJECTID&quot;: 780,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation And Ecosystem Restoration - San Luis Valley, CO&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;35000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 35000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2271&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.998550562,\n",
       "          &quot;LONGITUDE&quot;: -105.547816373,\n",
       "          &quot;OBJECTID&quot;: 781,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation And Ecosystem Restoration - San Luis Valley, CO&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2273&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.998550562,\n",
       "          &quot;LONGITUDE&quot;: -105.547816373,\n",
       "          &quot;OBJECTID&quot;: 782,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation And Ecosystem Restoration - San Luis Valley, CO&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;200000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 200000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2272&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.998550562,\n",
       "          &quot;LONGITUDE&quot;: -105.547816373,\n",
       "          &quot;OBJECTID&quot;: 783,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation And Ecosystem Restoration - San Luis Valley, CO&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;25000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 25000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2274&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.998550562,\n",
       "          &quot;LONGITUDE&quot;: -105.547816373,\n",
       "          &quot;OBJECTID&quot;: 784,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation And Ecosystem Restoration - San Luis Valley, CO&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;50000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 50000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2275&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.998550562,\n",
       "          &quot;LONGITUDE&quot;: -105.547816373,\n",
       "          &quot;OBJECTID&quot;: 785,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation And Ecosystem Restoration - San Luis Valley, CO&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;50000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 50000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2276&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.998550562,\n",
       "          &quot;LONGITUDE&quot;: -105.547816373,\n",
       "          &quot;OBJECTID&quot;: 786,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation And Ecosystem Restoration - San Luis Valley, CO&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;100000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 100000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2277&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.998550562,\n",
       "          &quot;LONGITUDE&quot;: -105.547816373,\n",
       "          &quot;OBJECTID&quot;: 787,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation And Ecosystem Restoration - San Luis Valley, CO&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;30000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 30000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2278&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.998550562,\n",
       "          &quot;LONGITUDE&quot;: -105.547816373,\n",
       "          &quot;OBJECTID&quot;: 788,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation And Ecosystem Restoration - San Luis Valley, CO&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;20000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 20000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2279&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.998550562,\n",
       "          &quot;LONGITUDE&quot;: -105.547816373,\n",
       "          &quot;OBJECTID&quot;: 789,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation And Ecosystem Restoration - San Luis Valley, CO&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;89800&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 89800.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2281&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.998550562,\n",
       "          &quot;LONGITUDE&quot;: -105.547816373,\n",
       "          &quot;OBJECTID&quot;: 790,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation And Ecosystem Restoration - North Park, CO&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;332500&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 332500.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2280&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.998550562,\n",
       "          &quot;LONGITUDE&quot;: -105.547816373,\n",
       "          &quot;OBJECTID&quot;: 791,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation And Ecosystem Restoration - North Park, CO&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;ID&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;160000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 160000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2284&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.3889953940001,\n",
       "          &quot;LONGITUDE&quot;: -114.659446938,\n",
       "          &quot;OBJECTID&quot;: 792,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation And Ecosystem Restoration - Snake River Plain, ID&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;ID&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Idaho&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -114.659446938,\n",
       "              44.388995394\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;621500&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 621500.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2282&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.998550562,\n",
       "          &quot;LONGITUDE&quot;: -105.547816373,\n",
       "          &quot;OBJECTID&quot;: 793,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation And Ecosystem Restoration - North Park, CO&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CO&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;85000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 85000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2283&quot;,\n",
       "          &quot;LATITUDE&quot;: 38.998550562,\n",
       "          &quot;LONGITUDE&quot;: -105.547816373,\n",
       "          &quot;OBJECTID&quot;: 794,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation And Ecosystem Restoration - North Park, CO&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CO&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Colorado&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NM&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;4000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 4000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2288&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.4213265340001,\n",
       "          &quot;LONGITUDE&quot;: -106.108403845,\n",
       "          &quot;OBJECTID&quot;: 795,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation And Ecosystem Restoration - Lower Pecos Watershed Restoration, NM&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NM&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Mexico&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -106.108403845,\n",
       "              34.421326534\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;621000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 621000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2300&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.4112518430001,\n",
       "          &quot;LONGITUDE&quot;: -120.556263187,\n",
       "          &quot;OBJECTID&quot;: 796,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Trap and transport of adult salmon and juvenile outmigration studies upstream of Chief Joseph and Grand Coulee Dams.&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;ID&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;575000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 575000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2301&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.3889953940001,\n",
       "          &quot;LONGITUDE&quot;: -114.659446938,\n",
       "          &quot;OBJECTID&quot;: 797,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Phase 2 Feasibility Studies for Salmon Reintroduction: Evaluation of downstream movement and survival of juvenile Chinook salmon in the upper Columbia basin.&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;ID&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Idaho&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -114.659446938,\n",
       "              44.388995394\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2285&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.0334993330001,\n",
       "          &quot;LONGITUDE&quot;: -109.645067732,\n",
       "          &quot;OBJECTID&quot;: 798,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation And Ecosystem Restoration - Blackfoot Clark Fork, MT&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Montana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -109.645067732,\n",
       "              47.0334993330001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2286&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.0334993330001,\n",
       "          &quot;LONGITUDE&quot;: -109.645067732,\n",
       "          &quot;OBJECTID&quot;: 799,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation And Ecosystem Restoration - Blackfoot Clark Fork, MT&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Montana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -109.645067732,\n",
       "              47.0334993330001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;OR&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2700000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2700000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2302&quot;,\n",
       "          &quot;LATITUDE&quot;: 43.9387802410001,\n",
       "          &quot;LONGITUDE&quot;: -120.558560912,\n",
       "          &quot;OBJECTID&quot;: 800,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;West Fork Canyon Creek Restoration Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;OR&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Oregon&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.558560912,\n",
       "              43.9387802410001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;3610000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 3610000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2303&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.4112518430001,\n",
       "          &quot;LONGITUDE&quot;: -120.556263187,\n",
       "          &quot;OBJECTID&quot;: 801,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Investing in Coastal Communities and Climate Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Cabin and Johnson Creek Restoration Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;VA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;132914&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 132914.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2741&quot;,\n",
       "          &quot;LATITUDE&quot;: 37.512820504,\n",
       "          &quot;LONGITUDE&quot;: -78.697948713,\n",
       "          &quot;OBJECTID&quot;: 802,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Tribal Climate Resilience: Fish Hatchery Operations and Maintenance&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Rappahannock Mobile Aquaculture Unit (MAU)&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;VA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Virginia&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -78.697948713,\n",
       "              37.512820504\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MN&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;2000000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 2000000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2742&quot;,\n",
       "          &quot;LATITUDE&quot;: 46.348855766,\n",
       "          &quot;LONGITUDE&quot;: -94.200790583,\n",
       "          &quot;OBJECTID&quot;: 803,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Tribal Climate Resilience: Fish Hatchery Operations and Maintenance&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Mille Lacs Construction of a Multiple-Species Fish Hatchery&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MN&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Minnesota&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -94.2007905829999,\n",
       "              46.348855766\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;MT&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Land Management and National Park Service&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Parks and Conservation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;500000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 500000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2287&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.0334993330001,\n",
       "          &quot;LONGITUDE&quot;: -109.645067732,\n",
       "          &quot;OBJECTID&quot;: 804,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Conservation and Resilience&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Conservation And Ecosystem Restoration - Blackfoot Clark Fork, MT&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;MT&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Montana&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -109.645067732,\n",
       "              47.0334993330001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;147395&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 147395.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2744&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.4112518430001,\n",
       "          &quot;LONGITUDE&quot;: -120.556263187,\n",
       "          &quot;OBJECTID&quot;: 805,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Tribal Climate Resilience: Fish Hatchery Operations and Maintenance&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Squaxin Island Net Pen Storage Building&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;937684&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 937684.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2745&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.4112518430001,\n",
       "          &quot;LONGITUDE&quot;: -120.556263187,\n",
       "          &quot;OBJECTID&quot;: 806,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Tribal Climate Resilience: Fish Hatchery Operations and Maintenance&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Sauk-Suiattle Salmon Hatchery Building&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;ID&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;204646&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 204646.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2746&quot;,\n",
       "          &quot;LATITUDE&quot;: 44.3889953940001,\n",
       "          &quot;LONGITUDE&quot;: -114.659446938,\n",
       "          &quot;OBJECTID&quot;: 807,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Tribal Climate Resilience: Fish Hatchery Operations and Maintenance&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Nez Perce Coho Salmon Acclimation Tanks&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;ID&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Idaho&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -114.659446938,\n",
       "              44.388995394\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NY&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Office of Air and Radiation&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;43000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 43000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2306&quot;,\n",
       "          &quot;LATITUDE&quot;: 40.71453,\n",
       "          &quot;LONGITUDE&quot;: -74.00712,\n",
       "          &quot;OBJECTID&quot;: 808,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Funding to Address Air Pollution: Clean Air Act Grants&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: null,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NY&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New York&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Formula&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -74.00712,\n",
       "              40.71453\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;1290000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 1290000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2747&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.4112518430001,\n",
       "          &quot;LONGITUDE&quot;: -120.556263187,\n",
       "          &quot;OBJECTID&quot;: 809,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Tribal Climate Resilience: Fish Hatchery Operations and Maintenance&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Tulalip Tribes Battle Creek Hatchery Design and Site Preparation&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;269988&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 269988.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2748&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.4112518430001,\n",
       "          &quot;LONGITUDE&quot;: -120.556263187,\n",
       "          &quot;OBJECTID&quot;: 810,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Tribal Climate Resilience: Fish Hatchery Operations and Maintenance&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Colville Water Improvement and Summer Steelhead Kelt Tank Construction&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;WA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;3150287&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 3150287.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2749&quot;,\n",
       "          &quot;LATITUDE&quot;: 47.4112518430001,\n",
       "          &quot;LONGITUDE&quot;: -120.556263187,\n",
       "          &quot;OBJECTID&quot;: 811,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Tribal Climate Resilience: Fish Hatchery Operations and Maintenance&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Colville White Sturgeon Rearing Facility&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;WA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;Washington&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;CA&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;689298&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 689298.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2750&quot;,\n",
       "          &quot;LATITUDE&quot;: 36.374105693,\n",
       "          &quot;LONGITUDE&quot;: -119.27023,\n",
       "          &quot;OBJECTID&quot;: 812,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Tribal Climate Resilience: Fish Hatchery Operations and Maintenance&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Hoopa Valley Hatchery Facility Refurbishment and Expansion&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;CA&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;California&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;ADDRESS_GEOCODE&quot;: &quot;NM&quot;,\n",
       "          &quot;AGENCY_NAME&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;BUREAU_NAME&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;CATEGORY&quot;: &quot;Climate Resilience&quot;,\n",
       "          &quot;CITY&quot;: null,\n",
       "          &quot;COUNTY&quot;: null,\n",
       "          &quot;FUNDING&quot;: &quot;740000&quot;,\n",
       "          &quot;FUNDING_NUMERIC&quot;: 740000.0,\n",
       "          &quot;FUNDING_SOURCE&quot;: &quot;IRA&quot;,\n",
       "          &quot;ID&quot;: &quot;S-2751&quot;,\n",
       "          &quot;LATITUDE&quot;: 34.4213265340001,\n",
       "          &quot;LONGITUDE&quot;: -106.108403845,\n",
       "          &quot;OBJECTID&quot;: 813,\n",
       "          &quot;PROGRAM_NAME&quot;: &quot;Tribal Climate Resilience: Fish Hatchery Operations and Maintenance&quot;,\n",
       "          &quot;PROJECT_NAME&quot;: &quot;Mescalero Tank and Waterline Enhancement Project&quot;,\n",
       "          &quot;STATE_ABBR&quot;: &quot;NM&quot;,\n",
       "          &quot;STATE_NAME&quot;: &quot;New Mexico&quot;,\n",
       "          &quot;SUBCATEGORY&quot;: null,\n",
       "          &quot;TYPE&quot;: &quot;Discretionary&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              -106.108403845,\n",
       "              34.421326534\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;Point&quot;\n",
       "          }\n",
       "        }\n",
       "      ],\n",
       "      &quot;elevationScale&quot;: 0.01,\n",
       "      &quot;getElevation&quot;: &quot;@@=FUNDING_NUMERIC&quot;,\n",
       "      &quot;getFillColor&quot;: [\n",
       "        256,\n",
       "        256,\n",
       "        0,\n",
       "        140\n",
       "      ],\n",
       "      &quot;getPosition&quot;: &quot;@@=[LONGITUDE, LATITUDE]&quot;,\n",
       "      &quot;id&quot;: &quot;ad6ca901-f5aa-48c6-9b8c-e18962cdd13e&quot;,\n",
       "      &quot;pickable&quot;: true,\n",
       "      &quot;radius&quot;: 10000\n",
       "    }\n",
       "  ],\n",
       "  &quot;mapProvider&quot;: &quot;carto&quot;,\n",
       "  &quot;mapStyle&quot;: &quot;https://basemaps.cartocdn.com/gl/voyager-gl-style/style.json&quot;,\n",
       "  &quot;views&quot;: [\n",
       "    {\n",
       "      &quot;@@type&quot;: &quot;MapView&quot;,\n",
       "      &quot;controller&quot;: true\n",
       "    }\n",
       "  ]\n",
       "};\n",
       "    const tooltip = true;\n",
       "    const customLibraries = [{&#x27;libraryName&#x27;: &#x27;MyTileLayerLibrary&#x27;, &#x27;resourceUri&#x27;: &#x27;https://cdn.jsdelivr.net/gh/giswqs/pydeck_myTileLayer@master/dist/bundle.js&#x27;}];\n",
       "    const configuration = null;\n",
       "\n",
       "    const deckInstance = createDeck({\n",
       "                  container,\n",
       "      jsonInput,\n",
       "      tooltip,\n",
       "      customLibraries,\n",
       "      configuration\n",
       "    });\n",
       "\n",
       "  &lt;/script&gt;\n",
       "&lt;/html&gt;\"\n",
       "        ></iframe>\n",
       "    "
      ],
      "text/plain": [
       "{\n",
       "  \"initialViewState\": {\n",
       "    \"bearing\": 0,\n",
       "    \"latitude\": 35,\n",
       "    \"longitude\": -100,\n",
       "    \"maxZoom\": 16,\n",
       "    \"pitch\": 45,\n",
       "    \"zoom\": 4\n",
       "  },\n",
       "  \"layers\": [\n",
       "    {\n",
       "      \"@@type\": \"ColumnLayer\",\n",
       "      \"autoHighlight\": true,\n",
       "      \"data\": [\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Madison, WI\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Madison\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"429746\",\n",
       "          \"FUNDING_NUMERIC\": 429746.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-128\",\n",
       "          \"LATITUDE\": 43.07313,\n",
       "          \"LONGITUDE\": -89.38644,\n",
       "          \"OBJECTID\": 1,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"City of Madison\",\n",
       "          \"STATE_ABBR\": \"WI\",\n",
       "          \"STATE_NAME\": \"Wisconsin\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -89.3864399999999,\n",
       "              43.07313\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Pittsfield, MA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Pittsfield\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"300131\",\n",
       "          \"FUNDING_NUMERIC\": 300131.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-119\",\n",
       "          \"LATITUDE\": 42.44776,\n",
       "          \"LONGITUDE\": -73.25413,\n",
       "          \"OBJECTID\": 2,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Berkshire Environmental Action Team\",\n",
       "          \"STATE_ABBR\": \"MA\",\n",
       "          \"STATE_NAME\": \"Massachusetts\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -73.25413,\n",
       "              42.4477600000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Charleston, SC\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Charleston\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"499715\",\n",
       "          \"FUNDING_NUMERIC\": 499715.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-127\",\n",
       "          \"LATITUDE\": 32.78115,\n",
       "          \"LONGITUDE\": -79.9316,\n",
       "          \"OBJECTID\": 3,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Charleston Community Research to Action Board\",\n",
       "          \"STATE_ABBR\": \"SC\",\n",
       "          \"STATE_NAME\": \"South Carolina\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -79.9316,\n",
       "              32.78115\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"New Bedford, MA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"New Bedford\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"391822\",\n",
       "          \"FUNDING_NUMERIC\": 391822.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-129\",\n",
       "          \"LATITUDE\": 41.6378,\n",
       "          \"LONGITUDE\": -70.93089,\n",
       "          \"OBJECTID\": 4,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"City of New Bedford\",\n",
       "          \"STATE_ABBR\": \"MA\",\n",
       "          \"STATE_NAME\": \"Massachusetts\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -70.93089,\n",
       "              41.6378\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Philadelphia, PA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Philadelphia\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"392658\",\n",
       "          \"FUNDING_NUMERIC\": 392658.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-131\",\n",
       "          \"LATITUDE\": 39.95222,\n",
       "          \"LONGITUDE\": -75.16218,\n",
       "          \"OBJECTID\": 5,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"City of Philadelphia\",\n",
       "          \"STATE_ABBR\": \"PA\",\n",
       "          \"STATE_NAME\": \"Pennsylvania\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -75.16218,\n",
       "              39.9522200000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Paramount, CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Paramount\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"319754\",\n",
       "          \"FUNDING_NUMERIC\": 319754.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-130\",\n",
       "          \"LATITUDE\": 33.88516,\n",
       "          \"LONGITUDE\": -118.1614,\n",
       "          \"OBJECTID\": 6,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"City of Paramount\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -118.1614,\n",
       "              33.88516\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"East Chicago, IN\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"East Chicago\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"200000\",\n",
       "          \"FUNDING_NUMERIC\": 200000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-141\",\n",
       "          \"LATITUDE\": 41.63133,\n",
       "          \"LONGITUDE\": -87.48082,\n",
       "          \"OBJECTID\": 7,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"East Chicago Calumet Coalition Community Advisory Group Inc.\",\n",
       "          \"STATE_ABBR\": \"IN\",\n",
       "          \"STATE_NAME\": \"Indiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -87.4808199999999,\n",
       "              41.63133\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Elizabeth, NJ\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Elizabeth\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-148\",\n",
       "          \"LATITUDE\": 40.66381,\n",
       "          \"LONGITUDE\": -74.21144,\n",
       "          \"OBJECTID\": 8,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Housing Authority of the City of Elizabeth\",\n",
       "          \"STATE_ABBR\": \"NJ\",\n",
       "          \"STATE_NAME\": \"New Jersey\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -74.21144,\n",
       "              40.66381\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Fort Collins, CO\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Fort Collins\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"499139\",\n",
       "          \"FUNDING_NUMERIC\": 499139.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-144\",\n",
       "          \"LATITUDE\": 40.58147,\n",
       "          \"LONGITUDE\": -105.07662,\n",
       "          \"OBJECTID\": 9,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"City of Fort Collins\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.07662,\n",
       "              40.58147\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Amherst, NY\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Amherst\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"499963\",\n",
       "          \"FUNDING_NUMERIC\": 499963.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-167\",\n",
       "          \"LATITUDE\": 42.97839,\n",
       "          \"LONGITUDE\": -78.79976,\n",
       "          \"OBJECTID\": 10,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Research Foundation of SUNY Amherst\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -78.79976,\n",
       "              42.97839\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Birmingham, AL\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Birmingham\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"437889\",\n",
       "          \"FUNDING_NUMERIC\": 437889.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-173\",\n",
       "          \"LATITUDE\": 33.52072,\n",
       "          \"LONGITUDE\": -86.81179,\n",
       "          \"OBJECTID\": 11,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Southern Research Institute\",\n",
       "          \"STATE_ABBR\": \"AL\",\n",
       "          \"STATE_NAME\": \"Alabama\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -86.81179,\n",
       "              33.52072\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Pueblo de San Ildefonso, NM\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Pueblo de San Ildefonso\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"485466\",\n",
       "          \"FUNDING_NUMERIC\": 485466.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-164\",\n",
       "          \"LATITUDE\": 35.89259,\n",
       "          \"LONGITUDE\": -106.11784,\n",
       "          \"OBJECTID\": 12,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Pueblo de San Ildefonso\",\n",
       "          \"STATE_ABBR\": \"NM\",\n",
       "          \"STATE_NAME\": \"New Mexico\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -106.11784,\n",
       "              35.89259\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Shoshone Paiute, ID\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Shoshone Paiute\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"99985\",\n",
       "          \"FUNDING_NUMERIC\": 99985.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-170\",\n",
       "          \"LATITUDE\": 42.033797555,\n",
       "          \"LONGITUDE\": -116.186844142,\n",
       "          \"OBJECTID\": 13,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Shoshone Paiute Tribes of Duck Valley\",\n",
       "          \"STATE_ABBR\": \"ID\",\n",
       "          \"STATE_NAME\": \"Idaho\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -116.186844142,\n",
       "              42.033797555\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Detroit, MI\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Detroit\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"496700\",\n",
       "          \"FUNDING_NUMERIC\": 496700.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-179\",\n",
       "          \"LATITUDE\": 42.33168,\n",
       "          \"LONGITUDE\": -83.048,\n",
       "          \"OBJECTID\": 14,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"The Green Door Initiative\",\n",
       "          \"STATE_ABBR\": \"MI\",\n",
       "          \"STATE_NAME\": \"Michigan\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -83.048,\n",
       "              42.33168\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Albany, NY\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Albany\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"499032\",\n",
       "          \"FUNDING_NUMERIC\": 499032.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-177\",\n",
       "          \"LATITUDE\": 42.65155,\n",
       "          \"LONGITUDE\": -73.75521,\n",
       "          \"OBJECTID\": 15,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"SUNY at Albany\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -73.75521,\n",
       "              42.65155\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Reno, NV\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Reno\",\n",
       "          \"COUNTY\": \"Washoe\",\n",
       "          \"FUNDING\": \"213204\",\n",
       "          \"FUNDING_NUMERIC\": 213204.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-187\",\n",
       "          \"LATITUDE\": 39.52766,\n",
       "          \"LONGITUDE\": -119.81353,\n",
       "          \"OBJECTID\": 16,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Washoe County District Health Department\",\n",
       "          \"STATE_ABBR\": \"NV\",\n",
       "          \"STATE_NAME\": \"Nevada\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.81353,\n",
       "              39.52766\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Winnebago, NE\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Winnebago\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"266064\",\n",
       "          \"FUNDING_NUMERIC\": 266064.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-188\",\n",
       "          \"LATITUDE\": 42.23609,\n",
       "          \"LONGITUDE\": -96.47233,\n",
       "          \"OBJECTID\": 17,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Winnebago Tribal Council\",\n",
       "          \"STATE_ABBR\": \"NE\",\n",
       "          \"STATE_NAME\": \"Nebraska\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -96.47233,\n",
       "              42.23609\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Upper Mattaponi, VA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Upper Mattaponi\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"449988\",\n",
       "          \"FUNDING_NUMERIC\": 449988.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-184\",\n",
       "          \"LATITUDE\": 37.732232987,\n",
       "          \"LONGITUDE\": -77.115009492,\n",
       "          \"OBJECTID\": 18,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Upper Mattaponi Indian Tribe\",\n",
       "          \"STATE_ABBR\": \"VA\",\n",
       "          \"STATE_NAME\": \"Virginia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -77.1150094919999,\n",
       "              37.732232987\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Supai, AZ\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Indian Affairs\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Supai\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-245\",\n",
       "          \"LATITUDE\": 36.23693,\n",
       "          \"LONGITUDE\": -112.68908,\n",
       "          \"OBJECTID\": 19,\n",
       "          \"PROGRAM_NAME\": \"Tribal Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Havasupai Tribe\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -112.68908,\n",
       "              36.23693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Huslia, AK\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Indian Affairs\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Huslia\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-246\",\n",
       "          \"LATITUDE\": 65.70209,\n",
       "          \"LONGITUDE\": -156.38685,\n",
       "          \"OBJECTID\": 20,\n",
       "          \"PROGRAM_NAME\": \"Tribal Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Huslia Village\",\n",
       "          \"STATE_ABBR\": \"AK\",\n",
       "          \"STATE_NAME\": \"Alaska\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -156.38685,\n",
       "              65.70209\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Fort Yukon, AK\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Indian Affairs\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Fort Yukon\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-247\",\n",
       "          \"LATITUDE\": 66.56489,\n",
       "          \"LONGITUDE\": -145.24142,\n",
       "          \"OBJECTID\": 21,\n",
       "          \"PROGRAM_NAME\": \"Tribal Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Native Village of Fort Yukon\",\n",
       "          \"STATE_ABBR\": \"AK\",\n",
       "          \"STATE_NAME\": \"Alaska\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -145.24142,\n",
       "              66.56489\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Nelson Lagoon, AK\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Indian Affairs\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Nelson Lagoon\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-249\",\n",
       "          \"LATITUDE\": 55.98556,\n",
       "          \"LONGITUDE\": -161.09278,\n",
       "          \"OBJECTID\": 22,\n",
       "          \"PROGRAM_NAME\": \"Tribal Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Native Village of Nelson Lagoon\",\n",
       "          \"STATE_ABBR\": \"AK\",\n",
       "          \"STATE_NAME\": \"Alaska\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -161.09278,\n",
       "              55.98556\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Charenton, LA\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Indian Affairs\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Charenton\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-244\",\n",
       "          \"LATITUDE\": 29.88337,\n",
       "          \"LONGITUDE\": -91.52399,\n",
       "          \"OBJECTID\": 23,\n",
       "          \"PROGRAM_NAME\": \"Tribal Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Chitimacha Tribe\",\n",
       "          \"STATE_ABBR\": \"LA\",\n",
       "          \"STATE_NAME\": \"Louisiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -91.52399,\n",
       "              29.88337\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Princeton, ME\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Indian Affairs\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Princeton\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-252\",\n",
       "          \"LATITUDE\": 45.22461,\n",
       "          \"LONGITUDE\": -67.57573,\n",
       "          \"OBJECTID\": 24,\n",
       "          \"PROGRAM_NAME\": \"Tribal Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Passamaquoddy Indian Tribe\",\n",
       "          \"STATE_ABBR\": \"ME\",\n",
       "          \"STATE_NAME\": \"Maine\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -67.57573,\n",
       "              45.22461\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Point Lay, AK\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Indian Affairs\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Point Lay\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-250\",\n",
       "          \"LATITUDE\": 69.7428,\n",
       "          \"LONGITUDE\": -163.01125,\n",
       "          \"OBJECTID\": 25,\n",
       "          \"PROGRAM_NAME\": \"Tribal Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Native Village of Point Lay\",\n",
       "          \"STATE_ABBR\": \"AK\",\n",
       "          \"STATE_NAME\": \"Alaska\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -163.01125,\n",
       "              69.7428\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Klamath, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Indian Affairs\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Klamath\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-254\",\n",
       "          \"LATITUDE\": 41.53172,\n",
       "          \"LONGITUDE\": -124.04098,\n",
       "          \"OBJECTID\": 26,\n",
       "          \"PROGRAM_NAME\": \"Tribal Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Yurok Tribe\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -124.04098,\n",
       "              41.53172\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Tule River, CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Tule River\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-182\",\n",
       "          \"LATITUDE\": 36.1589758490001,\n",
       "          \"LONGITUDE\": -118.719647427,\n",
       "          \"OBJECTID\": 27,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Tule River Tribal Council\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -118.719647427,\n",
       "              36.1589758490001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Quincy, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Quincy\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"182500000\",\n",
       "          \"FUNDING_NUMERIC\": 182500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-263\",\n",
       "          \"LATITUDE\": 39.93673,\n",
       "          \"LONGITUDE\": -120.94812,\n",
       "          \"OBJECTID\": 28,\n",
       "          \"PROGRAM_NAME\": \"Hazardous Fuels Reduction Projects in Wildland Urban Interface\",\n",
       "          \"PROJECT_NAME\": \"Pacific Southwest - Quincy Area\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.94812,\n",
       "              39.93673\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Spokane, WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Spokane\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"3000000\",\n",
       "          \"FUNDING_NUMERIC\": 3000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-265\",\n",
       "          \"LATITUDE\": 47.65726,\n",
       "          \"LONGITUDE\": -117.41162,\n",
       "          \"OBJECTID\": 29,\n",
       "          \"PROGRAM_NAME\": \"Hazardous Fuels Reduction Projects in Wildland Urban Interface\",\n",
       "          \"PROJECT_NAME\": \"Pacific Northwest - Spokane area\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -117.41162,\n",
       "              47.6572600000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Sandy, OR\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Sandy\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"3000000\",\n",
       "          \"FUNDING_NUMERIC\": 3000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-267\",\n",
       "          \"LATITUDE\": 45.39644,\n",
       "          \"LONGITUDE\": -122.25898,\n",
       "          \"OBJECTID\": 30,\n",
       "          \"PROGRAM_NAME\": \"Hazardous Fuels Reduction Projects in Wildland Urban Interface\",\n",
       "          \"PROJECT_NAME\": \"Pacific Northwest - Sandy Area\",\n",
       "          \"STATE_ABBR\": \"OR\",\n",
       "          \"STATE_NAME\": \"Oregon\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.25898,\n",
       "              45.39644\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Grangeville, ID\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Grangeville\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"18000000\",\n",
       "          \"FUNDING_NUMERIC\": 18000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-268\",\n",
       "          \"LATITUDE\": 45.92574,\n",
       "          \"LONGITUDE\": -116.11966,\n",
       "          \"OBJECTID\": 31,\n",
       "          \"PROGRAM_NAME\": \"Hazardous Fuels Reduction Projects in Wildland Urban Interface\",\n",
       "          \"PROJECT_NAME\": \"Nez Perce-Clearwater-Lower Salmon\",\n",
       "          \"STATE_ABBR\": \"ID\",\n",
       "          \"STATE_NAME\": \"Idaho\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -116.11966,\n",
       "              45.92574\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Salt River Pima-Maricopa, AZ\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Salt River Pima-Maricopa\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"404372\",\n",
       "          \"FUNDING_NUMERIC\": 404372.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-169\",\n",
       "          \"LATITUDE\": 33.487095,\n",
       "          \"LONGITUDE\": -111.864796,\n",
       "          \"OBJECTID\": 32,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Salt River Pima-Maricopa Indian Community\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.864796,\n",
       "              33.4870950000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Redding, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Redding\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"15200000\",\n",
       "          \"FUNDING_NUMERIC\": 15200000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-272\",\n",
       "          \"LATITUDE\": 40.58762,\n",
       "          \"LONGITUDE\": -122.39249,\n",
       "          \"OBJECTID\": 33,\n",
       "          \"PROGRAM_NAME\": \"Vegetation and Watershed Management Projects\",\n",
       "          \"PROJECT_NAME\": \"Pacific Southwest - Redding Area\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.39249,\n",
       "              40.5876200000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"St. George, UT\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"St. George\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5500000\",\n",
       "          \"FUNDING_NUMERIC\": 5500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-269\",\n",
       "          \"LATITUDE\": 37.10976,\n",
       "          \"LONGITUDE\": -113.5833,\n",
       "          \"OBJECTID\": 34,\n",
       "          \"PROGRAM_NAME\": \"Hazardous Fuels Reduction Projects in Wildland Urban Interface\",\n",
       "          \"PROJECT_NAME\": \"Dixie NF\",\n",
       "          \"STATE_ABBR\": \"UT\",\n",
       "          \"STATE_NAME\": \"Utah\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -113.5833,\n",
       "              37.10976\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Fairbanks, AK\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Fairbanks\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-349\",\n",
       "          \"LATITUDE\": 64.84527,\n",
       "          \"LONGITUDE\": -147.72213,\n",
       "          \"OBJECTID\": 35,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"University of Alaska Fairbanks\",\n",
       "          \"STATE_ABBR\": \"AK\",\n",
       "          \"STATE_NAME\": \"Alaska\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -147.72213,\n",
       "              64.84527\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Anchorage, AK\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Anchorage\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-351\",\n",
       "          \"LATITUDE\": 61.21753,\n",
       "          \"LONGITUDE\": -149.85815,\n",
       "          \"OBJECTID\": 36,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"University of Alaska Anchorage\",\n",
       "          \"STATE_ABBR\": \"AK\",\n",
       "          \"STATE_NAME\": \"Alaska\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -149.85815,\n",
       "              61.2175300000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Levelock, AK\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Levelock\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-353\",\n",
       "          \"LATITUDE\": 59.11254,\n",
       "          \"LONGITUDE\": -156.85558,\n",
       "          \"OBJECTID\": 37,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Levelock Village Council\",\n",
       "          \"STATE_ABBR\": \"AK\",\n",
       "          \"STATE_NAME\": \"Alaska\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -156.85558,\n",
       "              59.1125400000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Jacksonville, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Jacksonville\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-382\",\n",
       "          \"LATITUDE\": 30.33147,\n",
       "          \"LONGITUDE\": -81.65622,\n",
       "          \"OBJECTID\": 38,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Groundwork Jacksonville\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -81.65622,\n",
       "              30.33147\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Jacksonville, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Jacksonville\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-383\",\n",
       "          \"LATITUDE\": 30.33147,\n",
       "          \"LONGITUDE\": -81.65622,\n",
       "          \"OBJECTID\": 39,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Groundwork Jacksonville\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -81.65622,\n",
       "              30.33147\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Salt Lake City, UT\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Salt Lake City\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"15600000\",\n",
       "          \"FUNDING_NUMERIC\": 15600000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-273\",\n",
       "          \"LATITUDE\": 40.76031,\n",
       "          \"LONGITUDE\": -111.88822,\n",
       "          \"OBJECTID\": 40,\n",
       "          \"PROGRAM_NAME\": \"Vegetation and Watershed Management Projects\",\n",
       "          \"PROJECT_NAME\": \"Uinta-Wasatch-Cache NF\",\n",
       "          \"STATE_ABBR\": \"UT\",\n",
       "          \"STATE_NAME\": \"Utah\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.88822,\n",
       "              40.7603100000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Gary, IN\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Gary\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-398\",\n",
       "          \"LATITUDE\": 41.60369,\n",
       "          \"LONGITUDE\": -87.33717,\n",
       "          \"OBJECTID\": 41,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"National Audubon Society\",\n",
       "          \"STATE_ABBR\": \"IN\",\n",
       "          \"STATE_NAME\": \"Indiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -87.33717,\n",
       "              41.60369\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Port St. Joe, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Port St. Joe\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-388\",\n",
       "          \"LATITUDE\": 29.81263,\n",
       "          \"LONGITUDE\": -85.30368,\n",
       "          \"OBJECTID\": 42,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"City of Port St. Joe\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -85.30368,\n",
       "              29.8126300000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"New Orleans, LA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"New Orleans\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-405\",\n",
       "          \"LATITUDE\": 29.9537,\n",
       "          \"LONGITUDE\": -90.07775,\n",
       "          \"OBJECTID\": 43,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"City of New Orleans\",\n",
       "          \"STATE_ABBR\": \"LA\",\n",
       "          \"STATE_NAME\": \"Louisiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -90.07775,\n",
       "              29.9537\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Annapolis, MD\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Annapolis\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-413\",\n",
       "          \"LATITUDE\": 38.97678,\n",
       "          \"LONGITUDE\": -76.49014,\n",
       "          \"OBJECTID\": 44,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"BoatUS Foundation\",\n",
       "          \"STATE_ABBR\": \"MD\",\n",
       "          \"STATE_NAME\": \"Maryland\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -76.4901399999999,\n",
       "              38.97678\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Wellfleet, MA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Wellfleet\",\n",
       "          \"COUNTY\": \"Barnstable\",\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-417\",\n",
       "          \"LATITUDE\": 41.92984,\n",
       "          \"LONGITUDE\": -70.01685,\n",
       "          \"OBJECTID\": 45,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Town of Wellfleet\",\n",
       "          \"STATE_ABBR\": \"MA\",\n",
       "          \"STATE_NAME\": \"Massachusetts\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -70.01685,\n",
       "              41.92984\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Baltimore, MD\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Baltimore\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-414\",\n",
       "          \"LATITUDE\": 39.29058,\n",
       "          \"LONGITUDE\": -76.60926,\n",
       "          \"OBJECTID\": 46,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"South Baltimore Gateway Community Impact District Management\",\n",
       "          \"STATE_ABBR\": \"MD\",\n",
       "          \"STATE_NAME\": \"Maryland\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -76.60926,\n",
       "              39.29058\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Chelsea, MA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Chelsea\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-422\",\n",
       "          \"LATITUDE\": 42.39376,\n",
       "          \"LONGITUDE\": -71.03237,\n",
       "          \"OBJECTID\": 47,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"City of Chelsea\",\n",
       "          \"STATE_ABBR\": \"MA\",\n",
       "          \"STATE_NAME\": \"Massachusetts\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -71.03237,\n",
       "              42.39376\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Cape Cod, MA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Cape Cod\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-423\",\n",
       "          \"LATITUDE\": 41.6862,\n",
       "          \"LONGITUDE\": -70.24308,\n",
       "          \"OBJECTID\": 48,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Woods Hole Sea Grant (Massachusetts)\",\n",
       "          \"STATE_ABBR\": \"MA\",\n",
       "          \"STATE_NAME\": \"Massachusetts\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -70.24308,\n",
       "              41.6862\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Los Angeles, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Los Angeles\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"42100000\",\n",
       "          \"FUNDING_NUMERIC\": 42100000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-271\",\n",
       "          \"LATITUDE\": 34.05357,\n",
       "          \"LONGITUDE\": -118.24545,\n",
       "          \"OBJECTID\": 49,\n",
       "          \"PROGRAM_NAME\": \"Hazardous Fuels Reduction Projects in Wildland Urban Interface\",\n",
       "          \"PROJECT_NAME\": \"Southern California Fireshed Risk Reduction Strategy\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -118.24545,\n",
       "              34.05357\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Grand Ronde, OR\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Grand Ronde\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-449\",\n",
       "          \"LATITUDE\": 45.06015,\n",
       "          \"LONGITUDE\": -123.60932,\n",
       "          \"OBJECTID\": 50,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Confederated Tribes of Grand Ronde\",\n",
       "          \"STATE_ABBR\": \"OR\",\n",
       "          \"STATE_NAME\": \"Oregon\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -123.60932,\n",
       "              45.0601500000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Rochester, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Rochester\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-436\",\n",
       "          \"LATITUDE\": 43.1558,\n",
       "          \"LONGITUDE\": -77.61632,\n",
       "          \"OBJECTID\": 51,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"New York Sea Grant\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -77.61632,\n",
       "              43.1558\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Providence, RI\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Providence\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-458\",\n",
       "          \"LATITUDE\": 41.82388,\n",
       "          \"LONGITUDE\": -71.41198,\n",
       "          \"OBJECTID\": 52,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"City of Providence\",\n",
       "          \"STATE_ABBR\": \"RI\",\n",
       "          \"STATE_NAME\": \"Rhode Island\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -71.41198,\n",
       "              41.82388\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"New York, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"New York\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-435\",\n",
       "          \"LATITUDE\": 40.71453,\n",
       "          \"LONGITUDE\": -74.00712,\n",
       "          \"OBJECTID\": 53,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"New York City Department of Parks and Recreation\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -74.00712,\n",
       "              40.71453\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Huntsville, AL\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Huntsville\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"28368\",\n",
       "          \"FUNDING_NUMERIC\": 28368.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-523\",\n",
       "          \"LATITUDE\": 34.72929,\n",
       "          \"LONGITUDE\": -86.5851,\n",
       "          \"OBJECTID\": 54,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Huntsville Air Pollution Control Program\",\n",
       "          \"STATE_ABBR\": \"AL\",\n",
       "          \"STATE_NAME\": \"Alabama\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -86.5851,\n",
       "              34.72929\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Philadelphia, PA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Philadelphia\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"193504\",\n",
       "          \"FUNDING_NUMERIC\": 193504.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-514\",\n",
       "          \"LATITUDE\": 39.95222,\n",
       "          \"LONGITUDE\": -75.16218,\n",
       "          \"OBJECTID\": 55,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Philadelphia Air Management Services\",\n",
       "          \"STATE_ABBR\": \"PA\",\n",
       "          \"STATE_NAME\": \"Pennsylvania\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -75.16218,\n",
       "              39.9522200000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Kashia Band of Pomo Indians of the Stewarts Point Rancheria, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Kashia Band of Pomo Indians of the Stewarts Point Rancheria\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-363\",\n",
       "          \"LATITUDE\": 38.65658,\n",
       "          \"LONGITUDE\": -123.33897,\n",
       "          \"OBJECTID\": 56,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Kashia Band of Pomo Indians of the Stewarts Point Rancheria\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -123.33897,\n",
       "              38.65658\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Nashville, TN\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Nashville\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"64826\",\n",
       "          \"FUNDING_NUMERIC\": 64826.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-545\",\n",
       "          \"LATITUDE\": 36.16784,\n",
       "          \"LONGITUDE\": -86.77816,\n",
       "          \"OBJECTID\": 57,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Nashville/Davidson\",\n",
       "          \"STATE_ABBR\": \"TN\",\n",
       "          \"STATE_NAME\": \"Tennessee\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -86.77816,\n",
       "              36.16784\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Dayton, OH\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Dayton\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"37023\",\n",
       "          \"FUNDING_NUMERIC\": 37023.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-552\",\n",
       "          \"LATITUDE\": 39.7592,\n",
       "          \"LONGITUDE\": -84.19381,\n",
       "          \"OBJECTID\": 58,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Regional Air Pollution Control Agency\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -84.19381,\n",
       "              39.7592\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Albuquerque, NM\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Albuquerque\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"106873\",\n",
       "          \"FUNDING_NUMERIC\": 106873.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-560\",\n",
       "          \"LATITUDE\": 35.08423,\n",
       "          \"LONGITUDE\": -106.64905,\n",
       "          \"OBJECTID\": 59,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"City of Albuquerque\",\n",
       "          \"STATE_ABBR\": \"NM\",\n",
       "          \"STATE_NAME\": \"New Mexico\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -106.64905,\n",
       "              35.08423\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Atlanta, GA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Atlanta\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-688\",\n",
       "          \"LATITUDE\": 33.74831,\n",
       "          \"LONGITUDE\": -84.39111,\n",
       "          \"OBJECTID\": 60,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Atlanta Regional Commission\",\n",
       "          \"STATE_ABBR\": \"GA\",\n",
       "          \"STATE_NAME\": \"Georgia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -84.39111,\n",
       "              33.7483100000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Austin, TX\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Austin\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-707\",\n",
       "          \"LATITUDE\": 30.26759,\n",
       "          \"LONGITUDE\": -97.74299,\n",
       "          \"OBJECTID\": 61,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"City of Austin Office of Sustainability\",\n",
       "          \"STATE_ABBR\": \"TX\",\n",
       "          \"STATE_NAME\": \"Texas\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -97.74299,\n",
       "              30.26759\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"San Antonio, TX\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"San Antonio\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-703\",\n",
       "          \"LATITUDE\": 29.42458,\n",
       "          \"LONGITUDE\": -98.49461,\n",
       "          \"OBJECTID\": 62,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"City of San Antonio\\u2019s Office of Sustainability\",\n",
       "          \"STATE_ABBR\": \"TX\",\n",
       "          \"STATE_NAME\": \"Texas\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -98.49461,\n",
       "              29.42458\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Columbus, OH\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Columbus\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-711\",\n",
       "          \"LATITUDE\": 39.96199,\n",
       "          \"LONGITUDE\": -83.00275,\n",
       "          \"OBJECTID\": 63,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"City of Columbus Department of Public Utilities\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -83.00275,\n",
       "              39.9619900000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Jacksonville, FL\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Jacksonville\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-719\",\n",
       "          \"LATITUDE\": 30.33147,\n",
       "          \"LONGITUDE\": -81.65622,\n",
       "          \"OBJECTID\": 64,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"City of Jacksonville\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -81.65622,\n",
       "              30.33147\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Birmingham, AL\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Birmingham\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-730\",\n",
       "          \"LATITUDE\": 33.52072,\n",
       "          \"LONGITUDE\": -86.81179,\n",
       "          \"OBJECTID\": 65,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"City of Birmingham\",\n",
       "          \"STATE_ABBR\": \"AL\",\n",
       "          \"STATE_NAME\": \"Alabama\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -86.81179,\n",
       "              33.52072\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Honolulu, HI\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Honolulu\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-734\",\n",
       "          \"LATITUDE\": 21.30493,\n",
       "          \"LONGITUDE\": -157.85788,\n",
       "          \"OBJECTID\": 66,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"City and County of Honolulu Office of Climate Change, Sustainability and Resiliency\",\n",
       "          \"STATE_ABBR\": \"HI\",\n",
       "          \"STATE_NAME\": \"Hawaii\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -157.85788,\n",
       "              21.30493\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Omaha, NE\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Omaha\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-738\",\n",
       "          \"LATITUDE\": 41.26068,\n",
       "          \"LONGITUDE\": -95.94026,\n",
       "          \"OBJECTID\": 67,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"City of Omaha\",\n",
       "          \"STATE_ABBR\": \"NE\",\n",
       "          \"STATE_NAME\": \"Nebraska\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -95.94026,\n",
       "              41.26068\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Louisville, KY\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Louisville\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"89707\",\n",
       "          \"FUNDING_NUMERIC\": 89707.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-535\",\n",
       "          \"LATITUDE\": 38.25489,\n",
       "          \"LONGITUDE\": -85.76666,\n",
       "          \"OBJECTID\": 68,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"City of Louisville\",\n",
       "          \"STATE_ABBR\": \"KY\",\n",
       "          \"STATE_NAME\": \"Kentucky\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -85.76666,\n",
       "              38.25489\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Albuquerque, NM\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Albuquerque\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-741\",\n",
       "          \"LATITUDE\": 35.08423,\n",
       "          \"LONGITUDE\": -106.64905,\n",
       "          \"OBJECTID\": 69,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Albuquerque Sustainability Office\",\n",
       "          \"STATE_ABBR\": \"NM\",\n",
       "          \"STATE_NAME\": \"New Mexico\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -106.64905,\n",
       "              35.08423\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Bakersfield, CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Bakersfield\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-742\",\n",
       "          \"LATITUDE\": 35.3673,\n",
       "          \"LONGITUDE\": -119.01886,\n",
       "          \"OBJECTID\": 70,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"City of Bakersfield\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.01886,\n",
       "              35.3673000000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Knoxville, TN\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Knoxville\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-744\",\n",
       "          \"LATITUDE\": 35.96068,\n",
       "          \"LONGITUDE\": -83.92103,\n",
       "          \"OBJECTID\": 71,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"City of Knoxville, Office of Sustainability\",\n",
       "          \"STATE_ABBR\": \"TN\",\n",
       "          \"STATE_NAME\": \"Tennessee\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -83.92103,\n",
       "              35.96068\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Salt Lake, UT\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Salt Lake\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-727\",\n",
       "          \"LATITUDE\": 40.76031,\n",
       "          \"LONGITUDE\": -111.88822,\n",
       "          \"OBJECTID\": 72,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Salt Lake City Department of Sustainability\",\n",
       "          \"STATE_ABBR\": \"UT\",\n",
       "          \"STATE_NAME\": \"Utah\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.88822,\n",
       "              40.7603100000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"McAllen, TX\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"McAllen\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-745\",\n",
       "          \"LATITUDE\": 26.2077,\n",
       "          \"LONGITUDE\": -98.22931,\n",
       "          \"OBJECTID\": 73,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"City of McAllen\",\n",
       "          \"STATE_ABBR\": \"TX\",\n",
       "          \"STATE_NAME\": \"Texas\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -98.22931,\n",
       "              26.2077\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Baton Rouge, LA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Baton Rouge\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-746\",\n",
       "          \"LATITUDE\": 30.44335,\n",
       "          \"LONGITUDE\": -91.18664,\n",
       "          \"OBJECTID\": 74,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"City of Baton Rouge\",\n",
       "          \"STATE_ABBR\": \"LA\",\n",
       "          \"STATE_NAME\": \"Louisiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -91.18664,\n",
       "              30.44335\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Columbia, SC\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Columbia\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-752\",\n",
       "          \"LATITUDE\": 33.99882,\n",
       "          \"LONGITUDE\": -81.04537,\n",
       "          \"OBJECTID\": 75,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"City of Columbia\",\n",
       "          \"STATE_ABBR\": \"SC\",\n",
       "          \"STATE_NAME\": \"South Carolina\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -81.04537,\n",
       "              33.99882\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"El Paso, TX\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"El Paso\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-747\",\n",
       "          \"LATITUDE\": 31.75916,\n",
       "          \"LONGITUDE\": -106.48749,\n",
       "          \"OBJECTID\": 76,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"City of El Paso\",\n",
       "          \"STATE_ABBR\": \"TX\",\n",
       "          \"STATE_NAME\": \"Texas\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -106.48749,\n",
       "              31.7591600000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Gilbert, AZ\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Reclamation\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Gilbert\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1440000\",\n",
       "          \"FUNDING_NUMERIC\": 1440000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-887\",\n",
       "          \"LATITUDE\": 33.33051,\n",
       "          \"LONGITUDE\": -111.79026,\n",
       "          \"OBJECTID\": 77,\n",
       "          \"PROGRAM_NAME\": \"Drought Mitigation\",\n",
       "          \"PROJECT_NAME\": \"Conservation and Efficiency Program agreement with the Town of Gilbert\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.79026,\n",
       "              33.3305100000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Rapid City, SD\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Rapid City\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-758\",\n",
       "          \"LATITUDE\": 44.08146,\n",
       "          \"LONGITUDE\": -103.2308,\n",
       "          \"OBJECTID\": 78,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"City of Rapid City\",\n",
       "          \"STATE_ABBR\": \"SD\",\n",
       "          \"STATE_NAME\": \"South Dakota\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -103.2308,\n",
       "              44.08146\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Louisville, KY\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Louisville\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-725\",\n",
       "          \"LATITUDE\": 38.25489,\n",
       "          \"LONGITUDE\": -85.76666,\n",
       "          \"OBJECTID\": 79,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Louisville Mayor's Office of Sustainability\",\n",
       "          \"STATE_ABBR\": \"KY\",\n",
       "          \"STATE_NAME\": \"Kentucky\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -85.76666,\n",
       "              38.25489\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Phoenix, AZ\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Reclamation\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Phoenix\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"60000000\",\n",
       "          \"FUNDING_NUMERIC\": 60000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-888\",\n",
       "          \"LATITUDE\": 33.44825,\n",
       "          \"LONGITUDE\": -112.0758,\n",
       "          \"OBJECTID\": 80,\n",
       "          \"PROGRAM_NAME\": \"Drought Mitigation\",\n",
       "          \"PROJECT_NAME\": \"Conservation and Efficiency Program with the City of Phoenix\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -112.0758,\n",
       "              33.44825\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Peoria, AZ\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Reclamation\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Peoria\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"8640000\",\n",
       "          \"FUNDING_NUMERIC\": 8640000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-890\",\n",
       "          \"LATITUDE\": 33.57725,\n",
       "          \"LONGITUDE\": -112.24165,\n",
       "          \"OBJECTID\": 81,\n",
       "          \"PROGRAM_NAME\": \"Drought Mitigation\",\n",
       "          \"PROJECT_NAME\": \"Water Savings Agreement with the City of Peoria\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -112.24165,\n",
       "              33.57725\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Tucson, AZ\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Reclamation\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Tucson\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"44000000\",\n",
       "          \"FUNDING_NUMERIC\": 44000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-889\",\n",
       "          \"LATITUDE\": 32.22177,\n",
       "          \"LONGITUDE\": -110.96977,\n",
       "          \"OBJECTID\": 82,\n",
       "          \"PROGRAM_NAME\": \"Drought Mitigation\",\n",
       "          \"PROJECT_NAME\": \"Water Savings Agreement with City of Tucson\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -110.96977,\n",
       "              32.22177\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Prescott, AZ\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Prescott\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"9600000\",\n",
       "          \"FUNDING_NUMERIC\": 9600000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1171\",\n",
       "          \"LATITUDE\": 34.54142,\n",
       "          \"LONGITUDE\": -112.46873,\n",
       "          \"OBJECTID\": 83,\n",
       "          \"PROGRAM_NAME\": \"Hazardous Fuels Reduction Projects in Wildland Urban Interface\",\n",
       "          \"PROJECT_NAME\": \"Greater Prescott Area Wildfire Protection and Restoration\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -112.46873,\n",
       "              34.5414200000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Custer, SD\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Custer\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1176\",\n",
       "          \"LATITUDE\": 43.76961,\n",
       "          \"LONGITUDE\": -103.60206,\n",
       "          \"OBJECTID\": 84,\n",
       "          \"PROGRAM_NAME\": \"Hazardous Fuels Reduction Projects in Wildland Urban Interface\",\n",
       "          \"PROJECT_NAME\": \"Fuel Breaks\",\n",
       "          \"STATE_ABBR\": \"SD\",\n",
       "          \"STATE_NAME\": \"South Dakota\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -103.60206,\n",
       "              43.7696100000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Missoula, MT\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Missoula\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1175\",\n",
       "          \"LATITUDE\": 46.87278,\n",
       "          \"LONGITUDE\": -113.99625,\n",
       "          \"OBJECTID\": 85,\n",
       "          \"PROGRAM_NAME\": \"Hazardous Fuels Reduction Projects in Wildland Urban Interface\",\n",
       "          \"PROJECT_NAME\": \"Fuel Breaks\",\n",
       "          \"STATE_ABBR\": \"MT\",\n",
       "          \"STATE_NAME\": \"Montana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -113.99625,\n",
       "              46.87278\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Kalispell, MT\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Kalispell\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1174\",\n",
       "          \"LATITUDE\": 48.20189,\n",
       "          \"LONGITUDE\": -114.315,\n",
       "          \"OBJECTID\": 86,\n",
       "          \"PROGRAM_NAME\": \"Hazardous Fuels Reduction Projects in Wildland Urban Interface\",\n",
       "          \"PROJECT_NAME\": \"Fuel Breaks\",\n",
       "          \"STATE_ABBR\": \"MT\",\n",
       "          \"STATE_NAME\": \"Montana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -114.315,\n",
       "              48.20189\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Laramie, WY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Laramie\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1178\",\n",
       "          \"LATITUDE\": 41.31339,\n",
       "          \"LONGITUDE\": -105.59072,\n",
       "          \"OBJECTID\": 87,\n",
       "          \"PROGRAM_NAME\": \"Hazardous Fuels Reduction Projects in Wildland Urban Interface\",\n",
       "          \"PROJECT_NAME\": \"Fuel Breaks\",\n",
       "          \"STATE_ABBR\": \"WY\",\n",
       "          \"STATE_NAME\": \"Wyoming\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.59072,\n",
       "              41.31339\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Delta, CO\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Delta\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1177\",\n",
       "          \"LATITUDE\": 38.74518,\n",
       "          \"LONGITUDE\": -108.07087,\n",
       "          \"OBJECTID\": 88,\n",
       "          \"PROGRAM_NAME\": \"Hazardous Fuels Reduction Projects in Wildland Urban Interface\",\n",
       "          \"PROJECT_NAME\": \"Fuel Breaks\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -108.07087,\n",
       "              38.74518\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Durango, CO\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Durango\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1179\",\n",
       "          \"LATITUDE\": 37.27367,\n",
       "          \"LONGITUDE\": -107.8793,\n",
       "          \"OBJECTID\": 89,\n",
       "          \"PROGRAM_NAME\": \"Hazardous Fuels Reduction Projects in Wildland Urban Interface\",\n",
       "          \"PROJECT_NAME\": \"Fuel Breaks\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -107.8793,\n",
       "              37.27367\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"K\\u012bhei, HI\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"K\\u012bhei\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"17000000\",\n",
       "          \"FUNDING_NUMERIC\": 17000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1218\",\n",
       "          \"LATITUDE\": 20.7825,\n",
       "          \"LONGITUDE\": -156.46334,\n",
       "          \"OBJECTID\": 90,\n",
       "          \"PROGRAM_NAME\": \"Facilities of the National Oceanic and Atmospheric Administration and National Marine Sanctuaries\",\n",
       "          \"PROJECT_NAME\": \"Hawaiian Islands Humpback Whale National Marine Sanctuary\",\n",
       "          \"STATE_ABBR\": \"HI\",\n",
       "          \"STATE_NAME\": \"Hawaii\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -156.46334,\n",
       "              20.7825\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Springfield, OR\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Springfield\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1180\",\n",
       "          \"LATITUDE\": 44.04787,\n",
       "          \"LONGITUDE\": -123.01955,\n",
       "          \"OBJECTID\": 91,\n",
       "          \"PROGRAM_NAME\": \"Hazardous Fuels Reduction Projects in Wildland Urban Interface\",\n",
       "          \"PROJECT_NAME\": \"Fuel Breaks\",\n",
       "          \"STATE_ABBR\": \"OR\",\n",
       "          \"STATE_NAME\": \"Oregon\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -123.01955,\n",
       "              44.04787\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Nanjemoy, MD\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Nanjemoy\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1219\",\n",
       "          \"LATITUDE\": 38.45531,\n",
       "          \"LONGITUDE\": -77.2152,\n",
       "          \"OBJECTID\": 92,\n",
       "          \"PROGRAM_NAME\": \"Facilities of the National Oceanic and Atmospheric Administration and National Marine Sanctuaries\",\n",
       "          \"PROJECT_NAME\": \"Mallows Bay-Potomac River National Marine Sanctuary\",\n",
       "          \"STATE_ABBR\": \"MD\",\n",
       "          \"STATE_NAME\": \"Maryland\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -77.2152,\n",
       "              38.45531\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Seaside, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Seaside\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"7000000\",\n",
       "          \"FUNDING_NUMERIC\": 7000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1220\",\n",
       "          \"LATITUDE\": 36.60404,\n",
       "          \"LONGITUDE\": -121.8535,\n",
       "          \"OBJECTID\": 93,\n",
       "          \"PROGRAM_NAME\": \"Facilities of the National Oceanic and Atmospheric Administration and National Marine Sanctuaries\",\n",
       "          \"PROJECT_NAME\": \"Monterey Bay National Marine Sanctuary\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -121.8535,\n",
       "              36.60404\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Provincetown, MA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Provincetown\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"15000000\",\n",
       "          \"FUNDING_NUMERIC\": 15000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1222\",\n",
       "          \"LATITUDE\": 42.04967,\n",
       "          \"LONGITUDE\": -70.18846,\n",
       "          \"OBJECTID\": 94,\n",
       "          \"PROGRAM_NAME\": \"Facilities of the National Oceanic and Atmospheric Administration and National Marine Sanctuaries\",\n",
       "          \"PROJECT_NAME\": \"Stellwagen Bank National Marine Sanctuary\",\n",
       "          \"STATE_ABBR\": \"MA\",\n",
       "          \"STATE_NAME\": \"Massachusetts\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -70.18846,\n",
       "              42.04967\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Cibola, AZ\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Reclamation\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Cibola\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"3240000\",\n",
       "          \"FUNDING_NUMERIC\": 3240000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1250\",\n",
       "          \"LATITUDE\": 33.36815,\n",
       "          \"LONGITUDE\": -114.66427,\n",
       "          \"OBJECTID\": 95,\n",
       "          \"PROGRAM_NAME\": \"Drought Mitigation\",\n",
       "          \"PROJECT_NAME\": \"Cibola Valley Irrigation and Drainage District\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -114.66427,\n",
       "              33.36815\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Port Angeles, WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Port Angeles\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"3000000\",\n",
       "          \"FUNDING_NUMERIC\": 3000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1221\",\n",
       "          \"LATITUDE\": 48.11872,\n",
       "          \"LONGITUDE\": -123.4313,\n",
       "          \"OBJECTID\": 96,\n",
       "          \"PROGRAM_NAME\": \"Facilities of the National Oceanic and Atmospheric Administration and National Marine Sanctuaries\",\n",
       "          \"PROJECT_NAME\": \"Olympic Coast National Marine Sanctuary\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -123.4313,\n",
       "              48.1187200000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"San Francisco, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"San Francisco\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1217\",\n",
       "          \"LATITUDE\": 37.77712,\n",
       "          \"LONGITUDE\": -122.41966,\n",
       "          \"OBJECTID\": 97,\n",
       "          \"PROGRAM_NAME\": \"Facilities of the National Oceanic and Atmospheric Administration and National Marine Sanctuaries\",\n",
       "          \"PROJECT_NAME\": \"Greater Farallones and Cordell Bank National Marine Sanctuaries\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.41966,\n",
       "              37.77712\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Scottsdale, AZ\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Reclamation\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Scottsdale\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"7200000\",\n",
       "          \"FUNDING_NUMERIC\": 7200000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1253\",\n",
       "          \"LATITUDE\": 33.494,\n",
       "          \"LONGITUDE\": -111.92052,\n",
       "          \"OBJECTID\": 98,\n",
       "          \"PROGRAM_NAME\": \"Drought Mitigation\",\n",
       "          \"PROJECT_NAME\": \"City of Scottsdale\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.92052,\n",
       "              33.494\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Glendale, AZ\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Reclamation\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Glendale\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"8400000\",\n",
       "          \"FUNDING_NUMERIC\": 8400000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1254\",\n",
       "          \"LATITUDE\": 33.53861,\n",
       "          \"LONGITUDE\": -112.18622,\n",
       "          \"OBJECTID\": 99,\n",
       "          \"PROGRAM_NAME\": \"Drought Mitigation\",\n",
       "          \"PROJECT_NAME\": \"City of Glendale\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -112.18622,\n",
       "              33.53861\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Anchorage, AK\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Anchorage\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2349\",\n",
       "          \"LATITUDE\": 61.21753,\n",
       "          \"LONGITUDE\": -149.85815,\n",
       "          \"OBJECTID\": 100,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Wooch een y\\u00e9i jidan\\u00e9: Alaska Native Community Forest Program\",\n",
       "          \"STATE_ABBR\": \"AK\",\n",
       "          \"STATE_NAME\": \"Alaska\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -149.85815,\n",
       "              61.2175300000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Anchorage, AK\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Anchorage\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2350\",\n",
       "          \"LATITUDE\": 61.21753,\n",
       "          \"LONGITUDE\": -149.85815,\n",
       "          \"OBJECTID\": 101,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Community Reforestation in Anchorage, Alaska\",\n",
       "          \"STATE_ABBR\": \"AK\",\n",
       "          \"STATE_NAME\": \"Alaska\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -149.85815,\n",
       "              61.2175300000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Virginia Beach, VA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": \"Virginia Beach\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1864561\",\n",
       "          \"FUNDING_NUMERIC\": 1864561.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2314\",\n",
       "          \"LATITUDE\": 36.75531,\n",
       "          \"LONGITUDE\": -76.05968,\n",
       "          \"OBJECTID\": 102,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Quantifying the Efficacy of Wastewater Alkalinity Enhancement on mCDR and Acidification Mitigation in a Large Estuary\",\n",
       "          \"STATE_ABBR\": \"VA\",\n",
       "          \"STATE_NAME\": \"Virginia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -76.05968,\n",
       "              36.7553100000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"North Charleston, SC\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"North Charleston\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"59800000\",\n",
       "          \"FUNDING_NUMERIC\": 59800000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2317\",\n",
       "          \"LATITUDE\": 32.87734,\n",
       "          \"LONGITUDE\": -80.0086,\n",
       "          \"OBJECTID\": 103,\n",
       "          \"PROGRAM_NAME\": \"Facilities of the National Oceanic and Atmospheric Administration and National Marine Sanctuaries\",\n",
       "          \"PROJECT_NAME\": \"Research ship pier renovations\",\n",
       "          \"STATE_ABBR\": \"SC\",\n",
       "          \"STATE_NAME\": \"South Carolina\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.0086,\n",
       "              32.8773400000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Metlakatla, AK\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Metlakatla\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"105244\",\n",
       "          \"FUNDING_NUMERIC\": 105244.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2351\",\n",
       "          \"LATITUDE\": 55.13036,\n",
       "          \"LONGITUDE\": -131.57701,\n",
       "          \"OBJECTID\": 104,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Community Food Forest on Annette Islands Reserve\",\n",
       "          \"STATE_ABBR\": \"AK\",\n",
       "          \"STATE_NAME\": \"Alaska\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -131.57701,\n",
       "              55.1303600000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Anchorage, AK\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Anchorage\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2352\",\n",
       "          \"LATITUDE\": 61.21753,\n",
       "          \"LONGITUDE\": -149.85815,\n",
       "          \"OBJECTID\": 105,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"RurAL CAP GROW Forestry Project\",\n",
       "          \"STATE_ABBR\": \"AK\",\n",
       "          \"STATE_NAME\": \"Alaska\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -149.85815,\n",
       "              61.2175300000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Birmingham, AL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Birmingham\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"3571064\",\n",
       "          \"FUNDING_NUMERIC\": 3571064.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2353\",\n",
       "          \"LATITUDE\": 33.52072,\n",
       "          \"LONGITUDE\": -86.81179,\n",
       "          \"OBJECTID\": 106,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Cool Green Solutions\",\n",
       "          \"STATE_ABBR\": \"AL\",\n",
       "          \"STATE_NAME\": \"Alabama\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -86.81179,\n",
       "              33.52072\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Montgomery, AL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Montgomery\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2354\",\n",
       "          \"LATITUDE\": 32.38015,\n",
       "          \"LONGITUDE\": -86.30005,\n",
       "          \"OBJECTID\": 107,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Equitable Urban Tree Canopy Enhancement for Underserved Populations in Montgomery, Alabama\",\n",
       "          \"STATE_ABBR\": \"AL\",\n",
       "          \"STATE_NAME\": \"Alabama\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -86.3000499999999,\n",
       "              32.3801500000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Montgomery, AL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Montgomery\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2355\",\n",
       "          \"LATITUDE\": 32.38015,\n",
       "          \"LONGITUDE\": -86.30005,\n",
       "          \"OBJECTID\": 108,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Planting Trees, Building Capacity, and Engaging Students in Disadvantaged Communities\",\n",
       "          \"STATE_ABBR\": \"AL\",\n",
       "          \"STATE_NAME\": \"Alabama\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -86.3000499999999,\n",
       "              32.3801500000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Fayetteville, AR\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Fayetteville\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2674100\",\n",
       "          \"FUNDING_NUMERIC\": 2674100.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2357\",\n",
       "          \"LATITUDE\": 36.06354,\n",
       "          \"LONGITUDE\": -94.15791,\n",
       "          \"OBJECTID\": 109,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Connecting Community to Urban Streams and Forests in a Low-Income Neighborhood at Walker Park, Fayetteville, AR\",\n",
       "          \"STATE_ABBR\": \"AR\",\n",
       "          \"STATE_NAME\": \"Arkansas\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -94.15791,\n",
       "              36.06354\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Phoenix, AZ\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Phoenix\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2358\",\n",
       "          \"LATITUDE\": 33.44825,\n",
       "          \"LONGITUDE\": -112.0758,\n",
       "          \"OBJECTID\": 110,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Greater Phoenix Urban Forestry Accelerator\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -112.0758,\n",
       "              33.44825\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Chandler, AZ\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Chandler\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"767000\",\n",
       "          \"FUNDING_NUMERIC\": 767000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2359\",\n",
       "          \"LATITUDE\": 33.30338,\n",
       "          \"LONGITUDE\": -111.84083,\n",
       "          \"OBJECTID\": 111,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Planting for Livability in the Desert Environment: \\u00a0Growing the Urban Forest in Chandler, Arizona\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.84083,\n",
       "              33.30338\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Mesa, AZ\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Mesa\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"824900\",\n",
       "          \"FUNDING_NUMERIC\": 824900.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2360\",\n",
       "          \"LATITUDE\": 33.41704,\n",
       "          \"LONGITUDE\": -111.83146,\n",
       "          \"OBJECTID\": 112,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Trees Are Cool\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.83146,\n",
       "              33.41704\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Peoria, AZ\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Peoria\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"200000\",\n",
       "          \"FUNDING_NUMERIC\": 200000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2361\",\n",
       "          \"LATITUDE\": 33.57725,\n",
       "          \"LONGITUDE\": -112.24165,\n",
       "          \"OBJECTID\": 113,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Peoria Arizona Community Forestry Program\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -112.24165,\n",
       "              33.57725\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Phoenix, AZ\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Phoenix\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"10000000\",\n",
       "          \"FUNDING_NUMERIC\": 10000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2362\",\n",
       "          \"LATITUDE\": 33.44825,\n",
       "          \"LONGITUDE\": -112.0758,\n",
       "          \"OBJECTID\": 114,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Roots of Phoenix\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -112.0758,\n",
       "              33.44825\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Tucson, AZ\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Tucson\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2363\",\n",
       "          \"LATITUDE\": 32.22177,\n",
       "          \"LONGITUDE\": -110.96977,\n",
       "          \"OBJECTID\": 115,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Grow Tucson: A Community-Led Urban Forestry Proposal in Tucson, Arizona\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -110.96977,\n",
       "              32.22177\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Tucson, AZ\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Tucson\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"401087\",\n",
       "          \"FUNDING_NUMERIC\": 401087.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2364\",\n",
       "          \"LATITUDE\": 32.22177,\n",
       "          \"LONGITUDE\": -110.96977,\n",
       "          \"OBJECTID\": 116,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"SOMBRA in the Desert: climate resilience, shade equity, and food security in Southern Arizona\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -110.96977,\n",
       "              32.22177\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Azusa, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Azusa\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2366\",\n",
       "          \"LATITUDE\": 34.13361,\n",
       "          \"LONGITUDE\": -117.90599,\n",
       "          \"OBJECTID\": 117,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Community Canopy: Nurturing Climate Resilience in Disadvantaged Neighborhoods through Urban Forestry\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -117.90599,\n",
       "              34.13361\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Bellflower, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Bellflower\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2367\",\n",
       "          \"LATITUDE\": 33.88326,\n",
       "          \"LONGITUDE\": -118.12229,\n",
       "          \"OBJECTID\": 118,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Bellflower Urban Forestry Management Plan & Tree Planting and Maintenance\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -118.12229,\n",
       "              33.88326\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Berkeley, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Berkeley\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2368\",\n",
       "          \"LATITUDE\": 37.86988,\n",
       "          \"LONGITUDE\": -122.27054,\n",
       "          \"OBJECTID\": 119,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Trees Make Life Better\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.27054,\n",
       "              37.8698800000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Carson, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Carson\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2369\",\n",
       "          \"LATITUDE\": 33.83161,\n",
       "          \"LONGITUDE\": -118.26209,\n",
       "          \"OBJECTID\": 120,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"The City of Carson's Urban Forestry Master Plan\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -118.26209,\n",
       "              33.83161\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Little Rock, AR\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Little Rock\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1563071\",\n",
       "          \"FUNDING_NUMERIC\": 1563071.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2356\",\n",
       "          \"LATITUDE\": 34.7487,\n",
       "          \"LONGITUDE\": -92.27485,\n",
       "          \"OBJECTID\": 121,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Pathways to the Future Program Proposal (UCF-PTF)\",\n",
       "          \"STATE_ABBR\": \"AR\",\n",
       "          \"STATE_NAME\": \"Arkansas\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -92.27485,\n",
       "              34.7487\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Chula Vista, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Chula Vista\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2370\",\n",
       "          \"LATITUDE\": 32.6409,\n",
       "          \"LONGITUDE\": -117.08428,\n",
       "          \"OBJECTID\": 122,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Chula Vista Urban Forest Tree Inventory and Forest Management Plan\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -117.08428,\n",
       "              32.6409\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Corona, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Corona\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"100000\",\n",
       "          \"FUNDING_NUMERIC\": 100000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2372\",\n",
       "          \"LATITUDE\": 33.87925,\n",
       "          \"LONGITUDE\": -117.57483,\n",
       "          \"OBJECTID\": 123,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Corona Urban and Community Forestry\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -117.57483,\n",
       "              33.87925\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Concord, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Concord\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2371\",\n",
       "          \"LATITUDE\": 37.98165,\n",
       "          \"LONGITUDE\": -122.02583,\n",
       "          \"OBJECTID\": 124,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Concord Urban & Community Forestry Program\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.02583,\n",
       "              37.98165\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Escondido, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Escondido\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"665500\",\n",
       "          \"FUNDING_NUMERIC\": 665500.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2374\",\n",
       "          \"LATITUDE\": 33.12354,\n",
       "          \"LONGITUDE\": -117.08234,\n",
       "          \"OBJECTID\": 125,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Escondido Urban Forestry Management Program\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -117.08234,\n",
       "              33.12354\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"El Cajon, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"El Cajon\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"834965\",\n",
       "          \"FUNDING_NUMERIC\": 834965.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2373\",\n",
       "          \"LATITUDE\": 32.79495,\n",
       "          \"LONGITUDE\": -116.95903,\n",
       "          \"OBJECTID\": 126,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Parkway Tree Installation and Maintenance in Disadvantaged Areas\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -116.95903,\n",
       "              32.79495\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Fremont, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Fremont\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"383472\",\n",
       "          \"FUNDING_NUMERIC\": 383472.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2375\",\n",
       "          \"LATITUDE\": 37.55148,\n",
       "          \"LONGITUDE\": -121.9833,\n",
       "          \"OBJECTID\": 127,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Reforestation of Fremont's DACs and Community Urban Forestry Trainings\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -121.9833,\n",
       "              37.55148\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Goleta, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Goleta\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2377\",\n",
       "          \"LATITUDE\": 34.43575,\n",
       "          \"LONGITUDE\": -119.82516,\n",
       "          \"OBJECTID\": 128,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Goleta, California Urban Forest Climate Adaptation Project\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.82516,\n",
       "              34.43575\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Glendale, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Glendale\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"100000\",\n",
       "          \"FUNDING_NUMERIC\": 100000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2376\",\n",
       "          \"LATITUDE\": 34.14633,\n",
       "          \"LONGITUDE\": -118.24864,\n",
       "          \"OBJECTID\": 129,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Glendale Canopy Improvement\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -118.24864,\n",
       "              34.14633\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Hanford, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Hanford\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2378\",\n",
       "          \"LATITUDE\": 36.32743,\n",
       "          \"LONGITUDE\": -119.64589,\n",
       "          \"OBJECTID\": 130,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Hanford Goes Green\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.64589,\n",
       "              36.32743\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Hayward, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Hayward\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2379\",\n",
       "          \"LATITUDE\": 37.67134,\n",
       "          \"LONGITUDE\": -122.08556,\n",
       "          \"OBJECTID\": 131,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Urban Forestry Software and Hazardous Tree Removal/Replacement\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.08556,\n",
       "              37.67134\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Bowling Green, KY\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": \"Bowling Green\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-757\",\n",
       "          \"LATITUDE\": 36.99462,\n",
       "          \"LONGITUDE\": -86.44558,\n",
       "          \"OBJECTID\": 132,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"City of Bowling Green\",\n",
       "          \"STATE_ABBR\": \"KY\",\n",
       "          \"STATE_NAME\": \"Kentucky\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -86.4455799999999,\n",
       "              36.99462\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Laguna Beach, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Laguna Beach\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"100000\",\n",
       "          \"FUNDING_NUMERIC\": 100000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2380\",\n",
       "          \"LATITUDE\": 33.54536,\n",
       "          \"LONGITUDE\": -117.78153,\n",
       "          \"OBJECTID\": 133,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Seed Funding for Urban Tree Canopy Management and Analytical Resources\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -117.78153,\n",
       "              33.5453600000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Long Beach, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Long Beach\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2381\",\n",
       "          \"LATITUDE\": 33.76672,\n",
       "          \"LONGITUDE\": -118.1924,\n",
       "          \"OBJECTID\": 134,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Growing a Climate Resilient Long Beach: A Community Based Approach to Urban Forestry and Rainwater Harvesting\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -118.1924,\n",
       "              33.76672\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Oakland, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Oakland\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"8000000\",\n",
       "          \"FUNDING_NUMERIC\": 8000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2383\",\n",
       "          \"LATITUDE\": 37.80508,\n",
       "          \"LONGITUDE\": -122.27307,\n",
       "          \"OBJECTID\": 135,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Oakland: Equity through Urban Forestry\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.27307,\n",
       "              37.80508\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Oxnard, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Oxnard\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"333502\",\n",
       "          \"FUNDING_NUMERIC\": 333502.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2384\",\n",
       "          \"LATITUDE\": 34.20034,\n",
       "          \"LONGITUDE\": -119.18013,\n",
       "          \"OBJECTID\": 136,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Oxnard Urban Forestry - North Oxnard\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.18013,\n",
       "              34.20034\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Oxnard, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Oxnard\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"651423\",\n",
       "          \"FUNDING_NUMERIC\": 651423.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2385\",\n",
       "          \"LATITUDE\": 34.20034,\n",
       "          \"LONGITUDE\": -119.18013,\n",
       "          \"OBJECTID\": 137,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Oxnard Urban Forestry - South Oxnard\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.18013,\n",
       "              34.20034\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Petaluma, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Petaluma\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2386\",\n",
       "          \"LATITUDE\": 38.23262,\n",
       "          \"LONGITUDE\": -122.64426,\n",
       "          \"OBJECTID\": 138,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Petaluma Canopy\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.64426,\n",
       "              38.23262\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Pittsburg, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Pittsburg\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2387\",\n",
       "          \"LATITUDE\": 38.01946,\n",
       "          \"LONGITUDE\": -121.88851,\n",
       "          \"OBJECTID\": 139,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Pittsburg Urban Forest Management Launch\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -121.88851,\n",
       "              38.01946\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Sacramento, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Sacramento\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2389\",\n",
       "          \"LATITUDE\": 38.57944,\n",
       "          \"LONGITUDE\": -121.49085,\n",
       "          \"OBJECTID\": 140,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Sacramento's Equitable and Resilient Urban Forest Program\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -121.49085,\n",
       "              38.57944\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Riverside, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Riverside\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2388\",\n",
       "          \"LATITUDE\": 33.98171,\n",
       "          \"LONGITUDE\": -117.37404,\n",
       "          \"OBJECTID\": 141,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Community & Forestry Resiliency\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -117.37404,\n",
       "              33.98171\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"San Diego, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"San Diego\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"10000000\",\n",
       "          \"FUNDING_NUMERIC\": 10000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2390\",\n",
       "          \"LATITUDE\": 32.71568,\n",
       "          \"LONGITUDE\": -117.16171,\n",
       "          \"OBJECTID\": 142,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Ready, Set, Grow San Diego\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -117.16171,\n",
       "              32.71568\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"San Jose, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"San Jose\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2391\",\n",
       "          \"LATITUDE\": 37.33865,\n",
       "          \"LONGITUDE\": -121.88542,\n",
       "          \"OBJECTID\": 143,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Alum Rock and Overfelt Gardens Urban Forest Management\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -121.88542,\n",
       "              37.33865\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"San Jose, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"San Jose\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5644300\",\n",
       "          \"FUNDING_NUMERIC\": 5644300.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2392\",\n",
       "          \"LATITUDE\": 37.33865,\n",
       "          \"LONGITUDE\": -121.88542,\n",
       "          \"OBJECTID\": 144,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of San Jose Community Forest Investment Project\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -121.88542,\n",
       "              37.33865\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Santa Ana, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Santa Ana\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1023000\",\n",
       "          \"FUNDING_NUMERIC\": 1023000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2393\",\n",
       "          \"LATITUDE\": 33.74958,\n",
       "          \"LONGITUDE\": -117.87446,\n",
       "          \"OBJECTID\": 145,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Santa Ana Urban Forest Reforestation Project\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -117.87446,\n",
       "              33.74958\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Los Angeles, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Los Angeles\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2365\",\n",
       "          \"LATITUDE\": 34.05357,\n",
       "          \"LONGITUDE\": -118.24545,\n",
       "          \"OBJECTID\": 146,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Tree Planting in Disadvantaged Los Angeles Neighborhoods\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -118.24545,\n",
       "              34.05357\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Santa Cruz, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Santa Cruz\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2394\",\n",
       "          \"LATITUDE\": 36.97424,\n",
       "          \"LONGITUDE\": -122.03098,\n",
       "          \"OBJECTID\": 147,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Expanding Tree Canopy, Improving Tree Care, and Growing Community Capacity in Santa Cruz, California\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.03098,\n",
       "              36.9742400000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Vallejo, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Vallejo\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1734070\",\n",
       "          \"FUNDING_NUMERIC\": 1734070.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2396\",\n",
       "          \"LATITUDE\": 38.10095,\n",
       "          \"LONGITUDE\": -122.25495,\n",
       "          \"OBJECTID\": 148,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Waterfront Revival\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.25495,\n",
       "              38.10095\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Signal Hill, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Signal Hill\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2395\",\n",
       "          \"LATITUDE\": 33.79677,\n",
       "          \"LONGITUDE\": -118.1677,\n",
       "          \"OBJECTID\": 149,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Signal Hill Street Tree Planting Program Plan\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -118.1677,\n",
       "              33.79677\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Los Angeles, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Los Angeles\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"3000000\",\n",
       "          \"FUNDING_NUMERIC\": 3000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2382\",\n",
       "          \"LATITUDE\": 34.05357,\n",
       "          \"LONGITUDE\": -118.24545,\n",
       "          \"OBJECTID\": 150,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"BeLeaf in Equity\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -118.24545,\n",
       "              34.05357\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Vista, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Vista\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1593798\",\n",
       "          \"FUNDING_NUMERIC\": 1593798.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2397\",\n",
       "          \"LATITUDE\": 33.20239,\n",
       "          \"LONGITUDE\": -117.23505,\n",
       "          \"OBJECTID\": 151,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"N. Santa Fe Corridor Vista CA Landscaping and Irrigation Project\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -117.23505,\n",
       "              33.20239\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Walnut Creek, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Walnut Creek\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"100000\",\n",
       "          \"FUNDING_NUMERIC\": 100000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2398\",\n",
       "          \"LATITUDE\": 37.90162,\n",
       "          \"LONGITUDE\": -122.06189,\n",
       "          \"OBJECTID\": 152,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Walnut Creek Urban & Community Forestry 2023\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.06189,\n",
       "              37.90162\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"San Francisco, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"San Francisco\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2399\",\n",
       "          \"LATITUDE\": 37.77712,\n",
       "          \"LONGITUDE\": -122.41966,\n",
       "          \"OBJECTID\": 153,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Climate and Economic Justice in Southeast San Francisco Project\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.41966,\n",
       "              37.77712\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Napa, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Napa\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1560761\",\n",
       "          \"FUNDING_NUMERIC\": 1560761.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2402\",\n",
       "          \"LATITUDE\": 38.29911,\n",
       "          \"LONGITUDE\": -122.28541,\n",
       "          \"OBJECTID\": 154,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Our Napa Forests: Growing an Equitable Tree Canopy Through Cross-Jurisdictional Collaboration\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.28541,\n",
       "              38.29911\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"San Diego, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"San Diego\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2404\",\n",
       "          \"LATITUDE\": 32.71568,\n",
       "          \"LONGITUDE\": -117.16171,\n",
       "          \"OBJECTID\": 155,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"San Diego Regional Plan and Plant Project\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -117.16171,\n",
       "              32.71568\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"San Francisco, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"San Francisco\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"12000000\",\n",
       "          \"FUNDING_NUMERIC\": 12000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2403\",\n",
       "          \"LATITUDE\": 37.77712,\n",
       "          \"LONGITUDE\": -122.41966,\n",
       "          \"OBJECTID\": 156,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Justice, Jobs and Trees: A San Francisco Climate Solution\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.41966,\n",
       "              37.77712\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"San Luis Obispo, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"San Luis Obispo\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"3773164\",\n",
       "          \"FUNDING_NUMERIC\": 3773164.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2406\",\n",
       "          \"LATITUDE\": 35.28579,\n",
       "          \"LONGITUDE\": -120.66275,\n",
       "          \"OBJECTID\": 157,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Climate adapted trees for California's disadvantaged communities: closing the loop from seed to sustainable canopy\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.66275,\n",
       "              35.28579\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Watsonville, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Watsonville\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"3275191\",\n",
       "          \"FUNDING_NUMERIC\": 3275191.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2407\",\n",
       "          \"LATITUDE\": 36.90909,\n",
       "          \"LONGITUDE\": -121.75559,\n",
       "          \"OBJECTID\": 158,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Growing Tree Canopy, Climate Resilience, and Green Jobs Pathways in the Pajaro Valley\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -121.75559,\n",
       "              36.90909\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Aurora, CO\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Aurora\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2409\",\n",
       "          \"LATITUDE\": 39.70932,\n",
       "          \"LONGITUDE\": -104.81458,\n",
       "          \"OBJECTID\": 159,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Reinvesting in Aurora's Urban Canopy for Social Equity and Climate Resilience\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -104.81458,\n",
       "              39.70932\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Colorado Springs, CO\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Colorado Springs\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"9000000\",\n",
       "          \"FUNDING_NUMERIC\": 9000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2410\",\n",
       "          \"LATITUDE\": 38.83352,\n",
       "          \"LONGITUDE\": -104.82181,\n",
       "          \"OBJECTID\": 160,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Colorado Springs - Urban Forest Improvements\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -104.82181,\n",
       "              38.8335200000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Denver, CO\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Denver\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2411\",\n",
       "          \"LATITUDE\": 39.74001,\n",
       "          \"LONGITUDE\": -104.99202,\n",
       "          \"OBJECTID\": 161,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Denver Community Tree Planting Initiative Expansion\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -104.99202,\n",
       "              39.74001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Los Angeles, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Los Angeles\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2400\",\n",
       "          \"LATITUDE\": 34.05357,\n",
       "          \"LONGITUDE\": -118.24545,\n",
       "          \"OBJECTID\": 162,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Greening Watts\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -118.24545,\n",
       "              34.05357\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Los Angeles, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Los Angeles\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"8000000\",\n",
       "          \"FUNDING_NUMERIC\": 8000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2401\",\n",
       "          \"LATITUDE\": 34.05357,\n",
       "          \"LONGITUDE\": -118.24545,\n",
       "          \"OBJECTID\": 163,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Early Action Implementation for LA County Urban Forest Management Plan\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -118.24545,\n",
       "              34.05357\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Greeley, CO\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Greeley\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"689134\",\n",
       "          \"FUNDING_NUMERIC\": 689134.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2413\",\n",
       "          \"LATITUDE\": 40.4236,\n",
       "          \"LONGITUDE\": -104.69445,\n",
       "          \"OBJECTID\": 164,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Greeley Tree Canopy Rescue\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -104.69445,\n",
       "              40.4236000000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Monte Vista, CO\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Monte Vista\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2414\",\n",
       "          \"LATITUDE\": 37.58055,\n",
       "          \"LONGITUDE\": -106.14591,\n",
       "          \"OBJECTID\": 165,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Monte Vista Urban Canopy\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -106.14591,\n",
       "              37.5805500000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Westminster, CO\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Westminster\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"230000\",\n",
       "          \"FUNDING_NUMERIC\": 230000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2415\",\n",
       "          \"LATITUDE\": 39.86347,\n",
       "          \"LONGITUDE\": -105.05001,\n",
       "          \"OBJECTID\": 166,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Expanding an Equitable Urban Tree Canopy in Westminster, Colorado\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.05001,\n",
       "              39.86347\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Los Angeles, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Los Angeles\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"8000000\",\n",
       "          \"FUNDING_NUMERIC\": 8000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2405\",\n",
       "          \"LATITUDE\": 34.05357,\n",
       "          \"LONGITUDE\": -118.24545,\n",
       "          \"OBJECTID\": 167,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"From Redlining to Greenlining: Planting Justice in SoCal\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -118.24545,\n",
       "              34.05357\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Glenwood Springs, CO\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Glenwood Springs\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"600000\",\n",
       "          \"FUNDING_NUMERIC\": 600000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2412\",\n",
       "          \"LATITUDE\": 39.54603,\n",
       "          \"LONGITUDE\": -107.3237,\n",
       "          \"OBJECTID\": 168,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Glenwood Springs Tree Planting, Maintenance, and Education Program\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -107.3237,\n",
       "              39.54603\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Norwalk, CT\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Norwalk\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2419\",\n",
       "          \"LATITUDE\": 41.11366,\n",
       "          \"LONGITUDE\": -73.40765,\n",
       "          \"OBJECTID\": 169,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Norwalk Improvements to Increase Urban Forestry\",\n",
       "          \"STATE_ABBR\": \"CT\",\n",
       "          \"STATE_NAME\": \"Connecticut\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -73.40765,\n",
       "              41.11366\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Hartford, CT\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Hartford\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"6000000\",\n",
       "          \"FUNDING_NUMERIC\": 6000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2417\",\n",
       "          \"LATITUDE\": 41.76381,\n",
       "          \"LONGITUDE\": -72.67397,\n",
       "          \"OBJECTID\": 170,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Capitol Forest Stewardship Initiative\",\n",
       "          \"STATE_ABBR\": \"CT\",\n",
       "          \"STATE_NAME\": \"Connecticut\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -72.6739699999999,\n",
       "              41.76381\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"New Haven, CT\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"New Haven\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"362000\",\n",
       "          \"FUNDING_NUMERIC\": 362000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2418\",\n",
       "          \"LATITUDE\": 41.30801,\n",
       "          \"LONGITUDE\": -72.92432,\n",
       "          \"OBJECTID\": 171,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"A Strategic Vision for New Haven's Urban Forest\",\n",
       "          \"STATE_ABBR\": \"CT\",\n",
       "          \"STATE_NAME\": \"Connecticut\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -72.92432,\n",
       "              41.30801\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Stamford, CT\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Stamford\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2420\",\n",
       "          \"LATITUDE\": 41.05195,\n",
       "          \"LONGITUDE\": -73.54222,\n",
       "          \"OBJECTID\": 172,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Growing Together Stamford\",\n",
       "          \"STATE_ABBR\": \"CT\",\n",
       "          \"STATE_NAME\": \"Connecticut\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -73.54222,\n",
       "              41.05195\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Bridgeport, CT\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Bridgeport\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1708335\",\n",
       "          \"FUNDING_NUMERIC\": 1708335.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2421\",\n",
       "          \"LATITUDE\": 41.18213,\n",
       "          \"LONGITUDE\": -73.19064,\n",
       "          \"OBJECTID\": 173,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Revitalizing the Urban Landscape through Equitable Tree Plantings and Monitoring in Bridgeport, CT.\",\n",
       "          \"STATE_ABBR\": \"CT\",\n",
       "          \"STATE_NAME\": \"Connecticut\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -73.19064,\n",
       "              41.18213\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Wheat Ridge, CO\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Wheat Ridge\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"669073\",\n",
       "          \"FUNDING_NUMERIC\": 669073.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2416\",\n",
       "          \"LATITUDE\": 39.75845,\n",
       "          \"LONGITUDE\": -105.08018,\n",
       "          \"OBJECTID\": 174,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Expanding the Urban Tree Canopy in Wheat Ridge\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.08018,\n",
       "              39.75845\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"New Haven, CT\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"New Haven\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2640847\",\n",
       "          \"FUNDING_NUMERIC\": 2640847.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2422\",\n",
       "          \"LATITUDE\": 41.30801,\n",
       "          \"LONGITUDE\": -72.92432,\n",
       "          \"OBJECTID\": 175,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Tree Equity and Employment\",\n",
       "          \"STATE_ABBR\": \"CT\",\n",
       "          \"STATE_NAME\": \"Connecticut\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -72.92432,\n",
       "              41.30801\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Stratford, CT\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Stratford\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2424\",\n",
       "          \"LATITUDE\": 41.19875,\n",
       "          \"LONGITUDE\": -73.13308,\n",
       "          \"OBJECTID\": 176,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Town of Stratford South End Tree Inventory, Management Plan & Arboretum\",\n",
       "          \"STATE_ABBR\": \"CT\",\n",
       "          \"STATE_NAME\": \"Connecticut\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -73.1330799999999,\n",
       "              41.1987500000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"New Haven, CT\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"New Haven\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2230355\",\n",
       "          \"FUNDING_NUMERIC\": 2230355.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2423\",\n",
       "          \"LATITUDE\": 41.30801,\n",
       "          \"LONGITUDE\": -72.92432,\n",
       "          \"OBJECTID\": 177,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Connecticut Urban Forest Network for Equity and Resilience\",\n",
       "          \"STATE_ABBR\": \"CT\",\n",
       "          \"STATE_NAME\": \"Connecticut\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -72.92432,\n",
       "              41.30801\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Dover, DE\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Dover\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2426\",\n",
       "          \"LATITUDE\": 39.15803,\n",
       "          \"LONGITUDE\": -75.52473,\n",
       "          \"OBJECTID\": 178,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"The Delaware Forest Service Project\",\n",
       "          \"STATE_ABBR\": \"DE\",\n",
       "          \"STATE_NAME\": \"Delaware\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -75.52473,\n",
       "              39.15803\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Homestead, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Homestead\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"755668\",\n",
       "          \"FUNDING_NUMERIC\": 755668.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2429\",\n",
       "          \"LATITUDE\": 25.4765,\n",
       "          \"LONGITUDE\": -80.46552,\n",
       "          \"OBJECTID\": 179,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Urban Forest Reforestation\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.46552,\n",
       "              25.4765\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Hollywood, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Hollywood\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"455659\",\n",
       "          \"FUNDING_NUMERIC\": 455659.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2428\",\n",
       "          \"LATITUDE\": 26.01067,\n",
       "          \"LONGITUDE\": -80.16026,\n",
       "          \"OBJECTID\": 180,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Hollywood Urban Forestry Resiliency\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.1602599999999,\n",
       "              26.0106700000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Kissimmee, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Kissimmee\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"100000\",\n",
       "          \"FUNDING_NUMERIC\": 100000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2430\",\n",
       "          \"LATITUDE\": 28.29457,\n",
       "          \"LONGITUDE\": -81.40663,\n",
       "          \"OBJECTID\": 181,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Lancaster Ranch Park Reforestation\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -81.40663,\n",
       "              28.2945700000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Washington, DC\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Washington\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"9115260\",\n",
       "          \"FUNDING_NUMERIC\": 9115260.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2425\",\n",
       "          \"LATITUDE\": 38.89037,\n",
       "          \"LONGITUDE\": -77.03196,\n",
       "          \"OBJECTID\": 182,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Advancing Tree Equity in the Washington Metropolitan Region\",\n",
       "          \"STATE_ABBR\": \"DC\",\n",
       "          \"STATE_NAME\": \"District of Columbia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -77.03196,\n",
       "              38.89037\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Margate, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Margate\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"100000\",\n",
       "          \"FUNDING_NUMERIC\": 100000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2431\",\n",
       "          \"LATITUDE\": 26.24239,\n",
       "          \"LONGITUDE\": -80.20462,\n",
       "          \"OBJECTID\": 183,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Margate Tree Canopy Improvement\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.20462,\n",
       "              26.2423900000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Opa-locka, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Opa-locka\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2434\",\n",
       "          \"LATITUDE\": 25.90457,\n",
       "          \"LONGITUDE\": -80.25298,\n",
       "          \"OBJECTID\": 184,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Opa-locka\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.25298,\n",
       "              25.90457\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Miami, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Miami\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2432\",\n",
       "          \"LATITUDE\": 25.77481,\n",
       "          \"LONGITUDE\": -80.19773,\n",
       "          \"OBJECTID\": 185,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Miami Urban Forest and Green Workforce Project\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.19773,\n",
       "              25.77481\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Orlando, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Orlando\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2435\",\n",
       "          \"LATITUDE\": 28.53823,\n",
       "          \"LONGITUDE\": -81.37739,\n",
       "          \"OBJECTID\": 186,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Orlando Urban & Community Forestry Grant\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -81.37739,\n",
       "              28.5382300000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Pensacola, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Pensacola\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2437\",\n",
       "          \"LATITUDE\": 30.42099,\n",
       "          \"LONGITUDE\": -87.21726,\n",
       "          \"OBJECTID\": 187,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Pensacola's Urban Forests Forever Project\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -87.21726,\n",
       "              30.42099\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Panama City, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Panama City\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2436\",\n",
       "          \"LATITUDE\": 30.15987,\n",
       "          \"LONGITUDE\": -85.66033,\n",
       "          \"OBJECTID\": 188,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Eastside Panama City Tree Canopy Restoration\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -85.66033,\n",
       "              30.1598700000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Miami Beach, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Miami Beach\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2433\",\n",
       "          \"LATITUDE\": 25.79339,\n",
       "          \"LONGITUDE\": -80.13493,\n",
       "          \"OBJECTID\": 189,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Beachwalk Reforestation Project\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.1349299999999,\n",
       "              25.79339\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Cape Coral, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Cape Coral\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2427\",\n",
       "          \"LATITUDE\": 26.62982,\n",
       "          \"LONGITUDE\": -81.95675,\n",
       "          \"OBJECTID\": 190,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Cape Coral Urban Parks and Greenspace Reforestation Project\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -81.95675,\n",
       "              26.62982\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Tamarac, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Tamarac\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"516485\",\n",
       "          \"FUNDING_NUMERIC\": 516485.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2441\",\n",
       "          \"LATITUDE\": 26.21515,\n",
       "          \"LONGITUDE\": -80.27285,\n",
       "          \"OBJECTID\": 191,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Tamarac Roadway Urban Froestry\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.27285,\n",
       "              26.21515\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Riviera Beach, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Riviera Beach\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1350000\",\n",
       "          \"FUNDING_NUMERIC\": 1350000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2439\",\n",
       "          \"LATITUDE\": 26.78349,\n",
       "          \"LONGITUDE\": -80.06401,\n",
       "          \"OBJECTID\": 192,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Riviera Beach Urban Forestry Renewal Project\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.0640099999999,\n",
       "              26.78349\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Tampa, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Tampa\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2442\",\n",
       "          \"LATITUDE\": 27.94653,\n",
       "          \"LONGITUDE\": -82.45927,\n",
       "          \"OBJECTID\": 193,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Trees for Tampa\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -82.45927,\n",
       "              27.94653\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Port St. Lucie, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Port St. Lucie\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2438\",\n",
       "          \"LATITUDE\": 27.27481,\n",
       "          \"LONGITUDE\": -80.36367,\n",
       "          \"OBJECTID\": 194,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Grow Green, Port St. Lucie\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.36367,\n",
       "              27.2748100000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Satellite Beach, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Satellite Beach\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"806240\",\n",
       "          \"FUNDING_NUMERIC\": 806240.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2440\",\n",
       "          \"LATITUDE\": 28.17235,\n",
       "          \"LONGITUDE\": -80.60208,\n",
       "          \"OBJECTID\": 195,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Satellite Beach Urban Forest Management Program\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.60208,\n",
       "              28.17235\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Miami, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Miami\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2445\",\n",
       "          \"LATITUDE\": 25.77481,\n",
       "          \"LONGITUDE\": -80.19773,\n",
       "          \"OBJECTID\": 196,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Growing Miami\\u2019s Green Corridor\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.19773,\n",
       "              25.77481\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Miami, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Miami\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"10000000\",\n",
       "          \"FUNDING_NUMERIC\": 10000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2446\",\n",
       "          \"LATITUDE\": 25.77481,\n",
       "          \"LONGITUDE\": -80.19773,\n",
       "          \"OBJECTID\": 197,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Miami-Dade County Department of Parks, Recreation and Outdoor Spaces\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.19773,\n",
       "              25.77481\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Winter Haven, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Winter Haven\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"347804\",\n",
       "          \"FUNDING_NUMERIC\": 347804.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2444\",\n",
       "          \"LATITUDE\": 28.02232,\n",
       "          \"LONGITUDE\": -81.73295,\n",
       "          \"OBJECTID\": 198,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Winter Haven Urban Forest Master Plan Implementation Phase 1\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -81.73295,\n",
       "              28.02232\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Tarpon Springs, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Tarpon Springs\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"100000\",\n",
       "          \"FUNDING_NUMERIC\": 100000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2443\",\n",
       "          \"LATITUDE\": 28.15084,\n",
       "          \"LONGITUDE\": -82.75306,\n",
       "          \"OBJECTID\": 199,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Tarpon Springs Raise the Limb for Safety Project\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -82.75306,\n",
       "              28.15084\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Atlanta, GA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Atlanta\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2451\",\n",
       "          \"LATITUDE\": 33.74831,\n",
       "          \"LONGITUDE\": -84.39111,\n",
       "          \"OBJECTID\": 200,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City in a Forest: Protecting Atlanta's Legacy\",\n",
       "          \"STATE_ABBR\": \"GA\",\n",
       "          \"STATE_NAME\": \"Georgia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -84.39111,\n",
       "              33.7483100000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Sanderson, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Sanderson\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2250700\",\n",
       "          \"FUNDING_NUMERIC\": 2250700.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2447\",\n",
       "          \"LATITUDE\": 30.25051,\n",
       "          \"LONGITUDE\": -82.27137,\n",
       "          \"OBJECTID\": 201,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Osceola Tree Canopy Improvement Project\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -82.27137,\n",
       "              30.2505100000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Decatur, GA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Decatur\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"100000\",\n",
       "          \"FUNDING_NUMERIC\": 100000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2452\",\n",
       "          \"LATITUDE\": 33.77437,\n",
       "          \"LONGITUDE\": -84.29658,\n",
       "          \"OBJECTID\": 202,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Downtown Decatur Canopy Management and Resilience Plan\",\n",
       "          \"STATE_ABBR\": \"GA\",\n",
       "          \"STATE_NAME\": \"Georgia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -84.29658,\n",
       "              33.77437\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Wellington, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Wellington\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"747500\",\n",
       "          \"FUNDING_NUMERIC\": 747500.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2449\",\n",
       "          \"LATITUDE\": 26.64393,\n",
       "          \"LONGITUDE\": -80.27001,\n",
       "          \"OBJECTID\": 203,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Improving Wellington's Tree Canopy\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.27001,\n",
       "              26.6439300000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Atlanta, GA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Atlanta\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"439100\",\n",
       "          \"FUNDING_NUMERIC\": 439100.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2453\",\n",
       "          \"LATITUDE\": 33.74831,\n",
       "          \"LONGITUDE\": -84.39111,\n",
       "          \"OBJECTID\": 204,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Atlanta Watershed Learning Network\",\n",
       "          \"STATE_ABBR\": \"GA\",\n",
       "          \"STATE_NAME\": \"Georgia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -84.39111,\n",
       "              33.7483100000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Atlanta, GA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Atlanta\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2454\",\n",
       "          \"LATITUDE\": 33.74831,\n",
       "          \"LONGITUDE\": -84.39111,\n",
       "          \"OBJECTID\": 205,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Canopy for Just Communities\",\n",
       "          \"STATE_ABBR\": \"GA\",\n",
       "          \"STATE_NAME\": \"Georgia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -84.39111,\n",
       "              33.7483100000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Virginia Gardens, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Virginia Gardens\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"150000\",\n",
       "          \"FUNDING_NUMERIC\": 150000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2448\",\n",
       "          \"LATITUDE\": 25.80967,\n",
       "          \"LONGITUDE\": -80.30272,\n",
       "          \"OBJECTID\": 206,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Tree Inventory and Master Plan\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.30272,\n",
       "              25.80967\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Atlanta, GA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Atlanta\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"10000000\",\n",
       "          \"FUNDING_NUMERIC\": 10000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2455\",\n",
       "          \"LATITUDE\": 33.74831,\n",
       "          \"LONGITUDE\": -84.39111,\n",
       "          \"OBJECTID\": 207,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Promoting Tree Equity and Urban Forestry Workforce Diversity in Atlanta\",\n",
       "          \"STATE_ABBR\": \"GA\",\n",
       "          \"STATE_NAME\": \"Georgia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -84.39111,\n",
       "              33.7483100000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Honolulu, HI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Honolulu\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2457\",\n",
       "          \"LATITUDE\": 21.30493,\n",
       "          \"LONGITUDE\": -157.85788,\n",
       "          \"OBJECTID\": 208,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Planning, Planting, and Partnering for Oahu's Urban and Community Forest\",\n",
       "          \"STATE_ABBR\": \"HI\",\n",
       "          \"STATE_NAME\": \"Hawaii\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -157.85788,\n",
       "              21.30493\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Captain Cook, HI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Captain Cook\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2458\",\n",
       "          \"LATITUDE\": 19.49399,\n",
       "          \"LONGITUDE\": -155.91841,\n",
       "          \"OBJECTID\": 209,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Resilient Forests - Strong Communities: \\u00a0Anchoring a Public Forestry Campaign in Hawaii's Only Federally-designated Community Forest\",\n",
       "          \"STATE_ABBR\": \"HI\",\n",
       "          \"STATE_NAME\": \"Hawaii\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -155.91841,\n",
       "              19.49399\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Honolulu, HI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Honolulu\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2459\",\n",
       "          \"LATITUDE\": 21.30493,\n",
       "          \"LONGITUDE\": -157.85788,\n",
       "          \"OBJECTID\": 210,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Trees for People: Growing an Urban Community Food & Native Forest\",\n",
       "          \"STATE_ABBR\": \"HI\",\n",
       "          \"STATE_NAME\": \"Hawaii\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -157.85788,\n",
       "              21.30493\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Honolulu, HI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Honolulu\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"585500\",\n",
       "          \"FUNDING_NUMERIC\": 585500.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2460\",\n",
       "          \"LATITUDE\": 21.30493,\n",
       "          \"LONGITUDE\": -157.85788,\n",
       "          \"OBJECTID\": 211,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Native Hawaiian Hardwoods\",\n",
       "          \"STATE_ABBR\": \"HI\",\n",
       "          \"STATE_NAME\": \"Hawaii\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -157.85788,\n",
       "              21.30493\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Honolulu, HI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Honolulu\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2461\",\n",
       "          \"LATITUDE\": 21.30493,\n",
       "          \"LONGITUDE\": -157.85788,\n",
       "          \"OBJECTID\": 212,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Grow Right Ahead: \\u00a0Urban Forestry for an Equitable Future\",\n",
       "          \"STATE_ABBR\": \"HI\",\n",
       "          \"STATE_NAME\": \"Hawaii\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -157.85788,\n",
       "              21.30493\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Honolulu, HI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Honolulu\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"20000000\",\n",
       "          \"FUNDING_NUMERIC\": 20000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2462\",\n",
       "          \"LATITUDE\": 21.30493,\n",
       "          \"LONGITUDE\": -157.85788,\n",
       "          \"OBJECTID\": 213,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"MALU Subawards Meaningful Arboriculture to Limit Vulnerability in Urban & Community Areas\",\n",
       "          \"STATE_ABBR\": \"HI\",\n",
       "          \"STATE_NAME\": \"Hawaii\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -157.85788,\n",
       "              21.30493\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Kailua, HI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Kailua\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"9000000\",\n",
       "          \"FUNDING_NUMERIC\": 9000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2463\",\n",
       "          \"LATITUDE\": 21.39688,\n",
       "          \"LONGITUDE\": -157.73946,\n",
       "          \"OBJECTID\": 214,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Qualified Arboricultural Workforce Development for Pacific Island Disadvantaged Communities: Building Climate Resiliency, Community Health, and Welfare\",\n",
       "          \"STATE_ABBR\": \"HI\",\n",
       "          \"STATE_NAME\": \"Hawaii\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -157.73946,\n",
       "              21.39688\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Hilo, HI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Hilo\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2456\",\n",
       "          \"LATITUDE\": 19.71924,\n",
       "          \"LONGITUDE\": -155.08185,\n",
       "          \"OBJECTID\": 215,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Pilina Aina: Providing Access to Place-Based, Biocultural Stewardship Learning Opportunities for Hawaii's Students and Teachers\",\n",
       "          \"STATE_ABBR\": \"HI\",\n",
       "          \"STATE_NAME\": \"Hawaii\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -155.08185,\n",
       "              19.71924\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Ames, IA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Ames\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"810500\",\n",
       "          \"FUNDING_NUMERIC\": 810500.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2465\",\n",
       "          \"LATITUDE\": 42.02534,\n",
       "          \"LONGITUDE\": -93.6202,\n",
       "          \"OBJECTID\": 216,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Amazing Ames: A Thriving Canopy for a Thriving Community\",\n",
       "          \"STATE_ABBR\": \"IA\",\n",
       "          \"STATE_NAME\": \"Iowa\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -93.6202,\n",
       "              42.02534\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Decorah, IA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Decorah\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"629652\",\n",
       "          \"FUNDING_NUMERIC\": 629652.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2468\",\n",
       "          \"LATITUDE\": 43.30388,\n",
       "          \"LONGITUDE\": -91.79093,\n",
       "          \"OBJECTID\": 217,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Decorah Urban Forest Revitalization Project\",\n",
       "          \"STATE_ABBR\": \"IA\",\n",
       "          \"STATE_NAME\": \"Iowa\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -91.79093,\n",
       "              43.30388\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Cedar Rapids, IA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Cedar Rapids\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"6000000\",\n",
       "          \"FUNDING_NUMERIC\": 6000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2466\",\n",
       "          \"LATITUDE\": 41.97646,\n",
       "          \"LONGITUDE\": -91.67346,\n",
       "          \"OBJECTID\": 218,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"ReLeaf Cedar Rapids: Bringing Back a Community's Trees\",\n",
       "          \"STATE_ABBR\": \"IA\",\n",
       "          \"STATE_NAME\": \"Iowa\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -91.67346,\n",
       "              41.97646\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Council Bluffs, IA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Council Bluffs\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"600000\",\n",
       "          \"FUNDING_NUMERIC\": 600000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2467\",\n",
       "          \"LATITUDE\": 41.25818,\n",
       "          \"LONGITUDE\": -95.8511,\n",
       "          \"OBJECTID\": 219,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"UCF Council Bluffs\",\n",
       "          \"STATE_ABBR\": \"IA\",\n",
       "          \"STATE_NAME\": \"Iowa\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -95.8511,\n",
       "              41.25818\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Dubuque, IA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Dubuque\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1499978\",\n",
       "          \"FUNDING_NUMERIC\": 1499978.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2470\",\n",
       "          \"LATITUDE\": 42.49913,\n",
       "          \"LONGITUDE\": -90.66327,\n",
       "          \"OBJECTID\": 220,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Branching Out Dubuque\",\n",
       "          \"STATE_ABBR\": \"IA\",\n",
       "          \"STATE_NAME\": \"Iowa\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -90.66327,\n",
       "              42.49913\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Hilo, HI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Hilo\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2464\",\n",
       "          \"LATITUDE\": 19.71924,\n",
       "          \"LONGITUDE\": -155.08185,\n",
       "          \"OBJECTID\": 221,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Native Hawaiian Homestead Associations: Community Forests and Family Trees for Native Hawaiian Health and Well-Being\",\n",
       "          \"STATE_ABBR\": \"HI\",\n",
       "          \"STATE_NAME\": \"Hawaii\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -155.08185,\n",
       "              19.71924\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Hailey, ID\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Hailey\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"139390\",\n",
       "          \"FUNDING_NUMERIC\": 139390.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2473\",\n",
       "          \"LATITUDE\": 43.52107,\n",
       "          \"LONGITUDE\": -114.31644,\n",
       "          \"OBJECTID\": 222,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Growing Our Equitable Urban Forest - Kiwanis Park Tree Planting Project\",\n",
       "          \"STATE_ABBR\": \"ID\",\n",
       "          \"STATE_NAME\": \"Idaho\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -114.31644,\n",
       "              43.5210700000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Des Moines, IA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Des Moines\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2500000\",\n",
       "          \"FUNDING_NUMERIC\": 2500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2469\",\n",
       "          \"LATITUDE\": 41.58981,\n",
       "          \"LONGITUDE\": -93.61538,\n",
       "          \"OBJECTID\": 223,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Expanding the Urban Canopy in Disadvantaged Communities of Des Moines\",\n",
       "          \"STATE_ABBR\": \"IA\",\n",
       "          \"STATE_NAME\": \"Iowa\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -93.61538,\n",
       "              41.58981\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Malad City, ID\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Malad City\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2474\",\n",
       "          \"LATITUDE\": 42.18695,\n",
       "          \"LONGITUDE\": -112.2473,\n",
       "          \"OBJECTID\": 224,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Malad City, Idaho Urban Forestry Project\",\n",
       "          \"STATE_ABBR\": \"ID\",\n",
       "          \"STATE_NAME\": \"Idaho\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -112.2473,\n",
       "              42.18695\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Nampa, ID\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Nampa\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2475\",\n",
       "          \"LATITUDE\": 43.58263,\n",
       "          \"LONGITUDE\": -116.56962,\n",
       "          \"OBJECTID\": 225,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Preserve, Protect, and Enhance Nampa's Urban Forest\",\n",
       "          \"STATE_ABBR\": \"ID\",\n",
       "          \"STATE_NAME\": \"Idaho\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -116.56962,\n",
       "              43.58263\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Des Moines, IA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Des Moines\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"3190613\",\n",
       "          \"FUNDING_NUMERIC\": 3190613.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2472\",\n",
       "          \"LATITUDE\": 41.58981,\n",
       "          \"LONGITUDE\": -93.61538,\n",
       "          \"OBJECTID\": 226,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Increasing Opportunities in Iowa to Protect, Enhance and Expand Community Forests\",\n",
       "          \"STATE_ABBR\": \"IA\",\n",
       "          \"STATE_NAME\": \"Iowa\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -93.61538,\n",
       "              41.58981\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Rexburg, ID\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Rexburg\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2477\",\n",
       "          \"LATITUDE\": 43.82608,\n",
       "          \"LONGITUDE\": -111.78252,\n",
       "          \"OBJECTID\": 227,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Growing Green for Rexburg\",\n",
       "          \"STATE_ABBR\": \"ID\",\n",
       "          \"STATE_NAME\": \"Idaho\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.78252,\n",
       "              43.82608\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Pocatello, ID\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Pocatello\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2476\",\n",
       "          \"LATITUDE\": 42.87497,\n",
       "          \"LONGITUDE\": -112.45056,\n",
       "          \"OBJECTID\": 228,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Pocatello Urban Forest\",\n",
       "          \"STATE_ABBR\": \"ID\",\n",
       "          \"STATE_NAME\": \"Idaho\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -112.45056,\n",
       "              42.87497\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Boise, ID\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Boise\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1076500\",\n",
       "          \"FUNDING_NUMERIC\": 1076500.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2479\",\n",
       "          \"LATITUDE\": 43.60764,\n",
       "          \"LONGITUDE\": -116.1934,\n",
       "          \"OBJECTID\": 229,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Treasure Valley Canopy Equity\",\n",
       "          \"STATE_ABBR\": \"ID\",\n",
       "          \"STATE_NAME\": \"Idaho\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -116.1934,\n",
       "              43.6076400000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Aurora, IL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Aurora\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2480\",\n",
       "          \"LATITUDE\": 41.7571,\n",
       "          \"LONGITUDE\": -88.31613,\n",
       "          \"OBJECTID\": 230,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Improving Aurora's Urban Forest\",\n",
       "          \"STATE_ABBR\": \"IL\",\n",
       "          \"STATE_NAME\": \"Illinois\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -88.31613,\n",
       "              41.7571\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Danville, IL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Danville\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2481\",\n",
       "          \"LATITUDE\": 40.15982,\n",
       "          \"LONGITUDE\": -87.63042,\n",
       "          \"OBJECTID\": 231,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Community Roots: Danville's Urban Reforestation and Revitalization Plan\",\n",
       "          \"STATE_ABBR\": \"IL\",\n",
       "          \"STATE_NAME\": \"Illinois\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -87.63042,\n",
       "              40.15982\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Decatur, IL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Decatur\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"750000\",\n",
       "          \"FUNDING_NUMERIC\": 750000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2482\",\n",
       "          \"LATITUDE\": 39.84585,\n",
       "          \"LONGITUDE\": -88.95209,\n",
       "          \"OBJECTID\": 232,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"21st Century Decatur Urban Forests Project\",\n",
       "          \"STATE_ABBR\": \"IL\",\n",
       "          \"STATE_NAME\": \"Illinois\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -88.9520899999999,\n",
       "              39.84585\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Evanston, IL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Evanston\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"802500\",\n",
       "          \"FUNDING_NUMERIC\": 802500.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2483\",\n",
       "          \"LATITUDE\": 42.05702,\n",
       "          \"LONGITUDE\": -87.68645,\n",
       "          \"OBJECTID\": 233,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Improving urban forest health in Evanston's Channel-side parks\",\n",
       "          \"STATE_ABBR\": \"IL\",\n",
       "          \"STATE_NAME\": \"Illinois\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -87.68645,\n",
       "              42.0570200000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Kewanee, IL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Kewanee\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"220685\",\n",
       "          \"FUNDING_NUMERIC\": 220685.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2484\",\n",
       "          \"LATITUDE\": 41.2473,\n",
       "          \"LONGITUDE\": -89.92486,\n",
       "          \"OBJECTID\": 234,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Kewanee Il's Community Forest Plan\",\n",
       "          \"STATE_ABBR\": \"IL\",\n",
       "          \"STATE_NAME\": \"Illinois\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -89.92486,\n",
       "              41.2473000000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Soda Springs, ID\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Soda Springs\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2478\",\n",
       "          \"LATITUDE\": 42.65468,\n",
       "          \"LONGITUDE\": -111.60291,\n",
       "          \"OBJECTID\": 235,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Ledge Creek Recreation Area\",\n",
       "          \"STATE_ABBR\": \"ID\",\n",
       "          \"STATE_NAME\": \"Idaho\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.60291,\n",
       "              42.65468\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"West Des Moines, IA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"West Des Moines\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2471\",\n",
       "          \"LATITUDE\": 41.5677,\n",
       "          \"LONGITUDE\": -93.75694,\n",
       "          \"OBJECTID\": 236,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Delivering Environmental Justice to WDM'S Most Underserved & Environmentally Sensitive Neghborhoods\",\n",
       "          \"STATE_ABBR\": \"IA\",\n",
       "          \"STATE_NAME\": \"Iowa\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -93.75694,\n",
       "              41.5677000000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Lisle, IL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Lisle\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"15000000\",\n",
       "          \"FUNDING_NUMERIC\": 15000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2487\",\n",
       "          \"LATITUDE\": 41.79884,\n",
       "          \"LONGITUDE\": -88.07191,\n",
       "          \"OBJECTID\": 237,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Building Urban and Community Forestry Resilience and Capacity in Under-Resourced Communities and Neighborhoods Across Illinois\",\n",
       "          \"STATE_ABBR\": \"IL\",\n",
       "          \"STATE_NAME\": \"Illinois\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -88.07191,\n",
       "              41.79884\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Chicago, IL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Chicago\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1999835\",\n",
       "          \"FUNDING_NUMERIC\": 1999835.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2486\",\n",
       "          \"LATITUDE\": 41.88425,\n",
       "          \"LONGITUDE\": -87.63245,\n",
       "          \"OBJECTID\": 238,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Faith Action to Expand Tree Equity and Forestry Workforce in Disadvantaged Communities in Illinois, Indiana, and Wisconsin\",\n",
       "          \"STATE_ABBR\": \"IL\",\n",
       "          \"STATE_NAME\": \"Illinois\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -87.63245,\n",
       "              41.8842500000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Rantoul, IL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Rantoul\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"250000\",\n",
       "          \"FUNDING_NUMERIC\": 250000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2490\",\n",
       "          \"LATITUDE\": 40.3085,\n",
       "          \"LONGITUDE\": -88.14622,\n",
       "          \"OBJECTID\": 239,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Village of Rantoul\",\n",
       "          \"STATE_ABBR\": \"IL\",\n",
       "          \"STATE_NAME\": \"Illinois\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -88.14622,\n",
       "              40.3085\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Springfield, IL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Springfield\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"889027\",\n",
       "          \"FUNDING_NUMERIC\": 889027.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2485\",\n",
       "          \"LATITUDE\": 39.8013,\n",
       "          \"LONGITUDE\": -89.6436,\n",
       "          \"OBJECTID\": 240,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Springfield Urban Forestry Program\",\n",
       "          \"STATE_ABBR\": \"IL\",\n",
       "          \"STATE_NAME\": \"Illinois\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -89.6436,\n",
       "              39.8013\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Skokie, IL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Skokie\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"327740\",\n",
       "          \"FUNDING_NUMERIC\": 327740.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2491\",\n",
       "          \"LATITUDE\": 42.02634,\n",
       "          \"LONGITUDE\": -87.75545,\n",
       "          \"OBJECTID\": 241,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Educating and Planting Private and Public Trees with a Focus on Skokie's Climate and Economic Justice Disadvantaged Areas\",\n",
       "          \"STATE_ABBR\": \"IL\",\n",
       "          \"STATE_NAME\": \"Illinois\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -87.7554499999999,\n",
       "              42.02634\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Chicago, IL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Chicago\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2488\",\n",
       "          \"LATITUDE\": 41.88425,\n",
       "          \"LONGITUDE\": -87.63245,\n",
       "          \"OBJECTID\": 242,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Collective Urban Forestry Stewardship in Chicago, IL\",\n",
       "          \"STATE_ABBR\": \"IL\",\n",
       "          \"STATE_NAME\": \"Illinois\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -87.63245,\n",
       "              41.8842500000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Bloomington, IN\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Bloomington\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"100000\",\n",
       "          \"FUNDING_NUMERIC\": 100000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2492\",\n",
       "          \"LATITUDE\": 39.1666,\n",
       "          \"LONGITUDE\": -86.5348,\n",
       "          \"OBJECTID\": 243,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Bloomington Urban Forest Storm Resilience and Access Plan\",\n",
       "          \"STATE_ABBR\": \"IN\",\n",
       "          \"STATE_NAME\": \"Indiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -86.5348,\n",
       "              39.1666000000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Elkhart, IN\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Elkhart\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2493\",\n",
       "          \"LATITUDE\": 41.68676,\n",
       "          \"LONGITUDE\": -85.97567,\n",
       "          \"OBJECTID\": 244,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Trees for the Hart Public Education and Climate Resilience for the City of Elkhart\",\n",
       "          \"STATE_ABBR\": \"IN\",\n",
       "          \"STATE_NAME\": \"Indiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -85.97567,\n",
       "              41.68676\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Goshen, IN\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Goshen\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2494\",\n",
       "          \"LATITUDE\": 41.58918,\n",
       "          \"LONGITUDE\": -85.83695,\n",
       "          \"OBJECTID\": 245,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Connecting People to Forests and Food\",\n",
       "          \"STATE_ABBR\": \"IN\",\n",
       "          \"STATE_NAME\": \"Indiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -85.83695,\n",
       "              41.58918\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Huntington, IN\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Huntington\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2495\",\n",
       "          \"LATITUDE\": 40.88284,\n",
       "          \"LONGITUDE\": -85.49425,\n",
       "          \"OBJECTID\": 246,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Huntington Tree Canopy Equitable Growth Program\",\n",
       "          \"STATE_ABBR\": \"IN\",\n",
       "          \"STATE_NAME\": \"Indiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -85.49425,\n",
       "              40.88284\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Indianapolis, IN\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Indianapolis\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"12000000\",\n",
       "          \"FUNDING_NUMERIC\": 12000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2496\",\n",
       "          \"LATITUDE\": 39.76691,\n",
       "          \"LONGITUDE\": -86.15012,\n",
       "          \"OBJECTID\": 247,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Indianapolis Canopy Growth and Resilience Initiative\",\n",
       "          \"STATE_ABBR\": \"IN\",\n",
       "          \"STATE_NAME\": \"Indiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -86.15012,\n",
       "              39.7669100000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Muncie, IN\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Muncie\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2499\",\n",
       "          \"LATITUDE\": 40.19316,\n",
       "          \"LONGITUDE\": -85.38173,\n",
       "          \"OBJECTID\": 248,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Rooted in Community\",\n",
       "          \"STATE_ABBR\": \"IN\",\n",
       "          \"STATE_NAME\": \"Indiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -85.38173,\n",
       "              40.19316\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Michigan City, IN\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Michigan City\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2498\",\n",
       "          \"LATITUDE\": 41.71936,\n",
       "          \"LONGITUDE\": -86.90317,\n",
       "          \"OBJECTID\": 249,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Michigan City Urban Reforestation\",\n",
       "          \"STATE_ABBR\": \"IN\",\n",
       "          \"STATE_NAME\": \"Indiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -86.90317,\n",
       "              41.71936\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Arlington Heights, IL\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Arlington Heights\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"100000\",\n",
       "          \"FUNDING_NUMERIC\": 100000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2489\",\n",
       "          \"LATITUDE\": 42.08729,\n",
       "          \"LONGITUDE\": -87.98044,\n",
       "          \"OBJECTID\": 250,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Updated Tree Inventory, Urban Forest Management Plan Development, & Community Outreach\",\n",
       "          \"STATE_ABBR\": \"IL\",\n",
       "          \"STATE_NAME\": \"Illinois\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -87.98044,\n",
       "              42.0872900000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Bloomington, IN\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Bloomington\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2501\",\n",
       "          \"LATITUDE\": 39.1666,\n",
       "          \"LONGITUDE\": -86.5348,\n",
       "          \"OBJECTID\": 251,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"The Urban Green Infrastructure (UGI) Resilience Cohort for Indiana's Disadvantaged Communities\",\n",
       "          \"STATE_ABBR\": \"IN\",\n",
       "          \"STATE_NAME\": \"Indiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -86.5348,\n",
       "              39.1666000000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"South Bend, IN\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"South Bend\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1867730\",\n",
       "          \"FUNDING_NUMERIC\": 1867730.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2500\",\n",
       "          \"LATITUDE\": 41.67907,\n",
       "          \"LONGITUDE\": -86.25405,\n",
       "          \"OBJECTID\": 252,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"South Bend Urban Tree Nursery Network\",\n",
       "          \"STATE_ABBR\": \"IN\",\n",
       "          \"STATE_NAME\": \"Indiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -86.25405,\n",
       "              41.67907\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"La Porte, IN\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"La Porte\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2497\",\n",
       "          \"LATITUDE\": 41.60954,\n",
       "          \"LONGITUDE\": -86.72139,\n",
       "          \"OBJECTID\": 253,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of La Porte Urban Canopy Enhancement\",\n",
       "          \"STATE_ABBR\": \"IN\",\n",
       "          \"STATE_NAME\": \"Indiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -86.72139,\n",
       "              41.60954\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Hutchinson, KS\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Hutchinson\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"250000\",\n",
       "          \"FUNDING_NUMERIC\": 250000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2502\",\n",
       "          \"LATITUDE\": 38.05725,\n",
       "          \"LONGITUDE\": -97.93248,\n",
       "          \"OBJECTID\": 254,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Dead tree removal on right of ways\",\n",
       "          \"STATE_ABBR\": \"KS\",\n",
       "          \"STATE_NAME\": \"Kansas\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -97.9324799999999,\n",
       "              38.0572500000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Olathe, KS\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Olathe\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2503\",\n",
       "          \"LATITUDE\": 38.88353,\n",
       "          \"LONGITUDE\": -94.81852,\n",
       "          \"OBJECTID\": 255,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Fostering Forestry: A Plan to Advance the Health & Wellness of Urban Forests in Olathe, Kansas\",\n",
       "          \"STATE_ABBR\": \"KS\",\n",
       "          \"STATE_NAME\": \"Kansas\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -94.81852,\n",
       "              38.8835300000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Elizabethtown, KY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Elizabethtown\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"526500\",\n",
       "          \"FUNDING_NUMERIC\": 526500.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2505\",\n",
       "          \"LATITUDE\": 37.69367,\n",
       "          \"LONGITUDE\": -85.85912,\n",
       "          \"OBJECTID\": 256,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Increasing Climate Resilience, Green Career Pathways, and Urban Forestry Initiatives in Kentucky\",\n",
       "          \"STATE_ABBR\": \"KY\",\n",
       "          \"STATE_NAME\": \"Kentucky\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -85.85912,\n",
       "              37.69367\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Louisville, KY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Louisville\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"12000000\",\n",
       "          \"FUNDING_NUMERIC\": 12000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2506\",\n",
       "          \"LATITUDE\": 38.25489,\n",
       "          \"LONGITUDE\": -85.76666,\n",
       "          \"OBJECTID\": 257,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Louisville Equitable Forest Initiative\",\n",
       "          \"STATE_ABBR\": \"KY\",\n",
       "          \"STATE_NAME\": \"Kentucky\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -85.76666,\n",
       "              38.25489\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Lake Charles, LA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Lake Charles\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"866078\",\n",
       "          \"FUNDING_NUMERIC\": 866078.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2508\",\n",
       "          \"LATITUDE\": 30.22403,\n",
       "          \"LONGITUDE\": -93.22011,\n",
       "          \"OBJECTID\": 258,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"ReTree LC Corridor Enhancements\",\n",
       "          \"STATE_ABBR\": \"LA\",\n",
       "          \"STATE_NAME\": \"Louisiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -93.22011,\n",
       "              30.22403\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Baton Rouge, LA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Baton Rouge\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"9504066\",\n",
       "          \"FUNDING_NUMERIC\": 9504066.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2510\",\n",
       "          \"LATITUDE\": 30.44335,\n",
       "          \"LONGITUDE\": -91.18664,\n",
       "          \"OBJECTID\": 259,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"The GREEN LAB - Generating Resources for Environmental Excellence Network (GREEN) toward Leadership and Advancement Building (LAB)\",\n",
       "          \"STATE_ABBR\": \"LA\",\n",
       "          \"STATE_NAME\": \"Louisiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -91.18664,\n",
       "              30.44335\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"New Orleans, LA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"New Orleans\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"8000000\",\n",
       "          \"FUNDING_NUMERIC\": 8000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2509\",\n",
       "          \"LATITUDE\": 29.9537,\n",
       "          \"LONGITUDE\": -90.07775,\n",
       "          \"OBJECTID\": 260,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"New Orleans Canopy Training, Urban Reforestation, and Neighborhood Leadership (NOCTURNL)\",\n",
       "          \"STATE_ABBR\": \"LA\",\n",
       "          \"STATE_NAME\": \"Louisiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -90.07775,\n",
       "              29.9537\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Newport, KY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Newport\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"998750\",\n",
       "          \"FUNDING_NUMERIC\": 998750.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2504\",\n",
       "          \"LATITUDE\": 39.08826,\n",
       "          \"LONGITUDE\": -84.49018,\n",
       "          \"OBJECTID\": 261,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Newport Westside Reforestation\",\n",
       "          \"STATE_ABBR\": \"KY\",\n",
       "          \"STATE_NAME\": \"Kentucky\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -84.49018,\n",
       "              39.08826\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Baton Rouge, LA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Baton Rouge\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"6000000\",\n",
       "          \"FUNDING_NUMERIC\": 6000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2511\",\n",
       "          \"LATITUDE\": 30.44335,\n",
       "          \"LONGITUDE\": -91.18664,\n",
       "          \"OBJECTID\": 262,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Agroforestry Apprenticeship Program To Promote Tree Equity, Climate Resilience, and Workforce Readiness in Baton Rouge, LA\",\n",
       "          \"STATE_ABBR\": \"LA\",\n",
       "          \"STATE_NAME\": \"Louisiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -91.18664,\n",
       "              30.44335\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Boston, MA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Boston\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"11406762\",\n",
       "          \"FUNDING_NUMERIC\": 11406762.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2512\",\n",
       "          \"LATITUDE\": 42.35866,\n",
       "          \"LONGITUDE\": -71.05674,\n",
       "          \"OBJECTID\": 263,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Healthy Places Boston: Growing an Accessible, Inclusive and Resilient Urban Forest\",\n",
       "          \"STATE_ABBR\": \"MA\",\n",
       "          \"STATE_NAME\": \"Massachusetts\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -71.05674,\n",
       "              42.35866\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Holyoke, MA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Holyoke\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2515\",\n",
       "          \"LATITUDE\": 42.20696,\n",
       "          \"LONGITUDE\": -72.60743,\n",
       "          \"OBJECTID\": 264,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Urban Forest Equity Plan Implementation in Holyoke, Massachusetts\",\n",
       "          \"STATE_ABBR\": \"MA\",\n",
       "          \"STATE_NAME\": \"Massachusetts\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -72.60743,\n",
       "              42.20696\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Haverhill, MA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Haverhill\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2514\",\n",
       "          \"LATITUDE\": 42.7776,\n",
       "          \"LONGITUDE\": -71.07654,\n",
       "          \"OBJECTID\": 265,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Investing in Haverhill's Urban Forest with Equity and Resilience\",\n",
       "          \"STATE_ABBR\": \"MA\",\n",
       "          \"STATE_NAME\": \"Massachusetts\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -71.07654,\n",
       "              42.7776\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Lynn, MA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Lynn\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"550000\",\n",
       "          \"FUNDING_NUMERIC\": 550000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2516\",\n",
       "          \"LATITUDE\": 42.46399,\n",
       "          \"LONGITUDE\": -70.95077,\n",
       "          \"OBJECTID\": 266,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"The City of Holyoke's Urban Forest Equity Plan \",\n",
       "          \"STATE_ABBR\": \"MA\",\n",
       "          \"STATE_NAME\": \"Massachusetts\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -70.95077,\n",
       "              42.4639900000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Quincy, MA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Quincy\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"750000\",\n",
       "          \"FUNDING_NUMERIC\": 750000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2517\",\n",
       "          \"LATITUDE\": 42.2523,\n",
       "          \"LONGITUDE\": -71.00417,\n",
       "          \"OBJECTID\": 267,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Urban Forest Climate Resiliency & Equity Plan\",\n",
       "          \"STATE_ABBR\": \"MA\",\n",
       "          \"STATE_NAME\": \"Massachusetts\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -71.00417,\n",
       "              42.2523\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Watertown, MA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Watertown\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"100000\",\n",
       "          \"FUNDING_NUMERIC\": 100000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2518\",\n",
       "          \"LATITUDE\": 42.36761,\n",
       "          \"LONGITUDE\": -71.18788,\n",
       "          \"OBJECTID\": 268,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Tree Planting in the City of Watertown, Massachusetts\",\n",
       "          \"STATE_ABBR\": \"MA\",\n",
       "          \"STATE_NAME\": \"Massachusetts\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -71.18788,\n",
       "              42.36761\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Springfield, MA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Springfield\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"6000000\",\n",
       "          \"FUNDING_NUMERIC\": 6000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2519\",\n",
       "          \"LATITUDE\": 42.10125,\n",
       "          \"LONGITUDE\": -72.58929,\n",
       "          \"OBJECTID\": 269,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Springfield \\\"Speaks for the Trees\\\" Revitalizing Urban Tree Canopy in Underserved Communities\",\n",
       "          \"STATE_ABBR\": \"MA\",\n",
       "          \"STATE_NAME\": \"Massachusetts\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -72.58929,\n",
       "              42.10125\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Fall River, MA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Fall River\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2513\",\n",
       "          \"LATITUDE\": 41.69735,\n",
       "          \"LONGITUDE\": -71.14365,\n",
       "          \"OBJECTID\": 270,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Fall River Urban Tree Canopy Expansion Initiative\",\n",
       "          \"STATE_ABBR\": \"MA\",\n",
       "          \"STATE_NAME\": \"Massachusetts\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -71.14365,\n",
       "              41.69735\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Southbridge, MA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Southbridge\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2520\",\n",
       "          \"LATITUDE\": 42.07457,\n",
       "          \"LONGITUDE\": -72.03279,\n",
       "          \"OBJECTID\": 271,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Implement an Urban and Community Forestry Program in the Town of Southbridge\",\n",
       "          \"STATE_ABBR\": \"MA\",\n",
       "          \"STATE_NAME\": \"Massachusetts\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -72.03279,\n",
       "              42.07457\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Baltimore, MD\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Baltimore\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"7000000\",\n",
       "          \"FUNDING_NUMERIC\": 7000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2521\",\n",
       "          \"LATITUDE\": 39.29058,\n",
       "          \"LONGITUDE\": -76.60926,\n",
       "          \"OBJECTID\": 272,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Baltimore Tree Trust\",\n",
       "          \"STATE_ABBR\": \"MD\",\n",
       "          \"STATE_NAME\": \"Maryland\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -76.60926,\n",
       "              39.29058\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Annapolis, MD\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Annapolis\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"17000000\",\n",
       "          \"FUNDING_NUMERIC\": 17000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2522\",\n",
       "          \"LATITUDE\": 38.97678,\n",
       "          \"LONGITUDE\": -76.49014,\n",
       "          \"OBJECTID\": 273,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"The Mid-Atlantic Environmental Justice Fund - Urban and Community Forestry\",\n",
       "          \"STATE_ABBR\": \"MD\",\n",
       "          \"STATE_NAME\": \"Maryland\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -76.4901399999999,\n",
       "              38.97678\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Annapolis, MD\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Annapolis\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2523\",\n",
       "          \"LATITUDE\": 38.97678,\n",
       "          \"LONGITUDE\": -76.49014,\n",
       "          \"OBJECTID\": 274,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Gather and Grow\",\n",
       "          \"STATE_ABBR\": \"MD\",\n",
       "          \"STATE_NAME\": \"Maryland\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -76.4901399999999,\n",
       "              38.97678\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Baltimore, MD\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Baltimore\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"3000000\",\n",
       "          \"FUNDING_NUMERIC\": 3000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2524\",\n",
       "          \"LATITUDE\": 39.29058,\n",
       "          \"LONGITUDE\": -76.60926,\n",
       "          \"OBJECTID\": 275,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Baltimore Community Canopy: A Civic Works Urban Reforestation Initiative\",\n",
       "          \"STATE_ABBR\": \"MD\",\n",
       "          \"STATE_NAME\": \"Maryland\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -76.60926,\n",
       "              39.29058\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Chevy Chase, MD\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Chevy Chase\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1359369\",\n",
       "          \"FUNDING_NUMERIC\": 1359369.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2526\",\n",
       "          \"LATITUDE\": 38.98249,\n",
       "          \"LONGITUDE\": -77.08722,\n",
       "          \"OBJECTID\": 276,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Tree-Cosystems for Green Communities\",\n",
       "          \"STATE_ABBR\": \"MD\",\n",
       "          \"STATE_NAME\": \"Maryland\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -77.08722,\n",
       "              38.98249\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Augusta, ME\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Augusta\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1567194\",\n",
       "          \"FUNDING_NUMERIC\": 1567194.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2528\",\n",
       "          \"LATITUDE\": 44.31804,\n",
       "          \"LONGITUDE\": -69.7763,\n",
       "          \"OBJECTID\": 277,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Maine Conservation Corps - Community Tree Stewards\",\n",
       "          \"STATE_ABBR\": \"ME\",\n",
       "          \"STATE_NAME\": \"Maine\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -69.7763,\n",
       "              44.3180400000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Baltimore, MD\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Baltimore\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2527\",\n",
       "          \"LATITUDE\": 39.29058,\n",
       "          \"LONGITUDE\": -76.60926,\n",
       "          \"OBJECTID\": 278,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Stillmeadow PeacePark and Learning Center for the Clinical Study and Teaching of Urban Ecology and Environmental Justice\",\n",
       "          \"STATE_ABBR\": \"MD\",\n",
       "          \"STATE_NAME\": \"Maryland\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -76.60926,\n",
       "              39.29058\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Detroit, MI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Detroit\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"3000000\",\n",
       "          \"FUNDING_NUMERIC\": 3000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2530\",\n",
       "          \"LATITUDE\": 42.33168,\n",
       "          \"LONGITUDE\": -83.048,\n",
       "          \"OBJECTID\": 279,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Detroit Resilient Tree Canopy Initiative\",\n",
       "          \"STATE_ABBR\": \"MI\",\n",
       "          \"STATE_NAME\": \"Michigan\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -83.048,\n",
       "              42.33168\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Cheverly, MD\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Cheverly\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2525\",\n",
       "          \"LATITUDE\": 38.92505,\n",
       "          \"LONGITUDE\": -76.90718,\n",
       "          \"OBJECTID\": 280,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Sembrando el Futuro / Embajadores de los \\u00c1rboles\",\n",
       "          \"STATE_ABBR\": \"MD\",\n",
       "          \"STATE_NAME\": \"Maryland\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -76.90718,\n",
       "              38.92505\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Ann Arbor, MI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Ann Arbor\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2529\",\n",
       "          \"LATITUDE\": 42.2821,\n",
       "          \"LONGITUDE\": -83.74847,\n",
       "          \"OBJECTID\": 281,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Understanding Ann Arbor's Tree Canopy: Tools for Mapping and Assessing Future Opportunities\",\n",
       "          \"STATE_ABBR\": \"MI\",\n",
       "          \"STATE_NAME\": \"Michigan\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -83.7484699999999,\n",
       "              42.2821\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Hamtramck, MI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Hamtramck\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2531\",\n",
       "          \"LATITUDE\": 42.39966,\n",
       "          \"LONGITUDE\": -83.05108,\n",
       "          \"OBJECTID\": 282,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Hamtramck's Environmental Urban Forestry Plan\",\n",
       "          \"STATE_ABBR\": \"MI\",\n",
       "          \"STATE_NAME\": \"Michigan\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -83.05108,\n",
       "              42.39966\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Jackson, MI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Jackson\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"757275\",\n",
       "          \"FUNDING_NUMERIC\": 757275.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2532\",\n",
       "          \"LATITUDE\": 42.24555,\n",
       "          \"LONGITUDE\": -84.4005,\n",
       "          \"OBJECTID\": 283,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Urban Reforestation Program\",\n",
       "          \"STATE_ABBR\": \"MI\",\n",
       "          \"STATE_NAME\": \"Michigan\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -84.4005,\n",
       "              42.24555\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Pontiac, MI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Pontiac\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2535\",\n",
       "          \"LATITUDE\": 42.63687,\n",
       "          \"LONGITUDE\": -83.28841,\n",
       "          \"OBJECTID\": 284,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Pontiac Urban Forestry Program\",\n",
       "          \"STATE_ABBR\": \"MI\",\n",
       "          \"STATE_NAME\": \"Michigan\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -83.2884099999999,\n",
       "              42.63687\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Lansing, MI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Lansing\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2534\",\n",
       "          \"LATITUDE\": 42.73194,\n",
       "          \"LONGITUDE\": -84.55225,\n",
       "          \"OBJECTID\": 285,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Restoring Roots: Greater Lansing Urban & Community Forestry Program\",\n",
       "          \"STATE_ABBR\": \"MI\",\n",
       "          \"STATE_NAME\": \"Michigan\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -84.55225,\n",
       "              42.7319400000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Kalamazoo, MI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Kalamazoo\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2533\",\n",
       "          \"LATITUDE\": 42.29159,\n",
       "          \"LONGITUDE\": -85.58768,\n",
       "          \"OBJECTID\": 286,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Growing A Greener Kalamazoo\",\n",
       "          \"STATE_ABBR\": \"MI\",\n",
       "          \"STATE_NAME\": \"Michigan\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -85.58768,\n",
       "              42.29159\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Flint, MI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Flint\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2538\",\n",
       "          \"LATITUDE\": 43.01148,\n",
       "          \"LONGITUDE\": -83.68683,\n",
       "          \"OBJECTID\": 287,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Vibrant Canopy, Vital Community in Greater Flint, MI\",\n",
       "          \"STATE_ABBR\": \"MI\",\n",
       "          \"STATE_NAME\": \"Michigan\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -83.68683,\n",
       "              43.01148\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Detroit, MI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Detroit\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"9692422\",\n",
       "          \"FUNDING_NUMERIC\": 9692422.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2539\",\n",
       "          \"LATITUDE\": 42.33168,\n",
       "          \"LONGITUDE\": -83.048,\n",
       "          \"OBJECTID\": 288,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Increasing Detroit's Tree Canopy through Community Engagement, Education and Workforce Training\",\n",
       "          \"STATE_ABBR\": \"MI\",\n",
       "          \"STATE_NAME\": \"Michigan\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -83.048,\n",
       "              42.33168\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Sterling Heights, MI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Sterling Heights\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2536\",\n",
       "          \"LATITUDE\": 42.5934,\n",
       "          \"LONGITUDE\": -83.01356,\n",
       "          \"OBJECTID\": 289,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Sterling Heights Urban Reforestation Initiative\",\n",
       "          \"STATE_ABBR\": \"MI\",\n",
       "          \"STATE_NAME\": \"Michigan\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -83.01356,\n",
       "              42.5934\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Grand Rapids, MI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Grand Rapids\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2537\",\n",
       "          \"LATITUDE\": 42.96642,\n",
       "          \"LONGITUDE\": -85.67195,\n",
       "          \"OBJECTID\": 290,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Forest Justice in Greater Grand Rapids\",\n",
       "          \"STATE_ABBR\": \"MI\",\n",
       "          \"STATE_NAME\": \"Michigan\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -85.67195,\n",
       "              42.96642\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Minneapolis, MN\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Minneapolis\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"8000000\",\n",
       "          \"FUNDING_NUMERIC\": 8000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2540\",\n",
       "          \"LATITUDE\": 44.97902,\n",
       "          \"LONGITUDE\": -93.26494,\n",
       "          \"OBJECTID\": 291,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Minneapolis Equitable Tree Canopy Management Program\",\n",
       "          \"STATE_ABBR\": \"MN\",\n",
       "          \"STATE_NAME\": \"Minnesota\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -93.26494,\n",
       "              44.97902\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Richfield, MN\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Richfield\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"498075\",\n",
       "          \"FUNDING_NUMERIC\": 498075.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2541\",\n",
       "          \"LATITUDE\": 44.88152,\n",
       "          \"LONGITUDE\": -93.26792,\n",
       "          \"OBJECTID\": 292,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Increasing Urban Tree Canopy in Southeast Richfield, MN\",\n",
       "          \"STATE_ABBR\": \"MN\",\n",
       "          \"STATE_NAME\": \"Minnesota\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -93.26792,\n",
       "              44.8815200000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Rochester, MN\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Rochester\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2542\",\n",
       "          \"LATITUDE\": 44.01932,\n",
       "          \"LONGITUDE\": -92.45933,\n",
       "          \"OBJECTID\": 293,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Healthy Trees, Healthy City Initiative\",\n",
       "          \"STATE_ABBR\": \"MN\",\n",
       "          \"STATE_NAME\": \"Minnesota\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -92.45933,\n",
       "              44.01932\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Saint Paul, MN\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Saint Paul\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2543\",\n",
       "          \"LATITUDE\": 44.94441,\n",
       "          \"LONGITUDE\": -93.09327,\n",
       "          \"OBJECTID\": 294,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Saint Paul Urban & Community Forestry Project\",\n",
       "          \"STATE_ABBR\": \"MN\",\n",
       "          \"STATE_NAME\": \"Minnesota\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -93.09327,\n",
       "              44.94441\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Shoreview, MN\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Shoreview\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"210000\",\n",
       "          \"FUNDING_NUMERIC\": 210000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2544\",\n",
       "          \"LATITUDE\": 45.08242,\n",
       "          \"LONGITUDE\": -93.13409,\n",
       "          \"OBJECTID\": 295,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Boulevard Tree Replanting after Ash Removals from EAB\",\n",
       "          \"STATE_ABBR\": \"MN\",\n",
       "          \"STATE_NAME\": \"Minnesota\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -93.13409,\n",
       "              45.08242\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Saint Paul, MN\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Saint Paul\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"10000000\",\n",
       "          \"FUNDING_NUMERIC\": 10000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2545\",\n",
       "          \"LATITUDE\": 44.94441,\n",
       "          \"LONGITUDE\": -93.09327,\n",
       "          \"OBJECTID\": 296,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Cooling Minnesota Communities (CMC): Expanding Tree Canopies, Empowering Communities, and Increasing Access\",\n",
       "          \"STATE_ABBR\": \"MN\",\n",
       "          \"STATE_NAME\": \"Minnesota\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -93.09327,\n",
       "              44.94441\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Minneapolis, MN\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Minneapolis\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"10000000\",\n",
       "          \"FUNDING_NUMERIC\": 10000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2546\",\n",
       "          \"LATITUDE\": 44.97902,\n",
       "          \"LONGITUDE\": -93.26494,\n",
       "          \"OBJECTID\": 297,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Beating the Heat Island in Hennepin County\",\n",
       "          \"STATE_ABBR\": \"MN\",\n",
       "          \"STATE_NAME\": \"Minnesota\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -93.26494,\n",
       "              44.97902\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Minneapolis, MN\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Minneapolis\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1730396\",\n",
       "          \"FUNDING_NUMERIC\": 1730396.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2547\",\n",
       "          \"LATITUDE\": 44.97902,\n",
       "          \"LONGITUDE\": -93.26494,\n",
       "          \"OBJECTID\": 298,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Urban Tree Diversity in the Upper Midwest: Resilience Through Education\",\n",
       "          \"STATE_ABBR\": \"MN\",\n",
       "          \"STATE_NAME\": \"Minnesota\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -93.26494,\n",
       "              44.97902\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Bellafontaine, MO\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Bellafontaine\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2548\",\n",
       "          \"LATITUDE\": 38.6568,\n",
       "          \"LONGITUDE\": -90.5544,\n",
       "          \"OBJECTID\": 299,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Community Parks Revitalization Plan\",\n",
       "          \"STATE_ABBR\": \"MO\",\n",
       "          \"STATE_NAME\": \"Missouri\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -90.5544,\n",
       "              38.6568\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Branch Park, KY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Branch Park\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2507\",\n",
       "          \"LATITUDE\": 37.91973,\n",
       "          \"LONGITUDE\": -83.25502,\n",
       "          \"OBJECTID\": 300,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Increasing Access to Nature for BIPOC Neighborhoods, Reducing Urban Heat, Improving Stormwater Management, Expanding Urban Tree Canopy, and Enhancing Community Connectivity through Town Branch Park\",\n",
       "          \"STATE_ABBR\": \"KY\",\n",
       "          \"STATE_NAME\": \"Kentucky\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -83.25502,\n",
       "              37.9197300000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Jackson, MS\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Jackson\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"10000000\",\n",
       "          \"FUNDING_NUMERIC\": 10000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2552\",\n",
       "          \"LATITUDE\": 32.29896,\n",
       "          \"LONGITUDE\": -90.18044,\n",
       "          \"OBJECTID\": 301,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Gateways to a Greener Jackson\",\n",
       "          \"STATE_ABBR\": \"MS\",\n",
       "          \"STATE_NAME\": \"Mississippi\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -90.18044,\n",
       "              32.2989600000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Jackson, MS\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Jackson\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1512500\",\n",
       "          \"FUNDING_NUMERIC\": 1512500.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2551\",\n",
       "          \"LATITUDE\": 32.29896,\n",
       "          \"LONGITUDE\": -90.18044,\n",
       "          \"OBJECTID\": 302,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Going Green for a Cool, Healthy Jackson (CHJ)\",\n",
       "          \"STATE_ABBR\": \"MS\",\n",
       "          \"STATE_NAME\": \"Mississippi\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -90.18044,\n",
       "              32.2989600000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Kansas City, MO\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Kansas City\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"12000000\",\n",
       "          \"FUNDING_NUMERIC\": 12000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2549\",\n",
       "          \"LATITUDE\": 39.10344,\n",
       "          \"LONGITUDE\": -94.58311,\n",
       "          \"OBJECTID\": 303,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Kansas City Urban Forest Canopy\",\n",
       "          \"STATE_ABBR\": \"MO\",\n",
       "          \"STATE_NAME\": \"Missouri\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -94.58311,\n",
       "              39.10344\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Vicksburg, MS\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Vicksburg\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2554\",\n",
       "          \"LATITUDE\": 32.35004,\n",
       "          \"LONGITUDE\": -90.88155,\n",
       "          \"OBJECTID\": 304,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"U.S. Forest Service Urban & Community Forestry Inflation Reduction Act\",\n",
       "          \"STATE_ABBR\": \"MS\",\n",
       "          \"STATE_NAME\": \"Mississippi\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -90.88155,\n",
       "              32.35004\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Jackson, MS\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Jackson\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2555\",\n",
       "          \"LATITUDE\": 32.29896,\n",
       "          \"LONGITUDE\": -90.18044,\n",
       "          \"OBJECTID\": 305,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Planting Trees with Environmental Assessments (PTEA) Project\",\n",
       "          \"STATE_ABBR\": \"MS\",\n",
       "          \"STATE_NAME\": \"Mississippi\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -90.18044,\n",
       "              32.2989600000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Canton, MS\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Canton\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"300000\",\n",
       "          \"FUNDING_NUMERIC\": 300000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2553\",\n",
       "          \"LATITUDE\": 32.61258,\n",
       "          \"LONGITUDE\": -90.03472,\n",
       "          \"OBJECTID\": 306,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Madison County-Sulphur Springs Park Urban Renewal\",\n",
       "          \"STATE_ABBR\": \"MS\",\n",
       "          \"STATE_NAME\": \"Mississippi\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -90.0347199999999,\n",
       "              32.61258\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Billings, MT\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Billings\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2557\",\n",
       "          \"LATITUDE\": 45.78426,\n",
       "          \"LONGITUDE\": -108.50607,\n",
       "          \"OBJECTID\": 307,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Billings Urban Forestry Grant for Disadvantaged Areas\",\n",
       "          \"STATE_ABBR\": \"MT\",\n",
       "          \"STATE_NAME\": \"Montana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -108.50607,\n",
       "              45.7842600000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"St. Louis, MO\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"St. Louis\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"8000000\",\n",
       "          \"FUNDING_NUMERIC\": 8000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2550\",\n",
       "          \"LATITUDE\": 38.62775,\n",
       "          \"LONGITUDE\": -90.19956,\n",
       "          \"OBJECTID\": 308,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Rebuilding St. Louis City's Tree Canopy in Underserved Communities\",\n",
       "          \"STATE_ABBR\": \"MO\",\n",
       "          \"STATE_NAME\": \"Missouri\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -90.19956,\n",
       "              38.62775\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Helena, MT\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Helena\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1243151\",\n",
       "          \"FUNDING_NUMERIC\": 1243151.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2558\",\n",
       "          \"LATITUDE\": 46.58976,\n",
       "          \"LONGITUDE\": -112.02065,\n",
       "          \"OBJECTID\": 309,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Trees for Indigenous Nations\",\n",
       "          \"STATE_ABBR\": \"MT\",\n",
       "          \"STATE_NAME\": \"Montana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -112.02065,\n",
       "              46.58976\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Butte, MT\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Butte\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"145250\",\n",
       "          \"FUNDING_NUMERIC\": 145250.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2559\",\n",
       "          \"LATITUDE\": 46.00175,\n",
       "          \"LONGITUDE\": -112.52089,\n",
       "          \"OBJECTID\": 310,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Stodden Park Hazard Tree Abatement and Sustainable Urban Reforestation Project\",\n",
       "          \"STATE_ABBR\": \"MT\",\n",
       "          \"STATE_NAME\": \"Montana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -112.52089,\n",
       "              46.0017500000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Durham, NC\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Durham\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5273538\",\n",
       "          \"FUNDING_NUMERIC\": 5273538.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2562\",\n",
       "          \"LATITUDE\": 35.99544,\n",
       "          \"LONGITUDE\": -78.8965,\n",
       "          \"OBJECTID\": 311,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Durham Urban Forestry Tree Canopy Improvement Project\",\n",
       "          \"STATE_ABBR\": \"NC\",\n",
       "          \"STATE_NAME\": \"North Carolina\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -78.8965,\n",
       "              35.99544\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Stoneville, MS\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Stoneville\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2556\",\n",
       "          \"LATITUDE\": 33.42258,\n",
       "          \"LONGITUDE\": -90.91736,\n",
       "          \"OBJECTID\": 312,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Expanding Tree Cover in Vulnerable and Disadvantaged Communities in Arkansas and Mississippi to Make Them Healthier, More Resilient and More Economically Sustainable\",\n",
       "          \"STATE_ABBR\": \"MS\",\n",
       "          \"STATE_NAME\": \"Mississippi\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -90.91736,\n",
       "              33.42258\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Charlotte, NC\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Charlotte\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2560\",\n",
       "          \"LATITUDE\": 35.22286,\n",
       "          \"LONGITUDE\": -80.83796,\n",
       "          \"OBJECTID\": 313,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Charlotte Canopy Care Program\",\n",
       "          \"STATE_ABBR\": \"NC\",\n",
       "          \"STATE_NAME\": \"North Carolina\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.83796,\n",
       "              35.22286\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Greensboro, NC\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Greensboro\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"825000\",\n",
       "          \"FUNDING_NUMERIC\": 825000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2563\",\n",
       "          \"LATITUDE\": 36.06908,\n",
       "          \"LONGITUDE\": -79.79505,\n",
       "          \"OBJECTID\": 314,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Keeping the Green in Greensboro, NC: A Tree Canopy Assessment & Equity Prioritization\",\n",
       "          \"STATE_ABBR\": \"NC\",\n",
       "          \"STATE_NAME\": \"North Carolina\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -79.79505,\n",
       "              36.06908\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Raleigh, NC\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Raleigh\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2564\",\n",
       "          \"LATITUDE\": 35.78547,\n",
       "          \"LONGITUDE\": -78.6427,\n",
       "          \"OBJECTID\": 315,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Raleigh Urban Forestry Equity Project\",\n",
       "          \"STATE_ABBR\": \"NC\",\n",
       "          \"STATE_NAME\": \"North Carolina\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -78.6427,\n",
       "              35.78547\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Bismarck, ND\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Bismarck\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2566\",\n",
       "          \"LATITUDE\": 46.80536,\n",
       "          \"LONGITUDE\": -100.77969,\n",
       "          \"OBJECTID\": 316,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"The North Dakota Forest Service Project\",\n",
       "          \"STATE_ABBR\": \"ND\",\n",
       "          \"STATE_NAME\": \"North Dakota\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -100.77969,\n",
       "              46.8053600000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Charlotte, NC\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Charlotte\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"600000\",\n",
       "          \"FUNDING_NUMERIC\": 600000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2561\",\n",
       "          \"LATITUDE\": 35.22286,\n",
       "          \"LONGITUDE\": -80.83796,\n",
       "          \"OBJECTID\": 317,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Charlotte Tree Maintenance Program\",\n",
       "          \"STATE_ABBR\": \"NC\",\n",
       "          \"STATE_NAME\": \"North Carolina\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.83796,\n",
       "              35.22286\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Lebanon, NH\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Lebanon\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"244275\",\n",
       "          \"FUNDING_NUMERIC\": 244275.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2569\",\n",
       "          \"LATITUDE\": 43.64508,\n",
       "          \"LONGITUDE\": -72.2538,\n",
       "          \"OBJECTID\": 318,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Lebanon NH Green Streets Initiative\",\n",
       "          \"STATE_ABBR\": \"NH\",\n",
       "          \"STATE_NAME\": \"New Hampshire\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -72.2538,\n",
       "              43.64508\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Lincoln, NE\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Lincoln\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"10000000\",\n",
       "          \"FUNDING_NUMERIC\": 10000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2568\",\n",
       "          \"LATITUDE\": 40.81362,\n",
       "          \"LONGITUDE\": -96.7073,\n",
       "          \"OBJECTID\": 319,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Strengthening Nebraska's Urban Forest Infrastructure\",\n",
       "          \"STATE_ABBR\": \"NE\",\n",
       "          \"STATE_NAME\": \"Nebraska\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -96.7073,\n",
       "              40.8136200000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Cary, NC\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Cary\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2565\",\n",
       "          \"LATITUDE\": 35.78996,\n",
       "          \"LONGITUDE\": -78.78116,\n",
       "          \"OBJECTID\": 320,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"My Tree Our Tree Branching Out\",\n",
       "          \"STATE_ABBR\": \"NC\",\n",
       "          \"STATE_NAME\": \"North Carolina\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -78.78116,\n",
       "              35.7899600000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Manchester, NH\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Manchester\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2277742\",\n",
       "          \"FUNDING_NUMERIC\": 2277742.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2570\",\n",
       "          \"LATITUDE\": 42.9912,\n",
       "          \"LONGITUDE\": -71.4631,\n",
       "          \"OBJECTID\": 321,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Manchester, NH Urban Forest Equity Planning and Implementation\",\n",
       "          \"STATE_ABBR\": \"NH\",\n",
       "          \"STATE_NAME\": \"New Hampshire\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -71.4630999999999,\n",
       "              42.9912\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"South Sioux City, NE\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"South Sioux City\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2567\",\n",
       "          \"LATITUDE\": 42.47063,\n",
       "          \"LONGITUDE\": -96.41396,\n",
       "          \"OBJECTID\": 322,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Improving South Sioux City's Community Forest\",\n",
       "          \"STATE_ABBR\": \"NE\",\n",
       "          \"STATE_NAME\": \"Nebraska\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -96.41396,\n",
       "              42.47063\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Camden, NJ\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Camden\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"3000000\",\n",
       "          \"FUNDING_NUMERIC\": 3000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2572\",\n",
       "          \"LATITUDE\": 39.94525,\n",
       "          \"LONGITUDE\": -75.11913,\n",
       "          \"OBJECTID\": 323,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"FY23 Camden City Tree Planting Initiative\",\n",
       "          \"STATE_ABBR\": \"NJ\",\n",
       "          \"STATE_NAME\": \"New Jersey\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -75.11913,\n",
       "              39.94525\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"East Newark, NJ\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"East Newark\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2571\",\n",
       "          \"LATITUDE\": 40.75209,\n",
       "          \"LONGITUDE\": -74.15964,\n",
       "          \"OBJECTID\": 324,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Urban Arborist for Job Training at East Newark Riverfront Park\",\n",
       "          \"STATE_ABBR\": \"NJ\",\n",
       "          \"STATE_NAME\": \"New Jersey\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -74.15964,\n",
       "              40.7520900000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Hoboken, NJ\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Hoboken\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2574\",\n",
       "          \"LATITUDE\": 40.73718,\n",
       "          \"LONGITUDE\": -74.03096,\n",
       "          \"OBJECTID\": 325,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Hoboken Urban Forestry Project\",\n",
       "          \"STATE_ABBR\": \"NJ\",\n",
       "          \"STATE_NAME\": \"New Jersey\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -74.0309599999999,\n",
       "              40.7371800000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Rahway, NJ\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Rahway\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2576\",\n",
       "          \"LATITUDE\": 40.60451,\n",
       "          \"LONGITUDE\": -74.27379,\n",
       "          \"OBJECTID\": 326,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Rahway Hazardous Tree Replacement Program\",\n",
       "          \"STATE_ABBR\": \"NJ\",\n",
       "          \"STATE_NAME\": \"New Jersey\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -74.27379,\n",
       "              40.60451\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Jackson, NJ\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Jackson\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"4246079\",\n",
       "          \"FUNDING_NUMERIC\": 4246079.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2577\",\n",
       "          \"LATITUDE\": 39.7765,\n",
       "          \"LONGITUDE\": -74.86238,\n",
       "          \"OBJECTID\": 327,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Planting Environmental Justice One Tree at a Time\",\n",
       "          \"STATE_ABBR\": \"NJ\",\n",
       "          \"STATE_NAME\": \"New Jersey\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -74.86238,\n",
       "              39.7765\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Kearny, NJ\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Kearny\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"548280\",\n",
       "          \"FUNDING_NUMERIC\": 548280.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2579\",\n",
       "          \"LATITUDE\": 40.76463,\n",
       "          \"LONGITUDE\": -74.14826,\n",
       "          \"OBJECTID\": 328,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Kearny Urban Forest Canopy and Stormwater Mitigation\",\n",
       "          \"STATE_ABBR\": \"NJ\",\n",
       "          \"STATE_NAME\": \"New Jersey\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -74.1482599999999,\n",
       "              40.7646300000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Newark, NJ\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Newark\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"8000000\",\n",
       "          \"FUNDING_NUMERIC\": 8000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2578\",\n",
       "          \"LATITUDE\": 40.73197,\n",
       "          \"LONGITUDE\": -74.17421,\n",
       "          \"OBJECTID\": 329,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Newark Tree Canopy Initiative: Growing & Proud of It\",\n",
       "          \"STATE_ABBR\": \"NJ\",\n",
       "          \"STATE_NAME\": \"New Jersey\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -74.17421,\n",
       "              40.73197\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Montclair, NJ\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Montclair\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2580\",\n",
       "          \"LATITUDE\": 40.81242,\n",
       "          \"LONGITUDE\": -74.21281,\n",
       "          \"OBJECTID\": 330,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Montclair, NJ's Initiative for Equitable Urban Tree Access and Climate Resilience\",\n",
       "          \"STATE_ABBR\": \"NJ\",\n",
       "          \"STATE_NAME\": \"New Jersey\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -74.21281,\n",
       "              40.81242\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Egg Harbor, NJ\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Egg Harbor\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2573\",\n",
       "          \"LATITUDE\": 39.52873,\n",
       "          \"LONGITUDE\": -74.64794,\n",
       "          \"OBJECTID\": 331,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"The Proactive and Systematic Expansion and Maintenance of Green Infrastructure in the City of Egg Harbor\",\n",
       "          \"STATE_ABBR\": \"NJ\",\n",
       "          \"STATE_NAME\": \"New Jersey\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -74.64794,\n",
       "              39.5287300000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Albuquerque, NM\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Albuquerque\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2581\",\n",
       "          \"LATITUDE\": 35.08423,\n",
       "          \"LONGITUDE\": -106.64905,\n",
       "          \"OBJECTID\": 332,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Increasing Albuquerque's Urban Tree Canopy\",\n",
       "          \"STATE_ABBR\": \"NM\",\n",
       "          \"STATE_NAME\": \"New Mexico\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -106.64905,\n",
       "              35.08423\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Santa Fe, NM\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Santa Fe\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2582\",\n",
       "          \"LATITUDE\": 35.69177,\n",
       "          \"LONGITUDE\": -105.93824,\n",
       "          \"OBJECTID\": 333,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Santa Fe Urban and Community Forestry\",\n",
       "          \"STATE_ABBR\": \"NM\",\n",
       "          \"STATE_NAME\": \"New Mexico\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.93824,\n",
       "              35.69177\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Albuquerque, NM\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Albuquerque\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2500000\",\n",
       "          \"FUNDING_NUMERIC\": 2500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2584\",\n",
       "          \"LATITUDE\": 35.08423,\n",
       "          \"LONGITUDE\": -106.64905,\n",
       "          \"OBJECTID\": 334,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"South Valley Community Forestry Project\",\n",
       "          \"STATE_ABBR\": \"NM\",\n",
       "          \"STATE_NAME\": \"New Mexico\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -106.64905,\n",
       "              35.08423\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Las Cruces, NM\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Las Cruces\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2583\",\n",
       "          \"LATITUDE\": 32.30691,\n",
       "          \"LONGITUDE\": -106.77785,\n",
       "          \"OBJECTID\": 335,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"DASWCD NeighborWoods Program\",\n",
       "          \"STATE_ABBR\": \"NM\",\n",
       "          \"STATE_NAME\": \"New Mexico\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -106.77785,\n",
       "              32.3069100000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Taos, NM\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Taos\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2585\",\n",
       "          \"LATITUDE\": 36.41202,\n",
       "          \"LONGITUDE\": -105.57412,\n",
       "          \"OBJECTID\": 336,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Rocky Mountain Youth Corps Urban Foresters\",\n",
       "          \"STATE_ABBR\": \"NM\",\n",
       "          \"STATE_NAME\": \"New Mexico\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.57412,\n",
       "              36.41202\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Albuquerque, NM\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Albuquerque\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2586\",\n",
       "          \"LATITUDE\": 35.08423,\n",
       "          \"LONGITUDE\": -106.64905,\n",
       "          \"OBJECTID\": 337,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"NeighborWoods and Tree Stewards: Engaging Disadvantaged Communities in The Land of Enchantment\",\n",
       "          \"STATE_ABBR\": \"NM\",\n",
       "          \"STATE_NAME\": \"New Mexico\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -106.64905,\n",
       "              35.08423\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Silver City, NM\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Silver City\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2587\",\n",
       "          \"LATITUDE\": 32.77022,\n",
       "          \"LONGITUDE\": -108.27496,\n",
       "          \"OBJECTID\": 338,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Rural Southwest New Mexico Integrated Urban Forestry Project\",\n",
       "          \"STATE_ABBR\": \"NM\",\n",
       "          \"STATE_NAME\": \"New Mexico\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -108.27496,\n",
       "              32.77022\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Las Vegas, NV\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Las Vegas\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2588\",\n",
       "          \"LATITUDE\": 36.17193,\n",
       "          \"LONGITUDE\": -115.14001,\n",
       "          \"OBJECTID\": 339,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Las Vegas Urban Heat Island Mitigation Tree Program\",\n",
       "          \"STATE_ABBR\": \"NV\",\n",
       "          \"STATE_NAME\": \"Nevada\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -115.14001,\n",
       "              36.17193\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Reno, NV\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Reno\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2590\",\n",
       "          \"LATITUDE\": 39.52766,\n",
       "          \"LONGITUDE\": -119.81353,\n",
       "          \"OBJECTID\": 340,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Filling the GAPP - Green Airway Planting Project\",\n",
       "          \"STATE_ABBR\": \"NV\",\n",
       "          \"STATE_NAME\": \"Nevada\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.81353,\n",
       "              39.52766\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Las Vegas, NV\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Las Vegas\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2589\",\n",
       "          \"LATITUDE\": 36.17193,\n",
       "          \"LONGITUDE\": -115.14001,\n",
       "          \"OBJECTID\": 341,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of North Las Vegas Urban and Community Forestry\",\n",
       "          \"STATE_ABBR\": \"NV\",\n",
       "          \"STATE_NAME\": \"Nevada\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -115.14001,\n",
       "              36.17193\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Reno, NV\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Reno\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2592\",\n",
       "          \"LATITUDE\": 39.52766,\n",
       "          \"LONGITUDE\": -119.81353,\n",
       "          \"OBJECTID\": 342,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Soulful Seeds Urban Orchard Project\",\n",
       "          \"STATE_ABBR\": \"NV\",\n",
       "          \"STATE_NAME\": \"Nevada\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.81353,\n",
       "              39.52766\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Las Vegas, NV\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Las Vegas\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"3000000\",\n",
       "          \"FUNDING_NUMERIC\": 3000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2591\",\n",
       "          \"LATITUDE\": 36.17193,\n",
       "          \"LONGITUDE\": -115.14001,\n",
       "          \"OBJECTID\": 343,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Increasing Tree Equity for a More Sustainable Nevada\",\n",
       "          \"STATE_ABBR\": \"NV\",\n",
       "          \"STATE_NAME\": \"Nevada\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -115.14001,\n",
       "              36.17193\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Las Vegas, NV\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Las Vegas\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2593\",\n",
       "          \"LATITUDE\": 36.17193,\n",
       "          \"LONGITUDE\": -115.14001,\n",
       "          \"OBJECTID\": 344,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Las Vegas Urban Forest Center\",\n",
       "          \"STATE_ABBR\": \"NV\",\n",
       "          \"STATE_NAME\": \"Nevada\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -115.14001,\n",
       "              36.17193\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Las Vegas, NV\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Las Vegas\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"247136\",\n",
       "          \"FUNDING_NUMERIC\": 247136.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2594\",\n",
       "          \"LATITUDE\": 36.17193,\n",
       "          \"LONGITUDE\": -115.14001,\n",
       "          \"OBJECTID\": 345,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Zion Urban Forest\",\n",
       "          \"STATE_ABBR\": \"NV\",\n",
       "          \"STATE_NAME\": \"Nevada\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -115.14001,\n",
       "              36.17193\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Syracuse, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Syracuse\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"9000000\",\n",
       "          \"FUNDING_NUMERIC\": 9000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2596\",\n",
       "          \"LATITUDE\": 43.05042,\n",
       "          \"LONGITUDE\": -76.14738,\n",
       "          \"OBJECTID\": 346,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Regional Urban and Community Forestry Planning, Implementation, and Capacity Building for Disadvantaged Communities in Central New York\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -76.1473799999999,\n",
       "              43.05042\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Jersey City, NJ\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Jersey City\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2575\",\n",
       "          \"LATITUDE\": 40.71748,\n",
       "          \"LONGITUDE\": -74.04385,\n",
       "          \"OBJECTID\": 347,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Martin Luther King Drive, Green Corridor Outreach Program\",\n",
       "          \"STATE_ABBR\": \"NJ\",\n",
       "          \"STATE_NAME\": \"New Jersey\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -74.04385,\n",
       "              40.7174800000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Troy, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Troy\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2343487\",\n",
       "          \"FUNDING_NUMERIC\": 2343487.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2595\",\n",
       "          \"LATITUDE\": 42.73449,\n",
       "          \"LONGITUDE\": -73.68809,\n",
       "          \"OBJECTID\": 348,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Planting the Future of New York's Capital Region: A Forestry Program for Our Underserved Urban Communities\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -73.68809,\n",
       "              42.73449\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Albany, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Albany\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1888678\",\n",
       "          \"FUNDING_NUMERIC\": 1888678.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2597\",\n",
       "          \"LATITUDE\": 42.65155,\n",
       "          \"LONGITUDE\": -73.75521,\n",
       "          \"OBJECTID\": 349,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Working the Plan: Implementing Block Pruning to Maintain and Preserve Albany's Street Trees\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -73.75521,\n",
       "              42.65155\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Auburn, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Auburn\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"945000\",\n",
       "          \"FUNDING_NUMERIC\": 945000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2598\",\n",
       "          \"LATITUDE\": 42.92936,\n",
       "          \"LONGITUDE\": -76.56591,\n",
       "          \"OBJECTID\": 350,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Auburn Urban Forestry Disadvantaged Communities Initiative\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -76.56591,\n",
       "              42.92936\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Buffalo, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Buffalo\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"8000000\",\n",
       "          \"FUNDING_NUMERIC\": 8000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2599\",\n",
       "          \"LATITUDE\": 42.88545,\n",
       "          \"LONGITUDE\": -78.87846,\n",
       "          \"OBJECTID\": 351,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"B.E.S.T. (Buffalo Equity in Street Trees) Program\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -78.87846,\n",
       "              42.88545\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Kingston, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Kingston\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2601\",\n",
       "          \"LATITUDE\": 41.92698,\n",
       "          \"LONGITUDE\": -73.99737,\n",
       "          \"OBJECTID\": 352,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Kingston Urban Forester\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -73.99737,\n",
       "              41.9269800000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Glens Falls, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Glens Falls\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"400000\",\n",
       "          \"FUNDING_NUMERIC\": 400000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2600\",\n",
       "          \"LATITUDE\": 43.31122,\n",
       "          \"LONGITUDE\": -73.64376,\n",
       "          \"OBJECTID\": 353,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Glens Falls Urban Tree Care And Planting Grant\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -73.64376,\n",
       "              43.31122\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Syracuse, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Syracuse\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2605\",\n",
       "          \"LATITUDE\": 43.05042,\n",
       "          \"LONGITUDE\": -76.14738,\n",
       "          \"OBJECTID\": 354,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Rooting for Syracuse: A community-based approach to advancing tree equity\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -76.1473799999999,\n",
       "              43.05042\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Mount Vernon, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Mount Vernon\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2603\",\n",
       "          \"LATITUDE\": 42.75431,\n",
       "          \"LONGITUDE\": -78.88955,\n",
       "          \"OBJECTID\": 355,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Mount Vernon NY Urban Forestry Program\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -73.8377044489999,\n",
       "              40.912451251\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Rochester, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Rochester\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"3000000\",\n",
       "          \"FUNDING_NUMERIC\": 3000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2604\",\n",
       "          \"LATITUDE\": 43.1558,\n",
       "          \"LONGITUDE\": -77.61632,\n",
       "          \"OBJECTID\": 356,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"2023 USDA UCF GRANT - ROCHESTER, NY\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -77.61632,\n",
       "              43.1558\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Utica, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Utica\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2606\",\n",
       "          \"LATITUDE\": 43.09589,\n",
       "          \"LONGITUDE\": -75.24258,\n",
       "          \"OBJECTID\": 357,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Utica Urban Forest Revitalization\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -75.24258,\n",
       "              43.09589\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Yonkers, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Yonkers\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2608\",\n",
       "          \"LATITUDE\": 40.93299,\n",
       "          \"LONGITUDE\": -73.89874,\n",
       "          \"OBJECTID\": 358,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"YCAP Tree Planting\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -73.89874,\n",
       "              40.9329900000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Yonkers, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Yonkers\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5526563\",\n",
       "          \"FUNDING_NUMERIC\": 5526563.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2610\",\n",
       "          \"LATITUDE\": 40.93299,\n",
       "          \"LONGITUDE\": -73.89874,\n",
       "          \"OBJECTID\": 359,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Creating the Urban Forestry and Climate Resilience Technical and Career Pathway at the Barack Obama High School in Southwest Yonkers\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -73.89874,\n",
       "              40.9329900000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Buffalo, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Buffalo\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5218834\",\n",
       "          \"FUNDING_NUMERIC\": 5218834.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2609\",\n",
       "          \"LATITUDE\": 42.88545,\n",
       "          \"LONGITUDE\": -78.87846,\n",
       "          \"OBJECTID\": 360,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Erie County, NY Community Tree and Climate Equity Partnership Project\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -78.87846,\n",
       "              42.88545\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Long Beach, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Long Beach\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"100000\",\n",
       "          \"FUNDING_NUMERIC\": 100000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2602\",\n",
       "          \"LATITUDE\": 40.58939,\n",
       "          \"LONGITUDE\": -73.66608,\n",
       "          \"OBJECTID\": 361,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Long Beach Tree Replanting Initiative\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -73.66608,\n",
       "              40.58939\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Utica, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Utica\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"338195\",\n",
       "          \"FUNDING_NUMERIC\": 338195.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2613\",\n",
       "          \"LATITUDE\": 43.09589,\n",
       "          \"LONGITUDE\": -75.24258,\n",
       "          \"OBJECTID\": 362,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"F.T. Proctor Park Restoration Project\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -75.24258,\n",
       "              43.09589\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"White Plains, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"White Plains\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2607\",\n",
       "          \"LATITUDE\": 41.03379,\n",
       "          \"LONGITUDE\": -73.76344,\n",
       "          \"OBJECTID\": 363,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"White Plains Urban and Community Forestry Project\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -73.76344,\n",
       "              41.0337900000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Port Jervis, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Port Jervis\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2614\",\n",
       "          \"LATITUDE\": 41.37485,\n",
       "          \"LONGITUDE\": -74.69142,\n",
       "          \"OBJECTID\": 364,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Port Jervis - USDA UCF 2023\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -74.6914199999999,\n",
       "              41.37485\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Akwesasne, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Akwesasne\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"597248\",\n",
       "          \"FUNDING_NUMERIC\": 597248.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2615\",\n",
       "          \"LATITUDE\": 44.97876,\n",
       "          \"LONGITUDE\": -74.64302,\n",
       "          \"OBJECTID\": 365,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Akwesasne Urban Tree Canopy Assessment FY23 Project\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -74.64302,\n",
       "              44.9787600000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Albany, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Albany\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2617\",\n",
       "          \"LATITUDE\": 42.65155,\n",
       "          \"LONGITUDE\": -73.75521,\n",
       "          \"OBJECTID\": 366,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Urban Climate Adaptation of Forest Ecosystems with Disadvantaged Communities and Youth in Albany, New York\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -73.75521,\n",
       "              42.65155\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"New York City, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"New York City\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"10000000\",\n",
       "          \"FUNDING_NUMERIC\": 10000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2611\",\n",
       "          \"LATITUDE\": 40.71453,\n",
       "          \"LONGITUDE\": -74.00712,\n",
       "          \"OBJECTID\": 367,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"NYC Forested Natural Areas Care and Job Training\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -74.00712,\n",
       "              40.71453\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"New York City, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"New York City\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2612\",\n",
       "          \"LATITUDE\": 40.71453,\n",
       "          \"LONGITUDE\": -74.00712,\n",
       "          \"OBJECTID\": 368,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Stewarding Canopy and Community in Central Queens\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -74.00712,\n",
       "              40.71453\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Hastings, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Hastings\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"433275\",\n",
       "          \"FUNDING_NUMERIC\": 433275.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2620\",\n",
       "          \"LATITUDE\": 43.3737,\n",
       "          \"LONGITUDE\": -76.15119,\n",
       "          \"OBJECTID\": 369,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Forest Regeneration in Southern Westchester County\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -76.15119,\n",
       "              43.3737\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Smithtown, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Smithtown\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2619\",\n",
       "          \"LATITUDE\": 40.84723,\n",
       "          \"LONGITUDE\": -73.23461,\n",
       "          \"OBJECTID\": 370,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Town of Smithtown Urban Tree Canopy Improvement Project\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -73.23461,\n",
       "              40.84723\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Haverstraw, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Haverstraw\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2621\",\n",
       "          \"LATITUDE\": 41.19654,\n",
       "          \"LONGITUDE\": -73.96471,\n",
       "          \"OBJECTID\": 371,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Chair Factory Redevelopment\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -73.96471,\n",
       "              41.19654\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"North Hempstead, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"North Hempstead\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2618\",\n",
       "          \"LATITUDE\": 40.79657,\n",
       "          \"LONGITUDE\": -73.69935,\n",
       "          \"OBJECTID\": 372,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"North Hempstead Branches Out Initiative\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -73.69935,\n",
       "              40.79657\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Lancaster, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Lancaster\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"255584\",\n",
       "          \"FUNDING_NUMERIC\": 255584.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2622\",\n",
       "          \"LATITUDE\": 42.90039,\n",
       "          \"LONGITUDE\": -78.67017,\n",
       "          \"OBJECTID\": 373,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Village of Lancaster Tree Equity and Education Initiative\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -78.67017,\n",
       "              42.9003900000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Akron, OH\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Akron\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2623\",\n",
       "          \"LATITUDE\": 41.08431,\n",
       "          \"LONGITUDE\": -81.51431,\n",
       "          \"OBJECTID\": 374,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Project ACORN: Akron Community-Owned Reforestation Network\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -81.51431,\n",
       "              41.0843100000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Canton, OH\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Canton\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"255500\",\n",
       "          \"FUNDING_NUMERIC\": 255500.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2625\",\n",
       "          \"LATITUDE\": 40.79788,\n",
       "          \"LONGITUDE\": -81.37194,\n",
       "          \"OBJECTID\": 375,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Revitalization of Urban Forest within Disadvantaged Communities in the City of Canton\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -81.3719399999999,\n",
       "              40.79788\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Circleville, OH\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Circleville\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2626\",\n",
       "          \"LATITUDE\": 39.60099,\n",
       "          \"LONGITUDE\": -82.94218,\n",
       "          \"OBJECTID\": 376,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Green Circleville Initiative\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -82.94218,\n",
       "              39.60099\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Dayton, OH\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Dayton\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2628\",\n",
       "          \"LATITUDE\": 39.7592,\n",
       "          \"LONGITUDE\": -84.19381,\n",
       "          \"OBJECTID\": 377,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Dayton Urban and Community Forestry Grant\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -84.19381,\n",
       "              39.7592\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Coschocton, OH\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Coschocton\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2627\",\n",
       "          \"LATITUDE\": 40.27229,\n",
       "          \"LONGITUDE\": -81.86665,\n",
       "          \"OBJECTID\": 378,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Coshocton Urban Tree Renewal\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -81.8666499999999,\n",
       "              40.27229\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Euclid, OH\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Euclid\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"525400\",\n",
       "          \"FUNDING_NUMERIC\": 525400.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2629\",\n",
       "          \"LATITUDE\": 41.59946,\n",
       "          \"LONGITUDE\": -81.52682,\n",
       "          \"OBJECTID\": 379,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Urban Forestry Master Planning Initiative\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -81.52682,\n",
       "              41.5994600000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"New York City, NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"New York City\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2616\",\n",
       "          \"LATITUDE\": 40.71453,\n",
       "          \"LONGITUDE\": -74.00712,\n",
       "          \"OBJECTID\": 380,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Branching Out: Leveraging Workforce Development and Building Partnerships to Grow Green Leaders and Community Forestry in The Bronx\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -74.00712,\n",
       "              40.71453\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Bowling Green, OH\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Bowling Green\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"415000\",\n",
       "          \"FUNDING_NUMERIC\": 415000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2624\",\n",
       "          \"LATITUDE\": 41.37573,\n",
       "          \"LONGITUDE\": -83.65046,\n",
       "          \"OBJECTID\": 381,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Bowling Green Canopy Tree Project: The Preservation and Extension of an Old Growth Urban Forest\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -83.65046,\n",
       "              41.37573\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Fostoria, OH\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Fostoria\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2630\",\n",
       "          \"LATITUDE\": 41.15568,\n",
       "          \"LONGITUDE\": -83.41235,\n",
       "          \"OBJECTID\": 382,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Fostoria Urban Forestry Program\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -83.41235,\n",
       "              41.1556800000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Obetz, OH\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Obetz\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"100000\",\n",
       "          \"FUNDING_NUMERIC\": 100000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2633\",\n",
       "          \"LATITUDE\": 39.8797,\n",
       "          \"LONGITUDE\": -82.95554,\n",
       "          \"OBJECTID\": 383,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Tree Canopy Improvement Project\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -82.95554,\n",
       "              39.8797\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Lyndhurst, OH\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Lyndhurst\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"100000\",\n",
       "          \"FUNDING_NUMERIC\": 100000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2632\",\n",
       "          \"LATITUDE\": 41.51993,\n",
       "          \"LONGITUDE\": -81.48747,\n",
       "          \"OBJECTID\": 384,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"The City of Lyndhurst Oak Wilt Pruning Project and Planting Vacancies\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -81.48747,\n",
       "              41.51993\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Stow, OH\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Stow\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"316483\",\n",
       "          \"FUNDING_NUMERIC\": 316483.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2635\",\n",
       "          \"LATITUDE\": 41.1686,\n",
       "          \"LONGITUDE\": -81.44038,\n",
       "          \"OBJECTID\": 385,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Stow Ohio Workforce Development\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -81.44038,\n",
       "              41.1686\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Toledo, OH\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Toledo\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"6098294\",\n",
       "          \"FUNDING_NUMERIC\": 6098294.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2636\",\n",
       "          \"LATITUDE\": 41.65404,\n",
       "          \"LONGITUDE\": -83.53674,\n",
       "          \"OBJECTID\": 386,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Restoring and Enhancing Tree Canopy for Resilience, Equity, and Engagement in Toledo (RE-TREE Toledo)\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -83.53674,\n",
       "              41.6540400000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Xenia, OH\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Xenia\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"324950\",\n",
       "          \"FUNDING_NUMERIC\": 324950.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2637\",\n",
       "          \"LATITUDE\": 39.68511,\n",
       "          \"LONGITUDE\": -83.92817,\n",
       "          \"OBJECTID\": 387,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Xenia HUB District & East End Urban Canopy Renewal\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -83.92817,\n",
       "              39.6851100000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Dayton, OH\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Dayton\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1450450\",\n",
       "          \"FUNDING_NUMERIC\": 1450450.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2638\",\n",
       "          \"LATITUDE\": 39.7592,\n",
       "          \"LONGITUDE\": -84.19381,\n",
       "          \"OBJECTID\": 388,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Possum Creek MetroPark and Spring Run Conservation Area Forestry Project\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -84.19381,\n",
       "              39.7592\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Port Clinton, OH\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Port Clinton\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"959000\",\n",
       "          \"FUNDING_NUMERIC\": 959000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2634\",\n",
       "          \"LATITUDE\": 41.51329,\n",
       "          \"LONGITUDE\": -82.94145,\n",
       "          \"OBJECTID\": 389,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Western Lake Erie Urban & Community Forestry Advancement in Ottawa County, Ohio\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -82.94145,\n",
       "              41.51329\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Millfield, OH\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Millfield\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"317284\",\n",
       "          \"FUNDING_NUMERIC\": 317284.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2639\",\n",
       "          \"LATITUDE\": 39.43793,\n",
       "          \"LONGITUDE\": -82.10226,\n",
       "          \"OBJECTID\": 390,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Uplifting People and Place Through Youth and Young Adult Apprenticeships in Sustainable Forestry and Agroforestry\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -82.10226,\n",
       "              39.4379300000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Marble Cliff, OH\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Marble Cliff\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"100000\",\n",
       "          \"FUNDING_NUMERIC\": 100000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2640\",\n",
       "          \"LATITUDE\": 39.98898,\n",
       "          \"LONGITUDE\": -83.0593,\n",
       "          \"OBJECTID\": 391,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Marble Cliff Community Forestry Project\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -83.0593,\n",
       "              39.98898\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Ada, OK\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Ada\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"230500\",\n",
       "          \"FUNDING_NUMERIC\": 230500.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2642\",\n",
       "          \"LATITUDE\": 34.77506,\n",
       "          \"LONGITUDE\": -96.67866,\n",
       "          \"OBJECTID\": 392,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Ada OK Urban Forestry\",\n",
       "          \"STATE_ABBR\": \"OK\",\n",
       "          \"STATE_NAME\": \"Oklahoma\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -96.67866,\n",
       "              34.77506\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Edmond, OK\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Edmond\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2643\",\n",
       "          \"LATITUDE\": 35.6549,\n",
       "          \"LONGITUDE\": -97.47813,\n",
       "          \"OBJECTID\": 393,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Edmond Releaf\",\n",
       "          \"STATE_ABBR\": \"OK\",\n",
       "          \"STATE_NAME\": \"Oklahoma\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -97.47813,\n",
       "              35.6549\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Tulsa, OK\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Tulsa\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2271922\",\n",
       "          \"FUNDING_NUMERIC\": 2271922.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2644\",\n",
       "          \"LATITUDE\": 36.15011,\n",
       "          \"LONGITUDE\": -95.99352,\n",
       "          \"OBJECTID\": 394,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Low Income Pruning and Planting\",\n",
       "          \"STATE_ABBR\": \"OK\",\n",
       "          \"STATE_NAME\": \"Oklahoma\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -95.99352,\n",
       "              36.15011\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Youngstown, OH\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Youngstown\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2641\",\n",
       "          \"LATITUDE\": 41.0981,\n",
       "          \"LONGITUDE\": -80.65079,\n",
       "          \"OBJECTID\": 395,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Mahoning Valley TreeCorps\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.65079,\n",
       "              41.0981\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Hermiston, OR\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Hermiston\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2645\",\n",
       "          \"LATITUDE\": 45.84051,\n",
       "          \"LONGITUDE\": -119.28947,\n",
       "          \"OBJECTID\": 396,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Urban and Community Forest Health and Biodiversity for Long-term Resilience\",\n",
       "          \"STATE_ABBR\": \"OR\",\n",
       "          \"STATE_NAME\": \"Oregon\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.28947,\n",
       "              45.84051\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Pendleton, OR\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Pendleton\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2647\",\n",
       "          \"LATITUDE\": 45.67179,\n",
       "          \"LONGITUDE\": -118.7864,\n",
       "          \"OBJECTID\": 397,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Pendleton Urban Forestry Program\",\n",
       "          \"STATE_ABBR\": \"OR\",\n",
       "          \"STATE_NAME\": \"Oregon\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -118.7864,\n",
       "              45.67179\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Hillsboro, OR\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Hillsboro\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"340835\",\n",
       "          \"FUNDING_NUMERIC\": 340835.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2646\",\n",
       "          \"LATITUDE\": 45.52268,\n",
       "          \"LONGITUDE\": -122.99044,\n",
       "          \"OBJECTID\": 398,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Riparian Forest Rescue! Save our unique urban forest from the invasive ash borer\",\n",
       "          \"STATE_ABBR\": \"OR\",\n",
       "          \"STATE_NAME\": \"Oregon\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.99044,\n",
       "              45.52268\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Salem, OR\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Salem\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2648\",\n",
       "          \"LATITUDE\": 44.93326,\n",
       "          \"LONGITUDE\": -123.04381,\n",
       "          \"OBJECTID\": 399,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Building a More Resilient and Equitable Tree Canopy in Salem, Oregon\",\n",
       "          \"STATE_ABBR\": \"OR\",\n",
       "          \"STATE_NAME\": \"Oregon\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -123.04381,\n",
       "              44.93326\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Green, OH\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Green\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"263425\",\n",
       "          \"FUNDING_NUMERIC\": 263425.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2631\",\n",
       "          \"LATITUDE\": 40.94727,\n",
       "          \"LONGITUDE\": -81.46523,\n",
       "          \"OBJECTID\": 400,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Hiring an Urban Forester\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -81.46523,\n",
       "              40.9472700000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Eugene, OR\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Eugene\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"12000000\",\n",
       "          \"FUNDING_NUMERIC\": 12000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2651\",\n",
       "          \"LATITUDE\": 44.04992,\n",
       "          \"LONGITUDE\": -123.08837,\n",
       "          \"OBJECTID\": 401,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Northwest Youth Corps NW Community Forestry Project\",\n",
       "          \"STATE_ABBR\": \"OR\",\n",
       "          \"STATE_NAME\": \"Oregon\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -123.08837,\n",
       "              44.04992\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Portland, OR\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Portland\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"7000000\",\n",
       "          \"FUNDING_NUMERIC\": 7000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2649\",\n",
       "          \"LATITUDE\": 45.51179,\n",
       "          \"LONGITUDE\": -122.67563,\n",
       "          \"OBJECTID\": 402,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Portland/Vancouver Canopy Collective\",\n",
       "          \"STATE_ABBR\": \"OR\",\n",
       "          \"STATE_NAME\": \"Oregon\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.67563,\n",
       "              45.51179\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Portland, OR\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Portland\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"12000000\",\n",
       "          \"FUNDING_NUMERIC\": 12000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2650\",\n",
       "          \"LATITUDE\": 45.51179,\n",
       "          \"LONGITUDE\": -122.67563,\n",
       "          \"OBJECTID\": 403,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Engaging low-canopy neighborhoods in community tree planting\",\n",
       "          \"STATE_ABBR\": \"OR\",\n",
       "          \"STATE_NAME\": \"Oregon\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.67563,\n",
       "              45.51179\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Salem, OR\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Salem\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"22857196\",\n",
       "          \"FUNDING_NUMERIC\": 22857196.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2652\",\n",
       "          \"LATITUDE\": 44.93326,\n",
       "          \"LONGITUDE\": -123.04381,\n",
       "          \"OBJECTID\": 404,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Growing Equity in Oregon's Urban and Community Forests: Investing in Disadvantaged Communities to Promote Social, Economic, and Environmental Well-Being\",\n",
       "          \"STATE_ABBR\": \"OR\",\n",
       "          \"STATE_NAME\": \"Oregon\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -123.04381,\n",
       "              44.93326\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Connellsville, PA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Connellsville\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2656\",\n",
       "          \"LATITUDE\": 40.01782,\n",
       "          \"LONGITUDE\": -79.58849,\n",
       "          \"OBJECTID\": 405,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Connellsville Community Tree Program\",\n",
       "          \"STATE_ABBR\": \"PA\",\n",
       "          \"STATE_NAME\": \"Pennsylvania\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -79.58849,\n",
       "              40.01782\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Allentown, PA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Allentown\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"920800\",\n",
       "          \"FUNDING_NUMERIC\": 920800.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2655\",\n",
       "          \"LATITUDE\": 40.60263,\n",
       "          \"LONGITUDE\": -75.47027,\n",
       "          \"OBJECTID\": 406,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Allentown Urban Forestry\",\n",
       "          \"STATE_ABBR\": \"PA\",\n",
       "          \"STATE_NAME\": \"Pennsylvania\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -75.47027,\n",
       "              40.60263\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"State College, PA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"State College\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"369355\",\n",
       "          \"FUNDING_NUMERIC\": 369355.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2654\",\n",
       "          \"LATITUDE\": 40.79373,\n",
       "          \"LONGITUDE\": -77.8607,\n",
       "          \"OBJECTID\": 407,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Borough of State College Urban Forestry Sustainability Plan\",\n",
       "          \"STATE_ABBR\": \"PA\",\n",
       "          \"STATE_NAME\": \"Pennsylvania\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -77.8607,\n",
       "              40.79373\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Harrisburg, PA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Harrisburg\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2658\",\n",
       "          \"LATITUDE\": 40.25986,\n",
       "          \"LONGITUDE\": -76.88223,\n",
       "          \"OBJECTID\": 408,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Harrisburg City Riverside\",\n",
       "          \"STATE_ABBR\": \"PA\",\n",
       "          \"STATE_NAME\": \"Pennsylvania\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -76.8822299999999,\n",
       "              40.25986\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Easton, PA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Easton\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2657\",\n",
       "          \"LATITUDE\": 40.6912,\n",
       "          \"LONGITUDE\": -75.20983,\n",
       "          \"OBJECTID\": 409,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Easton Urban Forest Equity Project\",\n",
       "          \"STATE_ABBR\": \"PA\",\n",
       "          \"STATE_NAME\": \"Pennsylvania\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -75.20983,\n",
       "              40.6912\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Harrisburg, PA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Harrisburg\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2659\",\n",
       "          \"LATITUDE\": 40.25986,\n",
       "          \"LONGITUDE\": -76.88223,\n",
       "          \"OBJECTID\": 410,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Harrisburg City TreeVestment\",\n",
       "          \"STATE_ABBR\": \"PA\",\n",
       "          \"STATE_NAME\": \"Pennsylvania\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -76.8822299999999,\n",
       "              40.25986\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Lancaster, PA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Lancaster\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2660\",\n",
       "          \"LATITUDE\": 40.03832,\n",
       "          \"LONGITUDE\": -76.30134,\n",
       "          \"OBJECTID\": 411,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Proactive Systemic Maintenance: Pruning, Planting and Removal\",\n",
       "          \"STATE_ABBR\": \"PA\",\n",
       "          \"STATE_NAME\": \"Pennsylvania\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -76.30134,\n",
       "              40.03832\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Mechanicsburg, PA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Mechanicsburg\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2653\",\n",
       "          \"LATITUDE\": 40.2132,\n",
       "          \"LONGITUDE\": -77.00834,\n",
       "          \"OBJECTID\": 412,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Trees for All\",\n",
       "          \"STATE_ABBR\": \"PA\",\n",
       "          \"STATE_NAME\": \"Pennsylvania\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -77.00834,\n",
       "              40.2132\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Pittsburgh, PA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Pittsburgh\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2661\",\n",
       "          \"LATITUDE\": 40.43851,\n",
       "          \"LONGITUDE\": -79.99734,\n",
       "          \"OBJECTID\": 413,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Pittsburgh Vacant Lots Tree Planting\",\n",
       "          \"STATE_ABBR\": \"PA\",\n",
       "          \"STATE_NAME\": \"Pennsylvania\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -79.99734,\n",
       "              40.4385100000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Johnstown, PA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Johnstown\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"659300\",\n",
       "          \"FUNDING_NUMERIC\": 659300.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2662\",\n",
       "          \"LATITUDE\": 40.32726,\n",
       "          \"LONGITUDE\": -78.91835,\n",
       "          \"OBJECTID\": 414,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Johnstown Urban Orchard\",\n",
       "          \"STATE_ABBR\": \"PA\",\n",
       "          \"STATE_NAME\": \"Pennsylvania\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -78.91835,\n",
       "              40.3272600000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Pittsburgh, PA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Pittsburgh\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"8000000\",\n",
       "          \"FUNDING_NUMERIC\": 8000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2663\",\n",
       "          \"LATITUDE\": 40.43851,\n",
       "          \"LONGITUDE\": -79.99734,\n",
       "          \"OBJECTID\": 415,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Pittsburgh Canopy Alliance\",\n",
       "          \"STATE_ABBR\": \"PA\",\n",
       "          \"STATE_NAME\": \"Pennsylvania\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -79.99734,\n",
       "              40.4385100000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Philadelphia, PA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Philadelphia\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"12000000\",\n",
       "          \"FUNDING_NUMERIC\": 12000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2664\",\n",
       "          \"LATITUDE\": 39.95222,\n",
       "          \"LONGITUDE\": -75.16218,\n",
       "          \"OBJECTID\": 416,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Philly Tree Plan Implementation: Growing an Equitable Forest\",\n",
       "          \"STATE_ABBR\": \"PA\",\n",
       "          \"STATE_NAME\": \"Pennsylvania\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -75.16218,\n",
       "              39.9522200000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Sabana Grande, PR\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Sabana Grande\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"7000000\",\n",
       "          \"FUNDING_NUMERIC\": 7000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2666\",\n",
       "          \"LATITUDE\": 18.07806,\n",
       "          \"LONGITUDE\": -66.96185,\n",
       "          \"OBJECTID\": 417,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Urban Trees for Resilience, Equity, & Empowerment in Puerto Rico (U-TREE-PR)\",\n",
       "          \"STATE_ABBR\": \"PR\",\n",
       "          \"STATE_NAME\": \"Puerto Rico\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -66.96185,\n",
       "              18.0780600000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"East Providence, RI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"East Providence\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"750000\",\n",
       "          \"FUNDING_NUMERIC\": 750000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2668\",\n",
       "          \"LATITUDE\": 41.81971,\n",
       "          \"LONGITUDE\": -71.37583,\n",
       "          \"OBJECTID\": 418,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"East Providence Tree Equity, Workforce, and Education Program\",\n",
       "          \"STATE_ABBR\": \"RI\",\n",
       "          \"STATE_NAME\": \"Rhode Island\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -71.37583,\n",
       "              41.81971\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"San Juan, PR\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"San Juan\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2667\",\n",
       "          \"LATITUDE\": 18.46536,\n",
       "          \"LONGITUDE\": -66.11691,\n",
       "          \"OBJECTID\": 419,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Rooted in the Ri\\u00ado Piedras Network: A Justice-Centered Approach to Green Infrastructure Planning to Enhance Community Resilience in the City of San Juan\",\n",
       "          \"STATE_ABBR\": \"PR\",\n",
       "          \"STATE_NAME\": \"Puerto Rico\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -66.11691,\n",
       "              18.46536\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Pawtucket, RI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Pawtucket\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"3000000\",\n",
       "          \"FUNDING_NUMERIC\": 3000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2670\",\n",
       "          \"LATITUDE\": 41.87976,\n",
       "          \"LONGITUDE\": -71.38246,\n",
       "          \"OBJECTID\": 420,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Tree Greening of Pawtucket\",\n",
       "          \"STATE_ABBR\": \"RI\",\n",
       "          \"STATE_NAME\": \"Rhode Island\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -71.38246,\n",
       "              41.87976\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Columbia, SC\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Columbia\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"290015\",\n",
       "          \"FUNDING_NUMERIC\": 290015.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2671\",\n",
       "          \"LATITUDE\": 33.99882,\n",
       "          \"LONGITUDE\": -81.04537,\n",
       "          \"OBJECTID\": 421,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Free Trees for the Community\",\n",
       "          \"STATE_ABBR\": \"SC\",\n",
       "          \"STATE_NAME\": \"South Carolina\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -81.04537,\n",
       "              33.99882\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"North Augusta, SC\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"North Augusta\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"459301\",\n",
       "          \"FUNDING_NUMERIC\": 459301.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2672\",\n",
       "          \"LATITUDE\": 33.49634,\n",
       "          \"LONGITUDE\": -81.96984,\n",
       "          \"OBJECTID\": 422,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"NA Urban Tree Canopy Expansion Project Along Right of Ways\",\n",
       "          \"STATE_ABBR\": \"SC\",\n",
       "          \"STATE_NAME\": \"South Carolina\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -81.96984,\n",
       "              33.49634\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Orangeburg, SC\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Orangeburg\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2674\",\n",
       "          \"LATITUDE\": 33.48935,\n",
       "          \"LONGITUDE\": -80.86472,\n",
       "          \"OBJECTID\": 423,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Expansion of Urban Forestry and Green Infrastructure in South Carolina\",\n",
       "          \"STATE_ABBR\": \"SC\",\n",
       "          \"STATE_NAME\": \"South Carolina\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.86472,\n",
       "              33.4893500000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Sioux Falls, SD\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Sioux Falls\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"3000000\",\n",
       "          \"FUNDING_NUMERIC\": 3000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2675\",\n",
       "          \"LATITUDE\": 43.54577,\n",
       "          \"LONGITUDE\": -96.73128,\n",
       "          \"OBJECTID\": 424,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Sioux Falls Communi-Tree Assistance Program\",\n",
       "          \"STATE_ABBR\": \"SD\",\n",
       "          \"STATE_NAME\": \"South Dakota\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -96.73128,\n",
       "              43.54577\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Chattanooga, TN\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Chattanooga\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"6000000\",\n",
       "          \"FUNDING_NUMERIC\": 6000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2676\",\n",
       "          \"LATITUDE\": 35.04672,\n",
       "          \"LONGITUDE\": -85.30947,\n",
       "          \"OBJECTID\": 425,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Take Root Chattanooga\",\n",
       "          \"STATE_ABBR\": \"TN\",\n",
       "          \"STATE_NAME\": \"Tennessee\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -85.30947,\n",
       "              35.04672\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Cranston, RI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Cranston\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"3000000\",\n",
       "          \"FUNDING_NUMERIC\": 3000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2669\",\n",
       "          \"LATITUDE\": 41.77884,\n",
       "          \"LONGITUDE\": -71.43525,\n",
       "          \"OBJECTID\": 426,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Enhancing Urban and Community Forest in Rhode Island's Health Equity Zones\",\n",
       "          \"STATE_ABBR\": \"RI\",\n",
       "          \"STATE_NAME\": \"Rhode Island\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -71.4352499999999,\n",
       "              41.7788400000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Knoxville, TN\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Knoxville\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1723731\",\n",
       "          \"FUNDING_NUMERIC\": 1723731.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2677\",\n",
       "          \"LATITUDE\": 35.96068,\n",
       "          \"LONGITUDE\": -83.92103,\n",
       "          \"OBJECTID\": 427,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Growing Urban Tree Canopy in Knoxville, Tennessee\",\n",
       "          \"STATE_ABBR\": \"TN\",\n",
       "          \"STATE_NAME\": \"Tennessee\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -83.92103,\n",
       "              35.96068\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Nashville, TN\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Nashville\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1004804\",\n",
       "          \"FUNDING_NUMERIC\": 1004804.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2678\",\n",
       "          \"LATITUDE\": 36.16784,\n",
       "          \"LONGITUDE\": -86.77816,\n",
       "          \"OBJECTID\": 428,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Tennessee Tree Day\",\n",
       "          \"STATE_ABBR\": \"TN\",\n",
       "          \"STATE_NAME\": \"Tennessee\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -86.77816,\n",
       "              36.16784\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Knoxville, TN\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Knoxville\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2586006\",\n",
       "          \"FUNDING_NUMERIC\": 2586006.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2680\",\n",
       "          \"LATITUDE\": 35.96068,\n",
       "          \"LONGITUDE\": -83.92103,\n",
       "          \"OBJECTID\": 429,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Gravel Tree Stormwater Systems: Bringing Ecosystem Services, Education, and Workforce Development to East Knoxville\",\n",
       "          \"STATE_ABBR\": \"TN\",\n",
       "          \"STATE_NAME\": \"Tennessee\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -83.92103,\n",
       "              35.96068\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Nashville, TN\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Nashville\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2679\",\n",
       "          \"LATITUDE\": 36.16784,\n",
       "          \"LONGITUDE\": -86.77816,\n",
       "          \"OBJECTID\": 430,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Restoration of an Urban, Forested Wetland at Tennessee State University to Improve Educational Opportunities and Ecosystem Services\",\n",
       "          \"STATE_ABBR\": \"TN\",\n",
       "          \"STATE_NAME\": \"Tennessee\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -86.77816,\n",
       "              36.16784\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Pflugerville, TX\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Pflugerville\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"150000\",\n",
       "          \"FUNDING_NUMERIC\": 150000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2683\",\n",
       "          \"LATITUDE\": 30.44056,\n",
       "          \"LONGITUDE\": -97.61994,\n",
       "          \"OBJECTID\": 431,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Windermere South Replanting Project\",\n",
       "          \"STATE_ABBR\": \"TX\",\n",
       "          \"STATE_NAME\": \"Texas\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -97.61994,\n",
       "              30.4405600000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Garland, TX\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Garland\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2682\",\n",
       "          \"LATITUDE\": 32.91427,\n",
       "          \"LONGITUDE\": -96.63655,\n",
       "          \"OBJECTID\": 432,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Tree Garland\",\n",
       "          \"STATE_ABBR\": \"TX\",\n",
       "          \"STATE_NAME\": \"Texas\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -96.63655,\n",
       "              32.91427\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Arlington, TX\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Arlington\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"150000\",\n",
       "          \"FUNDING_NUMERIC\": 150000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2681\",\n",
       "          \"LATITUDE\": 32.7356,\n",
       "          \"LONGITUDE\": -97.10772,\n",
       "          \"OBJECTID\": 433,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Arlington- Chinese Privet removal\",\n",
       "          \"STATE_ABBR\": \"TX\",\n",
       "          \"STATE_NAME\": \"Texas\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -97.10772,\n",
       "              32.7356\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"San Marcos, TX\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"San Marcos\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"299722\",\n",
       "          \"FUNDING_NUMERIC\": 299722.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2684\",\n",
       "          \"LATITUDE\": 29.88608,\n",
       "          \"LONGITUDE\": -97.92818,\n",
       "          \"OBJECTID\": 434,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of San Marcos, Texas \\u00a0- Urban and Community Forestry Strategic Management Plan\",\n",
       "          \"STATE_ABBR\": \"TX\",\n",
       "          \"STATE_NAME\": \"Texas\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -97.9281799999999,\n",
       "              29.88608\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Logan, UT\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Logan\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"300000\",\n",
       "          \"FUNDING_NUMERIC\": 300000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2687\",\n",
       "          \"LATITUDE\": 41.73691,\n",
       "          \"LONGITUDE\": -111.83482,\n",
       "          \"OBJECTID\": 435,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Logan City Forestry Tree Purchase & Education Plan\",\n",
       "          \"STATE_ABBR\": \"UT\",\n",
       "          \"STATE_NAME\": \"Utah\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.83482,\n",
       "              41.7369100000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Houston, TX\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Houston\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"15000000\",\n",
       "          \"FUNDING_NUMERIC\": 15000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2685\",\n",
       "          \"LATITUDE\": 29.76078,\n",
       "          \"LONGITUDE\": -95.36952,\n",
       "          \"OBJECTID\": 436,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"ForUsTree: Creating an Inclusive Community Canopy within Houston and Harris County\",\n",
       "          \"STATE_ABBR\": \"TX\",\n",
       "          \"STATE_NAME\": \"Texas\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -95.36952,\n",
       "              29.7607800000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Dallas, TX\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Dallas\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"15000000\",\n",
       "          \"FUNDING_NUMERIC\": 15000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2686\",\n",
       "          \"LATITUDE\": 32.77822,\n",
       "          \"LONGITUDE\": -96.79512,\n",
       "          \"OBJECTID\": 437,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"South Dallas Neighborhood Greening Initiative\",\n",
       "          \"STATE_ABBR\": \"TX\",\n",
       "          \"STATE_NAME\": \"Texas\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -96.7951199999999,\n",
       "              32.77822\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Moab, UT\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Moab\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"502040\",\n",
       "          \"FUNDING_NUMERIC\": 502040.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2688\",\n",
       "          \"LATITUDE\": 38.57327,\n",
       "          \"LONGITUDE\": -109.54921,\n",
       "          \"OBJECTID\": 438,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Moab City Urban Forestry Management Plan and Stewardship\",\n",
       "          \"STATE_ABBR\": \"UT\",\n",
       "          \"STATE_NAME\": \"Utah\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -109.54921,\n",
       "              38.57327\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Logan, UT\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Logan\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"3000000\",\n",
       "          \"FUNDING_NUMERIC\": 3000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2689\",\n",
       "          \"LATITUDE\": 41.73691,\n",
       "          \"LONGITUDE\": -111.83482,\n",
       "          \"OBJECTID\": 439,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Seeding a tree culture in Utah - Resources for disadvantaged communities\",\n",
       "          \"STATE_ABBR\": \"UT\",\n",
       "          \"STATE_NAME\": \"Utah\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.83482,\n",
       "              41.7369100000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Charlottesville, VA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Charlottesville\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"150000\",\n",
       "          \"FUNDING_NUMERIC\": 150000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2690\",\n",
       "          \"LATITUDE\": 38.03213,\n",
       "          \"LONGITUDE\": -78.47756,\n",
       "          \"OBJECTID\": 440,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Charlottesville Urban Forest Management Planning: An Adaptive Approach\",\n",
       "          \"STATE_ABBR\": \"VA\",\n",
       "          \"STATE_NAME\": \"Virginia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -78.47756,\n",
       "              38.0321300000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Fairfax, VA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Fairfax\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2691\",\n",
       "          \"LATITUDE\": 38.84185,\n",
       "          \"LONGITUDE\": -77.30905,\n",
       "          \"OBJECTID\": 441,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Stewarding, Planting, Restoring Our Urban Trees (SPROUT) in Fairfax City\",\n",
       "          \"STATE_ABBR\": \"VA\",\n",
       "          \"STATE_NAME\": \"Virginia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -77.30905,\n",
       "              38.8418500000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Rock Hill, SC\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Rock Hill\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2673\",\n",
       "          \"LATITUDE\": 34.92428,\n",
       "          \"LONGITUDE\": -81.02709,\n",
       "          \"OBJECTID\": 442,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Urban Forest Initiative for Rock Hill's Disadvantaged Areas\",\n",
       "          \"STATE_ABBR\": \"SC\",\n",
       "          \"STATE_NAME\": \"South Carolina\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -81.02709,\n",
       "              34.9242800000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Norfolk, VA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Norfolk\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2692\",\n",
       "          \"LATITUDE\": 36.84686,\n",
       "          \"LONGITUDE\": -76.28514,\n",
       "          \"OBJECTID\": 443,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Norfolk Urban Forestry Capacity Building: Increasing Canopy Resilience and Equity in Underserved Communities\",\n",
       "          \"STATE_ABBR\": \"VA\",\n",
       "          \"STATE_NAME\": \"Virginia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -76.28514,\n",
       "              36.84686\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Winchester, VA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Winchester\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"550000\",\n",
       "          \"FUNDING_NUMERIC\": 550000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2694\",\n",
       "          \"LATITUDE\": 39.184,\n",
       "          \"LONGITUDE\": -78.16405,\n",
       "          \"OBJECTID\": 444,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Winchester Greening and Urban Tree Maintenance Projec\",\n",
       "          \"STATE_ABBR\": \"VA\",\n",
       "          \"STATE_NAME\": \"Virginia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -78.16405,\n",
       "              39.184\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Richmond, VA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Richmond\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"6000000\",\n",
       "          \"FUNDING_NUMERIC\": 6000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2693\",\n",
       "          \"LATITUDE\": 37.54068,\n",
       "          \"LONGITUDE\": -77.43367,\n",
       "          \"OBJECTID\": 445,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Black and Brown-Led, Coalition-Based Urban Greening in Richmond, VA\",\n",
       "          \"STATE_ABBR\": \"VA\",\n",
       "          \"STATE_NAME\": \"Virginia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -77.43367,\n",
       "              37.5406800000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Norfolk, VA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Norfolk\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2695\",\n",
       "          \"LATITUDE\": 36.84686,\n",
       "          \"LONGITUDE\": -76.28514,\n",
       "          \"OBJECTID\": 446,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Hampton\\u00a0Roads\\u00a0Blue\\u00a0Green\\u00a0Oasis\",\n",
       "          \"STATE_ABBR\": \"VA\",\n",
       "          \"STATE_NAME\": \"Virginia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -76.28514,\n",
       "              36.84686\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Norfolk, VA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Norfolk\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"4000000\",\n",
       "          \"FUNDING_NUMERIC\": 4000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2696\",\n",
       "          \"LATITUDE\": 36.84686,\n",
       "          \"LONGITUDE\": -76.28514,\n",
       "          \"OBJECTID\": 447,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Norfolk Blue-Greenway Project\",\n",
       "          \"STATE_ABBR\": \"VA\",\n",
       "          \"STATE_NAME\": \"Virginia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -76.28514,\n",
       "              36.84686\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Frederiksted, VI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Frederiksted\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2500000\",\n",
       "          \"FUNDING_NUMERIC\": 2500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2697\",\n",
       "          \"LATITUDE\": 17.71457,\n",
       "          \"LONGITUDE\": -64.88293,\n",
       "          \"OBJECTID\": 448,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Strength of Our R.O.O.T.S.: The Community's Reclamation Of Our Trees & Soil in the St. George Village Botanical Garden, St. Croix, U.S. Virgin Islands\",\n",
       "          \"STATE_ABBR\": \"VI\",\n",
       "          \"STATE_NAME\": \"U.S. Virgin Islands\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -64.88293,\n",
       "              17.71457\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Rutland, VT\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Rutland\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2699\",\n",
       "          \"LATITUDE\": 43.60509,\n",
       "          \"LONGITUDE\": -72.97828,\n",
       "          \"OBJECTID\": 449,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Rutland City Urban Tree Canopy Enhancement in Disadvantaged Areas\",\n",
       "          \"STATE_ABBR\": \"VT\",\n",
       "          \"STATE_NAME\": \"Vermont\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -72.97828,\n",
       "              43.60509\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Christiansted, VI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Christiansted\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2500000\",\n",
       "          \"FUNDING_NUMERIC\": 2500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2698\",\n",
       "          \"LATITUDE\": 17.74672,\n",
       "          \"LONGITUDE\": -64.70418,\n",
       "          \"OBJECTID\": 450,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Healing Forests to Heal the Underserved for Life\",\n",
       "          \"STATE_ABBR\": \"VI\",\n",
       "          \"STATE_NAME\": \"U.S. Virgin Islands\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -64.70418,\n",
       "              17.74672\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Winooski, VT\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Winooski\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2700\",\n",
       "          \"LATITUDE\": 44.49142,\n",
       "          \"LONGITUDE\": -73.18759,\n",
       "          \"OBJECTID\": 451,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Winooski Main Street Tree Plantings\",\n",
       "          \"STATE_ABBR\": \"VT\",\n",
       "          \"STATE_NAME\": \"Vermont\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -73.18759,\n",
       "              44.49142\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Lynnwood, WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Lynnwood\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1308198\",\n",
       "          \"FUNDING_NUMERIC\": 1308198.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2703\",\n",
       "          \"LATITUDE\": 47.82557,\n",
       "          \"LONGITUDE\": -122.29245,\n",
       "          \"OBJECTID\": 452,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"South Lynnwood Urban Forestry and Stewardship Program\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.29245,\n",
       "              47.82557\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Newport, VT\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Newport\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"363190\",\n",
       "          \"FUNDING_NUMERIC\": 363190.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2701\",\n",
       "          \"LATITUDE\": 44.93534,\n",
       "          \"LONGITUDE\": -72.21062,\n",
       "          \"OBJECTID\": 453,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Tree Enhancement Of Newport VT City Streets and Parks\",\n",
       "          \"STATE_ABBR\": \"VT\",\n",
       "          \"STATE_NAME\": \"Vermont\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -72.21062,\n",
       "              44.93534\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Port Townsend, WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Port Townsend\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"230507\",\n",
       "          \"FUNDING_NUMERIC\": 230507.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2705\",\n",
       "          \"LATITUDE\": 48.1212,\n",
       "          \"LONGITUDE\": -122.77263,\n",
       "          \"OBJECTID\": 454,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Climate & Economic Justice Grant - Castle Hill Neighborhood Tree Canopy\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.77263,\n",
       "              48.1212\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Oak Harbor, WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Oak Harbor\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1680140\",\n",
       "          \"FUNDING_NUMERIC\": 1680140.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2704\",\n",
       "          \"LATITUDE\": 48.29077,\n",
       "          \"LONGITUDE\": -122.64682,\n",
       "          \"OBJECTID\": 455,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Oak Harbor WA Urban & Community Forestry Program Development\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.64682,\n",
       "              48.2907700000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Port Townsend, WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Port Townsend\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"240517\",\n",
       "          \"FUNDING_NUMERIC\": 240517.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2706\",\n",
       "          \"LATITUDE\": 48.1212,\n",
       "          \"LONGITUDE\": -122.77263,\n",
       "          \"OBJECTID\": 456,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Urban & Community Forestry Future\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.77263,\n",
       "              48.1212\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Seattle, WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Seattle\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"900000\",\n",
       "          \"FUNDING_NUMERIC\": 900000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2707\",\n",
       "          \"LATITUDE\": 47.60357,\n",
       "          \"LONGITUDE\": -122.32945,\n",
       "          \"OBJECTID\": 457,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Delridge Native Forest Garden\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.32945,\n",
       "              47.60357\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Seattle, WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Seattle\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"12000000\",\n",
       "          \"FUNDING_NUMERIC\": 12000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2708\",\n",
       "          \"LATITUDE\": 47.60357,\n",
       "          \"LONGITUDE\": -122.32945,\n",
       "          \"OBJECTID\": 458,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Growing Seattle: Community-driven urban forestry and job training\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.32945,\n",
       "              47.60357\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Spokane, WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Spokane\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"6000000\",\n",
       "          \"FUNDING_NUMERIC\": 6000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2710\",\n",
       "          \"LATITUDE\": 47.65726,\n",
       "          \"LONGITUDE\": -117.41162,\n",
       "          \"OBJECTID\": 459,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Tree Equity Spokane\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -117.41162,\n",
       "              47.6572600000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Shoreline, WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Shoreline\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2709\",\n",
       "          \"LATITUDE\": 47.75744,\n",
       "          \"LONGITUDE\": -122.34477,\n",
       "          \"OBJECTID\": 460,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Enhancing Urban Forestry Efforts in the City of Shoreline\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.34477,\n",
       "              47.75744\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Tumwater, WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Tumwater\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"334588\",\n",
       "          \"FUNDING_NUMERIC\": 334588.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2711\",\n",
       "          \"LATITUDE\": 46.98541,\n",
       "          \"LONGITUDE\": -122.91222,\n",
       "          \"OBJECTID\": 461,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Tumwater Urban Forestry Capacity and Equity Project\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.91222,\n",
       "              46.9854100000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Snoqualmie, WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Snoqualmie\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1374299\",\n",
       "          \"FUNDING_NUMERIC\": 1374299.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2714\",\n",
       "          \"LATITUDE\": 47.52716,\n",
       "          \"LONGITUDE\": -121.82432,\n",
       "          \"OBJECTID\": 462,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Snoqualmie Tribe Ancestral Lands Culturally Modified Tree Protection Program\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -121.82432,\n",
       "              47.52716\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Vancouver, WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Vancouver\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"300000\",\n",
       "          \"FUNDING_NUMERIC\": 300000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2712\",\n",
       "          \"LATITUDE\": 45.63248,\n",
       "          \"LONGITUDE\": -122.67156,\n",
       "          \"OBJECTID\": 463,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Vancouver Urban Forestry Project\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.67156,\n",
       "              45.63248\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Snohomish, WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Snohomish\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2480761\",\n",
       "          \"FUNDING_NUMERIC\": 2480761.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2713\",\n",
       "          \"LATITUDE\": 47.91265,\n",
       "          \"LONGITUDE\": -122.09305,\n",
       "          \"OBJECTID\": 464,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Growing Urban Forest in Snohomish County\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.09305,\n",
       "              47.91265\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Pullman, WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Pullman\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1786431\",\n",
       "          \"FUNDING_NUMERIC\": 1786431.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2716\",\n",
       "          \"LATITUDE\": 46.73015,\n",
       "          \"LONGITUDE\": -117.18147,\n",
       "          \"OBJECTID\": 465,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Empowering community college students to equitably enhance urban forests\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -117.18147,\n",
       "              46.73015\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Wheeling, WV\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Wheeling\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1500000\",\n",
       "          \"FUNDING_NUMERIC\": 1500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2719\",\n",
       "          \"LATITUDE\": 40.06398,\n",
       "          \"LONGITUDE\": -80.72141,\n",
       "          \"OBJECTID\": 466,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"WV Ecosystem Career Engagement and Training\",\n",
       "          \"STATE_ABBR\": \"WV\",\n",
       "          \"STATE_NAME\": \"West Virginia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.72141,\n",
       "              40.0639800000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Milwaukee, WI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Milwaukee\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"12000000\",\n",
       "          \"FUNDING_NUMERIC\": 12000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2717\",\n",
       "          \"LATITUDE\": 43.04223,\n",
       "          \"LONGITUDE\": -87.9069,\n",
       "          \"OBJECTID\": 467,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Growing Milwaukee's Tree Canopy and Community Resilience\",\n",
       "          \"STATE_ABBR\": \"WI\",\n",
       "          \"STATE_NAME\": \"Wisconsin\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -87.9069,\n",
       "              43.0422300000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Casper, WY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Casper\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"699900\",\n",
       "          \"FUNDING_NUMERIC\": 699900.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2720\",\n",
       "          \"LATITUDE\": 42.85008,\n",
       "          \"LONGITUDE\": -106.32713,\n",
       "          \"OBJECTID\": 468,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Branch Across Casper\",\n",
       "          \"STATE_ABBR\": \"WY\",\n",
       "          \"STATE_NAME\": \"Wyoming\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -106.32713,\n",
       "              42.85008\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"College Place, WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"College Place\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"730413\",\n",
       "          \"FUNDING_NUMERIC\": 730413.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2702\",\n",
       "          \"LATITUDE\": 46.03456,\n",
       "          \"LONGITUDE\": -118.38864,\n",
       "          \"OBJECTID\": 469,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of College Place: Urban Forestry Enhancement Project\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -118.38864,\n",
       "              46.03456\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Spokane Valley, WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Spokane Valley\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"6000000\",\n",
       "          \"FUNDING_NUMERIC\": 6000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2715\",\n",
       "          \"LATITUDE\": 47.65713,\n",
       "          \"LONGITUDE\": -117.24696,\n",
       "          \"OBJECTID\": 470,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Spokane County Natural Resource Apprenticeship Program\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -117.24696,\n",
       "              47.6571300000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Lincoln, NE\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Lincoln\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"10000000\",\n",
       "          \"FUNDING_NUMERIC\": 10000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2724\",\n",
       "          \"LATITUDE\": 40.81362,\n",
       "          \"LONGITUDE\": -96.7073,\n",
       "          \"OBJECTID\": 471,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Arbor Day Foundation IRA Regranting Program\",\n",
       "          \"STATE_ABBR\": \"NE\",\n",
       "          \"STATE_NAME\": \"Nebraska\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -96.7073,\n",
       "              40.8136200000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Boulder, CO\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Boulder\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2400000\",\n",
       "          \"FUNDING_NUMERIC\": 2400000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2725\",\n",
       "          \"LATITUDE\": 40.01574,\n",
       "          \"LONGITUDE\": -105.27924,\n",
       "          \"OBJECTID\": 472,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Building Resilience in Frontline Communities\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.27924,\n",
       "              40.0157400000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Washington, DC\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Washington\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"10000000\",\n",
       "          \"FUNDING_NUMERIC\": 10000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2722\",\n",
       "          \"LATITUDE\": 38.89037,\n",
       "          \"LONGITUDE\": -77.03196,\n",
       "          \"OBJECTID\": 473,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"American Forests Catalyst Fund: Fostering Community-Led Action to Advance Tree Equity\",\n",
       "          \"STATE_ABBR\": \"DC\",\n",
       "          \"STATE_NAME\": \"District of Columbia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -77.03196,\n",
       "              38.89037\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Rock Springs, WY\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Rock Springs\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"100000\",\n",
       "          \"FUNDING_NUMERIC\": 100000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2721\",\n",
       "          \"LATITUDE\": 41.58632,\n",
       "          \"LONGITUDE\": -109.22267,\n",
       "          \"OBJECTID\": 474,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"City of Rock Springs Community Forest Initiative\",\n",
       "          \"STATE_ABBR\": \"WY\",\n",
       "          \"STATE_NAME\": \"Wyoming\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -109.22267,\n",
       "              41.5863200000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Washington, DC\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Washington\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2723\",\n",
       "          \"LATITUDE\": 38.89037,\n",
       "          \"LONGITUDE\": -77.03196,\n",
       "          \"OBJECTID\": 475,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"SFI Urban and Community Forest Improvement Program\",\n",
       "          \"STATE_ABBR\": \"DC\",\n",
       "          \"STATE_NAME\": \"District of Columbia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -77.03196,\n",
       "              38.89037\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Washington, DC\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Washington\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"7000000\",\n",
       "          \"FUNDING_NUMERIC\": 7000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2727\",\n",
       "          \"LATITUDE\": 38.89037,\n",
       "          \"LONGITUDE\": -77.03196,\n",
       "          \"OBJECTID\": 476,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Rising From Roots: Addressing Historical Health Disparities and Environment Justice through Urban Forestry at 1890 Land-Grant Universities\",\n",
       "          \"STATE_ABBR\": \"DC\",\n",
       "          \"STATE_NAME\": \"District of Columbia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -77.03196,\n",
       "              38.89037\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Washington, DC\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Washington\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2728\",\n",
       "          \"LATITUDE\": 38.89037,\n",
       "          \"LONGITUDE\": -77.03196,\n",
       "          \"OBJECTID\": 477,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Growing Resilience Through Forested Community Schoolyards\",\n",
       "          \"STATE_ABBR\": \"DC\",\n",
       "          \"STATE_NAME\": \"District of Columbia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -77.03196,\n",
       "              38.89037\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Washington, DC\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Washington\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2729\",\n",
       "          \"LATITUDE\": 38.89037,\n",
       "          \"LONGITUDE\": -77.03196,\n",
       "          \"OBJECTID\": 478,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Grassroots Grantmaking for Tree Canopy Restoration across Latino Communitie\",\n",
       "          \"STATE_ABBR\": \"DC\",\n",
       "          \"STATE_NAME\": \"District of Columbia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -77.03196,\n",
       "              38.89037\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Washington, DC\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Washington\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2731\",\n",
       "          \"LATITUDE\": 38.89037,\n",
       "          \"LONGITUDE\": -77.03196,\n",
       "          \"OBJECTID\": 479,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Nuestros Bosques (Our Forests) IRA Initiative\",\n",
       "          \"STATE_ABBR\": \"DC\",\n",
       "          \"STATE_NAME\": \"District of Columbia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -77.03196,\n",
       "              38.89037\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Washington, DC\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": \"Washington\",\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2732\",\n",
       "          \"LATITUDE\": 38.89037,\n",
       "          \"LONGITUDE\": -77.03196,\n",
       "          \"OBJECTID\": 480,\n",
       "          \"PROGRAM_NAME\": \"Urban and Community Forestry Assistance Program\",\n",
       "          \"PROJECT_NAME\": \"Urban and Community Forestry Corps (UCFC) Initiative\",\n",
       "          \"STATE_ABBR\": \"DC\",\n",
       "          \"STATE_NAME\": \"District of Columbia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -77.03196,\n",
       "              38.89037\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Berkshire County, MA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Berkshire County\",\n",
       "          \"FUNDING\": \"465589\",\n",
       "          \"FUNDING_NUMERIC\": 465589.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-120\",\n",
       "          \"LATITUDE\": 42.3706300860001,\n",
       "          \"LONGITUDE\": -73.20637965,\n",
       "          \"OBJECTID\": 481,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Berkshire Regional Planning Commission\",\n",
       "          \"STATE_ABBR\": \"MA\",\n",
       "          \"STATE_NAME\": \"Massachusetts\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -73.20637965,\n",
       "              42.3706300860001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Imperial County, CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Imperial County\",\n",
       "          \"FUNDING\": \"481250\",\n",
       "          \"FUNDING_NUMERIC\": 481250.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-149\",\n",
       "          \"LATITUDE\": 33.022684199,\n",
       "          \"LONGITUDE\": -115.335515235,\n",
       "          \"OBJECTID\": 482,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Imperial County APCD\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -115.335515235,\n",
       "              33.022684199\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Salt Lake County, UT\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Salt Lake County\",\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-168\",\n",
       "          \"LATITUDE\": 40.6604799180001,\n",
       "          \"LONGITUDE\": -111.913406162,\n",
       "          \"OBJECTID\": 483,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Salt Lake County\",\n",
       "          \"STATE_ABBR\": \"UT\",\n",
       "          \"STATE_NAME\": \"Utah\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.913406162,\n",
       "              40.6604799180001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"San Mateo County, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"San Mateo County\",\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-361\",\n",
       "          \"LATITUDE\": 37.4221516760001,\n",
       "          \"LONGITUDE\": -122.328656932,\n",
       "          \"OBJECTID\": 484,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"San Mateo County Resource Conservation District\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.328656932,\n",
       "              37.422151676\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Miami-Dade County, FL\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Miami-Dade County\",\n",
       "          \"FUNDING\": \"499988\",\n",
       "          \"FUNDING_NUMERIC\": 499988.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-156\",\n",
       "          \"LATITUDE\": 25.614182982,\n",
       "          \"LONGITUDE\": -80.567906444,\n",
       "          \"OBJECTID\": 485,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Miami-Dade County/Solid Waste Management\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.567906444,\n",
       "              25.614182982\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Sarasota County, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Sarasota County\",\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-376\",\n",
       "          \"LATITUDE\": 27.1805109640001,\n",
       "          \"LONGITUDE\": -82.322258029,\n",
       "          \"OBJECTID\": 486,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Sarasota County Board of County Commissioners\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -82.322258029,\n",
       "              27.1805109640001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Escambia County, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Escambia County\",\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-377\",\n",
       "          \"LATITUDE\": 30.7007411220001,\n",
       "          \"LONGITUDE\": -87.377329794,\n",
       "          \"OBJECTID\": 487,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Escambia County Board of County Commissioners\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -87.377329794,\n",
       "              30.7007411220001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Pinellas County, FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Pinellas County\",\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-384\",\n",
       "          \"LATITUDE\": 27.9313377230001,\n",
       "          \"LONGITUDE\": -82.721940468,\n",
       "          \"OBJECTID\": 488,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Pinellas County Government\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -82.721940468,\n",
       "              27.9313377230001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Allegheny County, PA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Allegheny County\",\n",
       "          \"FUNDING\": \"200945\",\n",
       "          \"FUNDING_NUMERIC\": 200945.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-515\",\n",
       "          \"LATITUDE\": 40.4686070340001,\n",
       "          \"LONGITUDE\": -79.9804238409999,\n",
       "          \"OBJECTID\": 489,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Allegheny County Health Department\",\n",
       "          \"STATE_ABBR\": \"PA\",\n",
       "          \"STATE_NAME\": \"Pennsylvania\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -79.9804238409999,\n",
       "              40.4686070340001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Broward County, FL\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Broward County\",\n",
       "          \"FUNDING\": \"38994\",\n",
       "          \"FUNDING_NUMERIC\": 38994.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-526\",\n",
       "          \"LATITUDE\": 26.12401,\n",
       "          \"LONGITUDE\": -80.14357,\n",
       "          \"OBJECTID\": 490,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Broward County\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.14357,\n",
       "              26.1240100000001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Jefferson County, AL\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Jefferson County\",\n",
       "          \"FUNDING\": \"64000\",\n",
       "          \"FUNDING_NUMERIC\": 64000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-524\",\n",
       "          \"LATITUDE\": 33.5542796300001,\n",
       "          \"LONGITUDE\": -86.896525179,\n",
       "          \"OBJECTID\": 491,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Jefferson County\",\n",
       "          \"STATE_ABBR\": \"AL\",\n",
       "          \"STATE_NAME\": \"Alabama\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -86.896525179,\n",
       "              33.5542796300001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Hillsborough County, FL\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Hillsborough County\",\n",
       "          \"FUNDING\": \"63065\",\n",
       "          \"FUNDING_NUMERIC\": 63065.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-528\",\n",
       "          \"LATITUDE\": 27.9302292510001,\n",
       "          \"LONGITUDE\": -82.307857484,\n",
       "          \"OBJECTID\": 492,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Hillsborough County\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -82.307857484,\n",
       "              27.9302292510001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Duval County, FL\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Duval County\",\n",
       "          \"FUNDING\": \"67340\",\n",
       "          \"FUNDING_NUMERIC\": 67340.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-527\",\n",
       "          \"LATITUDE\": 30.3309777150001,\n",
       "          \"LONGITUDE\": -81.672024356,\n",
       "          \"OBJECTID\": 493,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Duval County\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -81.672024356,\n",
       "              30.3309777150001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Miami-Dade County, FL\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Miami-Dade County\",\n",
       "          \"FUNDING\": \"60008\",\n",
       "          \"FUNDING_NUMERIC\": 60008.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-529\",\n",
       "          \"LATITUDE\": 25.614182982,\n",
       "          \"LONGITUDE\": -80.567906444,\n",
       "          \"OBJECTID\": 494,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Miami-Dade County\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.567906444,\n",
       "              25.614182982\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Orange County, FL\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Orange County\",\n",
       "          \"FUNDING\": \"41450\",\n",
       "          \"FUNDING_NUMERIC\": 41450.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-530\",\n",
       "          \"LATITUDE\": 28.510129335,\n",
       "          \"LONGITUDE\": -81.311714151,\n",
       "          \"OBJECTID\": 495,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Orange County\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -81.311714151,\n",
       "              28.510129335\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Pinellas County, FL\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Pinellas County\",\n",
       "          \"FUNDING\": \"35889\",\n",
       "          \"FUNDING_NUMERIC\": 35889.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-532\",\n",
       "          \"LATITUDE\": 27.9313377230001,\n",
       "          \"LONGITUDE\": -82.721940468,\n",
       "          \"OBJECTID\": 496,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Pinellas County\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -82.721940468,\n",
       "              27.9313377230001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Palm Beach County, FL\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Palm Beach County\",\n",
       "          \"FUNDING\": \"33071\",\n",
       "          \"FUNDING_NUMERIC\": 33071.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-531\",\n",
       "          \"LATITUDE\": 26.6240548440001,\n",
       "          \"LONGITUDE\": -80.430030014,\n",
       "          \"OBJECTID\": 497,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Palm Beach County\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.430030014,\n",
       "              26.6240548440001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Forsyth County, NC\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Forsyth County\",\n",
       "          \"FUNDING\": \"52019\",\n",
       "          \"FUNDING_NUMERIC\": 52019.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-538\",\n",
       "          \"LATITUDE\": 36.130538432,\n",
       "          \"LONGITUDE\": -80.256301198,\n",
       "          \"OBJECTID\": 498,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Forsyth County\",\n",
       "          \"STATE_ABBR\": \"NC\",\n",
       "          \"STATE_NAME\": \"North Carolina\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.256301198,\n",
       "              36.130538432\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Mecklenburg County, NC\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Mecklenburg County\",\n",
       "          \"FUNDING\": \"71934\",\n",
       "          \"FUNDING_NUMERIC\": 71934.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-539\",\n",
       "          \"LATITUDE\": 35.241478762,\n",
       "          \"LONGITUDE\": -80.8308055049999,\n",
       "          \"OBJECTID\": 499,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Mecklenburg County\",\n",
       "          \"STATE_ABBR\": \"NC\",\n",
       "          \"STATE_NAME\": \"North Carolina\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.8308055049999,\n",
       "              35.241478762\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Hamilton County, TN\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Hamilton County\",\n",
       "          \"FUNDING\": \"63478\",\n",
       "          \"FUNDING_NUMERIC\": 63478.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-543\",\n",
       "          \"LATITUDE\": 35.1793047850001,\n",
       "          \"LONGITUDE\": -85.166823892,\n",
       "          \"OBJECTID\": 500,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Chatt/Hamilton County\",\n",
       "          \"STATE_ABBR\": \"TN\",\n",
       "          \"STATE_NAME\": \"Tennessee\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -85.166823892,\n",
       "              35.1793047850001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Buncombe County, NC\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Buncombe County\",\n",
       "          \"FUNDING\": \"46214\",\n",
       "          \"FUNDING_NUMERIC\": 46214.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-540\",\n",
       "          \"LATITUDE\": 35.61113182,\n",
       "          \"LONGITUDE\": -82.530093049,\n",
       "          \"OBJECTID\": 501,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Ashville-Buncombe County\",\n",
       "          \"STATE_ABBR\": \"NC\",\n",
       "          \"STATE_NAME\": \"North Carolina\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -82.530093049,\n",
       "              35.61113182\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Jefferson Parish County, LA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Jefferson Parish County\",\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-399\",\n",
       "          \"LATITUDE\": 29.725779426,\n",
       "          \"LONGITUDE\": -90.108909189,\n",
       "          \"OBJECTID\": 502,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Jefferson Parish\",\n",
       "          \"STATE_ABBR\": \"LA\",\n",
       "          \"STATE_NAME\": \"Louisiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -90.108909189,\n",
       "              29.725779426\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"San Diego County, CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"San Diego County\",\n",
       "          \"FUNDING\": \"219107\",\n",
       "          \"FUNDING_NUMERIC\": 219107.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-575\",\n",
       "          \"LATITUDE\": 33.033898607,\n",
       "          \"LONGITUDE\": -116.756411731,\n",
       "          \"OBJECTID\": 503,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"San Diego County APCD\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -116.756411731,\n",
       "              33.033898607\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Shelby County, TN\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Shelby County\",\n",
       "          \"FUNDING\": \"68356\",\n",
       "          \"FUNDING_NUMERIC\": 68356.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-544\",\n",
       "          \"LATITUDE\": 35.1850124040001,\n",
       "          \"LONGITUDE\": -89.887418409,\n",
       "          \"OBJECTID\": 504,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Shelby County\",\n",
       "          \"STATE_ABBR\": \"TN\",\n",
       "          \"STATE_NAME\": \"Tennessee\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -89.887418409,\n",
       "              35.1850124040001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Cook County, IL\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Cook County\",\n",
       "          \"FUNDING\": \"84977\",\n",
       "          \"FUNDING_NUMERIC\": 84977.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-547\",\n",
       "          \"LATITUDE\": 41.8401485470001,\n",
       "          \"LONGITUDE\": -87.816823222,\n",
       "          \"OBJECTID\": 505,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Cook County\",\n",
       "          \"STATE_ABBR\": \"IL\",\n",
       "          \"STATE_NAME\": \"Illinois\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -87.816823222,\n",
       "              41.8401485470001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Ventura County, CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Ventura County\",\n",
       "          \"FUNDING\": \"159242\",\n",
       "          \"FUNDING_NUMERIC\": 159242.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-579\",\n",
       "          \"LATITUDE\": 34.456802795,\n",
       "          \"LONGITUDE\": -119.083581075,\n",
       "          \"OBJECTID\": 506,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Ventura County APCD\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.083581075,\n",
       "              34.456802795\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Hamilton County, OH\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Hamilton County\",\n",
       "          \"FUNDING\": \"61548\",\n",
       "          \"FUNDING_NUMERIC\": 61548.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-553\",\n",
       "          \"LATITUDE\": 39.1960451580001,\n",
       "          \"LONGITUDE\": -84.5420805099999,\n",
       "          \"OBJECTID\": 507,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Hamilton County\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -84.5420805099999,\n",
       "              39.1960451580001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Maricopa County, AZ\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Maricopa County\",\n",
       "          \"FUNDING\": \"161467\",\n",
       "          \"FUNDING_NUMERIC\": 161467.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-581\",\n",
       "          \"LATITUDE\": 33.3488313550001,\n",
       "          \"LONGITUDE\": -112.491258716,\n",
       "          \"OBJECTID\": 508,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Maricopa County AQD\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -112.491258716,\n",
       "              33.3488313550001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Clark County, NV\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Clark County\",\n",
       "          \"FUNDING\": \"123159\",\n",
       "          \"FUNDING_NUMERIC\": 123159.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-584\",\n",
       "          \"LATITUDE\": 36.217623261,\n",
       "          \"LONGITUDE\": -115.023209772,\n",
       "          \"OBJECTID\": 509,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Clark County DEQ\",\n",
       "          \"STATE_ABBR\": \"NV\",\n",
       "          \"STATE_NAME\": \"Nevada\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -115.023209772,\n",
       "              36.217623261\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Santa Barbara County, CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Santa Barbara County\",\n",
       "          \"FUNDING\": \"73400\",\n",
       "          \"FUNDING_NUMERIC\": 73400.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-577\",\n",
       "          \"LATITUDE\": 34.6735859680001,\n",
       "          \"LONGITUDE\": -120.017087887,\n",
       "          \"OBJECTID\": 510,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Santa Barbara County APCD\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.017087887,\n",
       "              34.673585968\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Pima County, AZ\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Pima County\",\n",
       "          \"FUNDING\": \"76258\",\n",
       "          \"FUNDING_NUMERIC\": 76258.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-582\",\n",
       "          \"LATITUDE\": 32.0972730230001,\n",
       "          \"LONGITUDE\": -111.789765122,\n",
       "          \"OBJECTID\": 511,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Pima County Department of Environmental Quality\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.789765122,\n",
       "              32.0972730230001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Washoe County, NV\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Washoe County\",\n",
       "          \"FUNDING\": \"100962\",\n",
       "          \"FUNDING_NUMERIC\": 100962.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-585\",\n",
       "          \"LATITUDE\": 40.6869600220001,\n",
       "          \"LONGITUDE\": -119.665991091,\n",
       "          \"OBJECTID\": 512,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Washoe County AQMD\",\n",
       "          \"STATE_ABBR\": \"NV\",\n",
       "          \"STATE_NAME\": \"Nevada\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.665991091,\n",
       "              40.686960022\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Clark County, NV\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Clark County\",\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-708\",\n",
       "          \"LATITUDE\": 36.217623261,\n",
       "          \"LONGITUDE\": -115.023209772,\n",
       "          \"OBJECTID\": 513,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Clark County Department of Environment and Sustainability\",\n",
       "          \"STATE_ABBR\": \"NV\",\n",
       "          \"STATE_NAME\": \"Nevada\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -115.023209772,\n",
       "              36.217623261\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Miami-Dade County, FL\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Miami-Dade County\",\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-687\",\n",
       "          \"LATITUDE\": 25.614182982,\n",
       "          \"LONGITUDE\": -80.567906444,\n",
       "          \"OBJECTID\": 514,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Miami-Dade County Office of Resilience\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.567906444,\n",
       "              25.614182982\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"San Bernardino County, CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"San Bernardino County\",\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-692\",\n",
       "          \"LATITUDE\": 34.841417569,\n",
       "          \"LONGITUDE\": -116.178549159,\n",
       "          \"OBJECTID\": 515,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"San Bernardino County Transportation Authority\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -116.178549159,\n",
       "              34.841417569\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Santa Clara County, CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Santa Clara County\",\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-715\",\n",
       "          \"LATITUDE\": 37.2317385600001,\n",
       "          \"LONGITUDE\": -121.694820974,\n",
       "          \"OBJECTID\": 516,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"County of Santa Clara\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -121.694820974,\n",
       "              37.2317385600001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Pima County, AZ\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Pima County\",\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-733\",\n",
       "          \"LATITUDE\": 32.0972730230001,\n",
       "          \"LONGITUDE\": -111.789765122,\n",
       "          \"OBJECTID\": 517,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Pima County Department of Environmental Quality\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.789765122,\n",
       "              32.0972730230001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Sarasota County, FL\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Sarasota County\",\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-751\",\n",
       "          \"LATITUDE\": 27.1805109640001,\n",
       "          \"LONGITUDE\": -82.322258029,\n",
       "          \"OBJECTID\": 518,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Sarasota County\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -82.322258029,\n",
       "              27.1805109640001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Polk County, IA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Polk County\",\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-754\",\n",
       "          \"LATITUDE\": 41.6854131860001,\n",
       "          \"LONGITUDE\": -93.5734445859999,\n",
       "          \"OBJECTID\": 519,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Polk County\",\n",
       "          \"STATE_ABBR\": \"IA\",\n",
       "          \"STATE_NAME\": \"Iowa\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -93.5734445859999,\n",
       "              41.6854131860001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"San Mateo County, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"U.S. Geological Survey\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"San Mateo County\",\n",
       "          \"FUNDING\": \"TBD\",\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1230\",\n",
       "          \"LATITUDE\": 37.4221516760001,\n",
       "          \"LONGITUDE\": -122.328656932,\n",
       "          \"OBJECTID\": 520,\n",
       "          \"PROGRAM_NAME\": \"USGS 3D Elevation Program (3DEP)\",\n",
       "          \"PROJECT_NAME\": \"Creation of Quality Level 1 Lidar 3DEP datasets for San Mateo County\\u00a0\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.328656932,\n",
       "              37.422151676\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"San Luis Obispo County, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"U.S. Geological Survey\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"San Luis Obispo County\",\n",
       "          \"FUNDING\": \"TBD\",\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1231\",\n",
       "          \"LATITUDE\": 35.386819577,\n",
       "          \"LONGITUDE\": -120.403577116,\n",
       "          \"OBJECTID\": 521,\n",
       "          \"PROGRAM_NAME\": \"USGS 3D Elevation Program (3DEP)\",\n",
       "          \"PROJECT_NAME\": \"Filling in San Luis Obispo County\\u2019s Gaps in Lidar Data\\u00a0\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.403577116,\n",
       "              35.386819577\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Los Angeles County, CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Los Angeles County\",\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-682\",\n",
       "          \"LATITUDE\": 34.3427737320001,\n",
       "          \"LONGITUDE\": -118.220937772,\n",
       "          \"OBJECTID\": 522,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"County of Los Angeles\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -118.220937772,\n",
       "              34.3427737320001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"San Juan County, PR\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"San Juan County\",\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-714\",\n",
       "          \"LATITUDE\": 18.3867876240001,\n",
       "          \"LONGITUDE\": -66.060679841,\n",
       "          \"OBJECTID\": 523,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Municipality of San Juan Planning Office\",\n",
       "          \"STATE_ABBR\": \"PR\",\n",
       "          \"STATE_NAME\": \"Puerto Rico\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -66.060679841,\n",
       "              18.3867876240001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CO\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"498537\",\n",
       "          \"FUNDING_NUMERIC\": 498537.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-114\",\n",
       "          \"LATITUDE\": 38.998550562,\n",
       "          \"LONGITUDE\": -105.547816373,\n",
       "          \"OBJECTID\": 524,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"350 Colorado\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"TX\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"499197\",\n",
       "          \"FUNDING_NUMERIC\": 499197.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-115\",\n",
       "          \"LATITUDE\": 31.462733046,\n",
       "          \"LONGITUDE\": -99.33305009,\n",
       "          \"OBJECTID\": 525,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Achieving Community Tasks Successfully (ACTS)\",\n",
       "          \"STATE_ABBR\": \"TX\",\n",
       "          \"STATE_NAME\": \"Texas\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -99.33305009,\n",
       "              31.462733046\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Solano County, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"U.S. Geological Survey\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Solano County\",\n",
       "          \"FUNDING\": \"30000\",\n",
       "          \"FUNDING_NUMERIC\": 30000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1233\",\n",
       "          \"LATITUDE\": 38.277934428,\n",
       "          \"LONGITUDE\": -121.927240218,\n",
       "          \"OBJECTID\": 526,\n",
       "          \"PROGRAM_NAME\": \"USGS 3D Elevation Program (3DEP)\",\n",
       "          \"PROJECT_NAME\": \"Lidar Acquisition flight for Solano County Regional GIS Consortium\\u00a0\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -121.927240218,\n",
       "              38.277934428\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"499100\",\n",
       "          \"FUNDING_NUMERIC\": 499100.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-116\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 527,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Air Resources Board\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"AK\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"301987\",\n",
       "          \"FUNDING_NUMERIC\": 301987.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-117\",\n",
       "          \"LATITUDE\": 64.8080878980001,\n",
       "          \"LONGITUDE\": -151.004157815,\n",
       "          \"OBJECTID\": 528,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Aleutian Pribilof Islands Association\",\n",
       "          \"STATE_ABBR\": \"AK\",\n",
       "          \"STATE_NAME\": \"Alaska\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -151.004157815,\n",
       "              64.8080878980001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NC\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"365368\",\n",
       "          \"FUNDING_NUMERIC\": 365368.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-122\",\n",
       "          \"LATITUDE\": 35.5393443350001,\n",
       "          \"LONGITUDE\": -79.185417913,\n",
       "          \"OBJECTID\": 529,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Blue Ridge Environmental Defense League\",\n",
       "          \"STATE_ABBR\": \"NC\",\n",
       "          \"STATE_NAME\": \"North Carolina\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -79.185417913,\n",
       "              35.5393443350001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"TX\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"453732\",\n",
       "          \"FUNDING_NUMERIC\": 453732.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-123\",\n",
       "          \"LATITUDE\": 31.462733046,\n",
       "          \"LONGITUDE\": -99.33305009,\n",
       "          \"OBJECTID\": 530,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Capital Area Council of Governments\",\n",
       "          \"STATE_ABBR\": \"TX\",\n",
       "          \"STATE_NAME\": \"Texas\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -99.33305009,\n",
       "              31.462733046\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CO\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"472656\",\n",
       "          \"FUNDING_NUMERIC\": 472656.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-121\",\n",
       "          \"LATITUDE\": 38.998550562,\n",
       "          \"LONGITUDE\": -105.547816373,\n",
       "          \"OBJECTID\": 531,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Black Parents United Foundation\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"TX\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"206540\",\n",
       "          \"FUNDING_NUMERIC\": 206540.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-124\",\n",
       "          \"LATITUDE\": 31.462733046,\n",
       "          \"LONGITUDE\": -99.33305009,\n",
       "          \"OBJECTID\": 532,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Capital Area Council of Governments\",\n",
       "          \"STATE_ABBR\": \"TX\",\n",
       "          \"STATE_NAME\": \"Texas\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -99.33305009,\n",
       "              31.462733046\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"TX\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-126\",\n",
       "          \"LATITUDE\": 31.462733046,\n",
       "          \"LONGITUDE\": -99.33305009,\n",
       "          \"OBJECTID\": 533,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Centro Fronterizo del Obrero (dba) La Mujer Obrera\",\n",
       "          \"STATE_ABBR\": \"TX\",\n",
       "          \"STATE_NAME\": \"Texas\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -99.33305009,\n",
       "              31.462733046\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"GA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"498401\",\n",
       "          \"FUNDING_NUMERIC\": 498401.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-125\",\n",
       "          \"LATITUDE\": 32.6483245540001,\n",
       "          \"LONGITUDE\": -83.4445344009999,\n",
       "          \"OBJECTID\": 534,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Center for Sustainable Communities\",\n",
       "          \"STATE_ABBR\": \"GA\",\n",
       "          \"STATE_NAME\": \"Georgia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -83.4445344009999,\n",
       "              32.6483245540001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"PA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"419446\",\n",
       "          \"FUNDING_NUMERIC\": 419446.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-132\",\n",
       "          \"LATITUDE\": 40.8965116540001,\n",
       "          \"LONGITUDE\": -77.838750776,\n",
       "          \"OBJECTID\": 535,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Clean Air Council\",\n",
       "          \"STATE_ABBR\": \"PA\",\n",
       "          \"STATE_NAME\": \"Pennsylvania\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -77.838750776,\n",
       "              40.896511654\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-133\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 536,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Coalition for Clean Air\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"AZ\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"185029\",\n",
       "          \"FUNDING_NUMERIC\": 185029.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-134\",\n",
       "          \"LATITUDE\": 34.293016451,\n",
       "          \"LONGITUDE\": -111.664753988,\n",
       "          \"OBJECTID\": 537,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Cocopah Indian Tribe\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-135\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 538,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Comite Civico del Valle, Inc.\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-136\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 539,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Comite Civico del Valle, Inc.\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"PA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"499145\",\n",
       "          \"FUNDING_NUMERIC\": 499145.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-137\",\n",
       "          \"LATITUDE\": 40.8965116540001,\n",
       "          \"LONGITUDE\": -77.838750776,\n",
       "          \"OBJECTID\": 540,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Community Foundation for the Alleghenies\",\n",
       "          \"STATE_ABBR\": \"PA\",\n",
       "          \"STATE_NAME\": \"Pennsylvania\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -77.838750776,\n",
       "              40.896511654\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Lake County, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"U.S. Geological Survey\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Lake County\",\n",
       "          \"FUNDING\": \"24184\",\n",
       "          \"FUNDING_NUMERIC\": 24184.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1232\",\n",
       "          \"LATITUDE\": 39.1026533890001,\n",
       "          \"LONGITUDE\": -122.750897425,\n",
       "          \"OBJECTID\": 541,\n",
       "          \"PROGRAM_NAME\": \"USGS 3D Elevation Program (3DEP)\",\n",
       "          \"PROJECT_NAME\": \"Lake County, California Wildfire Prevention Planning, Response, and Resiliency\\u00a0\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -122.750897425,\n",
       "              39.1026533890001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"IL\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"440485\",\n",
       "          \"FUNDING_NUMERIC\": 440485.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-142\",\n",
       "          \"LATITUDE\": 40.11404657,\n",
       "          \"LONGITUDE\": -89.158650902,\n",
       "          \"OBJECTID\": 542,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Ecology Action Center\",\n",
       "          \"STATE_ABBR\": \"IL\",\n",
       "          \"STATE_NAME\": \"Illinois\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -89.158650902,\n",
       "              40.11404657\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NV\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"150000\",\n",
       "          \"FUNDING_NUMERIC\": 150000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-143\",\n",
       "          \"LATITUDE\": 39.356482037,\n",
       "          \"LONGITUDE\": -116.655436405,\n",
       "          \"OBJECTID\": 543,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Fallon Paiute Shoshone Tribe\",\n",
       "          \"STATE_ABBR\": \"NV\",\n",
       "          \"STATE_NAME\": \"Nevada\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -116.655436405,\n",
       "              39.356482037\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"DE\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"357852\",\n",
       "          \"FUNDING_NUMERIC\": 357852.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-138\",\n",
       "          \"LATITUDE\": 39.008127276,\n",
       "          \"LONGITUDE\": -75.4674721439999,\n",
       "          \"OBJECTID\": 544,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Community Housing and Empowerment Connections Inc.\",\n",
       "          \"STATE_ABBR\": \"DE\",\n",
       "          \"STATE_NAME\": \"Delaware\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -75.4674721439999,\n",
       "              39.008127276\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"PA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"430001\",\n",
       "          \"FUNDING_NUMERIC\": 430001.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-145\",\n",
       "          \"LATITUDE\": 40.8965116540001,\n",
       "          \"LONGITUDE\": -77.838750776,\n",
       "          \"OBJECTID\": 545,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"FracTracker Alliance\",\n",
       "          \"STATE_ABBR\": \"PA\",\n",
       "          \"STATE_NAME\": \"Pennsylvania\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -77.838750776,\n",
       "              40.896511654\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"PA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"495301\",\n",
       "          \"FUNDING_NUMERIC\": 495301.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-146\",\n",
       "          \"LATITUDE\": 40.8965116540001,\n",
       "          \"LONGITUDE\": -77.838750776,\n",
       "          \"OBJECTID\": 546,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"FracTracker Alliance\",\n",
       "          \"STATE_ABBR\": \"PA\",\n",
       "          \"STATE_NAME\": \"Pennsylvania\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -77.838750776,\n",
       "              40.896511654\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"PA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"333121\",\n",
       "          \"FUNDING_NUMERIC\": 333121.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-150\",\n",
       "          \"LATITUDE\": 40.8965116540001,\n",
       "          \"LONGITUDE\": -77.838750776,\n",
       "          \"OBJECTID\": 547,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"JASTECH Development Services\",\n",
       "          \"STATE_ABBR\": \"PA\",\n",
       "          \"STATE_NAME\": \"Pennsylvania\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -77.838750776,\n",
       "              40.896511654\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"OH\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"482662\",\n",
       "          \"FUNDING_NUMERIC\": 482662.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-147\",\n",
       "          \"LATITUDE\": 40.4130567990001,\n",
       "          \"LONGITUDE\": -82.7112151859999,\n",
       "          \"OBJECTID\": 548,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Groundwork Ohio River Valley\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -82.7112151859999,\n",
       "              40.4130567990001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"LA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"498480\",\n",
       "          \"FUNDING_NUMERIC\": 498480.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-155\",\n",
       "          \"LATITUDE\": 30.1858461670001,\n",
       "          \"LONGITUDE\": -91.42642,\n",
       "          \"OBJECTID\": 549,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"LSU Health Foundation\",\n",
       "          \"STATE_ABBR\": \"LA\",\n",
       "          \"STATE_NAME\": \"Louisiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -91.42642,\n",
       "              30.1858461670001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-159\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 550,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Oxnard Harbor District\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"499347\",\n",
       "          \"FUNDING_NUMERIC\": 499347.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-160\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 551,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Pepperwood Foundation\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"498828\",\n",
       "          \"FUNDING_NUMERIC\": 498828.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-161\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 552,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Play Marin\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"FL\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"440000\",\n",
       "          \"FUNDING_NUMERIC\": 440000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-157\",\n",
       "          \"LATITUDE\": 28.5660448950001,\n",
       "          \"LONGITUDE\": -81.6886487899999,\n",
       "          \"OBJECTID\": 553,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"National Coalition of 100 Black Women - Central Florida Chapter, Inc.\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -81.6886487899999,\n",
       "              28.5660448950001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"PA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"365887\",\n",
       "          \"FUNDING_NUMERIC\": 365887.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-163\",\n",
       "          \"LATITUDE\": 40.8965116540001,\n",
       "          \"LONGITUDE\": -77.838750776,\n",
       "          \"OBJECTID\": 554,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Promote PT Inc DBA Protect PT\",\n",
       "          \"STATE_ABBR\": \"PA\",\n",
       "          \"STATE_NAME\": \"Pennsylvania\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -77.838750776,\n",
       "              40.896511654\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"499900\",\n",
       "          \"FUNDING_NUMERIC\": 499900.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-172\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 555,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"South Coast AQMD\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"100000\",\n",
       "          \"FUNDING_NUMERIC\": 100000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-174\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 556,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Special Service for Groups, Inc\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"TN\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"491171\",\n",
       "          \"FUNDING_NUMERIC\": 491171.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-178\",\n",
       "          \"LATITUDE\": 35.843002697,\n",
       "          \"LONGITUDE\": -86.3430511769999,\n",
       "          \"OBJECTID\": 557,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"The Enterprise Center\",\n",
       "          \"STATE_ABBR\": \"TN\",\n",
       "          \"STATE_NAME\": \"Tennessee\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -86.3430511769999,\n",
       "              35.843002697\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NY\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-165\",\n",
       "          \"LATITUDE\": 40.71453,\n",
       "          \"LONGITUDE\": -74.00712,\n",
       "          \"OBJECTID\": 558,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Red Hook Initiative\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -74.00712,\n",
       "              40.71453\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"SD\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"406482\",\n",
       "          \"FUNDING_NUMERIC\": 406482.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-180\",\n",
       "          \"LATITUDE\": 44.436128,\n",
       "          \"LONGITUDE\": -100.230536743,\n",
       "          \"OBJECTID\": 559,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"The Keya Foundation\",\n",
       "          \"STATE_ABBR\": \"SD\",\n",
       "          \"STATE_NAME\": \"South Dakota\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -100.230536743,\n",
       "              44.436128\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NY\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"499939\",\n",
       "          \"FUNDING_NUMERIC\": 499939.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-166\",\n",
       "          \"LATITUDE\": 40.71453,\n",
       "          \"LONGITUDE\": -74.00712,\n",
       "          \"OBJECTID\": 560,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Research Foundation for the State University of New York, University at Albany\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -74.00712,\n",
       "              40.71453\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"AZ\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"486000\",\n",
       "          \"FUNDING_NUMERIC\": 486000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-181\",\n",
       "          \"LATITUDE\": 34.293016451,\n",
       "          \"LONGITUDE\": -111.664753988,\n",
       "          \"OBJECTID\": 561,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"The Navajo Nation\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"416395\",\n",
       "          \"FUNDING_NUMERIC\": 416395.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-183\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 562,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"United Latinos, Promoviendo Accion Civica\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"IL\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"456170\",\n",
       "          \"FUNDING_NUMERIC\": 456170.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-186\",\n",
       "          \"LATITUDE\": 40.11404657,\n",
       "          \"LONGITUDE\": -89.158650902,\n",
       "          \"OBJECTID\": 563,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Warehouse Workers' Justice Center\",\n",
       "          \"STATE_ABBR\": \"IL\",\n",
       "          \"STATE_NAME\": \"Illinois\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -89.158650902,\n",
       "              40.11404657\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Reclamation\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"250000000\",\n",
       "          \"FUNDING_NUMERIC\": 250000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-243\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 564,\n",
       "          \"PROGRAM_NAME\": \"Drought Mitigation\",\n",
       "          \"PROJECT_NAME\": \"Salton Sea\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NC\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"27250000\",\n",
       "          \"FUNDING_NUMERIC\": 27250000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-275\",\n",
       "          \"LATITUDE\": 35.5393443350001,\n",
       "          \"LONGITUDE\": -79.185417913,\n",
       "          \"OBJECTID\": 565,\n",
       "          \"PROGRAM_NAME\": \"Refuge System Resiliency\",\n",
       "          \"PROJECT_NAME\": \"Albemarle-Pamlico Sound\",\n",
       "          \"STATE_ABBR\": \"NC\",\n",
       "          \"STATE_NAME\": \"North Carolina\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -79.185417913,\n",
       "              35.5393443350001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"AZ\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"7000000\",\n",
       "          \"FUNDING_NUMERIC\": 7000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-281\",\n",
       "          \"LATITUDE\": 34.293016451,\n",
       "          \"LONGITUDE\": -111.664753988,\n",
       "          \"OBJECTID\": 566,\n",
       "          \"PROGRAM_NAME\": \"Refuge System Resiliency\",\n",
       "          \"PROJECT_NAME\": \"San Bernardino National Wildlife Refuge\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"AK\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-350\",\n",
       "          \"LATITUDE\": 64.8080878980001,\n",
       "          \"LONGITUDE\": -151.004157815,\n",
       "          \"OBJECTID\": 567,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"National Forest Foundation\",\n",
       "          \"STATE_ABBR\": \"AK\",\n",
       "          \"STATE_NAME\": \"Alaska\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -151.004157815,\n",
       "              64.8080878980001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-356\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 568,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Gold Ridge Resource Conservation District\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NY\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-190\",\n",
       "          \"LATITUDE\": 40.71453,\n",
       "          \"LONGITUDE\": -74.00712,\n",
       "          \"OBJECTID\": 569,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Fenceline Air Monitoring\",\n",
       "          \"PROJECT_NAME\": \"Youth Ministries for Peace and Justice Inc\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -74.00712,\n",
       "              40.71453\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-357\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 570,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"The Nature Conservancy\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-359\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 571,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Smith River Alliance\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-360\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 572,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Greater Farallones Association\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-364\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 573,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Pinoleville Pomo Nation\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-365\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 574,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Mid Klamath Watershed Council\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-366\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 575,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Salmon River Restoration Council\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-368\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 576,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Restoration Planning for China Camp State Park\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MT\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-283\",\n",
       "          \"LATITUDE\": 47.0334993330001,\n",
       "          \"LONGITUDE\": -109.645067732,\n",
       "          \"OBJECTID\": 577,\n",
       "          \"PROGRAM_NAME\": \"Refuge System Resiliency\",\n",
       "          \"PROJECT_NAME\": \"Charles M. Russell National Wildlife Refuge\",\n",
       "          \"STATE_ABBR\": \"MT\",\n",
       "          \"STATE_NAME\": \"Montana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -109.645067732,\n",
       "              47.0334993330001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-369\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 578,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Elkhorn Slough Foundation\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-370\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 579,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"University of Southern California Sea Grant\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-371\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 580,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Nature Nexus Institute\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MP\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-373\",\n",
       "          \"LATITUDE\": 15.1888247700001,\n",
       "          \"LONGITUDE\": 145.753510487,\n",
       "          \"OBJECTID\": 581,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Pacific Coastal Research & Planning\",\n",
       "          \"STATE_ABBR\": \"MP\",\n",
       "          \"STATE_NAME\": \"Northern Mariana Islands\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              145.753510487,\n",
       "              15.1888247700001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MP\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-374\",\n",
       "          \"LATITUDE\": 15.1888247700001,\n",
       "          \"LONGITUDE\": 145.753510487,\n",
       "          \"OBJECTID\": 582,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Pacific Coastal Research & Planning\",\n",
       "          \"STATE_ABBR\": \"MP\",\n",
       "          \"STATE_NAME\": \"Northern Mariana Islands\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              145.753510487,\n",
       "              15.1888247700001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-378\",\n",
       "          \"LATITUDE\": 28.5660448950001,\n",
       "          \"LONGITUDE\": -81.6886487899999,\n",
       "          \"OBJECTID\": 583,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Mote Marine Laboratory & Aquarium\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -81.6886487899999,\n",
       "              28.5660448950001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-387\",\n",
       "          \"LATITUDE\": 28.5660448950001,\n",
       "          \"LONGITUDE\": -81.6886487899999,\n",
       "          \"OBJECTID\": 584,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Phillip and Patricia Frost Museum of Science\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -81.6886487899999,\n",
       "              28.5660448950001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"FL\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-385\",\n",
       "          \"LATITUDE\": 28.5660448950001,\n",
       "          \"LONGITUDE\": -81.6886487899999,\n",
       "          \"OBJECTID\": 585,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"University of Florida\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -81.6886487899999,\n",
       "              28.5660448950001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"HI\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-390\",\n",
       "          \"LATITUDE\": 21.439542579,\n",
       "          \"LONGITUDE\": -157.94363193,\n",
       "          \"OBJECTID\": 586,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation International Foundation\",\n",
       "          \"STATE_ABBR\": \"HI\",\n",
       "          \"STATE_NAME\": \"Hawaii\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -157.94363193,\n",
       "              21.439542579\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"HI\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-391\",\n",
       "          \"LATITUDE\": 21.439542579,\n",
       "          \"LONGITUDE\": -157.94363193,\n",
       "          \"OBJECTID\": 587,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"M\\u0101lama Maunalua\",\n",
       "          \"STATE_ABBR\": \"HI\",\n",
       "          \"STATE_NAME\": \"Hawaii\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -157.94363193,\n",
       "              21.439542579\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"HI\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"3194361\",\n",
       "          \"FUNDING_NUMERIC\": 3194361.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-392\",\n",
       "          \"LATITUDE\": 21.439542579,\n",
       "          \"LONGITUDE\": -157.94363193,\n",
       "          \"OBJECTID\": 588,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"The Coral Reef Alliance\",\n",
       "          \"STATE_ABBR\": \"HI\",\n",
       "          \"STATE_NAME\": \"Hawaii\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -157.94363193,\n",
       "              21.439542579\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"HI\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-395\",\n",
       "          \"LATITUDE\": 21.439542579,\n",
       "          \"LONGITUDE\": -157.94363193,\n",
       "          \"OBJECTID\": 589,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Hawaiian Islands Land Trust\",\n",
       "          \"STATE_ABBR\": \"HI\",\n",
       "          \"STATE_NAME\": \"Hawaii\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -157.94363193,\n",
       "              21.439542579\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"HI\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-396\",\n",
       "          \"LATITUDE\": 21.439542579,\n",
       "          \"LONGITUDE\": -157.94363193,\n",
       "          \"OBJECTID\": 590,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Kuleana Coral Reefs\",\n",
       "          \"STATE_ABBR\": \"HI\",\n",
       "          \"STATE_NAME\": \"Hawaii\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -157.94363193,\n",
       "              21.439542579\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"LA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-401\",\n",
       "          \"LATITUDE\": 30.1858461670001,\n",
       "          \"LONGITUDE\": -91.42642,\n",
       "          \"OBJECTID\": 591,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Terrebonne Parish Consolidated Government\",\n",
       "          \"STATE_ABBR\": \"LA\",\n",
       "          \"STATE_NAME\": \"Louisiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -91.42642,\n",
       "              30.1858461670001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"LA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-402\",\n",
       "          \"LATITUDE\": 30.1858461670001,\n",
       "          \"LONGITUDE\": -91.42642,\n",
       "          \"OBJECTID\": 592,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"The Water Institute of the Gulf\",\n",
       "          \"STATE_ABBR\": \"LA\",\n",
       "          \"STATE_NAME\": \"Louisiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -91.42642,\n",
       "              30.1858461670001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"LA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-403\",\n",
       "          \"LATITUDE\": 30.1858461670001,\n",
       "          \"LONGITUDE\": -91.42642,\n",
       "          \"OBJECTID\": 593,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Wayti Services, LLC\",\n",
       "          \"STATE_ABBR\": \"LA\",\n",
       "          \"STATE_NAME\": \"Louisiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -91.42642,\n",
       "              30.1858461670001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"LA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-404\",\n",
       "          \"LATITUDE\": 30.1858461670001,\n",
       "          \"LONGITUDE\": -91.42642,\n",
       "          \"OBJECTID\": 594,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Coalition to Restore Coastal Louisiana\",\n",
       "          \"STATE_ABBR\": \"LA\",\n",
       "          \"STATE_NAME\": \"Louisiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -91.42642,\n",
       "              30.1858461670001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-418\",\n",
       "          \"LATITUDE\": 42.3586703240001,\n",
       "          \"LONGITUDE\": -71.718185,\n",
       "          \"OBJECTID\": 595,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Massachusetts Audubon Society\",\n",
       "          \"STATE_ABBR\": \"MA\",\n",
       "          \"STATE_NAME\": \"Massachusetts\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -71.718185,\n",
       "              42.3586703240001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-421\",\n",
       "          \"LATITUDE\": 42.3586703240001,\n",
       "          \"LONGITUDE\": -71.718185,\n",
       "          \"OBJECTID\": 596,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Ipswich River Watershed Association\",\n",
       "          \"STATE_ABBR\": \"MA\",\n",
       "          \"STATE_NAME\": \"Massachusetts\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -71.718185,\n",
       "              42.3586703240001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-424\",\n",
       "          \"LATITUDE\": 42.3586703240001,\n",
       "          \"LONGITUDE\": -71.718185,\n",
       "          \"OBJECTID\": 597,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Massachusetts Institute of Technology Sea Grant\",\n",
       "          \"STATE_ABBR\": \"MA\",\n",
       "          \"STATE_NAME\": \"Massachusetts\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -71.718185,\n",
       "              42.3586703240001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NJ\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-430\",\n",
       "          \"LATITUDE\": 39.613348353,\n",
       "          \"LONGITUDE\": -74.728565,\n",
       "          \"OBJECTID\": 598,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Stockton University\",\n",
       "          \"STATE_ABBR\": \"NJ\",\n",
       "          \"STATE_NAME\": \"New Jersey\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -74.728565,\n",
       "              39.613348353\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MI\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-425\",\n",
       "          \"LATITUDE\": 44.1251998340001,\n",
       "          \"LONGITUDE\": -84.1966975,\n",
       "          \"OBJECTID\": 599,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"The Edsel and Eleanor Ford House\",\n",
       "          \"STATE_ABBR\": \"MI\",\n",
       "          \"STATE_NAME\": \"Michigan\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -84.1966975,\n",
       "              44.1251998340001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"Los Angeles County, CA\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"U.S. Geological Survey\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": \"Los Angeles County\",\n",
       "          \"FUNDING\": \"24184\",\n",
       "          \"FUNDING_NUMERIC\": 24184.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1234\",\n",
       "          \"LATITUDE\": 34.3427737320001,\n",
       "          \"LONGITUDE\": -118.220937772,\n",
       "          \"OBJECTID\": 600,\n",
       "          \"PROGRAM_NAME\": \"USGS 3D Elevation Program (3DEP)\",\n",
       "          \"PROJECT_NAME\": \"Los Angeles County Los Angeles Regional Imagery Consortium (LARIAC) 2023 Quality Level 1 Lidar Collection\\u00a0\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -118.220937772,\n",
       "              34.3427737320001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NC\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-437\",\n",
       "          \"LATITUDE\": 35.5393443350001,\n",
       "          \"LONGITUDE\": -79.185417913,\n",
       "          \"OBJECTID\": 601,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"North Carolina Coastal Federation\",\n",
       "          \"STATE_ABBR\": \"NC\",\n",
       "          \"STATE_NAME\": \"North Carolina\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -79.185417913,\n",
       "              35.5393443350001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NC\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-439\",\n",
       "          \"LATITUDE\": 35.5393443350001,\n",
       "          \"LONGITUDE\": -79.185417913,\n",
       "          \"OBJECTID\": 602,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"North Carolina Wildlife Resources Commission\",\n",
       "          \"STATE_ABBR\": \"NC\",\n",
       "          \"STATE_NAME\": \"North Carolina\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -79.185417913,\n",
       "              35.5393443350001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NC\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-438\",\n",
       "          \"LATITUDE\": 35.5393443350001,\n",
       "          \"LONGITUDE\": -79.185417913,\n",
       "          \"OBJECTID\": 603,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"North Carolina Coastal Federation\",\n",
       "          \"STATE_ABBR\": \"NC\",\n",
       "          \"STATE_NAME\": \"North Carolina\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -79.185417913,\n",
       "              35.5393443350001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"OR\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-445\",\n",
       "          \"LATITUDE\": 43.9387802410001,\n",
       "          \"LONGITUDE\": -120.558560912,\n",
       "          \"OBJECTID\": 604,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"McKenzie Watershed Alliance\",\n",
       "          \"STATE_ABBR\": \"OR\",\n",
       "          \"STATE_NAME\": \"Oregon\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.558560912,\n",
       "              43.9387802410001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"OR\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-446\",\n",
       "          \"LATITUDE\": 43.9387802410001,\n",
       "          \"LONGITUDE\": -120.558560912,\n",
       "          \"OBJECTID\": 605,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Johnson Creek Watershed Council\",\n",
       "          \"STATE_ABBR\": \"OR\",\n",
       "          \"STATE_NAME\": \"Oregon\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.558560912,\n",
       "              43.9387802410001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NY\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-434\",\n",
       "          \"LATITUDE\": 40.71453,\n",
       "          \"LONGITUDE\": -74.00712,\n",
       "          \"OBJECTID\": 606,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Buffalo Niagara Waterkeeper\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -74.00712,\n",
       "              40.71453\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"PR\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-453\",\n",
       "          \"LATITUDE\": 18.2226064980001,\n",
       "          \"LONGITUDE\": -66.468953431,\n",
       "          \"OBJECTID\": 607,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Isla Mar Research Expeditions\",\n",
       "          \"STATE_ABBR\": \"PR\",\n",
       "          \"STATE_NAME\": \"Puerto Rico\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -66.468953431,\n",
       "              18.2226064980001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"PR\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-452\",\n",
       "          \"LATITUDE\": 18.2226064980001,\n",
       "          \"LONGITUDE\": -66.468953431,\n",
       "          \"OBJECTID\": 608,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Protectores de Cuencas\",\n",
       "          \"STATE_ABBR\": \"PR\",\n",
       "          \"STATE_NAME\": \"Puerto Rico\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -66.468953431,\n",
       "              18.2226064980001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"PR\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-451\",\n",
       "          \"LATITUDE\": 18.2226064980001,\n",
       "          \"LONGITUDE\": -66.468953431,\n",
       "          \"OBJECTID\": 609,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Institute for Socio-Ecological Research\",\n",
       "          \"STATE_ABBR\": \"PR\",\n",
       "          \"STATE_NAME\": \"Puerto Rico\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -66.468953431,\n",
       "              18.2226064980001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"PR\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-455\",\n",
       "          \"LATITUDE\": 18.2226064980001,\n",
       "          \"LONGITUDE\": -66.468953431,\n",
       "          \"OBJECTID\": 610,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"University of Puerto Rico at Aguadilla\",\n",
       "          \"STATE_ABBR\": \"PR\",\n",
       "          \"STATE_NAME\": \"Puerto Rico\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -66.468953431,\n",
       "              18.2226064980001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"TX\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-466\",\n",
       "          \"LATITUDE\": 31.462733046,\n",
       "          \"LONGITUDE\": -99.33305009,\n",
       "          \"OBJECTID\": 611,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"The University of Texas at Austin\",\n",
       "          \"STATE_ABBR\": \"TX\",\n",
       "          \"STATE_NAME\": \"Texas\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -99.33305009,\n",
       "              31.462733046\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"TX\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-467\",\n",
       "          \"LATITUDE\": 31.462733046,\n",
       "          \"LONGITUDE\": -99.33305009,\n",
       "          \"OBJECTID\": 612,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"The Matagorda Bay Foundation\",\n",
       "          \"STATE_ABBR\": \"TX\",\n",
       "          \"STATE_NAME\": \"Texas\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -99.33305009,\n",
       "              31.462733046\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"PR\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-456\",\n",
       "          \"LATITUDE\": 18.2226064980001,\n",
       "          \"LONGITUDE\": -66.468953431,\n",
       "          \"OBJECTID\": 613,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Franklin\\u2019s Promise Coalition\",\n",
       "          \"STATE_ABBR\": \"PR\",\n",
       "          \"STATE_NAME\": \"Puerto Rico\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -66.468953431,\n",
       "              18.2226064980001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-478\",\n",
       "          \"LATITUDE\": 47.4112518430001,\n",
       "          \"LONGITUDE\": -120.556263187,\n",
       "          \"OBJECTID\": 614,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Hood Canal Salmon Enhancement Group\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"VA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-474\",\n",
       "          \"LATITUDE\": 37.512820504,\n",
       "          \"LONGITUDE\": -78.697948713,\n",
       "          \"OBJECTID\": 615,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Mattaponi Indian Tribe and Reservation\",\n",
       "          \"STATE_ABBR\": \"VA\",\n",
       "          \"STATE_NAME\": \"Virginia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -78.697948713,\n",
       "              37.512820504\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"PR\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-457\",\n",
       "          \"LATITUDE\": 18.2226064980001,\n",
       "          \"LONGITUDE\": -66.468953431,\n",
       "          \"OBJECTID\": 616,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"The Ocean Foundation\",\n",
       "          \"STATE_ABBR\": \"PR\",\n",
       "          \"STATE_NAME\": \"Puerto Rico\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -66.468953431,\n",
       "              18.2226064980001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"OR\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-479\",\n",
       "          \"LATITUDE\": 43.9387802410001,\n",
       "          \"LONGITUDE\": -120.558560912,\n",
       "          \"OBJECTID\": 617,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Lower Columbia Estuary Partnership\",\n",
       "          \"STATE_ABBR\": \"OR\",\n",
       "          \"STATE_NAME\": \"Oregon\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.558560912,\n",
       "              43.9387802410001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-480\",\n",
       "          \"LATITUDE\": 47.4112518430001,\n",
       "          \"LONGITUDE\": -120.556263187,\n",
       "          \"OBJECTID\": 618,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Nooksack Indian Tribe\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-484\",\n",
       "          \"LATITUDE\": 47.4112518430001,\n",
       "          \"LONGITUDE\": -120.556263187,\n",
       "          \"OBJECTID\": 619,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Lummi Nation\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-485\",\n",
       "          \"LATITUDE\": 47.4112518430001,\n",
       "          \"LONGITUDE\": -120.556263187,\n",
       "          \"OBJECTID\": 620,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Edmonds College\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-481\",\n",
       "          \"LATITUDE\": 47.4112518430001,\n",
       "          \"LONGITUDE\": -120.556263187,\n",
       "          \"OBJECTID\": 621,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Lummi Nation\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-486\",\n",
       "          \"LATITUDE\": 47.4112518430001,\n",
       "          \"LONGITUDE\": -120.556263187,\n",
       "          \"OBJECTID\": 622,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Skagit River System Cooperative\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"WI\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-490\",\n",
       "          \"LATITUDE\": 44.644833367,\n",
       "          \"LONGITUDE\": -89.739185424,\n",
       "          \"OBJECTID\": 623,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"University of Wisconsin System Board of Regents\",\n",
       "          \"STATE_ABBR\": \"WI\",\n",
       "          \"STATE_NAME\": \"Wisconsin\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -89.739185424,\n",
       "              44.644833367\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": null,\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-487\",\n",
       "          \"LATITUDE\": 47.4112518430001,\n",
       "          \"LONGITUDE\": -120.556263187,\n",
       "          \"OBJECTID\": 624,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Long Live the Kings\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MN\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"30231\",\n",
       "          \"FUNDING_NUMERIC\": 30231.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-555\",\n",
       "          \"LATITUDE\": 46.348855766,\n",
       "          \"LONGITUDE\": -94.200790583,\n",
       "          \"OBJECTID\": 625,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Grand Portage\",\n",
       "          \"STATE_ABBR\": \"MN\",\n",
       "          \"STATE_NAME\": \"Minnesota\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -94.2007905829999,\n",
       "              46.348855766\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"209530\",\n",
       "          \"FUNDING_NUMERIC\": 209530.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-572\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 626,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Bay Area AQMD\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"42079\",\n",
       "          \"FUNDING_NUMERIC\": 42079.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-573\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 627,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Monterey Bay ARD\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"158731\",\n",
       "          \"FUNDING_NUMERIC\": 158731.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-574\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 628,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Sacramento Metro AQMD\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"655042\",\n",
       "          \"FUNDING_NUMERIC\": 655042.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-578\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 629,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"South Coast AQMD\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"ME\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"29763\",\n",
       "          \"FUNDING_NUMERIC\": 29763.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-594\",\n",
       "          \"LATITUDE\": 45.3152499220001,\n",
       "          \"LONGITUDE\": -69.203947061,\n",
       "          \"OBJECTID\": 630,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Mikmaq Nation\",\n",
       "          \"STATE_ABBR\": \"ME\",\n",
       "          \"STATE_NAME\": \"Maine\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -69.203947061,\n",
       "              45.3152499220001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"ME\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"31090\",\n",
       "          \"FUNDING_NUMERIC\": 31090.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-595\",\n",
       "          \"LATITUDE\": 45.3152499220001,\n",
       "          \"LONGITUDE\": -69.203947061,\n",
       "          \"OBJECTID\": 631,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Penobscot Indian Nation\",\n",
       "          \"STATE_ABBR\": \"ME\",\n",
       "          \"STATE_NAME\": \"Maine\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -69.203947061,\n",
       "              45.3152499220001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"283005\",\n",
       "          \"FUNDING_NUMERIC\": 283005.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-576\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 632,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"San Joaquin Valley APCD\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"29956\",\n",
       "          \"FUNDING_NUMERIC\": 29956.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-596\",\n",
       "          \"LATITUDE\": 42.3586703240001,\n",
       "          \"LONGITUDE\": -71.718185,\n",
       "          \"OBJECTID\": 633,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Wampanoag Tribe of Gay Head (Aquinnah)\",\n",
       "          \"STATE_ABBR\": \"MA\",\n",
       "          \"STATE_NAME\": \"Massachusetts\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -71.718185,\n",
       "              42.3586703240001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MN\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"30231\",\n",
       "          \"FUNDING_NUMERIC\": 30231.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-599\",\n",
       "          \"LATITUDE\": 46.348855766,\n",
       "          \"LONGITUDE\": -94.200790583,\n",
       "          \"OBJECTID\": 634,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Red Lake\",\n",
       "          \"STATE_ABBR\": \"MN\",\n",
       "          \"STATE_NAME\": \"Minnesota\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -94.2007905829999,\n",
       "              46.348855766\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NC\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"43448\",\n",
       "          \"FUNDING_NUMERIC\": 43448.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-598\",\n",
       "          \"LATITUDE\": 35.5393443350001,\n",
       "          \"LONGITUDE\": -79.185417913,\n",
       "          \"OBJECTID\": 635,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Eastern Band of Cherokee Indians\",\n",
       "          \"STATE_ABBR\": \"NC\",\n",
       "          \"STATE_NAME\": \"North Carolina\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -79.185417913,\n",
       "              35.5393443350001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MN\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"30231\",\n",
       "          \"FUNDING_NUMERIC\": 30231.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-600\",\n",
       "          \"LATITUDE\": 46.348855766,\n",
       "          \"LONGITUDE\": -94.200790583,\n",
       "          \"OBJECTID\": 636,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Mille Lacs\",\n",
       "          \"STATE_ABBR\": \"MN\",\n",
       "          \"STATE_NAME\": \"Minnesota\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -94.2007905829999,\n",
       "              46.348855766\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MN\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"30235\",\n",
       "          \"FUNDING_NUMERIC\": 30235.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-601\",\n",
       "          \"LATITUDE\": 46.348855766,\n",
       "          \"LONGITUDE\": -94.200790583,\n",
       "          \"OBJECTID\": 637,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Leech Lake\",\n",
       "          \"STATE_ABBR\": \"MN\",\n",
       "          \"STATE_NAME\": \"Minnesota\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -94.2007905829999,\n",
       "              46.348855766\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"WI\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"30232\",\n",
       "          \"FUNDING_NUMERIC\": 30232.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-603\",\n",
       "          \"LATITUDE\": 44.644833367,\n",
       "          \"LONGITUDE\": -89.739185424,\n",
       "          \"OBJECTID\": 638,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Forest County Potawatomi Community\",\n",
       "          \"STATE_ABBR\": \"WI\",\n",
       "          \"STATE_NAME\": \"Wisconsin\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -89.739185424,\n",
       "              44.644833367\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MI\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"30231\",\n",
       "          \"FUNDING_NUMERIC\": 30231.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-602\",\n",
       "          \"LATITUDE\": 44.1251998340001,\n",
       "          \"LONGITUDE\": -84.1966975,\n",
       "          \"OBJECTID\": 639,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Keweenaw Bay Indian Community\",\n",
       "          \"STATE_ABBR\": \"MI\",\n",
       "          \"STATE_NAME\": \"Michigan\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -84.1966975,\n",
       "              44.1251998340001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"OK\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"71903\",\n",
       "          \"FUNDING_NUMERIC\": 71903.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-606\",\n",
       "          \"LATITUDE\": 35.58268395,\n",
       "          \"LONGITUDE\": -97.5085993609999,\n",
       "          \"OBJECTID\": 640,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Kaw Nation of Oklahoma\",\n",
       "          \"STATE_ABBR\": \"OK\",\n",
       "          \"STATE_NAME\": \"Oklahoma\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -97.5085993609999,\n",
       "              35.58268395\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"OK\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"43141\",\n",
       "          \"FUNDING_NUMERIC\": 43141.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-605\",\n",
       "          \"LATITUDE\": 35.58268395,\n",
       "          \"LONGITUDE\": -97.5085993609999,\n",
       "          \"OBJECTID\": 641,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Cherokee Nation\",\n",
       "          \"STATE_ABBR\": \"OK\",\n",
       "          \"STATE_NAME\": \"Oklahoma\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -97.5085993609999,\n",
       "              35.58268395\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"OK\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"57521\",\n",
       "          \"FUNDING_NUMERIC\": 57521.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-607\",\n",
       "          \"LATITUDE\": 35.58268395,\n",
       "          \"LONGITUDE\": -97.5085993609999,\n",
       "          \"OBJECTID\": 642,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"IT426 - Quapaw Tribe of Oklahoma\",\n",
       "          \"STATE_ABBR\": \"OK\",\n",
       "          \"STATE_NAME\": \"Oklahoma\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -97.5085993609999,\n",
       "              35.58268395\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NM\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"34156\",\n",
       "          \"FUNDING_NUMERIC\": 34156.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-611\",\n",
       "          \"LATITUDE\": 34.4213265340001,\n",
       "          \"LONGITUDE\": -106.108403845,\n",
       "          \"OBJECTID\": 643,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Southern Ute\",\n",
       "          \"STATE_ABBR\": \"NM\",\n",
       "          \"STATE_NAME\": \"New Mexico\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -106.108403845,\n",
       "              34.421326534\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"UT\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"39050\",\n",
       "          \"FUNDING_NUMERIC\": 39050.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-612\",\n",
       "          \"LATITUDE\": 39.323725193,\n",
       "          \"LONGITUDE\": -111.678248391,\n",
       "          \"OBJECTID\": 644,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Northwestern Band of the Shoshone\",\n",
       "          \"STATE_ABBR\": \"UT\",\n",
       "          \"STATE_NAME\": \"Utah\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.678248391,\n",
       "              39.323725193\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NE\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"TBD\",\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-609\",\n",
       "          \"LATITUDE\": 41.5272703260001,\n",
       "          \"LONGITUDE\": -99.811107307,\n",
       "          \"OBJECTID\": 645,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Winnebago\",\n",
       "          \"STATE_ABBR\": \"NE\",\n",
       "          \"STATE_NAME\": \"Nebraska\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -99.811107307,\n",
       "              41.5272703260001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"KS\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"TBD\",\n",
       "          \"FUNDING_NUMERIC\": null,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-608\",\n",
       "          \"LATITUDE\": 38.484726713,\n",
       "          \"LONGITUDE\": -98.380170629,\n",
       "          \"OBJECTID\": 646,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Prairie Band\",\n",
       "          \"STATE_ABBR\": \"KS\",\n",
       "          \"STATE_NAME\": \"Kansas\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -98.380170629,\n",
       "              38.484726713\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NE\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"97282\",\n",
       "          \"FUNDING_NUMERIC\": 97282.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-610\",\n",
       "          \"LATITUDE\": 41.5272703260001,\n",
       "          \"LONGITUDE\": -99.811107307,\n",
       "          \"OBJECTID\": 647,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Santee Sioux Nation\",\n",
       "          \"STATE_ABBR\": \"NE\",\n",
       "          \"STATE_NAME\": \"Nebraska\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -99.811107307,\n",
       "              41.5272703260001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"ND\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"34196\",\n",
       "          \"FUNDING_NUMERIC\": 34196.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-615\",\n",
       "          \"LATITUDE\": 47.4462733400001,\n",
       "          \"LONGITUDE\": -100.46938737,\n",
       "          \"OBJECTID\": 648,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Spirit Lake\",\n",
       "          \"STATE_ABBR\": \"ND\",\n",
       "          \"STATE_NAME\": \"North Dakota\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -100.46938737,\n",
       "              47.4462733400001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"UT\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"33666\",\n",
       "          \"FUNDING_NUMERIC\": 33666.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-616\",\n",
       "          \"LATITUDE\": 39.323725193,\n",
       "          \"LONGITUDE\": -111.678248391,\n",
       "          \"OBJECTID\": 649,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Ute Indian\",\n",
       "          \"STATE_ABBR\": \"UT\",\n",
       "          \"STATE_NAME\": \"Utah\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.678248391,\n",
       "              39.323725193\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CO\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"54186\",\n",
       "          \"FUNDING_NUMERIC\": 54186.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-613\",\n",
       "          \"LATITUDE\": 38.998550562,\n",
       "          \"LONGITUDE\": -105.547816373,\n",
       "          \"OBJECTID\": 650,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Ute Mountain Ute\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"AZ\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"67869\",\n",
       "          \"FUNDING_NUMERIC\": 67869.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-618\",\n",
       "          \"LATITUDE\": 34.293016451,\n",
       "          \"LONGITUDE\": -111.664753988,\n",
       "          \"OBJECTID\": 651,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Gila River EPA\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"67869\",\n",
       "          \"FUNDING_NUMERIC\": 67869.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-619\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 652,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"La Jolla EPA\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"67869\",\n",
       "          \"FUNDING_NUMERIC\": 67869.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-620\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 653,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Morongo EPA\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"67869\",\n",
       "          \"FUNDING_NUMERIC\": 67869.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-622\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 654,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Pechanga EPA\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"UT\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"67869\",\n",
       "          \"FUNDING_NUMERIC\": 67869.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-621\",\n",
       "          \"LATITUDE\": 39.323725193,\n",
       "          \"LONGITUDE\": -111.678248391,\n",
       "          \"OBJECTID\": 655,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Navajo EPA\",\n",
       "          \"STATE_ABBR\": \"UT\",\n",
       "          \"STATE_NAME\": \"Utah\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.678248391,\n",
       "              39.323725193\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MT\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"39050\",\n",
       "          \"FUNDING_NUMERIC\": 39050.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-614\",\n",
       "          \"LATITUDE\": 47.0334993330001,\n",
       "          \"LONGITUDE\": -109.645067732,\n",
       "          \"OBJECTID\": 656,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Confederated Salish and Kootenai (CSKT)\",\n",
       "          \"STATE_ABBR\": \"MT\",\n",
       "          \"STATE_NAME\": \"Montana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -109.645067732,\n",
       "              47.0334993330001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"AZ\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"67869\",\n",
       "          \"FUNDING_NUMERIC\": 67869.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-623\",\n",
       "          \"LATITUDE\": 34.293016451,\n",
       "          \"LONGITUDE\": -111.664753988,\n",
       "          \"OBJECTID\": 657,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Salt River EPA\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"ID\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"43990\",\n",
       "          \"FUNDING_NUMERIC\": 43990.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-624\",\n",
       "          \"LATITUDE\": 44.3889953940001,\n",
       "          \"LONGITUDE\": -114.659446938,\n",
       "          \"OBJECTID\": 658,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Coeur d'Alene\",\n",
       "          \"STATE_ABBR\": \"ID\",\n",
       "          \"STATE_NAME\": \"Idaho\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -114.659446938,\n",
       "              44.388995394\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"OR\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"32763\",\n",
       "          \"FUNDING_NUMERIC\": 32763.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-625\",\n",
       "          \"LATITUDE\": 43.9387802410001,\n",
       "          \"LONGITUDE\": -120.558560912,\n",
       "          \"OBJECTID\": 659,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"CTLUSI\",\n",
       "          \"STATE_ABBR\": \"OR\",\n",
       "          \"STATE_NAME\": \"Oregon\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.558560912,\n",
       "              43.9387802410001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MT\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"39050\",\n",
       "          \"FUNDING_NUMERIC\": 39050.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-617\",\n",
       "          \"LATITUDE\": 47.0334993330001,\n",
       "          \"LONGITUDE\": -109.645067732,\n",
       "          \"OBJECTID\": 660,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Blackfeet Tribe\",\n",
       "          \"STATE_ABBR\": \"MT\",\n",
       "          \"STATE_NAME\": \"Montana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -109.645067732,\n",
       "              47.0334993330001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"ID\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"82768\",\n",
       "          \"FUNDING_NUMERIC\": 82768.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-627\",\n",
       "          \"LATITUDE\": 44.3889953940001,\n",
       "          \"LONGITUDE\": -114.659446938,\n",
       "          \"OBJECTID\": 661,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Nez Perce\",\n",
       "          \"STATE_ABBR\": \"ID\",\n",
       "          \"STATE_NAME\": \"Idaho\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -114.659446938,\n",
       "              44.388995394\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"WA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"25145\",\n",
       "          \"FUNDING_NUMERIC\": 25145.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-626\",\n",
       "          \"LATITUDE\": 47.4112518430001,\n",
       "          \"LONGITUDE\": -120.556263187,\n",
       "          \"OBJECTID\": 662,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Makah\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"ID\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"78219\",\n",
       "          \"FUNDING_NUMERIC\": 78219.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-629\",\n",
       "          \"LATITUDE\": 44.3889953940001,\n",
       "          \"LONGITUDE\": -114.659446938,\n",
       "          \"OBJECTID\": 663,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Shoshone-Bannock\",\n",
       "          \"STATE_ABBR\": \"ID\",\n",
       "          \"STATE_NAME\": \"Idaho\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -114.659446938,\n",
       "              44.388995394\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"WA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"22838\",\n",
       "          \"FUNDING_NUMERIC\": 22838.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-628\",\n",
       "          \"LATITUDE\": 47.4112518430001,\n",
       "          \"LONGITUDE\": -120.556263187,\n",
       "          \"OBJECTID\": 664,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Quinault\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"WA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"27452\",\n",
       "          \"FUNDING_NUMERIC\": 27452.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-630\",\n",
       "          \"LATITUDE\": 47.4112518430001,\n",
       "          \"LONGITUDE\": -120.556263187,\n",
       "          \"OBJECTID\": 665,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Swinomish\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"WA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"36122\",\n",
       "          \"FUNDING_NUMERIC\": 36122.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-631\",\n",
       "          \"LATITUDE\": 47.4112518430001,\n",
       "          \"LONGITUDE\": -120.556263187,\n",
       "          \"OBJECTID\": 666,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Tulalip\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"OR\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"46356\",\n",
       "          \"FUNDING_NUMERIC\": 46356.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-632\",\n",
       "          \"LATITUDE\": 43.9387802410001,\n",
       "          \"LONGITUDE\": -120.558560912,\n",
       "          \"OBJECTID\": 667,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": \"Umatilla\",\n",
       "          \"STATE_ABBR\": \"OR\",\n",
       "          \"STATE_NAME\": \"Oregon\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.558560912,\n",
       "              43.9387802410001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"IL\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-683\",\n",
       "          \"LATITUDE\": 40.11404657,\n",
       "          \"LONGITUDE\": -89.158650902,\n",
       "          \"OBJECTID\": 668,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Metropolitan Mayors Caucus\",\n",
       "          \"STATE_ABBR\": \"IL\",\n",
       "          \"STATE_NAME\": \"Illinois\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -89.158650902,\n",
       "              40.11404657\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"TX\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-684\",\n",
       "          \"LATITUDE\": 31.462733046,\n",
       "          \"LONGITUDE\": -99.33305009,\n",
       "          \"OBJECTID\": 669,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"North Central Texas Council of Governments\",\n",
       "          \"STATE_ABBR\": \"TX\",\n",
       "          \"STATE_NAME\": \"Texas\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -99.33305009,\n",
       "              31.462733046\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"TX\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-685\",\n",
       "          \"LATITUDE\": 31.462733046,\n",
       "          \"LONGITUDE\": -99.33305009,\n",
       "          \"OBJECTID\": 670,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Houston-Galveston Area Council\",\n",
       "          \"STATE_ABBR\": \"TX\",\n",
       "          \"STATE_NAME\": \"Texas\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -99.33305009,\n",
       "              31.462733046\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"PA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-686\",\n",
       "          \"LATITUDE\": 40.8965116540001,\n",
       "          \"LONGITUDE\": -77.838750776,\n",
       "          \"OBJECTID\": 671,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Delaware Valley Regional Planning Commission\",\n",
       "          \"STATE_ABBR\": \"PA\",\n",
       "          \"STATE_NAME\": \"Pennsylvania\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -77.838750776,\n",
       "              40.896511654\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-689\",\n",
       "          \"LATITUDE\": 42.3586703240001,\n",
       "          \"LONGITUDE\": -71.718185,\n",
       "          \"OBJECTID\": 672,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Metropolitan Area Planning Council\",\n",
       "          \"STATE_ABBR\": \"MA\",\n",
       "          \"STATE_NAME\": \"Massachusetts\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -71.718185,\n",
       "              42.3586703240001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"AZ\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-690\",\n",
       "          \"LATITUDE\": 34.293016451,\n",
       "          \"LONGITUDE\": -111.664753988,\n",
       "          \"OBJECTID\": 673,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Maricopa Association of Governments\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-691\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 674,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Bay Area Air Quality Management District\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"WA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-694\",\n",
       "          \"LATITUDE\": 47.4112518430001,\n",
       "          \"LONGITUDE\": -120.556263187,\n",
       "          \"OBJECTID\": 675,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Puget Sound Clean Air Agency\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MI\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-693\",\n",
       "          \"LATITUDE\": 44.1251998340001,\n",
       "          \"LONGITUDE\": -84.1966975,\n",
       "          \"OBJECTID\": 676,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Southeast Michigan Council of Governments\",\n",
       "          \"STATE_ABBR\": \"MI\",\n",
       "          \"STATE_NAME\": \"Michigan\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -84.1966975,\n",
       "              44.1251998340001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MN\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-695\",\n",
       "          \"LATITUDE\": 46.348855766,\n",
       "          \"LONGITUDE\": -94.200790583,\n",
       "          \"OBJECTID\": 677,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Metropolitan Council\",\n",
       "          \"STATE_ABBR\": \"MN\",\n",
       "          \"STATE_NAME\": \"Minnesota\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -94.2007905829999,\n",
       "              46.348855766\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NY\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-681\",\n",
       "          \"LATITUDE\": 40.71453,\n",
       "          \"LONGITUDE\": -74.00712,\n",
       "          \"OBJECTID\": 678,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"New York City Economic Development Corporation\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -74.00712,\n",
       "              40.71453\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-696\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 679,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"San Diego Association of Governments\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MO\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-700\",\n",
       "          \"LATITUDE\": 38.3679827460001,\n",
       "          \"LONGITUDE\": -92.477746617,\n",
       "          \"OBJECTID\": 680,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"East-West Gateway Council of Governments\",\n",
       "          \"STATE_ABBR\": \"MO\",\n",
       "          \"STATE_NAME\": \"Missouri\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -92.477746617,\n",
       "              38.3679827460001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MD\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-699\",\n",
       "          \"LATITUDE\": 38.8181992840001,\n",
       "          \"LONGITUDE\": -76.15873,\n",
       "          \"OBJECTID\": 681,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Baltimore Metropolitan Council\",\n",
       "          \"STATE_ABBR\": \"MD\",\n",
       "          \"STATE_NAME\": \"Maryland\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -76.15873,\n",
       "              38.8181992840001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"FL\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-697\",\n",
       "          \"LATITUDE\": 28.5660448950001,\n",
       "          \"LONGITUDE\": -81.6886487899999,\n",
       "          \"OBJECTID\": 682,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Tampa Bay Regional Planning Council\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -81.6886487899999,\n",
       "              28.5660448950001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NC\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-702\",\n",
       "          \"LATITUDE\": 35.5393443350001,\n",
       "          \"LONGITUDE\": -79.185417913,\n",
       "          \"OBJECTID\": 683,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Centralina Regional Council\",\n",
       "          \"STATE_ABBR\": \"NC\",\n",
       "          \"STATE_NAME\": \"North Carolina\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -79.185417913,\n",
       "              35.5393443350001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"OR\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-704\",\n",
       "          \"LATITUDE\": 43.9387802410001,\n",
       "          \"LONGITUDE\": -120.558560912,\n",
       "          \"OBJECTID\": 684,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Oregon Metro\",\n",
       "          \"STATE_ABBR\": \"OR\",\n",
       "          \"STATE_NAME\": \"Oregon\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.558560912,\n",
       "              43.9387802410001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CO\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-698\",\n",
       "          \"LATITUDE\": 38.998550562,\n",
       "          \"LONGITUDE\": -105.547816373,\n",
       "          \"OBJECTID\": 685,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Denver Regional Council of Governments\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"FL\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-701\",\n",
       "          \"LATITUDE\": 28.5660448950001,\n",
       "          \"LONGITUDE\": -81.6886487899999,\n",
       "          \"OBJECTID\": 686,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"East Central Florida Regional Planning Council\",\n",
       "          \"STATE_ABBR\": \"FL\",\n",
       "          \"STATE_NAME\": \"Florida\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -81.6886487899999,\n",
       "              28.5660448950001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-705\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 687,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Sacramento Metropolitan Air Quality Management District\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"PA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-706\",\n",
       "          \"LATITUDE\": 40.8965116540001,\n",
       "          \"LONGITUDE\": -77.838750776,\n",
       "          \"OBJECTID\": 688,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Southwestern Pennsylvania Commission\",\n",
       "          \"STATE_ABBR\": \"PA\",\n",
       "          \"STATE_NAME\": \"Pennsylvania\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -77.838750776,\n",
       "              40.896511654\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MO\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-710\",\n",
       "          \"LATITUDE\": 38.3679827460001,\n",
       "          \"LONGITUDE\": -92.477746617,\n",
       "          \"OBJECTID\": 689,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Mid-America Regional Council\",\n",
       "          \"STATE_ABBR\": \"MO\",\n",
       "          \"STATE_NAME\": \"Missouri\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -92.477746617,\n",
       "              38.3679827460001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"OH\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-709\",\n",
       "          \"LATITUDE\": 40.4130567990001,\n",
       "          \"LONGITUDE\": -82.7112151859999,\n",
       "          \"OBJECTID\": 690,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Ohio-Kentucky-Indiana Regional Council of Governments\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -82.7112151859999,\n",
       "              40.4130567990001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"IN\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-712\",\n",
       "          \"LATITUDE\": 39.919806964,\n",
       "          \"LONGITUDE\": -86.2817934879999,\n",
       "          \"OBJECTID\": 691,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Central Indiana Regional Development Authority\",\n",
       "          \"STATE_ABBR\": \"IN\",\n",
       "          \"STATE_NAME\": \"Indiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -86.2817934879999,\n",
       "              39.919806964\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"TN\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-716\",\n",
       "          \"LATITUDE\": 35.843002697,\n",
       "          \"LONGITUDE\": -86.3430511769999,\n",
       "          \"OBJECTID\": 692,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Greater Nashville Regional Council\",\n",
       "          \"STATE_ABBR\": \"TN\",\n",
       "          \"STATE_NAME\": \"Tennessee\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -86.3430511769999,\n",
       "              35.843002697\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"OH\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-713\",\n",
       "          \"LATITUDE\": 40.4130567990001,\n",
       "          \"LONGITUDE\": -82.7112151859999,\n",
       "          \"OBJECTID\": 693,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Northeast Ohio Areawide Coordinating Agency\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -82.7112151859999,\n",
       "              40.4130567990001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"RI\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-718\",\n",
       "          \"LATITUDE\": 41.48871294,\n",
       "          \"LONGITUDE\": -71.4543194669999,\n",
       "          \"OBJECTID\": 694,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Southeastern Regional Planning & Economic Development District\",\n",
       "          \"STATE_ABBR\": \"RI\",\n",
       "          \"STATE_NAME\": \"Rhode Island\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -71.4543194669999,\n",
       "              41.48871294\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"VA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-717\",\n",
       "          \"LATITUDE\": 37.512820504,\n",
       "          \"LONGITUDE\": -78.697948713,\n",
       "          \"OBJECTID\": 695,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Hampton Roads Planning District Commission\",\n",
       "          \"STATE_ABBR\": \"VA\",\n",
       "          \"STATE_NAME\": \"Virginia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -78.697948713,\n",
       "              37.512820504\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"WI\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-720\",\n",
       "          \"LATITUDE\": 44.644833367,\n",
       "          \"LONGITUDE\": -89.739185424,\n",
       "          \"OBJECTID\": 696,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Southeastern Wisconsin Regional Planning Commission\",\n",
       "          \"STATE_ABBR\": \"WI\",\n",
       "          \"STATE_NAME\": \"Wisconsin\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -89.739185424,\n",
       "              44.644833367\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"OK\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-721\",\n",
       "          \"LATITUDE\": 35.58268395,\n",
       "          \"LONGITUDE\": -97.5085993609999,\n",
       "          \"OBJECTID\": 697,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Association of Central Oklahoma Governments\",\n",
       "          \"STATE_ABBR\": \"OK\",\n",
       "          \"STATE_NAME\": \"Oklahoma\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -97.5085993609999,\n",
       "              35.58268395\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"TN\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-723\",\n",
       "          \"LATITUDE\": 35.843002697,\n",
       "          \"LONGITUDE\": -86.3430511769999,\n",
       "          \"OBJECTID\": 698,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Memphis-Shelby County Office of Sustainability & Resilience\",\n",
       "          \"STATE_ABBR\": \"TN\",\n",
       "          \"STATE_NAME\": \"Tennessee\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -86.3430511769999,\n",
       "              35.843002697\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NC\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-722\",\n",
       "          \"LATITUDE\": 35.5393443350001,\n",
       "          \"LONGITUDE\": -79.185417913,\n",
       "          \"OBJECTID\": 699,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Triangle J Council of Governments\",\n",
       "          \"STATE_ABBR\": \"NC\",\n",
       "          \"STATE_NAME\": \"North Carolina\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -79.185417913,\n",
       "              35.5393443350001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"VA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-724\",\n",
       "          \"LATITUDE\": 37.512820504,\n",
       "          \"LONGITUDE\": -78.697948713,\n",
       "          \"OBJECTID\": 700,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Richmond Regional Planning District Commission\",\n",
       "          \"STATE_ABBR\": \"VA\",\n",
       "          \"STATE_NAME\": \"Virginia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -78.697948713,\n",
       "              37.512820504\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"LA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-726\",\n",
       "          \"LATITUDE\": 30.1858461670001,\n",
       "          \"LONGITUDE\": -91.42642,\n",
       "          \"OBJECTID\": 701,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"New Orleans Regional Planning Commission\",\n",
       "          \"STATE_ABBR\": \"LA\",\n",
       "          \"STATE_NAME\": \"Louisiana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -91.42642,\n",
       "              30.1858461670001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CT\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-728\",\n",
       "          \"LATITUDE\": 41.57350273,\n",
       "          \"LONGITUDE\": -72.738305908,\n",
       "          \"OBJECTID\": 702,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Capitol Region Council of Governments\",\n",
       "          \"STATE_ABBR\": \"CT\",\n",
       "          \"STATE_NAME\": \"Connecticut\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -72.738305908,\n",
       "              41.57350273\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MI\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-732\",\n",
       "          \"LATITUDE\": 44.1251998340001,\n",
       "          \"LONGITUDE\": -84.1966975,\n",
       "          \"OBJECTID\": 703,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Grand Valley Metro Council\",\n",
       "          \"STATE_ABBR\": \"MI\",\n",
       "          \"STATE_NAME\": \"Michigan\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -84.1966975,\n",
       "              44.1251998340001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"OK\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-735\",\n",
       "          \"LATITUDE\": 35.58268395,\n",
       "          \"LONGITUDE\": -97.5085993609999,\n",
       "          \"OBJECTID\": 704,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Indian Nations Council of Governments\",\n",
       "          \"STATE_ABBR\": \"OK\",\n",
       "          \"STATE_NAME\": \"Oklahoma\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -97.5085993609999,\n",
       "              35.58268395\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-736\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 705,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Fresno Council of Governments\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-737\",\n",
       "          \"LATITUDE\": 42.3586703240001,\n",
       "          \"LONGITUDE\": -71.718185,\n",
       "          \"OBJECTID\": 706,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Central Massachusetts Regional Planning Council\",\n",
       "          \"STATE_ABBR\": \"MA\",\n",
       "          \"STATE_NAME\": \"Massachusetts\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -71.718185,\n",
       "              42.3586703240001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NY\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-729\",\n",
       "          \"LATITUDE\": 40.71453,\n",
       "          \"LONGITUDE\": -74.00712,\n",
       "          \"OBJECTID\": 707,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Niagara Frontier Transportation Authority\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -74.00712,\n",
       "              40.71453\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NY\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-731\",\n",
       "          \"LATITUDE\": 40.71453,\n",
       "          \"LONGITUDE\": -74.00712,\n",
       "          \"OBJECTID\": 708,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Genesee/Finger Lakes Regional Planning Council\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -74.00712,\n",
       "              40.71453\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"SC\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-740\",\n",
       "          \"LATITUDE\": 33.9038634090001,\n",
       "          \"LONGITUDE\": -80.893752347,\n",
       "          \"OBJECTID\": 709,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Appalachian Council of Governments\",\n",
       "          \"STATE_ABBR\": \"SC\",\n",
       "          \"STATE_NAME\": \"South Carolina\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.893752347,\n",
       "              33.903863409\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CT\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-739\",\n",
       "          \"LATITUDE\": 41.57350273,\n",
       "          \"LONGITUDE\": -72.738305908,\n",
       "          \"OBJECTID\": 710,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Connecticut Metropolitan Council of Governments\",\n",
       "          \"STATE_ABBR\": \"CT\",\n",
       "          \"STATE_NAME\": \"Connecticut\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -72.738305908,\n",
       "              41.57350273\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"PA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-749\",\n",
       "          \"LATITUDE\": 40.8965116540001,\n",
       "          \"LONGITUDE\": -77.838750776,\n",
       "          \"OBJECTID\": 711,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Lehigh Valley Planning Commission\",\n",
       "          \"STATE_ABBR\": \"PA\",\n",
       "          \"STATE_NAME\": \"Pennsylvania\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -77.838750776,\n",
       "              40.896511654\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-750\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 712,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"County of Ventura County Executive Office Sustainability Division\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CT\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-748\",\n",
       "          \"LATITUDE\": 41.57350273,\n",
       "          \"LONGITUDE\": -72.738305908,\n",
       "          \"OBJECTID\": 713,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"South Central Regional Council of Governments\",\n",
       "          \"STATE_ABBR\": \"CT\",\n",
       "          \"STATE_NAME\": \"Connecticut\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -72.738305908,\n",
       "              41.57350273\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"OH\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-753\",\n",
       "          \"LATITUDE\": 40.4130567990001,\n",
       "          \"LONGITUDE\": -82.7112151859999,\n",
       "          \"OBJECTID\": 714,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Miami Valley Regional Planning Commission\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -82.7112151859999,\n",
       "              40.4130567990001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"IA\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-756\",\n",
       "          \"LATITUDE\": 42.074698104,\n",
       "          \"LONGITUDE\": -93.499972411,\n",
       "          \"OBJECTID\": 715,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"East Central Iowa Council of Governments\",\n",
       "          \"STATE_ABBR\": \"IA\",\n",
       "          \"STATE_NAME\": \"Iowa\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -93.499972411,\n",
       "              42.074698104\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"KY\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-755\",\n",
       "          \"LATITUDE\": 37.5272325240001,\n",
       "          \"LONGITUDE\": -85.287620068,\n",
       "          \"OBJECTID\": 716,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Lexington-Fayette Urban County Government\",\n",
       "          \"STATE_ABBR\": \"KY\",\n",
       "          \"STATE_NAME\": \"Kentucky\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -85.287620068,\n",
       "              37.527232524\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NY\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1000000\",\n",
       "          \"FUNDING_NUMERIC\": 1000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-743\",\n",
       "          \"LATITUDE\": 40.71453,\n",
       "          \"LONGITUDE\": -74.00712,\n",
       "          \"OBJECTID\": 717,\n",
       "          \"PROGRAM_NAME\": \"Climate Pollution Reduction Grants: Planning Grants\",\n",
       "          \"PROJECT_NAME\": \"Capital District Regional Planning Commission\",\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -74.00712,\n",
       "              40.71453\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"AK\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-760\",\n",
       "          \"LATITUDE\": 64.8080878980001,\n",
       "          \"LONGITUDE\": -151.004157815,\n",
       "          \"OBJECTID\": 718,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Ecosystem Restoration\",\n",
       "          \"PROJECT_NAME\": \"Birch Creek and Fortymile Wild & Scenic River\",\n",
       "          \"STATE_ABBR\": \"AK\",\n",
       "          \"STATE_NAME\": \"Alaska\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -151.004157815,\n",
       "              64.8080878980001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"ID\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"9100000\",\n",
       "          \"FUNDING_NUMERIC\": 9100000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-764\",\n",
       "          \"LATITUDE\": 44.3889953940001,\n",
       "          \"LONGITUDE\": -114.659446938,\n",
       "          \"OBJECTID\": 719,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Ecosystem Restoration\",\n",
       "          \"PROJECT_NAME\": \"Upper Salmon River\",\n",
       "          \"STATE_ABBR\": \"ID\",\n",
       "          \"STATE_NAME\": \"Idaho\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -114.659446938,\n",
       "              44.388995394\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"ID\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"7850000\",\n",
       "          \"FUNDING_NUMERIC\": 7850000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-765\",\n",
       "          \"LATITUDE\": 44.3889953940001,\n",
       "          \"LONGITUDE\": -114.659446938,\n",
       "          \"OBJECTID\": 720,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Ecosystem Restoration\",\n",
       "          \"PROJECT_NAME\": \"East Idaho Rivers and Plains\",\n",
       "          \"STATE_ABBR\": \"ID\",\n",
       "          \"STATE_NAME\": \"Idaho\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -114.659446938,\n",
       "              44.388995394\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"ID\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"10000000\",\n",
       "          \"FUNDING_NUMERIC\": 10000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-766\",\n",
       "          \"LATITUDE\": 44.3889953940001,\n",
       "          \"LONGITUDE\": -114.659446938,\n",
       "          \"OBJECTID\": 721,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Ecosystem Restoration\",\n",
       "          \"PROJECT_NAME\": \"Snake River Plain\",\n",
       "          \"STATE_ABBR\": \"ID\",\n",
       "          \"STATE_NAME\": \"Idaho\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -114.659446938,\n",
       "              44.388995394\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NV\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"6000000\",\n",
       "          \"FUNDING_NUMERIC\": 6000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-767\",\n",
       "          \"LATITUDE\": 39.356482037,\n",
       "          \"LONGITUDE\": -116.655436405,\n",
       "          \"OBJECTID\": 722,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Ecosystem Restoration\",\n",
       "          \"PROJECT_NAME\": \"Humboldt O'Neil Basin\",\n",
       "          \"STATE_ABBR\": \"NV\",\n",
       "          \"STATE_NAME\": \"Nevada\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -116.655436405,\n",
       "              39.356482037\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NV\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"6000000\",\n",
       "          \"FUNDING_NUMERIC\": 6000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-768\",\n",
       "          \"LATITUDE\": 39.356482037,\n",
       "          \"LONGITUDE\": -116.655436405,\n",
       "          \"OBJECTID\": 723,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Ecosystem Restoration\",\n",
       "          \"PROJECT_NAME\": \"Montana Mountains\",\n",
       "          \"STATE_ABBR\": \"NV\",\n",
       "          \"STATE_NAME\": \"Nevada\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -116.655436405,\n",
       "              39.356482037\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"OR\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-769\",\n",
       "          \"LATITUDE\": 43.9387802410001,\n",
       "          \"LONGITUDE\": -120.558560912,\n",
       "          \"OBJECTID\": 724,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Ecosystem Restoration\",\n",
       "          \"PROJECT_NAME\": \"Southeast Oregon Sagebrush\",\n",
       "          \"STATE_ABBR\": \"OR\",\n",
       "          \"STATE_NAME\": \"Oregon\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.558560912,\n",
       "              43.9387802410001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MT\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"9980000\",\n",
       "          \"FUNDING_NUMERIC\": 9980000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-763\",\n",
       "          \"LATITUDE\": 47.0334993330001,\n",
       "          \"LONGITUDE\": -109.645067732,\n",
       "          \"OBJECTID\": 725,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Ecosystem Restoration\",\n",
       "          \"PROJECT_NAME\": \"Missouri Headwaters, Southwest Montana\",\n",
       "          \"STATE_ABBR\": \"MT\",\n",
       "          \"STATE_NAME\": \"Montana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -109.645067732,\n",
       "              47.0334993330001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MT\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"6760000\",\n",
       "          \"FUNDING_NUMERIC\": 6760000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-761\",\n",
       "          \"LATITUDE\": 47.0334993330001,\n",
       "          \"LONGITUDE\": -109.645067732,\n",
       "          \"OBJECTID\": 726,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Ecosystem Restoration\",\n",
       "          \"PROJECT_NAME\": \"The Hi-Line Sagebrush Anchor, North Central Montana\",\n",
       "          \"STATE_ABBR\": \"MT\",\n",
       "          \"STATE_NAME\": \"Montana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -109.645067732,\n",
       "              47.0334993330001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"OR\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-770\",\n",
       "          \"LATITUDE\": 43.9387802410001,\n",
       "          \"LONGITUDE\": -120.558560912,\n",
       "          \"OBJECTID\": 727,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Ecosystem Restoration\",\n",
       "          \"PROJECT_NAME\": \"Southwest Oregon\",\n",
       "          \"STATE_ABBR\": \"OR\",\n",
       "          \"STATE_NAME\": \"Oregon\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.558560912,\n",
       "              43.9387802410001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MT\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"9540000\",\n",
       "          \"FUNDING_NUMERIC\": 9540000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-762\",\n",
       "          \"LATITUDE\": 47.0334993330001,\n",
       "          \"LONGITUDE\": -109.645067732,\n",
       "          \"OBJECTID\": 728,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Ecosystem Restoration\",\n",
       "          \"PROJECT_NAME\": \"Blackfoot-Clark Fork\",\n",
       "          \"STATE_ABBR\": \"MT\",\n",
       "          \"STATE_NAME\": \"Montana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -109.645067732,\n",
       "              47.0334993330001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"AZ\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5590000\",\n",
       "          \"FUNDING_NUMERIC\": 5590000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-772\",\n",
       "          \"LATITUDE\": 34.293016451,\n",
       "          \"LONGITUDE\": -111.664753988,\n",
       "          \"OBJECTID\": 729,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Ecosystem Restoration\",\n",
       "          \"PROJECT_NAME\": \"Yanawant\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"7600000\",\n",
       "          \"FUNDING_NUMERIC\": 7600000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-771\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 730,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Ecosystem Restoration\",\n",
       "          \"PROJECT_NAME\": \"Cosumnes Watershed\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"WY\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"10000000\",\n",
       "          \"FUNDING_NUMERIC\": 10000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-775\",\n",
       "          \"LATITUDE\": 42.999604339,\n",
       "          \"LONGITUDE\": -107.551610158,\n",
       "          \"OBJECTID\": 731,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Ecosystem Restoration\",\n",
       "          \"PROJECT_NAME\": \"La Barge\",\n",
       "          \"STATE_ABBR\": \"WY\",\n",
       "          \"STATE_NAME\": \"Wyoming\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -107.551610158,\n",
       "              42.999604339\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"UT\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"9730000\",\n",
       "          \"FUNDING_NUMERIC\": 9730000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-773\",\n",
       "          \"LATITUDE\": 39.323725193,\n",
       "          \"LONGITUDE\": -111.678248391,\n",
       "          \"OBJECTID\": 732,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Ecosystem Restoration\",\n",
       "          \"PROJECT_NAME\": \"Color Country Converging\",\n",
       "          \"STATE_ABBR\": \"UT\",\n",
       "          \"STATE_NAME\": \"Utah\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.678248391,\n",
       "              39.323725193\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"WY\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"10000000\",\n",
       "          \"FUNDING_NUMERIC\": 10000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-776\",\n",
       "          \"LATITUDE\": 42.999604339,\n",
       "          \"LONGITUDE\": -107.551610158,\n",
       "          \"OBJECTID\": 733,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Ecosystem Restoration\",\n",
       "          \"PROJECT_NAME\": \"Muddy Creek\",\n",
       "          \"STATE_ABBR\": \"WY\",\n",
       "          \"STATE_NAME\": \"Wyoming\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -107.551610158,\n",
       "              42.999604339\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"UT\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"9600000\",\n",
       "          \"FUNDING_NUMERIC\": 9600000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-774\",\n",
       "          \"LATITUDE\": 39.323725193,\n",
       "          \"LONGITUDE\": -111.678248391,\n",
       "          \"OBJECTID\": 734,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Ecosystem Restoration\",\n",
       "          \"PROJECT_NAME\": \"Upper Bear River\",\n",
       "          \"STATE_ABBR\": \"UT\",\n",
       "          \"STATE_NAME\": \"Utah\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.678248391,\n",
       "              39.323725193\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"AZ\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"9590000\",\n",
       "          \"FUNDING_NUMERIC\": 9590000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-780\",\n",
       "          \"LATITUDE\": 34.293016451,\n",
       "          \"LONGITUDE\": -111.664753988,\n",
       "          \"OBJECTID\": 735,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Ecosystem Restoration\",\n",
       "          \"PROJECT_NAME\": \"Sky Islands\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NM\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"7600000\",\n",
       "          \"FUNDING_NUMERIC\": 7600000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-779\",\n",
       "          \"LATITUDE\": 34.4213265340001,\n",
       "          \"LONGITUDE\": -106.108403845,\n",
       "          \"OBJECTID\": 736,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Ecosystem Restoration\",\n",
       "          \"PROJECT_NAME\": \"Lower Pecos\",\n",
       "          \"STATE_ABBR\": \"NM\",\n",
       "          \"STATE_NAME\": \"New Mexico\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -106.108403845,\n",
       "              34.421326534\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"AZ\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Reclamation\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"6000000\",\n",
       "          \"FUNDING_NUMERIC\": 6000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-885\",\n",
       "          \"LATITUDE\": 34.293016451,\n",
       "          \"LONGITUDE\": -111.664753988,\n",
       "          \"OBJECTID\": 737,\n",
       "          \"PROGRAM_NAME\": \"Drought Mitigation\",\n",
       "          \"PROJECT_NAME\": \"Water Savings Agreement with Metropolitan Water District\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"AZ\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Reclamation\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"16720000\",\n",
       "          \"FUNDING_NUMERIC\": 16720000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-886\",\n",
       "          \"LATITUDE\": 34.293016451,\n",
       "          \"LONGITUDE\": -111.664753988,\n",
       "          \"OBJECTID\": 738,\n",
       "          \"PROGRAM_NAME\": \"Drought Mitigation\",\n",
       "          \"PROJECT_NAME\": \"Fort McDowell Yavapai Nation System Conservation Implementation Agreement Indian Tribe (SCIA)\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"AR\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"6000000\",\n",
       "          \"FUNDING_NUMERIC\": 6000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1087\",\n",
       "          \"LATITUDE\": 34.8999237250001,\n",
       "          \"LONGITUDE\": -92.4388847,\n",
       "          \"OBJECTID\": 739,\n",
       "          \"PROGRAM_NAME\": \"Forest Legacy Program\",\n",
       "          \"PROJECT_NAME\": \"Maumelle Water Excellence, Phase 2\",\n",
       "          \"STATE_ABBR\": \"AR\",\n",
       "          \"STATE_NAME\": \"Arkansas\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -92.4388846999999,\n",
       "              34.8999237250001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"AR\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1455000\",\n",
       "          \"FUNDING_NUMERIC\": 1455000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1088\",\n",
       "          \"LATITUDE\": 34.8999237250001,\n",
       "          \"LONGITUDE\": -92.4388847,\n",
       "          \"OBJECTID\": 740,\n",
       "          \"PROGRAM_NAME\": \"Forest Legacy Program\",\n",
       "          \"PROJECT_NAME\": \"White River Headwaters Preserve Project\",\n",
       "          \"STATE_ABBR\": \"AR\",\n",
       "          \"STATE_NAME\": \"Arkansas\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -92.4388846999999,\n",
       "              34.8999237250001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CO\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5000000\",\n",
       "          \"FUNDING_NUMERIC\": 5000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-777\",\n",
       "          \"LATITUDE\": 38.998550562,\n",
       "          \"LONGITUDE\": -105.547816373,\n",
       "          \"OBJECTID\": 741,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Ecosystem Restoration\",\n",
       "          \"PROJECT_NAME\": \"North Park\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CO\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"6100000\",\n",
       "          \"FUNDING_NUMERIC\": 6100000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-778\",\n",
       "          \"LATITUDE\": 38.998550562,\n",
       "          \"LONGITUDE\": -105.547816373,\n",
       "          \"OBJECTID\": 742,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Ecosystem Restoration\",\n",
       "          \"PROJECT_NAME\": \"San Luis Valley\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"AZ\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1900000\",\n",
       "          \"FUNDING_NUMERIC\": 1900000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1089\",\n",
       "          \"LATITUDE\": 34.293016451,\n",
       "          \"LONGITUDE\": -111.664753988,\n",
       "          \"OBJECTID\": 743,\n",
       "          \"PROGRAM_NAME\": \"Forest Legacy Program\",\n",
       "          \"PROJECT_NAME\": \"Bull Basin Forest Project\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"OR\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"460000\",\n",
       "          \"FUNDING_NUMERIC\": 460000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1097\",\n",
       "          \"LATITUDE\": 43.9387802410001,\n",
       "          \"LONGITUDE\": -120.558560912,\n",
       "          \"OBJECTID\": 744,\n",
       "          \"PROGRAM_NAME\": \"Forest Legacy Program\",\n",
       "          \"PROJECT_NAME\": \"Minam Conservation & Connectivity Project, Phase 2\",\n",
       "          \"STATE_ABBR\": \"OR\",\n",
       "          \"STATE_NAME\": \"Oregon\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.558560912,\n",
       "              43.9387802410001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MS\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"7180000\",\n",
       "          \"FUNDING_NUMERIC\": 7180000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1095\",\n",
       "          \"LATITUDE\": 32.7239777990001,\n",
       "          \"LONGITUDE\": -89.657175808,\n",
       "          \"OBJECTID\": 745,\n",
       "          \"PROGRAM_NAME\": \"Forest Legacy Program\",\n",
       "          \"PROJECT_NAME\": \"Wolf River Forest Conservation Project\",\n",
       "          \"STATE_ABBR\": \"MS\",\n",
       "          \"STATE_NAME\": \"Mississippi\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -89.657175808,\n",
       "              32.7239777990001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"OH\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2870000\",\n",
       "          \"FUNDING_NUMERIC\": 2870000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1096\",\n",
       "          \"LATITUDE\": 40.4130567990001,\n",
       "          \"LONGITUDE\": -82.7112151859999,\n",
       "          \"OBJECTID\": 746,\n",
       "          \"PROGRAM_NAME\": \"Forest Legacy Program\",\n",
       "          \"PROJECT_NAME\": \"Pike Forest Project\",\n",
       "          \"STATE_ABBR\": \"OH\",\n",
       "          \"STATE_NAME\": \"Ohio\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -82.7112151859999,\n",
       "              40.4130567990001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CT\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"3620000\",\n",
       "          \"FUNDING_NUMERIC\": 3620000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1092\",\n",
       "          \"LATITUDE\": 41.57350273,\n",
       "          \"LONGITUDE\": -72.738305908,\n",
       "          \"OBJECTID\": 747,\n",
       "          \"PROGRAM_NAME\": \"Forest Legacy Program\",\n",
       "          \"PROJECT_NAME\": \"The Last Green Valley Forest Legacy Project\",\n",
       "          \"STATE_ABBR\": \"CT\",\n",
       "          \"STATE_NAME\": \"Connecticut\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -72.738305908,\n",
       "              41.57350273\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"SD\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1490000\",\n",
       "          \"FUNDING_NUMERIC\": 1490000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1099\",\n",
       "          \"LATITUDE\": 44.436128,\n",
       "          \"LONGITUDE\": -100.230536743,\n",
       "          \"OBJECTID\": 748,\n",
       "          \"PROGRAM_NAME\": \"Forest Legacy Program\",\n",
       "          \"PROJECT_NAME\": \"Big Sioux River Forest\",\n",
       "          \"STATE_ABBR\": \"SD\",\n",
       "          \"STATE_NAME\": \"South Dakota\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -100.230536743,\n",
       "              44.436128\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"OR\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"10245000\",\n",
       "          \"FUNDING_NUMERIC\": 10245000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1098\",\n",
       "          \"LATITUDE\": 43.9387802410001,\n",
       "          \"LONGITUDE\": -120.558560912,\n",
       "          \"OBJECTID\": 749,\n",
       "          \"PROGRAM_NAME\": \"Forest Legacy Program\",\n",
       "          \"PROJECT_NAME\": \"Tualatin Mountain Forest Project\",\n",
       "          \"STATE_ABBR\": \"OR\",\n",
       "          \"STATE_NAME\": \"Oregon\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.558560912,\n",
       "              43.9387802410001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"VI\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5910000\",\n",
       "          \"FUNDING_NUMERIC\": 5910000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1102\",\n",
       "          \"LATITUDE\": 17.728114454,\n",
       "          \"LONGITUDE\": -64.8190875,\n",
       "          \"OBJECTID\": 750,\n",
       "          \"PROGRAM_NAME\": \"Forest Legacy Program\",\n",
       "          \"PROJECT_NAME\": \"Inner Brass Island Project\",\n",
       "          \"STATE_ABBR\": \"VI\",\n",
       "          \"STATE_NAME\": \"U.S. Virgin Islands\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -64.8190875,\n",
       "              17.728114454\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"WV\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1500000\",\n",
       "          \"FUNDING_NUMERIC\": 1500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1104\",\n",
       "          \"LATITUDE\": 38.6424149370001,\n",
       "          \"LONGITUDE\": -80.613616641,\n",
       "          \"OBJECTID\": 751,\n",
       "          \"PROGRAM_NAME\": \"Forest Legacy Program\",\n",
       "          \"PROJECT_NAME\": \"South Fork Lost River Phase 4\",\n",
       "          \"STATE_ABBR\": \"WV\",\n",
       "          \"STATE_NAME\": \"West Virginia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -80.613616641,\n",
       "              38.6424149370001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"AZ\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"56500000\",\n",
       "          \"FUNDING_NUMERIC\": 56500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1164\",\n",
       "          \"LATITUDE\": 34.293016451,\n",
       "          \"LONGITUDE\": -111.664753988,\n",
       "          \"OBJECTID\": 752,\n",
       "          \"PROGRAM_NAME\": \"Hazardous Fuels Reduction Projects in Wildland Urban Interface\",\n",
       "          \"PROJECT_NAME\": \"Four Forests Restoration Initiative\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"OR\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"7100000\",\n",
       "          \"FUNDING_NUMERIC\": 7100000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1165\",\n",
       "          \"LATITUDE\": 43.9387802410001,\n",
       "          \"LONGITUDE\": -120.558560912,\n",
       "          \"OBJECTID\": 753,\n",
       "          \"PROGRAM_NAME\": \"Hazardous Fuels Reduction Projects in Wildland Urban Interface\",\n",
       "          \"PROJECT_NAME\": \"Central Oregon Landscape\",\n",
       "          \"STATE_ABBR\": \"OR\",\n",
       "          \"STATE_NAME\": \"Oregon\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.558560912,\n",
       "              43.9387802410001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"10800000\",\n",
       "          \"FUNDING_NUMERIC\": 10800000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1166\",\n",
       "          \"LATITUDE\": 47.4112518430001,\n",
       "          \"LONGITUDE\": -120.556263187,\n",
       "          \"OBJECTID\": 754,\n",
       "          \"PROGRAM_NAME\": \"Hazardous Fuels Reduction Projects in Wildland Urban Interface\",\n",
       "          \"PROJECT_NAME\": \"Central Washington Initiative\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NM\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"5100000\",\n",
       "          \"FUNDING_NUMERIC\": 5100000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1168\",\n",
       "          \"LATITUDE\": 34.4213265340001,\n",
       "          \"LONGITUDE\": -106.108403845,\n",
       "          \"OBJECTID\": 755,\n",
       "          \"PROGRAM_NAME\": \"Hazardous Fuels Reduction Projects in Wildland Urban Interface\",\n",
       "          \"PROJECT_NAME\": \"Enchanted Circle\",\n",
       "          \"STATE_ABBR\": \"NM\",\n",
       "          \"STATE_NAME\": \"New Mexico\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -106.108403845,\n",
       "              34.421326534\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"133500000\",\n",
       "          \"FUNDING_NUMERIC\": 133500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1170\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 756,\n",
       "          \"PROGRAM_NAME\": \"Hazardous Fuels Reduction Projects in Wildland Urban Interface\",\n",
       "          \"PROJECT_NAME\": \"North Yuba Landscape\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"ID\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"22400000\",\n",
       "          \"FUNDING_NUMERIC\": 22400000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1172\",\n",
       "          \"LATITUDE\": 44.3889953940001,\n",
       "          \"LONGITUDE\": -114.659446938,\n",
       "          \"OBJECTID\": 757,\n",
       "          \"PROGRAM_NAME\": \"Hazardous Fuels Reduction Projects in Wildland Urban Interface\",\n",
       "          \"PROJECT_NAME\": \"Southwest Idaho Landscape\",\n",
       "          \"STATE_ABBR\": \"ID\",\n",
       "          \"STATE_NAME\": \"Idaho\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -114.659446938,\n",
       "              44.388995394\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"33000000\",\n",
       "          \"FUNDING_NUMERIC\": 33000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1173\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 758,\n",
       "          \"PROGRAM_NAME\": \"Hazardous Fuels Reduction Projects in Wildland Urban Interface\",\n",
       "          \"PROJECT_NAME\": \"Stanislaus Landscape\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"AK\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"793000\",\n",
       "          \"FUNDING_NUMERIC\": 793000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1223\",\n",
       "          \"LATITUDE\": 64.8080878980001,\n",
       "          \"LONGITUDE\": -151.004157815,\n",
       "          \"OBJECTID\": 759,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Enhancing Climate Change Resilience and Food Security Through Co-Stewardship Capacity Building\",\n",
       "          \"STATE_ABBR\": \"AK\",\n",
       "          \"STATE_NAME\": \"Alaska\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -151.004157815,\n",
       "              64.8080878980001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"AK\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"U.S. Geological Survey\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"15534\",\n",
       "          \"FUNDING_NUMERIC\": 15534.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1226\",\n",
       "          \"LATITUDE\": 64.8080878980001,\n",
       "          \"LONGITUDE\": -151.004157815,\n",
       "          \"OBJECTID\": 760,\n",
       "          \"PROGRAM_NAME\": \"USGS 3D Elevation Program (3DEP)\",\n",
       "          \"PROJECT_NAME\": \"Lake and Peninsula Borough Lidar\\u00a0\",\n",
       "          \"STATE_ABBR\": \"AK\",\n",
       "          \"STATE_NAME\": \"Alaska\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -151.004157815,\n",
       "              64.8080878980001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CO\",\n",
       "          \"AGENCY_NAME\": \"Department of Agriculture\",\n",
       "          \"BUREAU_NAME\": \"Forest Service\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"21800000\",\n",
       "          \"FUNDING_NUMERIC\": 21800000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1167\",\n",
       "          \"LATITUDE\": 38.998550562,\n",
       "          \"LONGITUDE\": -105.547816373,\n",
       "          \"OBJECTID\": 761,\n",
       "          \"PROGRAM_NAME\": \"Hazardous Fuels Reduction Projects in Wildland Urban Interface\",\n",
       "          \"PROJECT_NAME\": \"Colorado Front Range\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MI\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"311000\",\n",
       "          \"FUNDING_NUMERIC\": 311000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1233\",\n",
       "          \"LATITUDE\": 44.1251998340001,\n",
       "          \"LONGITUDE\": -84.1966975,\n",
       "          \"OBJECTID\": 762,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Mitigation of high priority Abandoned Mine Lands features in Keweenaw\\nNational Historical Park\",\n",
       "          \"STATE_ABBR\": \"MI\",\n",
       "          \"STATE_NAME\": \"Michigan\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -84.1966975,\n",
       "              44.1251998340001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MD\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"446000\",\n",
       "          \"FUNDING_NUMERIC\": 446000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1236\",\n",
       "          \"LATITUDE\": 38.8181992840001,\n",
       "          \"LONGITUDE\": -76.15873,\n",
       "          \"OBJECTID\": 763,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Promote Climate Resilience in Priority Forests Using Integrated Forest Management\",\n",
       "          \"STATE_ABBR\": \"MD\",\n",
       "          \"STATE_NAME\": \"Maryland\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -76.15873,\n",
       "              38.8181992840001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"AK\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"525000\",\n",
       "          \"FUNDING_NUMERIC\": 525000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1244\",\n",
       "          \"LATITUDE\": 64.8080878980001,\n",
       "          \"LONGITUDE\": -151.004157815,\n",
       "          \"OBJECTID\": 764,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Facilitate planning for potential Wood Bison recovery in eastern Alaska\",\n",
       "          \"STATE_ABBR\": \"AK\",\n",
       "          \"STATE_NAME\": \"Alaska\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -151.004157815,\n",
       "              64.8080878980001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"AZ\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Reclamation\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"50000000\",\n",
       "          \"FUNDING_NUMERIC\": 50000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1248\",\n",
       "          \"LATITUDE\": 34.293016451,\n",
       "          \"LONGITUDE\": -111.664753988,\n",
       "          \"OBJECTID\": 765,\n",
       "          \"PROGRAM_NAME\": \"Drought Mitigation\",\n",
       "          \"PROJECT_NAME\": \"Gila River Indian Community (GRIC)\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Reclamation\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"3888000\",\n",
       "          \"FUNDING_NUMERIC\": 3888000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1249\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 766,\n",
       "          \"PROGRAM_NAME\": \"Drought Mitigation\",\n",
       "          \"PROJECT_NAME\": \"GM Gabrych Family Limited Partnership\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"AZ\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Reclamation\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"22400000\",\n",
       "          \"FUNDING_NUMERIC\": 22400000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1251\",\n",
       "          \"LATITUDE\": 34.293016451,\n",
       "          \"LONGITUDE\": -111.664753988,\n",
       "          \"OBJECTID\": 767,\n",
       "          \"PROGRAM_NAME\": \"Drought Mitigation\",\n",
       "          \"PROJECT_NAME\": \"ASARCO\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"AZ\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Reclamation\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"7681000\",\n",
       "          \"FUNDING_NUMERIC\": 7681000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1252\",\n",
       "          \"LATITUDE\": 34.293016451,\n",
       "          \"LONGITUDE\": -111.664753988,\n",
       "          \"OBJECTID\": 768,\n",
       "          \"PROGRAM_NAME\": \"Drought Mitigation\",\n",
       "          \"PROJECT_NAME\": \"San Carlos Apache Tribe\",\n",
       "          \"STATE_ABBR\": \"AZ\",\n",
       "          \"STATE_NAME\": \"Arizona\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -111.664753988,\n",
       "              34.293016451\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1699000\",\n",
       "          \"FUNDING_NUMERIC\": 1699000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1255\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 769,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Mitigation of high priority Abandoned Mine Lands features in Death Valley National Park\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"4200000\",\n",
       "          \"FUNDING_NUMERIC\": 4200000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1257\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 770,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conduct Comprehensive Environmental Response, Compensation, and Liability Act (CERCLA) Removal Action at El Capitan EDL #171\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"HI\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2900000\",\n",
       "          \"FUNDING_NUMERIC\": 2900000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1256\",\n",
       "          \"LATITUDE\": 21.439542579,\n",
       "          \"LONGITUDE\": -157.94363193,\n",
       "          \"OBJECTID\": 771,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Prevent Extinction of Hawaii Forest Birds\\u00a0\",\n",
       "          \"STATE_ABBR\": \"HI\",\n",
       "          \"STATE_NAME\": \"Hawaii\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -157.94363193,\n",
       "              21.439542579\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"AK\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1450000\",\n",
       "          \"FUNDING_NUMERIC\": 1450000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2261\",\n",
       "          \"LATITUDE\": 64.8080878980001,\n",
       "          \"LONGITUDE\": -151.004157815,\n",
       "          \"OBJECTID\": 772,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation And Ecosystem Restoration - Fortymile and Ikh\\u00e8enjik River - Birch Creek, AK\",\n",
       "          \"STATE_ABBR\": \"AK\",\n",
       "          \"STATE_NAME\": \"Alaska\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -151.004157815,\n",
       "              64.8080878980001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"300000\",\n",
       "          \"FUNDING_NUMERIC\": 300000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2264\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 773,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation And Ecosystem Restoration - Cosumnes Watershed, CA\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"300000\",\n",
       "          \"FUNDING_NUMERIC\": 300000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2265\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 774,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation And Ecosystem Restoration - Cosumnes Watershed, CA\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"325000\",\n",
       "          \"FUNDING_NUMERIC\": 325000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2266\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 775,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation And Ecosystem Restoration - Cosumnes Watershed, CA\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"250000\",\n",
       "          \"FUNDING_NUMERIC\": 250000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2267\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 776,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation And Ecosystem Restoration - Cosumnes Watershed, CA\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"150000\",\n",
       "          \"FUNDING_NUMERIC\": 150000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2268\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 777,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation And Ecosystem Restoration - Cosumnes Watershed, CA\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MT\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"300000\",\n",
       "          \"FUNDING_NUMERIC\": 300000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-1243\",\n",
       "          \"LATITUDE\": 47.0334993330001,\n",
       "          \"LONGITUDE\": -109.645067732,\n",
       "          \"OBJECTID\": 778,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Advance Bison Reintroduction at Glacier National Park\",\n",
       "          \"STATE_ABBR\": \"MT\",\n",
       "          \"STATE_NAME\": \"Montana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -109.645067732,\n",
       "              47.0334993330001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"275000\",\n",
       "          \"FUNDING_NUMERIC\": 275000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2269\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 779,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation And Ecosystem Restoration - Cosumnes Watershed, CA\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CO\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2270\",\n",
       "          \"LATITUDE\": 38.998550562,\n",
       "          \"LONGITUDE\": -105.547816373,\n",
       "          \"OBJECTID\": 780,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation And Ecosystem Restoration - San Luis Valley, CO\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CO\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"35000\",\n",
       "          \"FUNDING_NUMERIC\": 35000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2271\",\n",
       "          \"LATITUDE\": 38.998550562,\n",
       "          \"LONGITUDE\": -105.547816373,\n",
       "          \"OBJECTID\": 781,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation And Ecosystem Restoration - San Luis Valley, CO\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CO\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2273\",\n",
       "          \"LATITUDE\": 38.998550562,\n",
       "          \"LONGITUDE\": -105.547816373,\n",
       "          \"OBJECTID\": 782,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation And Ecosystem Restoration - San Luis Valley, CO\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CO\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"200000\",\n",
       "          \"FUNDING_NUMERIC\": 200000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2272\",\n",
       "          \"LATITUDE\": 38.998550562,\n",
       "          \"LONGITUDE\": -105.547816373,\n",
       "          \"OBJECTID\": 783,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation And Ecosystem Restoration - San Luis Valley, CO\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CO\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"25000\",\n",
       "          \"FUNDING_NUMERIC\": 25000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2274\",\n",
       "          \"LATITUDE\": 38.998550562,\n",
       "          \"LONGITUDE\": -105.547816373,\n",
       "          \"OBJECTID\": 784,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation And Ecosystem Restoration - San Luis Valley, CO\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CO\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"50000\",\n",
       "          \"FUNDING_NUMERIC\": 50000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2275\",\n",
       "          \"LATITUDE\": 38.998550562,\n",
       "          \"LONGITUDE\": -105.547816373,\n",
       "          \"OBJECTID\": 785,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation And Ecosystem Restoration - San Luis Valley, CO\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CO\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"50000\",\n",
       "          \"FUNDING_NUMERIC\": 50000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2276\",\n",
       "          \"LATITUDE\": 38.998550562,\n",
       "          \"LONGITUDE\": -105.547816373,\n",
       "          \"OBJECTID\": 786,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation And Ecosystem Restoration - San Luis Valley, CO\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CO\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"100000\",\n",
       "          \"FUNDING_NUMERIC\": 100000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2277\",\n",
       "          \"LATITUDE\": 38.998550562,\n",
       "          \"LONGITUDE\": -105.547816373,\n",
       "          \"OBJECTID\": 787,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation And Ecosystem Restoration - San Luis Valley, CO\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CO\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"30000\",\n",
       "          \"FUNDING_NUMERIC\": 30000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2278\",\n",
       "          \"LATITUDE\": 38.998550562,\n",
       "          \"LONGITUDE\": -105.547816373,\n",
       "          \"OBJECTID\": 788,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation And Ecosystem Restoration - San Luis Valley, CO\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CO\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"20000\",\n",
       "          \"FUNDING_NUMERIC\": 20000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2279\",\n",
       "          \"LATITUDE\": 38.998550562,\n",
       "          \"LONGITUDE\": -105.547816373,\n",
       "          \"OBJECTID\": 789,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation And Ecosystem Restoration - San Luis Valley, CO\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CO\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"89800\",\n",
       "          \"FUNDING_NUMERIC\": 89800.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2281\",\n",
       "          \"LATITUDE\": 38.998550562,\n",
       "          \"LONGITUDE\": -105.547816373,\n",
       "          \"OBJECTID\": 790,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation And Ecosystem Restoration - North Park, CO\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CO\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"332500\",\n",
       "          \"FUNDING_NUMERIC\": 332500.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2280\",\n",
       "          \"LATITUDE\": 38.998550562,\n",
       "          \"LONGITUDE\": -105.547816373,\n",
       "          \"OBJECTID\": 791,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation And Ecosystem Restoration - North Park, CO\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"ID\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"160000\",\n",
       "          \"FUNDING_NUMERIC\": 160000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2284\",\n",
       "          \"LATITUDE\": 44.3889953940001,\n",
       "          \"LONGITUDE\": -114.659446938,\n",
       "          \"OBJECTID\": 792,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation And Ecosystem Restoration - Snake River Plain, ID\",\n",
       "          \"STATE_ABBR\": \"ID\",\n",
       "          \"STATE_NAME\": \"Idaho\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -114.659446938,\n",
       "              44.388995394\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CO\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"621500\",\n",
       "          \"FUNDING_NUMERIC\": 621500.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2282\",\n",
       "          \"LATITUDE\": 38.998550562,\n",
       "          \"LONGITUDE\": -105.547816373,\n",
       "          \"OBJECTID\": 793,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation And Ecosystem Restoration - North Park, CO\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CO\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"85000\",\n",
       "          \"FUNDING_NUMERIC\": 85000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2283\",\n",
       "          \"LATITUDE\": 38.998550562,\n",
       "          \"LONGITUDE\": -105.547816373,\n",
       "          \"OBJECTID\": 794,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation And Ecosystem Restoration - North Park, CO\",\n",
       "          \"STATE_ABBR\": \"CO\",\n",
       "          \"STATE_NAME\": \"Colorado\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -105.547816373,\n",
       "              38.998550562\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NM\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"4000000\",\n",
       "          \"FUNDING_NUMERIC\": 4000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2288\",\n",
       "          \"LATITUDE\": 34.4213265340001,\n",
       "          \"LONGITUDE\": -106.108403845,\n",
       "          \"OBJECTID\": 795,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation And Ecosystem Restoration - Lower Pecos Watershed Restoration, NM\",\n",
       "          \"STATE_ABBR\": \"NM\",\n",
       "          \"STATE_NAME\": \"New Mexico\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -106.108403845,\n",
       "              34.421326534\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"621000\",\n",
       "          \"FUNDING_NUMERIC\": 621000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2300\",\n",
       "          \"LATITUDE\": 47.4112518430001,\n",
       "          \"LONGITUDE\": -120.556263187,\n",
       "          \"OBJECTID\": 796,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Trap and transport of adult salmon and juvenile outmigration studies upstream of Chief Joseph and Grand Coulee Dams.\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"ID\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"575000\",\n",
       "          \"FUNDING_NUMERIC\": 575000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2301\",\n",
       "          \"LATITUDE\": 44.3889953940001,\n",
       "          \"LONGITUDE\": -114.659446938,\n",
       "          \"OBJECTID\": 797,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Phase 2 Feasibility Studies for Salmon Reintroduction: Evaluation of downstream movement and survival of juvenile Chinook salmon in the upper Columbia basin.\",\n",
       "          \"STATE_ABBR\": \"ID\",\n",
       "          \"STATE_NAME\": \"Idaho\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -114.659446938,\n",
       "              44.388995394\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MT\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2285\",\n",
       "          \"LATITUDE\": 47.0334993330001,\n",
       "          \"LONGITUDE\": -109.645067732,\n",
       "          \"OBJECTID\": 798,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation And Ecosystem Restoration - Blackfoot Clark Fork, MT\",\n",
       "          \"STATE_ABBR\": \"MT\",\n",
       "          \"STATE_NAME\": \"Montana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -109.645067732,\n",
       "              47.0334993330001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MT\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2286\",\n",
       "          \"LATITUDE\": 47.0334993330001,\n",
       "          \"LONGITUDE\": -109.645067732,\n",
       "          \"OBJECTID\": 799,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation And Ecosystem Restoration - Blackfoot Clark Fork, MT\",\n",
       "          \"STATE_ABBR\": \"MT\",\n",
       "          \"STATE_NAME\": \"Montana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -109.645067732,\n",
       "              47.0334993330001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"OR\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2700000\",\n",
       "          \"FUNDING_NUMERIC\": 2700000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2302\",\n",
       "          \"LATITUDE\": 43.9387802410001,\n",
       "          \"LONGITUDE\": -120.558560912,\n",
       "          \"OBJECTID\": 800,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"West Fork Canyon Creek Restoration Project\",\n",
       "          \"STATE_ABBR\": \"OR\",\n",
       "          \"STATE_NAME\": \"Oregon\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.558560912,\n",
       "              43.9387802410001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"WA\",\n",
       "          \"AGENCY_NAME\": \"Department of Commerce\",\n",
       "          \"BUREAU_NAME\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"3610000\",\n",
       "          \"FUNDING_NUMERIC\": 3610000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2303\",\n",
       "          \"LATITUDE\": 47.4112518430001,\n",
       "          \"LONGITUDE\": -120.556263187,\n",
       "          \"OBJECTID\": 801,\n",
       "          \"PROGRAM_NAME\": \"Investing in Coastal Communities and Climate Resilience\",\n",
       "          \"PROJECT_NAME\": \"Cabin and Johnson Creek Restoration Project\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"VA\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Indian Affairs\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"132914\",\n",
       "          \"FUNDING_NUMERIC\": 132914.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2741\",\n",
       "          \"LATITUDE\": 37.512820504,\n",
       "          \"LONGITUDE\": -78.697948713,\n",
       "          \"OBJECTID\": 802,\n",
       "          \"PROGRAM_NAME\": \"Tribal Climate Resilience: Fish Hatchery Operations and Maintenance\",\n",
       "          \"PROJECT_NAME\": \"Rappahannock Mobile Aquaculture Unit (MAU)\",\n",
       "          \"STATE_ABBR\": \"VA\",\n",
       "          \"STATE_NAME\": \"Virginia\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -78.697948713,\n",
       "              37.512820504\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MN\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Indian Affairs\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"2000000\",\n",
       "          \"FUNDING_NUMERIC\": 2000000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2742\",\n",
       "          \"LATITUDE\": 46.348855766,\n",
       "          \"LONGITUDE\": -94.200790583,\n",
       "          \"OBJECTID\": 803,\n",
       "          \"PROGRAM_NAME\": \"Tribal Climate Resilience: Fish Hatchery Operations and Maintenance\",\n",
       "          \"PROJECT_NAME\": \"Mille Lacs Construction of a Multiple-Species Fish Hatchery\",\n",
       "          \"STATE_ABBR\": \"MN\",\n",
       "          \"STATE_NAME\": \"Minnesota\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -94.2007905829999,\n",
       "              46.348855766\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"MT\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Land Management and National Park Service\",\n",
       "          \"CATEGORY\": \"Parks and Conservation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"500000\",\n",
       "          \"FUNDING_NUMERIC\": 500000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2287\",\n",
       "          \"LATITUDE\": 47.0334993330001,\n",
       "          \"LONGITUDE\": -109.645067732,\n",
       "          \"OBJECTID\": 804,\n",
       "          \"PROGRAM_NAME\": \"Conservation and Resilience\",\n",
       "          \"PROJECT_NAME\": \"Conservation And Ecosystem Restoration - Blackfoot Clark Fork, MT\",\n",
       "          \"STATE_ABBR\": \"MT\",\n",
       "          \"STATE_NAME\": \"Montana\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -109.645067732,\n",
       "              47.0334993330001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"WA\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Indian Affairs\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"147395\",\n",
       "          \"FUNDING_NUMERIC\": 147395.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2744\",\n",
       "          \"LATITUDE\": 47.4112518430001,\n",
       "          \"LONGITUDE\": -120.556263187,\n",
       "          \"OBJECTID\": 805,\n",
       "          \"PROGRAM_NAME\": \"Tribal Climate Resilience: Fish Hatchery Operations and Maintenance\",\n",
       "          \"PROJECT_NAME\": \"Squaxin Island Net Pen Storage Building\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"WA\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Indian Affairs\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"937684\",\n",
       "          \"FUNDING_NUMERIC\": 937684.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2745\",\n",
       "          \"LATITUDE\": 47.4112518430001,\n",
       "          \"LONGITUDE\": -120.556263187,\n",
       "          \"OBJECTID\": 806,\n",
       "          \"PROGRAM_NAME\": \"Tribal Climate Resilience: Fish Hatchery Operations and Maintenance\",\n",
       "          \"PROJECT_NAME\": \"Sauk-Suiattle Salmon Hatchery Building\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"ID\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Indian Affairs\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"204646\",\n",
       "          \"FUNDING_NUMERIC\": 204646.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2746\",\n",
       "          \"LATITUDE\": 44.3889953940001,\n",
       "          \"LONGITUDE\": -114.659446938,\n",
       "          \"OBJECTID\": 807,\n",
       "          \"PROGRAM_NAME\": \"Tribal Climate Resilience: Fish Hatchery Operations and Maintenance\",\n",
       "          \"PROJECT_NAME\": \"Nez Perce Coho Salmon Acclimation Tanks\",\n",
       "          \"STATE_ABBR\": \"ID\",\n",
       "          \"STATE_NAME\": \"Idaho\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -114.659446938,\n",
       "              44.388995394\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NY\",\n",
       "          \"AGENCY_NAME\": \"Environmental Protection Agency\",\n",
       "          \"BUREAU_NAME\": \"Office of Air and Radiation\",\n",
       "          \"CATEGORY\": \"Environmental Remediation\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"43000\",\n",
       "          \"FUNDING_NUMERIC\": 43000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2306\",\n",
       "          \"LATITUDE\": 40.71453,\n",
       "          \"LONGITUDE\": -74.00712,\n",
       "          \"OBJECTID\": 808,\n",
       "          \"PROGRAM_NAME\": \"Funding to Address Air Pollution: Clean Air Act Grants\",\n",
       "          \"PROJECT_NAME\": null,\n",
       "          \"STATE_ABBR\": \"NY\",\n",
       "          \"STATE_NAME\": \"New York\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Formula\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -74.00712,\n",
       "              40.71453\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"WA\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Indian Affairs\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"1290000\",\n",
       "          \"FUNDING_NUMERIC\": 1290000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2747\",\n",
       "          \"LATITUDE\": 47.4112518430001,\n",
       "          \"LONGITUDE\": -120.556263187,\n",
       "          \"OBJECTID\": 809,\n",
       "          \"PROGRAM_NAME\": \"Tribal Climate Resilience: Fish Hatchery Operations and Maintenance\",\n",
       "          \"PROJECT_NAME\": \"Tulalip Tribes Battle Creek Hatchery Design and Site Preparation\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"WA\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Indian Affairs\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"269988\",\n",
       "          \"FUNDING_NUMERIC\": 269988.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2748\",\n",
       "          \"LATITUDE\": 47.4112518430001,\n",
       "          \"LONGITUDE\": -120.556263187,\n",
       "          \"OBJECTID\": 810,\n",
       "          \"PROGRAM_NAME\": \"Tribal Climate Resilience: Fish Hatchery Operations and Maintenance\",\n",
       "          \"PROJECT_NAME\": \"Colville Water Improvement and Summer Steelhead Kelt Tank Construction\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"WA\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Indian Affairs\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"3150287\",\n",
       "          \"FUNDING_NUMERIC\": 3150287.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2749\",\n",
       "          \"LATITUDE\": 47.4112518430001,\n",
       "          \"LONGITUDE\": -120.556263187,\n",
       "          \"OBJECTID\": 811,\n",
       "          \"PROGRAM_NAME\": \"Tribal Climate Resilience: Fish Hatchery Operations and Maintenance\",\n",
       "          \"PROJECT_NAME\": \"Colville White Sturgeon Rearing Facility\",\n",
       "          \"STATE_ABBR\": \"WA\",\n",
       "          \"STATE_NAME\": \"Washington\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -120.556263187,\n",
       "              47.4112518430001\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"CA\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Indian Affairs\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"689298\",\n",
       "          \"FUNDING_NUMERIC\": 689298.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2750\",\n",
       "          \"LATITUDE\": 36.374105693,\n",
       "          \"LONGITUDE\": -119.27023,\n",
       "          \"OBJECTID\": 812,\n",
       "          \"PROGRAM_NAME\": \"Tribal Climate Resilience: Fish Hatchery Operations and Maintenance\",\n",
       "          \"PROJECT_NAME\": \"Hoopa Valley Hatchery Facility Refurbishment and Expansion\",\n",
       "          \"STATE_ABBR\": \"CA\",\n",
       "          \"STATE_NAME\": \"California\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -119.27023,\n",
       "              36.374105693\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"ADDRESS_GEOCODE\": \"NM\",\n",
       "          \"AGENCY_NAME\": \"Department of the Interior\",\n",
       "          \"BUREAU_NAME\": \"Bureau of Indian Affairs\",\n",
       "          \"CATEGORY\": \"Climate Resilience\",\n",
       "          \"CITY\": null,\n",
       "          \"COUNTY\": null,\n",
       "          \"FUNDING\": \"740000\",\n",
       "          \"FUNDING_NUMERIC\": 740000.0,\n",
       "          \"FUNDING_SOURCE\": \"IRA\",\n",
       "          \"ID\": \"S-2751\",\n",
       "          \"LATITUDE\": 34.4213265340001,\n",
       "          \"LONGITUDE\": -106.108403845,\n",
       "          \"OBJECTID\": 813,\n",
       "          \"PROGRAM_NAME\": \"Tribal Climate Resilience: Fish Hatchery Operations and Maintenance\",\n",
       "          \"PROJECT_NAME\": \"Mescalero Tank and Waterline Enhancement Project\",\n",
       "          \"STATE_ABBR\": \"NM\",\n",
       "          \"STATE_NAME\": \"New Mexico\",\n",
       "          \"SUBCATEGORY\": null,\n",
       "          \"TYPE\": \"Discretionary\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              -106.108403845,\n",
       "              34.421326534\n",
       "            ],\n",
       "            \"type\": \"Point\"\n",
       "          }\n",
       "        }\n",
       "      ],\n",
       "      \"elevationScale\": 0.01,\n",
       "      \"getElevation\": \"@@=FUNDING_NUMERIC\",\n",
       "      \"getFillColor\": [\n",
       "        256,\n",
       "        256,\n",
       "        0,\n",
       "        140\n",
       "      ],\n",
       "      \"getPosition\": \"@@=[LONGITUDE, LATITUDE]\",\n",
       "      \"id\": \"ad6ca901-f5aa-48c6-9b8c-e18962cdd13e\",\n",
       "      \"pickable\": true,\n",
       "      \"radius\": 10000\n",
       "    }\n",
       "  ],\n",
       "  \"mapProvider\": \"carto\",\n",
       "  \"mapStyle\": \"https://basemaps.cartocdn.com/gl/voyager-gl-style/style.json\",\n",
       "  \"views\": [\n",
       "    {\n",
       "      \"@@type\": \"MapView\",\n",
       "      \"controller\": true\n",
       "    }\n",
       "  ]\n",
       "}"
      ]
     },
     "execution_count": 34,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "import geopandas as gpd\n",
    "import pydeck as pdk\n",
    "\n",
    "DATA_URL = 'https://data.source.coop/cboettig/conservation-policy/Inflation_Reduction_Act_Projects.geojson'\n",
    "df = gpd.read_file(DATA_URL)\n",
    "\n",
    "column_layer = pdk.Layer(\n",
    "    \"ColumnLayer\",\n",
    "    data=df,\n",
    "    get_position=[\"LONGITUDE\", \"LATITUDE\"],\n",
    "    get_elevation=\"FUNDING_NUMERIC\",\n",
    "    get_fill_color = [256,256,0, 140],\n",
    "    elevation_scale=.01,\n",
    "    radius=10000,\n",
    "    pickable=True,\n",
    "    auto_highlight=True,\n",
    ")\n",
    "\n",
    "INITIAL_VIEW_STATE = pdk.ViewState(latitude=35, longitude=-100, zoom=4, max_zoom=16, pitch=45, bearing=0)\n",
    "\n",
    "r = pdk.Deck(\n",
    "    column_layer,\n",
    "    initial_view_state = INITIAL_VIEW_STATE,\n",
    "    map_style=pdk.map_styles.CARTO_ROAD,\n",
    ")\n",
    "r\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "id": "de77de53-7960-43cf-b3c5-9be2e5dfeb1f",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<div>\n",
       "<style scoped>\n",
       "    .dataframe tbody tr th:only-of-type {\n",
       "        vertical-align: middle;\n",
       "    }\n",
       "\n",
       "    .dataframe tbody tr th {\n",
       "        vertical-align: top;\n",
       "    }\n",
       "\n",
       "    .dataframe thead th {\n",
       "        text-align: right;\n",
       "    }\n",
       "</style>\n",
       "<table border=\"1\" class=\"dataframe\">\n",
       "  <thead>\n",
       "    <tr style=\"text-align: right;\">\n",
       "      <th></th>\n",
       "      <th>OBJECTID</th>\n",
       "      <th>AtlasCateg</th>\n",
       "      <th>ProjectID</th>\n",
       "      <th>ParentProg</th>\n",
       "      <th>ProgramNam</th>\n",
       "      <th>ProjectTit</th>\n",
       "      <th>ProjectDes</th>\n",
       "      <th>FundingAmo</th>\n",
       "      <th>SiteCount</th>\n",
       "      <th>AgencyName</th>\n",
       "      <th>Bureau</th>\n",
       "      <th>FYFunded</th>\n",
       "      <th>Status</th>\n",
       "      <th>Lat</th>\n",
       "      <th>Long</th>\n",
       "      <th>LatLongTyp</th>\n",
       "      <th>ProjectWeb</th>\n",
       "      <th>ImageLink</th>\n",
       "      <th>Notes</th>\n",
       "      <th>geometry</th>\n",
       "    </tr>\n",
       "  </thead>\n",
       "  <tbody>\n",
       "    <tr>\n",
       "      <th>0</th>\n",
       "      <td>451</td>\n",
       "      <td>America the Beautiful Challenge Grants</td>\n",
       "      <td>77922</td>\n",
       "      <td>Bipartisan Infrastructure Law</td>\n",
       "      <td>America the Beautiful Challenge Grants</td>\n",
       "      <td>Integrated Habitat Enhancement Initiative to B...</td>\n",
       "      <td>Enhance 100 acres of low-value habitat to redu...</td>\n",
       "      <td>1921647.0</td>\n",
       "      <td>None</td>\n",
       "      <td>Department of the Interior</td>\n",
       "      <td>U.S. Fish and Wildlife Service</td>\n",
       "      <td>2022</td>\n",
       "      <td>None</td>\n",
       "      <td>13.259034</td>\n",
       "      <td>144.704424</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>FundingAmmount = \"TotalAmmount\" field in soruc...</td>\n",
       "      <td>MULTIPOINT (144.70442 13.25903)</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>1</th>\n",
       "      <td>981</td>\n",
       "      <td>Resilience and Ecosystem Restoration</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>Grants For States And Tribes For Voluntary Res...</td>\n",
       "      <td>Guam's Integrated Habitat Enhancement Initiative</td>\n",
       "      <td>None</td>\n",
       "      <td>1726724.0</td>\n",
       "      <td>None</td>\n",
       "      <td>Department of the Interior</td>\n",
       "      <td>DOI Office of the Secretary</td>\n",
       "      <td>None</td>\n",
       "      <td>Announced</td>\n",
       "      <td>13.438381</td>\n",
       "      <td>144.745223</td>\n",
       "      <td>State</td>\n",
       "      <td>https://www.doi.gov/pressreleases/biden-harris...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>MULTIPOINT (144.74522 13.43838)</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>2</th>\n",
       "      <td>308</td>\n",
       "      <td>Resilience and Ecosystem Restoration</td>\n",
       "      <td>410XX06GU0122</td>\n",
       "      <td>Bipartisan Infrastructure Law</td>\n",
       "      <td>Ecosystem Restoration Program</td>\n",
       "      <td>Guam Coconut Rhinoceros Beetle Pesticide Tree ...</td>\n",
       "      <td>initiate a pesticide program servicing the isl...</td>\n",
       "      <td>167815.0</td>\n",
       "      <td>1</td>\n",
       "      <td>Department of the Interior</td>\n",
       "      <td>Office of Insular Affairs</td>\n",
       "      <td>2022</td>\n",
       "      <td>None</td>\n",
       "      <td>13.582404</td>\n",
       "      <td>144.769157</td>\n",
       "      <td>Micronesia region, Guam</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>MULTIPOINT (144.76916 13.58240)</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>3</th>\n",
       "      <td>1439</td>\n",
       "      <td>America the Beautiful Challenge Grants</td>\n",
       "      <td>81258</td>\n",
       "      <td>Bipartisan Infrastructure Law</td>\n",
       "      <td>America the Beautiful Challenge Grants</td>\n",
       "      <td>Eradicating Little Fire Ants within the propos...</td>\n",
       "      <td>Eradicate little fire ants within priority sit...</td>\n",
       "      <td>1006283.0</td>\n",
       "      <td>1</td>\n",
       "      <td>Department of Defense and the Department of th...</td>\n",
       "      <td>U.S. Fish and Wildlife Service</td>\n",
       "      <td>2023</td>\n",
       "      <td>Awarded-Pending</td>\n",
       "      <td>13.390067</td>\n",
       "      <td>144.716326</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>MULTIPOINT (144.71633 13.39007)</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>4</th>\n",
       "      <td>1388</td>\n",
       "      <td>America the Beautiful Challenge Grants</td>\n",
       "      <td>80881</td>\n",
       "      <td>Bipartisan Infrastructure Law</td>\n",
       "      <td>America the Beautiful Challenge Grants</td>\n",
       "      <td>Restoring Degraded Forests and Badlands on Guam</td>\n",
       "      <td>Re-establish connectivity of intact native hab...</td>\n",
       "      <td>1096740.0</td>\n",
       "      <td>1</td>\n",
       "      <td>Department of the Interior</td>\n",
       "      <td>U.S. Fish and Wildlife Service</td>\n",
       "      <td>2023</td>\n",
       "      <td>Awarded-Pending</td>\n",
       "      <td>13.401840</td>\n",
       "      <td>144.752712</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>MULTIPOINT (144.75271 13.40184)</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>...</th>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>1333</th>\n",
       "      <td>1431</td>\n",
       "      <td>America the Beautiful Challenge Grants</td>\n",
       "      <td>80929</td>\n",
       "      <td>Bipartisan Infrastructure Law</td>\n",
       "      <td>America the Beautiful Challenge Grants</td>\n",
       "      <td>Leveraging Public-Private Partnerships to Conn...</td>\n",
       "      <td>Create the first conservation corridor that sp...</td>\n",
       "      <td>2109596.0</td>\n",
       "      <td>1</td>\n",
       "      <td>Department of the Interior and Department of C...</td>\n",
       "      <td>U.S. Fish and Wildlife Service and the Nationa...</td>\n",
       "      <td>2023</td>\n",
       "      <td>Awarded-Pending</td>\n",
       "      <td>17.732785</td>\n",
       "      <td>-64.768462</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>MULTIPOINT (-64.76846 17.73278)</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>1334</th>\n",
       "      <td>313</td>\n",
       "      <td>Resilience and Ecosystem Restoration</td>\n",
       "      <td>410XX07VI0622</td>\n",
       "      <td>Bipartisan Infrastructure Law</td>\n",
       "      <td>Ecosystem Restoration Program</td>\n",
       "      <td>Sandy Point NWR Facility Updates</td>\n",
       "      <td>1. Construction of a Recreational Pavilion\\n2....</td>\n",
       "      <td>250095.0</td>\n",
       "      <td>1</td>\n",
       "      <td>Department of the Interior</td>\n",
       "      <td>Office of Insular Affairs</td>\n",
       "      <td>2022</td>\n",
       "      <td>None</td>\n",
       "      <td>17.737804</td>\n",
       "      <td>-64.836004</td>\n",
       "      <td>St. Croix, U.S. Virgin Islands</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>MULTIPOINT (-64.83600 17.73780)</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>1335</th>\n",
       "      <td>422</td>\n",
       "      <td>America the Beautiful Challenge Grants</td>\n",
       "      <td>77137</td>\n",
       "      <td>Bipartisan Infrastructure Law</td>\n",
       "      <td>America the Beautiful Challenge Grants</td>\n",
       "      <td>Swains Island Tropical Ecosystem Restoration a...</td>\n",
       "      <td>Engage community stakeholders and collaborate ...</td>\n",
       "      <td>864262.0</td>\n",
       "      <td>None</td>\n",
       "      <td>Department of the Interior</td>\n",
       "      <td>U.S. Fish and Wildlife Service</td>\n",
       "      <td>2022</td>\n",
       "      <td>None</td>\n",
       "      <td>-11.055876</td>\n",
       "      <td>-171.078438</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>FundingAmmount = \"TotalAmmount\" field in soruc...</td>\n",
       "      <td>MULTIPOINT (-171.07844 -11.05588)</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>1336</th>\n",
       "      <td>1155</td>\n",
       "      <td>Resilience and Ecosystem Restoration</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>Grants For States And Tribes For Voluntary Res...</td>\n",
       "      <td>Swains Island (AS) Tropical Ecosystem Restorat...</td>\n",
       "      <td>None</td>\n",
       "      <td>864262.0</td>\n",
       "      <td>None</td>\n",
       "      <td>Department of the Interior</td>\n",
       "      <td>DOI Office of the Secretary</td>\n",
       "      <td>None</td>\n",
       "      <td>Announced</td>\n",
       "      <td>-14.271000</td>\n",
       "      <td>-170.132000</td>\n",
       "      <td>State</td>\n",
       "      <td>https://www.doi.gov/pressreleases/biden-harris...</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>MULTIPOINT (-170.13200 -14.27100)</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>1337</th>\n",
       "      <td>315</td>\n",
       "      <td>Resilience and Ecosystem Restoration</td>\n",
       "      <td>410XX09AS0722</td>\n",
       "      <td>Bipartisan Infrastructure Law</td>\n",
       "      <td>Ecosystem Restoration Program</td>\n",
       "      <td>Toetu Auomanu Jemima Nafatali Loia Tagoa'I (GI...</td>\n",
       "      <td>Cleanup the second largest wetland ecosystem i...</td>\n",
       "      <td>389025.0</td>\n",
       "      <td>1</td>\n",
       "      <td>Department of the Interior</td>\n",
       "      <td>Office of Insular Affairs</td>\n",
       "      <td>2022</td>\n",
       "      <td>None</td>\n",
       "      <td>-14.330134</td>\n",
       "      <td>-170.780049</td>\n",
       "      <td>Leone village, American Samoa</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>None</td>\n",
       "      <td>MULTIPOINT (-170.78005 -14.33013)</td>\n",
       "    </tr>\n",
       "  </tbody>\n",
       "</table>\n",
       "<p>1338 rows × 20 columns</p>\n",
       "</div>"
      ],
      "text/plain": [
       "      OBJECTID                              AtlasCateg      ProjectID  \\\n",
       "0          451  America the Beautiful Challenge Grants          77922   \n",
       "1          981    Resilience and Ecosystem Restoration           None   \n",
       "2          308    Resilience and Ecosystem Restoration  410XX06GU0122   \n",
       "3         1439  America the Beautiful Challenge Grants          81258   \n",
       "4         1388  America the Beautiful Challenge Grants          80881   \n",
       "...        ...                                     ...            ...   \n",
       "1333      1431  America the Beautiful Challenge Grants          80929   \n",
       "1334       313    Resilience and Ecosystem Restoration  410XX07VI0622   \n",
       "1335       422  America the Beautiful Challenge Grants          77137   \n",
       "1336      1155    Resilience and Ecosystem Restoration           None   \n",
       "1337       315    Resilience and Ecosystem Restoration  410XX09AS0722   \n",
       "\n",
       "                         ParentProg  \\\n",
       "0     Bipartisan Infrastructure Law   \n",
       "1                              None   \n",
       "2     Bipartisan Infrastructure Law   \n",
       "3     Bipartisan Infrastructure Law   \n",
       "4     Bipartisan Infrastructure Law   \n",
       "...                             ...   \n",
       "1333  Bipartisan Infrastructure Law   \n",
       "1334  Bipartisan Infrastructure Law   \n",
       "1335  Bipartisan Infrastructure Law   \n",
       "1336                           None   \n",
       "1337  Bipartisan Infrastructure Law   \n",
       "\n",
       "                                             ProgramNam  \\\n",
       "0                America the Beautiful Challenge Grants   \n",
       "1     Grants For States And Tribes For Voluntary Res...   \n",
       "2                         Ecosystem Restoration Program   \n",
       "3                America the Beautiful Challenge Grants   \n",
       "4                America the Beautiful Challenge Grants   \n",
       "...                                                 ...   \n",
       "1333             America the Beautiful Challenge Grants   \n",
       "1334                      Ecosystem Restoration Program   \n",
       "1335             America the Beautiful Challenge Grants   \n",
       "1336  Grants For States And Tribes For Voluntary Res...   \n",
       "1337                      Ecosystem Restoration Program   \n",
       "\n",
       "                                             ProjectTit  \\\n",
       "0     Integrated Habitat Enhancement Initiative to B...   \n",
       "1      Guam's Integrated Habitat Enhancement Initiative   \n",
       "2     Guam Coconut Rhinoceros Beetle Pesticide Tree ...   \n",
       "3     Eradicating Little Fire Ants within the propos...   \n",
       "4       Restoring Degraded Forests and Badlands on Guam   \n",
       "...                                                 ...   \n",
       "1333  Leveraging Public-Private Partnerships to Conn...   \n",
       "1334                   Sandy Point NWR Facility Updates   \n",
       "1335  Swains Island Tropical Ecosystem Restoration a...   \n",
       "1336  Swains Island (AS) Tropical Ecosystem Restorat...   \n",
       "1337  Toetu Auomanu Jemima Nafatali Loia Tagoa'I (GI...   \n",
       "\n",
       "                                             ProjectDes  FundingAmo SiteCount  \\\n",
       "0     Enhance 100 acres of low-value habitat to redu...   1921647.0      None   \n",
       "1                                                  None   1726724.0      None   \n",
       "2     initiate a pesticide program servicing the isl...    167815.0         1   \n",
       "3     Eradicate little fire ants within priority sit...   1006283.0         1   \n",
       "4     Re-establish connectivity of intact native hab...   1096740.0         1   \n",
       "...                                                 ...         ...       ...   \n",
       "1333  Create the first conservation corridor that sp...   2109596.0         1   \n",
       "1334  1. Construction of a Recreational Pavilion\\n2....    250095.0         1   \n",
       "1335  Engage community stakeholders and collaborate ...    864262.0      None   \n",
       "1336                                               None    864262.0      None   \n",
       "1337  Cleanup the second largest wetland ecosystem i...    389025.0         1   \n",
       "\n",
       "                                             AgencyName  \\\n",
       "0                            Department of the Interior   \n",
       "1                            Department of the Interior   \n",
       "2                            Department of the Interior   \n",
       "3     Department of Defense and the Department of th...   \n",
       "4                            Department of the Interior   \n",
       "...                                                 ...   \n",
       "1333  Department of the Interior and Department of C...   \n",
       "1334                         Department of the Interior   \n",
       "1335                         Department of the Interior   \n",
       "1336                         Department of the Interior   \n",
       "1337                         Department of the Interior   \n",
       "\n",
       "                                                 Bureau FYFunded  \\\n",
       "0                        U.S. Fish and Wildlife Service     2022   \n",
       "1                           DOI Office of the Secretary     None   \n",
       "2                             Office of Insular Affairs     2022   \n",
       "3                        U.S. Fish and Wildlife Service     2023   \n",
       "4                        U.S. Fish and Wildlife Service     2023   \n",
       "...                                                 ...      ...   \n",
       "1333  U.S. Fish and Wildlife Service and the Nationa...     2023   \n",
       "1334                          Office of Insular Affairs     2022   \n",
       "1335                     U.S. Fish and Wildlife Service     2022   \n",
       "1336                        DOI Office of the Secretary     None   \n",
       "1337                          Office of Insular Affairs     2022   \n",
       "\n",
       "               Status        Lat        Long                      LatLongTyp  \\\n",
       "0                None  13.259034  144.704424                            None   \n",
       "1           Announced  13.438381  144.745223                           State   \n",
       "2                None  13.582404  144.769157         Micronesia region, Guam   \n",
       "3     Awarded-Pending  13.390067  144.716326                            None   \n",
       "4     Awarded-Pending  13.401840  144.752712                            None   \n",
       "...               ...        ...         ...                             ...   \n",
       "1333  Awarded-Pending  17.732785  -64.768462                            None   \n",
       "1334             None  17.737804  -64.836004  St. Croix, U.S. Virgin Islands   \n",
       "1335             None -11.055876 -171.078438                            None   \n",
       "1336        Announced -14.271000 -170.132000                           State   \n",
       "1337             None -14.330134 -170.780049   Leone village, American Samoa   \n",
       "\n",
       "                                             ProjectWeb ImageLink  \\\n",
       "0                                                  None      None   \n",
       "1     https://www.doi.gov/pressreleases/biden-harris...      None   \n",
       "2                                                  None      None   \n",
       "3                                                  None      None   \n",
       "4                                                  None      None   \n",
       "...                                                 ...       ...   \n",
       "1333                                               None      None   \n",
       "1334                                               None      None   \n",
       "1335                                               None      None   \n",
       "1336  https://www.doi.gov/pressreleases/biden-harris...      None   \n",
       "1337                                               None      None   \n",
       "\n",
       "                                                  Notes  \\\n",
       "0     FundingAmmount = \"TotalAmmount\" field in soruc...   \n",
       "1                                                  None   \n",
       "2                                                  None   \n",
       "3                                                  None   \n",
       "4                                                  None   \n",
       "...                                                 ...   \n",
       "1333                                               None   \n",
       "1334                                               None   \n",
       "1335  FundingAmmount = \"TotalAmmount\" field in soruc...   \n",
       "1336                                               None   \n",
       "1337                                               None   \n",
       "\n",
       "                               geometry  \n",
       "0       MULTIPOINT (144.70442 13.25903)  \n",
       "1       MULTIPOINT (144.74522 13.43838)  \n",
       "2       MULTIPOINT (144.76916 13.58240)  \n",
       "3       MULTIPOINT (144.71633 13.39007)  \n",
       "4       MULTIPOINT (144.75271 13.40184)  \n",
       "...                                 ...  \n",
       "1333    MULTIPOINT (-64.76846 17.73278)  \n",
       "1334    MULTIPOINT (-64.83600 17.73780)  \n",
       "1335  MULTIPOINT (-171.07844 -11.05588)  \n",
       "1336  MULTIPOINT (-170.13200 -14.27100)  \n",
       "1337  MULTIPOINT (-170.78005 -14.33013)  \n",
       "\n",
       "[1338 rows x 20 columns]"
      ]
     },
     "execution_count": 3,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "BIL=\"https://data.source.coop/cboettig/conservation-policy/bipartisan-infrastructure-law-restoration-projects.geojson\"\n",
    "df = gpd.read_file(BIL)\n",
    "df"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "id": "885f8b99-a692-4796-a243-22e26124f2d8",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "\n",
       "        <iframe\n",
       "            width=\"100%\"\n",
       "            height=500\n",
       "            frameborder=\"0\"\n",
       "            srcdoc=\"&lt;!DOCTYPE html&gt;\n",
       "&lt;html&gt;\n",
       "  &lt;head&gt;\n",
       "    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\n",
       "    &lt;title&gt;pydeck&lt;/title&gt;\n",
       "        &lt;script src=&quot;https://api.tiles.mapbox.com/mapbox-gl-js/v1.13.0/mapbox-gl.js&quot;&gt;&lt;/script&gt;\n",
       "        &lt;link rel=&quot;stylesheet&quot; href=&quot;https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css&quot; /&gt;\n",
       "    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css&quot; /&gt;\n",
       "    &lt;script src=&#x27;https://cdn.jsdelivr.net/npm/@deck.gl/jupyter-widget@~9.0.*/dist/index.js&#x27;&gt;&lt;/script&gt;\n",
       "    &lt;style&gt;\n",
       "    body {\n",
       "  margin: 0;\n",
       "  padding: 0;\n",
       "  overflow: hidden;\n",
       "}\n",
       "\n",
       "#deck-container {\n",
       "  width: 100vw;\n",
       "  height: 100vh;\n",
       "}\n",
       "\n",
       "#deck-container canvas {\n",
       "  z-index: 1;\n",
       "  background: none;\n",
       "}\n",
       "    &lt;/style&gt;\n",
       "  &lt;/head&gt;\n",
       "  &lt;body&gt;\n",
       "    &lt;div id=&quot;deck-container&quot;&gt;\n",
       "    &lt;/div&gt;\n",
       "  &lt;/body&gt;\n",
       "  &lt;script&gt;\n",
       "    const container = document.getElementById(&#x27;deck-container&#x27;);\n",
       "    const jsonInput = {\n",
       "  &quot;initialViewState&quot;: {\n",
       "    &quot;bearing&quot;: 0,\n",
       "    &quot;latitude&quot;: 35,\n",
       "    &quot;longitude&quot;: -100,\n",
       "    &quot;maxZoom&quot;: 16,\n",
       "    &quot;pitch&quot;: 45,\n",
       "    &quot;zoom&quot;: 4\n",
       "  },\n",
       "  &quot;layers&quot;: [\n",
       "    {\n",
       "      &quot;@@type&quot;: &quot;ColumnLayer&quot;,\n",
       "      &quot;autoHighlight&quot;: true,\n",
       "      &quot;data&quot;: [\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1921647.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 13.25903352,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: 144.7044242,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 451,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Enhance 100 acres of low-value habitat to reduce hazardous wildfire fuel loads, thin acacia nurse trees, underplant native vegetation, and continue a community-backed restoration and resilience project in the village of Malesso, Guam. The project will im&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77922&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Integrated Habitat Enhancement Initiative to Benefit Native Species and Local Communities (GU)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                144.704424200199,\n",
       "                13.2590335202125\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1726724.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 13.4383809,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: 144.7452232,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 981,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Guam&#x27;s Integrated Habitat Enhancement Initiative&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                144.745223200155,\n",
       "                13.4383808999625\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Office of Insular Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 167815.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 13.58240386,\n",
       "          &quot;LatLongTyp&quot;: &quot;Micronesia region, Guam&quot;,\n",
       "          &quot;Long&quot;: 144.7691572,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 308,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;initiate a pesticide program servicing the island\\u2019s ports of entry to mitigate the risk of coconut rhinoceros beetle (CRB) spreading through the Micronesia region&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;410XX06GU0122&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Guam Coconut Rhinoceros Beetle Pesticide Tree Injection Program&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                144.769157200221,\n",
       "                13.5824038601938\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Defense and the Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 1006283.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 13.39006738,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: 144.71632639,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1439,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Eradicate little fire ants within priority sites on Guam where treatment will support military mission, protect at-risk species, address community concerns, and protect local industry, including subsistence and small scale agriculture. Project will apply&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;81258&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Eradicating Little Fire Ants within the proposed Guahan Sentinel Landscape in Guam&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                144.716326393522,\n",
       "                13.3900673801393\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 1096740.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 13.40183988,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: 144.752712,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1388,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Re-establish connectivity of intact native habitats previously degraded by anthropogenic disturbance including fires, clearing, and off roading allowing establishment of non native plants. Project will rely on thorough delineation, mapping, and plant ide&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80881&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoring Degraded Forests and Badlands on Guam&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                144.752711999233,\n",
       "                13.4018398830745\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 750000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 13.36053531,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: 144.71075455,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1435,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Collaborate with partners to utilize existing trapping technology, veterinary management techniques, and other eradication methods to remove invasive and feral species from forested ecosystems and nearby communities. Project will improve the success of o&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;81065&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Improving Ecosystem and Community Health and Food Security through Invasive Species Removal in Guam&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                144.710754545361,\n",
       "                13.3605353128814\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 587648.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 15.01421915,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: 145.63102837,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1438,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Develop Indigenous methodologies and capacity to effectively navigate the threats to biodiversity and advance restoration efforts in the Mariana Islands. Project will inform the development of a field school, internship program, and graduate fellowship r&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;81218&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Developing Conservation Professionals Grounded in Indigenous Knowledge (GU; MP)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;3&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                145.631028365067,\n",
       "                15.0142191516882\n",
       "              ],\n",
       "              [\n",
       "                144.809036477142,\n",
       "                13.4404568186108\n",
       "              ],\n",
       "              [\n",
       "                145.213360187925,\n",
       "                14.1569776662807\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Office of Insular Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 130623.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 15.4979918,\n",
       "          &quot;LatLongTyp&quot;: &quot;Northern Mariana Islands&quot;,\n",
       "          &quot;Long&quot;: 145.6097353,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 310,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;continue the eradication of the mucuna pruriens in the Northern Mariana Islands&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;410XX06MH0322&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;CNMI Mucuna Pruriens Eradication Project \\u2013 Year 2&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                145.609735299647,\n",
       "                15.4979918003337\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 245015.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 28.6306572,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -81.9322586,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 905,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Collaborative Planning to Refine Conservation Land Acquisition Project Boundaries for Florida Forever&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -81.9322586000466,\n",
       "                28.6306571997579\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 28.55196574,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -81.68441996,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 728,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The 16-acre Tower Chemical Co.\\u00a0Superfund\\u00a0site is located about 5-miles east of Clermont, Florida. From 1957 to 1980, Tower Chemical Company operated a manufacturing facility on site. The facility\\u2019s waste disposal practices left contamination on site.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;TOWER CHEMICAL CO.&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -81.6844199600799,\n",
       "                28.5519657402804\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 600000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 30.56094,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -84.84485,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Private landowner, Golden Triangle Resource Conservation &amp; Development Council, Panama City PFW, Florida Fish and Wildlife Conservation Commission, Florida Forestry Service, St. Johns River Water Management District&quot;,\n",
       "          &quot;OBJECTID&quot;: 1238,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will remove an earthen dam located on private lands which are tributaries to the Apalachicola River that has five federally listed mussels and Gulf sturgeon, and weir dam on the Myakka River to benefit Florida manatee, and barrier on the Eco&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{4992bd55-bd45-40c1-841a-b931c7f57e5e}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Dam Removal and Stream Restoration in Florida&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/dam-removal-and-stream-restoration-florida&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;3&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -84.8448499997154,\n",
       "                30.5609399997239\n",
       "              ],\n",
       "              [\n",
       "                -82.3545199997802,\n",
       "                27.18684999992\n",
       "              ],\n",
       "              [\n",
       "                -81.1683000003982,\n",
       "                28.7182999997942\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1089422.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 29.91958757,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -89.86269764,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 431,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Complete the design phase for the Central Wetlands Restoration Project to alleviate impoundment and increase freshwater and sediment input, allow for planting of native vegetation, and identify opportunities for partner restoration activities on nearly 1&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77485&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Designing Central Wetlands Hydrologic and Habitat Restoration (LA)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -89.8626976400475,\n",
       "                29.9195875697762\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Department-Wide Programs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 29.81,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -90.133,\n",
       "          &quot;Notes&quot;: &quot;This project&#x27;s exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 10 wells&quot;,\n",
       "          &quot;OBJECTID&quot;: 1327,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Orphaned Well Site Plugging, Remediation, And Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 029||Jean Lafitte Na]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Jean Lafitte National Historic Park&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.1330000002684,\n",
       "                29.8100000001297\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;&lt;Null&gt;&quot;,\n",
       "          &quot;FundingAmo&quot;: 5000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 29.8832053518637,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: 29.8832053518637,\n",
       "          &quot;Notes&quot;: &quot;$5 million for Planning Grants awarded over multiple years&quot;,\n",
       "          &quot;OBJECTID&quot;: 1247,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Community Relocation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Community Driven Relocation Demonstration Project - Chitimacha Tribe of Louisiana&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -91.5248059993429,\n",
       "                29.8832053518637\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Forest Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 250000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 30.37638809,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -82.46498266,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1423,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Complete 500 acres of mechanical forest understory fuels reduction and soil stabilization along 4 miles of road as part of the U.S. Forest Service\\u2019s Osceola National Forest Watershed Restoration Action Plan. Project will restore forest health and hydro&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80685&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Osceola National Forest Watershed Restoration (FL)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -82.4649826556222,\n",
       "                30.376388089853\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 31.5265,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -84.137,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 644,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Flow at Radium Springs is not consistent and is highly dependent on water levels in the Floridan Aquifer. This is based on rainfall and pumping in the surrounding spring shed, which includes agricultural, municipal, and industrial wells. At the peak reco&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Radium Springs Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -84.1370000002366,\n",
       "                31.5265000001659\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 31.3442,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -84.0358,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 677,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Frequent flooding within the Whitewater Creek watershed in Macon County, Georgia, has resulted in severe bank erosion, loss of prime farmland and damage to county roads and infrastructure.  The Whitewater Creek Watershed Plan will identify measures that&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Whitewater Creek Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -84.0357999999517,\n",
       "                31.3441999999943\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 31.2469,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -84.2445,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 530,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Frequent flooding and channel obstructions within the Big Slough watershed in Mitchell County, Georgia, has resulted in severe bank erosion, loss of prime farmland and damage to county roads and infrastructure.  The Big Slough Watershed Plan will identif&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Big Slough Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -84.2444999996952,\n",
       "                31.2468999999681\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 31.5478,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -84.7209,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 556,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Water demand from industry and agricultural irrigation puts stress on Floridan Aquifer and surface water levels, particularly in drought years, threatening the watershed, agricultural water supply, and aquatic and wildlife habitat in the Ichawaynochaway&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Claiborne Aquifer Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -84.7208999995702,\n",
       "                31.5478000002197\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 30.40421242,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -87.2361514,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 729,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The 18-acre American Creosote Works Inc. (Pensacola Plant)\\u00a0Superfund\\u00a0site is located on 701 J Street in Pensacola, Florida. It includes the area where a wood-treating facility operated from 1902 to 1981.\\u00a0 Several businesses are located north of the si&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;AMERICAN CREOSOTE WORKS, INC. (PENSACOLA PLANT)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -87.236151399884,\n",
       "                30.404212420245\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 30.45513276,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -87.23382522,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 730,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Escambia Wood (Pensacola)\\u00a0Superfund\\u00a0site is located at 3910 North Palafox Street in Pensacola, Florida. The Site is located in a mixed industrial and residential area, bordered on the north by former residential neighborhoods, on the west by Palafo&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;ESCAMBIA WOOD - PENSACOLA&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -87.2338252196422,\n",
       "                30.4551327600591\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 30.36910383,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -88.4955662,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 764,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Mississippi Phosphates Corporation (MPC) manufactured Diammonium Phosphate (DAP) fertilizer at its Pascagoula facility from the late 1950\\u2019s thru December 2014 when it declared bankruptcy.\\u00a0 Pursuant to a July 2015 bankruptcy settlement, two trusts&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;MISSISSIPPI PHOSPHATES CORPORATION&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -88.4955661995829,\n",
       "                30.3691038303865\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Department-Wide Programs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 30.44,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -91.646,\n",
       "          &quot;Notes&quot;: &quot;This project&#x27;s exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 9 wells&quot;,\n",
       "          &quot;OBJECTID&quot;: 1276,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Orphaned Well Site Plugging, Remediation, And Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 014||Atchafalaya Nat]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Atchafalaya National Wildlife Refuge&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -91.6459999996375,\n",
       "                30.439999999618\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 30.5244,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -91.19587,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 528,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bFunds would be used to perform a feasibility report for a watershed project that would stabilize a ravine which is a subset of the Bayou Baton Rouge. This major drainage outfall for the watershed is a 45-feet deep ravine situated in the central Southe&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Bayou Baton Rouge&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -91.1958699995547,\n",
       "                30.5243999998069\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 31.40179,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -89.3464,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 571,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The underserved community of Rawls Springs in Forrest County is constantly impacted by flooding after heavy rains, impacting the well being of residents and businesses. Funds will be used to explore options that would alleviate drainage issues and elimin&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Forest County&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -89.346399999891,\n",
       "                31.4017900001459\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 31.00411,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -87.53271,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 640,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Reaffirming Feasibility of the Supplemental Watershed and Environmental Assessment for Pine Barren Creek Watershed. Funds will be used for planning, design and construction.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Pine Barren Creek Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -87.5327100004017,\n",
       "                31.0041099998074\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 5515463.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.24108844,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -90.39872905,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 423,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Improve resilience of 90,000 acres of fire-dependent habitats including piney woods, blackland prairie, and loess bluffs ecosystems through restoration, habitat management, invasive plant species control, revegetation, cost-sharing, outreach and training&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77148&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Enhancing Fire-Dependent Plant Communities in the East Gulf Coastal Plain Habitats (AL, LA, MS)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.3987290499541,\n",
       "                32.2410884398892\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.29277662,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -90.14331921,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 763,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The 6-acre Sonford Products\\u00a0Superfund\\u00a0Site is in Flowood, Mississippi. It is bordered by railroad tracks to the west, a residential area further west, and wooded areas on the north, south, and east.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;SONFORD PRODUCTS&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.1433192102451,\n",
       "                32.2927766202012\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.61788235,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -90.0168814,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 762,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Southeastern Wood Preserving\\u00a0Superfund\\u00a0site is located in Canton, Mississippi. Several wood-treating companies conducted wood-treating operations from 1928 and 1979. The companies used coal tar, creosote and pentachlorophenol as wood preservatives.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;SOUTHEASTERN WOOD PRESERVING&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.0168813995823,\n",
       "                32.617882349653\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.51,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -90.048,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 594,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;BIL WFPO funds will be used to implement construction plans for flood mitigation and address streambank erosion. High stream velocities contribute to streambank erosion, which causes downstream impediments such as sediment and debris deposition and ultim&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Madison County - Upper Bear Creek Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.0480000004249,\n",
       "                32.5099999997696\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.6,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -90.048,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 595,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist with flooding and streambank erosion.  High stream velocities contribute to streambank erosion, which causes downstream im&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Madison County Upper Bear Creek&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.0480000004249,\n",
       "                32.6000000002564\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.627469,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -90.399636,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 460,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Bentonia Creek Watershed, Structure No. 7 is a floodwater retarding structure dam. The site was originally designed to accumulate and store 215 ac-ft. of sediment. The dam is 1971 feet long and 23 feet tall earthen embankment with a drainage area of&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Bentonia Creek WS STR No. 7&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.3996359998447,\n",
       "                32.6274690000203\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.4122,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -90.1985,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 578,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Hinds County is currently having major drainage problems throughout the County (including within municipalities). Storm events occurring in Hinds County have caused tributaries to flood surrounding areas resulting in flood waters entering residences and&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Hinds County&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.1984999998465,\n",
       "                32.4121999998046\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.96643,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -90.328764,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 473,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Eden Creek, Structure No. Y-37D-10 site was originally designed to accumulate and store 54 ac-ft. of sediment. The dam is 550 feet long and 47 feet tall earthen embankment with a drainage area of approximately 0.4937 square miles. The principal spill&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Eden Creek WS STR Y-37D-10&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.3287640003074,\n",
       "                32.9664299999574\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.78,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -90.048,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 579,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist with flooding along Gourdvine Creek and Black Creek.  \\u200bHistoric flooding impacts have been to both agricultural land and&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Holmes County&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.0480000004249,\n",
       "                32.7800000002972\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.3899,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -88.717,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 542,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist with flooding along the Lower Tillatoba Creek.  \\u200bThe city of Charleston has severe streambank erosion issues that has be&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;City of Charleston&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -88.7169999999385,\n",
       "                32.3898999998756\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.3899,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -88.717,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 588,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist with flooding, recreation, irrigation, and habitat enhancements.  The Long Creek Dam is currently breached, which has redu&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Long Creek Reservoir&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -88.7169999999385,\n",
       "                32.3898999998756\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.3858,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -83.9825,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 529,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Frequent flooding within the Beaver Creek watershed in Macon County, Georgia, has resulted in severe bank erosion, loss of prime farmland and damage to county roads and infrastructure.  The Beaver Creek watershed plan will identify measures that will pro&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Beaver Creek Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -83.9824999995859,\n",
       "                32.3857999997719\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1046017.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.35148172,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -84.45369666,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 437,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Prescribe burn 20,000 acres of private land and 5,000 acres of public land, identify historically underserved communities to assist with prescribed burning and wildfire mitigation, complete at least 10 stewardship management plans per year, and support a&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77565&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Habitat Management, Wildfire Mitigation, and Engaging Communities in the Georgia Sentinel Landscape&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -84.4536966599929,\n",
       "                32.3514817197629\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 523009.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.6490936,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -83.4459686,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1161,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;The Georgia Sentinel Landscape Futures Initiative&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -83.4459685999686,\n",
       "                32.6490935999625\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.3892,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -80.6975,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 611,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;BIL WFPO funds will be used to conduct a feasility report on water quality management that would create a regional stormwater BMP plan for stormwater treatment detention while enhancing recreational opportunites and providing eductional components to the&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Battery Creek Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.6975000000881,\n",
       "                32.3892000002849\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.0255,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -76.6988,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 606,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Neuse River Basin (Town of Oriental) - The proposed project would repair a seawall (Hodges St. Bulkhead), road, connection between watershed from town (Duck Pond) and Neuse River, alleviate recurring flooding, alleviate recurring access issues, and repai&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Neuse River Basin&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -76.6988000004031,\n",
       "                35.0255000000506\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 7145464.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.29621968,\n",
       "          &quot;LatLongTyp&quot;: &quot;Cape Fear, NC&quot;,\n",
       "          &quot;Long&quot;: -77.97149131,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 709,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;American Rivers will restore priority habitat in the Cape Fear watershed for several migratory fish species, including American shad, river herring, striped bass, Atlantic sturgeon, and American eel. Three dams upstream of a series of U.S. Army Corps of&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_027&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Restore habitat in the Cape Fear watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.9714913098082,\n",
       "                34.296219680102\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.401,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -79.383,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 597,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bBIL WFPO funds will be used to plan, design, and construct a system to reduce and/or prevent localized flooding within the watershed near Dillon, South Carolina.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Maple Swamp Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -79.3829999996188,\n",
       "                34.4009999999834\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.57322,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -78.97364,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 527,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Back and Jacob Swamp Watersheds (Robeson County Drainage District 1) - The project would help restore crucial drainage by replacing failing culverts, clearing and repairing ditch banks, restoring travel ways, and removing sediment. The project falls with&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Back and Jacob Swamp Watersheds&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -78.9736400000781,\n",
       "                34.5732200003161\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.65072,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -79.0114,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 600,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Meadow Branch Channel Watershed (Robeson County Drainage District 4) - The project would help restore crucial drainage by replacing failing culverts, clearing and repairing ditch banks, restoring travel ways, and removing sediment. The project falls with&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Meadow Branch Channel Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -79.0114000003265,\n",
       "                34.6507199997566\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.6674,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -79.1528,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 604,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Moss Neck Channel Watershed (Robeson County Drainage District 2) - The project would help restore crucial drainage by replacing failing culverts, clearing and repairing ditch banks, restoring travel ways, and removing sediment. The project falls within t&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Moss Neck Channel Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -79.1528000003429,\n",
       "                34.6673999997216\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 1691922.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.66609881,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -77.80598301,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1408,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Establish Atlantic white cedar forest and adapted peatland plant species, including bald cypress and button bush, and accomplish hydrologic restoration in a pocosin-peatland environment at Angola Bay Game Land. Project will impact 1,383 acres of recently&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;81233&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Establishing Peatland Atlantic White Cedar Forest on Game Lands in North Carolina&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.8059830078144,\n",
       "                34.6660988057773\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.74134318,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -77.36625609,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 767,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The ABC One-Hour Cleaners Superfund Site (the Site) is located at 2127 Lejeune Boulevard in Jacksonville, Onslow County, North Carolina within the County\\u2019s commercial retail district. The one-acre Site is located approximately two miles southeast of Ca&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;ABC ONE HOUR CLEANERS&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.3662560898131,\n",
       "                34.7413431800361\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 651816.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.27445401,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -77.15797632,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 454,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Create a pipeline of tidal wetland migration pathway projects in areas served by National Estuarine Research Reserves (NERRS) in the Northeast, Mid-Atlantic and Southeast of the U.S. In cooperation with communities and local partners, project will identi&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;78114&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Wetland Migration Pathway Planning, Prioritization, and Community Engagement (FL, MA, NC, NJ, RI, SC)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.157976320163,\n",
       "                35.2744540097099\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.533,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -79.134,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 648,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200b\\u200b\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding on Sandy Island.  Recent flooding has threatened infrastructure, notably homes, businesses, and transportation rou&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Sandy Island - Georgetown County, SC&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -79.1339999996864,\n",
       "                35.5330000002914\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 309000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.54502617,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -79.40562797,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 453,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Create an interagency planning collaboration to conserve rare and culturally significant species within the greater Eastern Band of Cherokee Indians ancestral landscape in North Carolina. Project will result in data management and modelling tools, includ&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;78088&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Advnisdisgi \\u13a0\\u13db\\u13c2\\u13cd\\u13d7\\u13cd\\u13a9: Interagency Conservation Planning for Culturally Significant Species (NC)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -79.405627969636,\n",
       "                35.5450261698332\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Defense and the Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 2500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.1869233,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -78.69697784,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1434,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Complete prescribed burns, mechanical and chemical treatments, and hand cutting to improve habitat for terrestrial and aquatic species on 42,290 acres of longleaf pine habitat, and perform road crossings and culverts surveys. Project will improve upland&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80999&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Building Resiliency of Longleaf Pine Ecosystems in Southeastern Sentinel Landscapes (FL, GA, NC, SC)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -78.696977838937,\n",
       "                35.1869233003925\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.23188782,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -80.60206258,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 769,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Ram Leather Care\\u00a0Superfund\\u00a0site is located in Charlotte, North Carolina. It includes an area where the Ram Leather Care company restored leather goods and operated a dry-cleaning facility from 1977 to 1993.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;RAM LEATHER CARE SITE&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.6020625800614,\n",
       "                35.2318878200749\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.19704785,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -81.18807919,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 766,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The 15-acre Hemphill Road TCE\\u00a0Superfund\\u00a0Site is in South Gastonia, North Carolina. It is in a mixed residential, commercial, and industrial district in the southern part of Gaston County.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;HEMPHILL ROAD TCE&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -81.1880791898673,\n",
       "                35.1970478502887\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior and Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service and the Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 4807351.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.90268583,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -80.89631736,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1390,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Use a cultural approach to ecological restoration by engaging Catawba citizens in replacing two culverts, stabilizing streambanks, converting land to native prairie, and doubling the size of canebrake on Tribal lands. Project will renew the relationship&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;79938&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Manu Tatene Utk\\u00e9ware: Improving Terrestrial and Aquatic Ecosystems on Ancestral Lands (SC)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;2&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.8963173638964,\n",
       "                34.9026858292228\n",
       "              ],\n",
       "              [\n",
       "                -81.2944957923471,\n",
       "                34.8837155426143\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 860000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.800028,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -80.576639,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Lancaster County Roads Program, Charleston Ecological Services, Charleston PFW, USFS, South Carolina DNR&quot;,\n",
       "          &quot;OBJECTID&quot;: 1237,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;These AOP projects are located on a tributaries to Lynches River and Saluda River, which is designated critical habitat for the endangered Carolina heelsplitter.  The road crossings are not designed for aquatic organism passage and currently are signific&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{c670e48d-20ee-4843-80be-166ce01218f3}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Culvert Replacements for Fish Passage in South Carolina&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/culvert-replacements-fish-passage-south-carolina&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;3&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.5766389998794,\n",
       "                34.8000279997665\n",
       "              ],\n",
       "              [\n",
       "                -82.0053499997828,\n",
       "                34.0411449999276\n",
       "              ],\n",
       "              [\n",
       "                -82.084180000149,\n",
       "                33.9824399999455\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.931,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -79.931,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 533,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bBIL WFPO funds will be used to plan, design, and construct a system to reduce and/or prevent localized flooding, especially as the area is planning for growth. Horry County is experiencing unprecedented growth accelerating the need to provide flood pr&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Brunson Springs Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -79.9310000000256,\n",
       "                33.9309999996652\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.226,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -79.128,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 572,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bBIL WFPO funds will be used to plan, design, and construct a system to reduce and/or prevent localized flooding, especially as the area is planning for growth. Horry County is experiencing unprecedented growth accelerating the need to provide flood pr&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Gapway Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -79.1280000000885,\n",
       "                34.2259999998164\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.103,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -79.071,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 536,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bBIL WFPO funds will be used to plan, design, and construct a system to reduce and/or prevent localized flooding, especially as the area is planning for growth. Horry County is experiencing unprecedented growth accelerating the need to provide flood pr&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Cartwheel Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -79.0709999998658,\n",
       "                34.1029999998087\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.916,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -78.7126,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 534,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the the Buck Creek Watershed.  Changes within the primarily agricultural watershed are a concern regarding recent flood eve&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Buck Creek - Horry County, SC&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -78.7125999998686,\n",
       "                33.9160000000232\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.906,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -78.783,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 650,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bBIL WFPO funds will be used to plan, design, and construct a system to reduce and/or prevent localized flooding, especially as the area is planning for growth. Horry County is experiencing unprecedented growth accelerating the need to provide flood pr&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Simpson Creek Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -78.7830000003012,\n",
       "                33.9060000000827\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.839,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -79.048,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 558,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bBIL WFPO funds will be used to plan, design, and construct a system to reduce and/or prevent localized flooding, especially as the area is planning for growth. Horry County is experiencing unprecedented growth accelerating the need to provide flood pr&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Crabtree Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -79.0479999997603,\n",
       "                33.8389999997869\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.694,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -78.991,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 652,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bBIL WFPO funds will be used to plan, design, and construct a system to reduce and/or prevent localized flooding, especially as the area is planning for growth. Horry County is experiencing unprecedented growth accelerating the need to provide flood pr&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Socastee Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -78.9910000004359,\n",
       "                33.6940000000574\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.694,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -78.991,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 643,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bBIL WFPO funds will be used to plan, design, and construct a system to reduce and/or prevent localized flooding, especially as the area is planning for growth. Horry County is experiencing unprecedented growth accelerating the need to provide flood pr&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Raccoon Run Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -78.9910000004359,\n",
       "                33.6940000000574\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.53,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -79.134,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 647,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bFlooding often occurs on Sandy Island, located in Georgetown County, South Carolina. The Waccamaw River is part of the Atlantic Intracoastal Waterway and during flood events it threatens the watershed infrastructure and impacts local homes and busines&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Sandy Island&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -79.1339999996864,\n",
       "                33.530000000274\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 293400.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.05128489,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -83.9475546,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1441,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Enhance and expand the conservation resources available to small and minority landowners across forestlands in Georgia that correspond to Gopher Tortoise and Northern Bobwhite Working Land for Wildlife initiative ranges. Project will increase forest mana&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;81253&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Expanding Forest Landowner Technical Assistance in Georgia&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;M&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -83.9475546007858,\n",
       "                33.0512848877408\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.41996904,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -82.02185183,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 733,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The 350-acre Peach Orchard Road PCE Groundwater Plume\\u00a0Superfund\\u00a0site is located in Augusta, Georgia. It includes an area of groundwater contamination in a City of Augusta Utilities Department well field in the southern part of Augusta. The site is loca&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PEACH ORCHARD RD PCE GROUNDWATER PLUME SITE&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -82.0218518296682,\n",
       "                33.4199690398421\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.2267,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -84.3931,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 494,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Mill-Canton Creek Watershed Structure No. 7 was constructed in 1962.  Since completion of the structure, the drainage area and breach zone has been urbanized.  Currently, the structure does not meet criteria for a high hazard potential dam.  Therefor&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Mill-Canton Creek 7&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -84.3931000003071,\n",
       "                34.2267000000798\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1125000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.780903,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -86.362785,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: St. Clair Transportation Department, Alabama DEM, Alabama Rivers Network, Geological Survey of Alabama, Daphne Ecological Service, Daphne PFW, NFWF&quot;,\n",
       "          &quot;OBJECTID&quot;: 1243,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will further the growing efforts within St. Clair County of replacing inadequately designed road crossings with appropriately sized bottomless culverts or bridges to facilitate unimpeded aquatic organism movement.  This project will replace&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{f08d4454-66ff-48c1-86f4-9e13fcf5fc0e}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Trispot Darter Culvert Replacements&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/trispot-darter-culvert-replacements&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;3&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -86.3627850000991,\n",
       "                33.7809029999079\n",
       "              ],\n",
       "              [\n",
       "                -86.3848000001906,\n",
       "                33.7345350001561\n",
       "              ],\n",
       "              [\n",
       "                -86.3539400000638,\n",
       "                33.7564539998352\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.1296,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -88.1514,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 531,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The City of Aliceville is requesting bIL WFPO funds to conduct a feasibility report on a proposed project that would reduce the nuisance of flooding throughout the town that adversely affects commerce, homes, access, and disrupts thea bility of first rep&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Blubber Creek Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -88.1513999998727,\n",
       "                33.1296000002863\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.09711,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -90.048087,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 464,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Black Creek Watershed, Structure No. 100 site was originally designed to accumulate and store 122 ac-ft. of sediment. The dam site is located on Yazoo Creek, an upstream tributary of the Black Creek. The dam is 940 feet long and 34 feet tall earthen emba&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Black Creek WS Dam No.100&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.0480869995652,\n",
       "                33.0971100001991\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.1096,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -91.2621,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 547,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bThe Arkansas Black Mayors Association and City of Eudora, AR request assistance with conducting a PIFR, Planning, Design, and Construction for a potential watershed project for Camp Bayou Canal-Boeuf River, Caney Bayou, Grand Lake-Bayou Macon, and Tig&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;City of Eudora&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -91.2620999997771,\n",
       "                33.1095999996559\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.0634,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -91.5709,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 555,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bThe Arkansas Black Mayors Association and City of Wilmot, AR request assistance with conducting a PIFR, Planning, Design, and Construction for a potential watershed project for Camp Bayou &amp; Overflow Creek watersheds in Ashley County, AR. Flooding from&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;City of Wilmot&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -91.5709000001637,\n",
       "                33.0634000002807\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.3556,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -91.85111,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 548,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bThe Arkansas Black Mayors Association and City of Fountain Hill, AR request assistance with conducting a PIFR for a potential watershed project for Snake River - Saline River watershed in Ashley County, AR. Flooding from heavy rainstorm events has dam&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;City of Fountain Hill&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -91.8511100000273,\n",
       "                33.3555999998213\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.91713,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -89.997123,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 458,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Ascalmore Creek Watershed, Structure No. Y-17A-1 site was originally designed to accumulate and store 762 ac-ft. of sediment. The dam is 1725 feet long and 36 feet tall earthen embankment with a drainage area of approximately 10.48 square miles. The prin&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Ascalmore Creek Str Y-17A-1&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -89.9971229998239,\n",
       "                33.9171300002959\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.907441,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -89.930314,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 513,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Tillatoba Creek Watershed FWRS Y-17B-1 site was designed and constructed as a class (a) low hazard site, meaning that failure may damage farm buildings, agricultural land, or township and county roads. The dam was planned and built with flood prevention&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Tillatoba Creek Str Y-17B-1&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -89.9303140003665,\n",
       "                33.9074410000437\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.909397,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -90.044511,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 459,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Ascalmore Creek Watershed, Structure No. Y-17A-2 site was originally designed to accumulate and store 256 ac-ft. of sediment. The dam is 985 feet long and 39 feet tall earthen embankment with a drainage area of approximately 5.99 square miles. The princi&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Ascalmore Creek Str Y-17A-2&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.0445109995569,\n",
       "                33.9093970001344\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.8832,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -91.48384,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 545,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bThe City of Dumas requests assistance to conduct a PIFR, Planning, Design, and Construction for a possible PL-566 project in four 12-digit HUC sub-watersheds located within the Canal No. 19-Canal No. 18, Headwaters Boeuf River, Canal No. 81, and Clay&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;City of Dumas&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -91.4838399998804,\n",
       "                33.8831999996486\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.999,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -90.1363,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 660,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist with flooding.  There is about 25,000 acres of cropland and two community housing development projects needing relief from&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Tillatoba Levee&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.1363000000921,\n",
       "                33.9990000003206\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.109204,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -90.068737,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 467,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Buntyn Creek Watershed FWRS Y-16A-2 was planned and built with flood prevention being the primary purpose for the structure. The dam is a 32 foot tall (maximum height) earthen embankment with a drainage area of 0.65 square miles. The permanent pool (sedi&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Buntyn Creek Str 16 A-2&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.0687369997011,\n",
       "                34.109203999866\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.109204,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -90.068737,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 468,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Buntyn Creek STR 16A-2 dam was planned and built with flood prevention being the primary purpose for the structure. Current assessment of the dam requires rehabilitation to bring the dam into compliance with NRCS and Mississippi dam safety criteria and p&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Buntyn Creek Str 16A-2&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.0687369997011,\n",
       "                34.109203999866\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.100924,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -90.063643,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 469,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Buntyn Creek Watershed FWRS No. Y-16A-1 was planned and built with flood prevention being the primary purpose for the structure. The dam is a 43 foot tall (maximum height) earthen embankment with a drainage area of 3.23 square miles. The permanent po&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Buntyn Creek Str Y-16A-1&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.0636429995762,\n",
       "                34.1009239999903\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.1031,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -90.1207,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 582,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist with flooding and drainage.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Hubbard creek&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.1206999997002,\n",
       "                34.1030999998987\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.025,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -90.0,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 543,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Flooding along the Lower Tillatoba Creek has impacted the city of Charleston, created severe streambank erosion issues that has become a safety issue in minority subdivisions and areas in which children must cross every day to go to school. Funds will b&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;City of Charleston&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.0000000000483,\n",
       "                34.0249999998806\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.008764,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -90.00474,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 495,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The North Tillatoba-Hunter Creek Watershed, Structure No. Y-17C-6B is a floodwater retarding structure dam. The site was originally designed to accumulate and store 326 ac-ft. of sediment. The dam is 1850 feet long and 35 feet tall earthen embankment wit&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;N. Tillatoba- Hunter Creek WS Y-17C-6B&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.0047400001708,\n",
       "                34.008763999805\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.182,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -89.6426,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 681,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;There is substantial streambank erosion along the Johnson Creek/Otoucalofa Creek watershed located  in the limited resource area of Yalobusha County. Funding is needed to explore best methods to stabilize the river banks to prevent future flooding.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yalobusha County&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -89.6426000001338,\n",
       "                34.1819999997188\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.4243,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -90.70645,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 589,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Little Bee Bayou is located in Phillips County, Arkansas. Restoration work is being planned to restore the watershed that is currently impairing access to and from Lake Bayou due to rising sediment and vegetation. The plan will address flood prevention,&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Long Lake Bayou - Little Bee Bayou Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.7064500003097,\n",
       "                34.4242999997704\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.3193,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -91.84736,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 539,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bThe Arkansas Black Mayors Association and City of Altheimer, AR request assistance with conducting a PIFR, Planning, Design, and Construction for a potential watershed project for Little Bayou Meto watershed in Jefferson County, AR. Flooding from heav&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;City of Altheimer&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -91.8473599999417,\n",
       "                34.3192999996302\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.5154,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -90.76,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 587,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Lick Creek serves the local Durham, Arkansas community and is listed as an impaired stream that threatens local water resource. Funds will be used to implement conservation practices that restore the watershed, improve water quality, and implement ag-wat&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Lick Creek - Big Creek Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.7600000000224,\n",
       "                34.5154000000201\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.04462137,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -89.68550263,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 818,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The 9-acre Smalley-Piper\\u00a0Superfund\\u00a0site is in Collierville, Tennessee.\\u00a0Commercial and industrial land uses border the site. Residential areas, including single-family homes and a mobile home park, are located \\u00bc mile southeast of the site. Groundwater&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;SMALLEY-PIPER&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -89.6855026299066,\n",
       "                35.0446213701238\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.04172756,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -89.6531072,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 819,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Walker Machine manufactured precision fabricated metal products from the mid-1960s until about 2002. Cutting oils and chlorinated solvents (including tetrachloroethene (PCE), trichloroethene (TCE), and mineral spirits) were used in the operations. The us&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;WALKER MACHINE PRODUCTS, INC.&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -89.6531071996517,\n",
       "                35.0417275596561\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.11509354,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -89.94472776,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 817,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The .62-acre Former Custom Cleaners (FCC)\\u00a0Superfund\\u00a0site is located at 3517 Southern Avenue in Memphis, Tennessee. \\u00a0The site is bordered to the north by Southern Avenue, to the east by Minor Road, to the south by Spotswood Avenue and to the west by So&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;FORMER CUSTOM CLEANERS&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -89.9447277601544,\n",
       "                35.115093539774\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.95047,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -90.47252,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 550,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Arkansas Black Mayors Association&#x27;s (ABMA) and city of Hughes and Jennette would like to request assistance with conducting a Preliminary Investigation and Feasibility Report (PIFR), Planning, Design, and Construction approval for the for a watershed&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;City of Hughes and Jennette&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.4725200001414,\n",
       "                34.9504700002061\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.0025,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -90.8161,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 537,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bThe Cities of Forrest City, Haynes, and Marianna collectively request assistance to conduct a PIFR, Planning, Design, and Construction for a PL-566 project in the Larkin Creek \\u2013 L\\u2019Anguille River Watershed . These cities are experiencing flooding t&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Cities of Forrest City-Haynes-Marianna&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.8160999997214,\n",
       "                35.0025000002324\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.01361,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -90.72694,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 551,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bThe City of Madison, Arkansas Black Mayors Association, and East Arkansas Enterprise Community request assistance with conducting a PIFR, Planning, Design, and Construction for a potential watershed project for L\\u2019Anguille River \\u2013 St. Francis River&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;City of Madison&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.7269399997136,\n",
       "                35.0136099996371\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.0054,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -91.2522,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 544,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bThe City of Cotton Plant requests assistance to conduct a Preliminary Investigation and Feasibility Report for a watershed project in the Buffalo Creek - Bayou DeView Watershed. The City of Cotton Plant is experiencing flooding that impacts safety, co&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;City of Cotton Plant&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -91.2522000003058,\n",
       "                35.0053999999209\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.24389154,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -91.73620849,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1118,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Resilient Recreation Sites&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The project incorporates better asset management practices by reducing costs, reduce infrastructure damage during frequent flood events, and allow the natural free flowing river process to occur in accordance with the park\\u2019s enabling legislation. Impro&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoring the Tyler Bend Boat Launch, Buffalo National River Park&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -91.7362084898888,\n",
       "                35.2438915400181\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.18844,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -90.88955,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 569,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with sedimentation from agricultural areas, streambank erosion, and other activities has reduced the capacity of streams within the watershe&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;First Creek \\u2013 L\\u2019Anguille River Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.8895499997325,\n",
       "                35.1884400002499\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.374,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -90.2706,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 554,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The City of Turrell requests assistance to conduct a PIFR, Planning, Design, and Construction for a possible PL-566 project in the Big Creek Watershed. The City of Turrell is experiencing flooding that impacts safety, comfort, and quality of life. Over t&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;City of Turrell&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.2705999999705,\n",
       "                35.3740000000101\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.39186085,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -88.93231754,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 816,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Velsicol Chemical Corp. (Hardeman County)\\u00a0Superfund\\u00a0site is located in Toone, Tennessee. It includes an area where Velsicol Chemical Corporation operated a landfill from 1964 to 1973.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;VELSICOL CHEMICAL CORP. (HARDEMAN COUNTY)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -88.9323175398337,\n",
       "                35.3918608496895\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.1701,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -88.5923,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 599,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Bil WFPO funds will be used to provide flood protection for the surrounding community  of McNairy County, Tennessee. Since 1976, a watershed restoration plan has been in place to restore the watershed and provide relief to the limited resource area as fu&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;McNairy Cypress Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -88.5922999999557,\n",
       "                35.170100000348\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.01466506,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -85.28557489,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 821,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Southside Chattanooga Lead Site is located in downtown Chattanooga, Tennessee. The site consists of residential neighborhoods and non-residential communal areas (parks, schools, playgrounds, child care centers), where soils have been impacted by lead&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;SOUTHSIDE CHATTANOOGA LEAD&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -85.2855748903018,\n",
       "                35.0146650602232\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.15079,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -86.64883,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Tennessee Wildlife Resources Agency, Tennessee DEC, USACE, Tennessee Valley Authority, The Nature Conservancy, Cookeville Ecological Services&quot;,\n",
       "          &quot;OBJECTID&quot;: 145,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This dam ranks out at #4 of more than 1500 dams in TN. The dam is the only major barrier on the mainstem of the river that separates 804 linear miles of streams below the dam from 780 miles upstream (total free flowing miles - 1,114. There are 46 species&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{18eb2880-d325-4c86-82b5-811cf130aa21}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Harm&#x27;s Mill Dam Removal&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/harms-mill-dam-removal&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -86.6488299997042,\n",
       "                35.1507899998057\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 520297.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.70074934,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -85.8514617,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 428,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Develop a science-based status assessment and comprehensive conservation plan for the grasslands, savannas, and other open ecosystems of the Cumberland Plateau of Kentucky, Tennessee, Alabama, and Georgia. By working collaboratively with stakeholders, th&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77440&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Status Assessment and Conservation Planning for Cumberland Plateau Grasslands (AL, GA, KY, TN)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -85.85146169998,\n",
       "                34.7007493396548\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.7503,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -84.6025,\n",
       "          &quot;Notes&quot;: &quot;Project Lat/Long was incorrectly listed. Longitudes was positive. Lat/Long fields updated with negative longitude and manually moved to presumed correct location.&quot;,\n",
       "          &quot;OBJECTID&quot;: 635,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A feasibility study will be conducted to explore the viability of converingt a 90-acre lake to flood control and ag water management practices for Gilmer County, GA.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Rainbow Lake Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -84.6024999996593,\n",
       "                34.7502999999146\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.70652814,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -84.68666825,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1379,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Assess and prioritize 300 road crossings in high-priority watersheds, replace 10 crossings that cause significant barriers to small fish passage, and use environmental DNA methods to sample, fill life history knowledge gaps, and inform barrier prioritiza&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80803&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Implementing Priority Recovery Actions for the Federally Threatened Trispot Darter in Georgia&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -84.6866682511778,\n",
       "                34.7065281398012\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.309377,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -84.100751,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 510,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Located in Forsyth County, Georgia, Settingdown Dam #54 is an earthen dam built in 1954 to provide flood control to the surrounding communities within the Coosa River Watershed.  Since completion of the structure, the drainage area and breach zone has be&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Settingdown Creek 54&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -84.1007510004322,\n",
       "                34.3093770002421\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.314769,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -84.070496,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 511,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Located in Forsyth County, Georgia, Settingdown Dam #56 is an earthen dam built to provide flood protection in the Coosa River Watershed in 1954 and modified in 1985. Since completion of the structure, the drainage area nad breach zone has been urbanized&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Settingdown Creek 56&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -84.0704960003778,\n",
       "                34.3147690003028\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 290730.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.48331997,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -83.31970924,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 844,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Advnisdisgi: A Cherokee Planning Project for Conservation Across Jurisdictions&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -83.319709239637,\n",
       "                35.4833199696762\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.91803375,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -83.9272597,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 815,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Smokey Mountain Smelters\\u00a0Superfund\\u00a0site is located in Knox County, Tennessee. The site is located at 1508 Maryville Pike in Knoxville, Tennessee, four miles south of downtown Knoxville in a mixed industrial, commercial and residential area. A low-i&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;SMOKEY MOUNTAIN SMELTERS&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -83.9272597001902,\n",
       "                35.9180337498239\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 1630000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.77715003,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -82.02753627,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1401,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Improve aquatic connectivity, habitat suitability through fish barrier removal, enhance freshwater mussel restoration efforts through production facility upgrades, improve public access with targeted access improvements, and update the long-term basin-wi&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80969&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Aquatic Connectivity and Enhancing Mussel Restoration Capacity in the Upper Tennessee River (VA)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -82.0275362654799,\n",
       "                36.7771500298914\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.754,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -83.8491,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 584,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with \\u200bflooding issues in the Fighting Creek \\u2013 Cumberland River watershed near the KayJay community. This area has had repetitive flood d&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Kayjay, Fighting Creek \\u2013 Cumberland River&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -83.8491000002311,\n",
       "                36.7540000002715\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Park Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 150000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.514839,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -84.708095,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 281,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Remedial design includes development of engineering drawings and specifications for a site cleanup. Remedial action follows design, and involves the actual construction or implementation phase of site cleanup.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;100XX08KY1422&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Develop Laurel Branch Spoils Removal Design BISO&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -84.7080950002853,\n",
       "                36.5148389997611\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.76657,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -85.46891,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 655,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bThe city if Spencer has requested assistance for a potential watershed plan for the purpose of serving the landowners with additional measures for livestock and potable water supply. The current water supply for the population has exceeded the demand&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Spencer City Lake Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -85.4689100003941,\n",
       "                35.7665700000727\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.78476416,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -89.11710624,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 820,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Alamo Contaminated Ground Water\\u00a0Superfund\\u00a0site is located Alamo, Tennessee, about 10 miles northwest of Jackson. It includes an area of contaminated groundwater potentially resulting from various operations in the community\\u2019s downtown business di&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;ALAMO CONTAMINATED GROUND WATER&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -89.1171062399383,\n",
       "                35.784764160157\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.93144,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -89.9182,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 540,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bThe City of Blytheville requests assistance to conduct a Preliminary Investigation and Feasibility Report a project within Pemiscot Bayou Watershed and the Tyronza River Watershed. The City of Blytheville is experiencing flooding that impacts safety,&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;City of Blytheville&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -89.9181999995712,\n",
       "                35.9314399999744\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.331,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -89.89,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 570,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding and soil erosion.  The project will reshape 148 miles of eroded channel sections and establish a maximum of 3,500 acres of nat&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Floodway Soil Erosion Reduction Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -89.8899999999339,\n",
       "                36.3310000001828\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.522,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -87.474,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 663,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bOn August 21, 2021, at 2:00am in the morning, a catastrophic flash flood fell upon Humphreys County and left 21 inches of rain in a single day. River levels rose to historic heights completely inundating the city of Waverly causing 21 fatalities. Wave&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Trace Creek Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -87.4740000004419,\n",
       "                36.5219999997835\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.522,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -87.474,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 661,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in Trace Creek watershed.  Recent fatal flooding, notably catastrophic flash flood on August 21, 2021, had devastated infra&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;TN Humphreys County Trace Creek Watershed Preliminary Investigation and Feasibility Report&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -87.4740000004419,\n",
       "                36.5219999997835\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.11,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -89.72,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 590,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding and stabilization in the Lower Caney Basin.  Areas of concern relate to managing agricultural drainage in the Mississippi D&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Lower Caney Restoration Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -89.720000000247,\n",
       "                37.1100000000253\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.093,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -89.82,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 524,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding and agricultural drainage in the Mississippi Delta region. Existing multipurpose structures are in need of upgrades including&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Agriculture Water Infrastructure Improvements&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -89.8200000004327,\n",
       "                37.0929999997297\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.48232921,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -90.3435084,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 751,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Madison County Mines Site includes all of Madison County and the portion of the historical \\u201cMine LaMotte Tract\\u201d that extends northward into southern St. Francois County, Missouri. Mining operations beginning in the early 1700s and ending in the m&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;MADISON COUNTY MINES&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.3435084003069,\n",
       "                37.4823292101504\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.81019264,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -90.47227458,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 754,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Big River Mine Tailings/St. Joe Minerals Corp. Site is located in a former mining region known as the \\&quot;Old Lead Belt,\\u201d which is 70 miles south of St. Louis.\\u00a0This site is composed of eight large areas of mine waste in this rural region, approximate&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;BIG RIVER MINE TAILINGS/ST. JOE MINERALS CORP.&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.4722745804058,\n",
       "                37.8101926396851\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.9252389,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -90.92344482,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 761,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Washington County Lead District \\u2013 Furnace Creek Site includes soil, groundwater, surface water, mine waste, and sediment contaminated with arsenic, barium, cadmium, and lead associated with historical mining practices in southeast Missouri. The Fur&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;WASHINGTON COUNTY LEAD DISTRICT - FURNACE CREEK&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.9234448197062,\n",
       "                37.9252389003263\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.95050252,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -90.72069577,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 757,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Washington County Lead District \\u2013 Potosi Site includes soil, groundwater, surface water and sediment contaminated with arsenic, barium, cadmium and lead associated with historical mining practices in southeast Missouri. The site encompasses about 4&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;WASHINGTON COUNTY LEAD DISTRICT - POTOSI&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.7206957697495,\n",
       "                37.9505025198771\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.05596448,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -90.7829449,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 758,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Washington County Lead District \\u2013 Old Mines Site includes soil, groundwater, surface water and sediment contaminated with arsenic, barium, cadmium and lead associated with historical mining practices in southeast Missouri. The site encompasses abou&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;WASHINGTON COUNTY LEAD DISTRICT - OLD MINES&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.7829449001634,\n",
       "                38.0559644796598\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.97653176,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -87.56519231,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 737,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Jacobsville Neighborhood Soil Contamination site includes the Jacobsville neighborhood as well as 12 other neighborhoods in Evansville, Indiana. The site consists of residential soils contaminated by lead and arsenic, and it covers a 4.5-square-mile&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;JACOBSVILLE NEIGHBORHOOD SOIL CONTAMINATION&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -87.5651923103209,\n",
       "                37.976531759948\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 150000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.26920706,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -83.65348589,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 926,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Remedial design includes development of engineering drawings and specifications for a site cleanup. Remedial action follows design, and involves the actual construction or implementation phase of site cleanup.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Develop Removal Design for Blair Creek Contaminated Mine Drainage at Big South Fork National River and Recreation Area&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -83.6534858903854,\n",
       "                37.2692070599049\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 150000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.26920706,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -83.65348589,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 927,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Develop Removal Design for Laurel Branch Stream Spoils at Big South Fork National River and Recreation Area&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -83.6534858903854,\n",
       "                37.2692070599049\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Department-Wide Programs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.02,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -84.288,\n",
       "          &quot;Notes&quot;: &quot;This project&#x27;s exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 24 wells&quot;,\n",
       "          &quot;OBJECTID&quot;: 1295,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Orphaned Well Site Plugging, Remediation, And Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 031||Daniel Boone Na]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Daniel Boone National Forest&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -84.2880000001487,\n",
       "                37.020000000052\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Department-Wide Programs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.22,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -80.994,\n",
       "          &quot;Notes&quot;: &quot;This project&#x27;s exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 1 wells&quot;,\n",
       "          &quot;OBJECTID&quot;: 1310,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Orphaned Well Site Plugging, Remediation, And Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 028||Gauley River Na]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Gauley River National Recreation Area&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.9939999999066,\n",
       "                38.2199999999258\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.04,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -81.04,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 680,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200b\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with watershed protection in the Wolf Creek watershed.  The sponsor wants to review this watershed to identify water quality issues&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Wolf Creek Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -81.0400000001178,\n",
       "                38.0400000000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.789,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -81.1895,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 626,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bThe Little Whitestick Creek Channel Modification was completed in 2007 as part of a NRCS watershed project. This area continues to be subjected to nuisance flooding of roadways and parking lots a few time a year and occasionally some local businesses&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Little Whitestick Creek&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -81.189500000355,\n",
       "                37.7889999998698\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.801,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -80.3027,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 622,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bHoward Creek watershed experienced a devastating flood in 2016 which killed 8 people in the town of White Sulphur Springs, West Virginia. There is one NRCS flood control dam and one flood control channel in the watershed. The sponsors want to look at&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Howard Creek Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.3026999997753,\n",
       "                37.8009999996482\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.0,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -80.7,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 662,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200b\\u200b\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Town of Rainelle. The town experience frequent devastating flooding from the Meadow River and it&#x27;s tributar&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Town of Rainelle West Virginia&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.6999999998457,\n",
       "                38.0000000002117\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.2,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -79.96,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 598,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200b\\u200b\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Marlin Run Watershed.  \\u200bSponsor wants to take a fresh look at this watershed that has one NRCS flood cont&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Marlin Run West Virginia&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -79.9599999997291,\n",
       "                38.1999999997035\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior and Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service and the Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 757628.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.23381801,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -80.43454967,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1443,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Catalyze riparian reforestation efforts on agricultural land in the Southern Appalachian range of Eastern Hellbenders by promoting multifunctional riparian areas that increase the financial resilience of agriculture and boost ecosystem health.  Project w&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80032&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Reforesting Aquatic Corridors of Southern Appalachia through Agroforestry (AL, GA, OH, NC, TN, WV, VA)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;M&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.4345496740364,\n",
       "                37.2338180134798\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.3035,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -81.2508,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 613,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bThe Bluewell Public Service District has two water supply dams that do not meet the current West Virginia Dam Safety criteria. The PSD would like to decommission the structures and look for alternate water supplies. These are not NRCS structures. Thes&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Bluewell PSD Dam Removals&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -81.2507999995858,\n",
       "                37.3034999998349\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.3609,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -81.1309,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 466,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Brush Creek Site 12 is an earthen embankment, flood control dam in Mercer County West Virginia that was constructed in 1965. It is a part of the Brush Creek Watershed Project, planned in March 1960 utilizing PL-566 funds, which alleviates flooding in the&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Brush Creek Site 12&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -81.1309,\n",
       "                37.3608999999123\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.37,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -81.08,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 559,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the the Daves Fork/Christian Fork Watersheds.    The watershed has 3 aged flood control structures and a flood control chan&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Daves Fork Christian Fork Watershed West Virginia&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -81.0799999998327,\n",
       "                37.3700000002956\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.4,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -81.7,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 567,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;In past years, heavy rains fell on the steep mountain slopes that surround the Elkhorn Creek Watershed, causing severe landslides and flooding in McDowell County, West Virginia. Efforts to mitigate future flooding have had the opposite effect and now pla&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Elkhorn Creek Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -81.6999999999061,\n",
       "                37.3999999998121\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 200000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.0391,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -81.6846,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: The Nature Conservancy, Town of Cedar Bluff, PFW, Virginia DWR, Canaan Valley Institute, private landowners, Southwest Virginia Community College&quot;,\n",
       "          &quot;OBJECTID&quot;: 1236,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Clinch River Watershed Fish Passage Restoration effort aims to remove three dams in the Clinch River Watershed of Virginia to ultimately reconnect over 41 miles of stream and restore 2 miles of instream habitat for multiple federally listed species.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{b7cc74e5-c377-4e97-9bdf-84bdffefa769}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Clinch River Watershed Fish Passage Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/clinch-river-watershed-fish-passage-restoration-little-river-mill-dam-removal&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;3&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -81.6846000004291,\n",
       "                37.0390999997302\n",
       "              ],\n",
       "              [\n",
       "                -81.7670000000575,\n",
       "                37.0889999998135\n",
       "              ],\n",
       "              [\n",
       "                -81.7545000003712,\n",
       "                37.0835999998454\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.15731023,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -80.67161032,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 768,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The 80-acre Holcomb Creosote Co. site is located in Yadkinville, North Carolina. It includes an area where Holcomb Creosote Company operated a wood-treating facility from the 1950s to 2009.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;HOLCOMB CREOSOTE CO&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.6716103200378,\n",
       "                36.157310230148\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 3267129.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.17055042,\n",
       "          &quot;LatLongTyp&quot;: &quot;Roanoke River, NC&quot;,\n",
       "          &quot;Long&quot;: -77.2482714,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 710,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Nature Conservancy will replace six undersized culverts with bridges and remove two earthen barriers within the floodplain of the lower Roanoke River. Removal of these eight barriers will benefit migratory species such as blueback herring. It will al&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_028&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoration within the floodplain of the lower Roanoke River&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.2482713999228,\n",
       "                36.1705504201901\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.41658084,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -78.94153284,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 770,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The GMH Electronics\\u00a0Superfund\\u00a0site, formerly known as the Halifax Road site (the \\u201cSite\\u201d), is located at 1800 Virgilina Road, three-quarters of a mile northeast of Roxboro in Person County, North Carolina. The Site includes the GMH Electronics build&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;GMH ELECTRONICS&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -78.9415328400963,\n",
       "                36.416580839828\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.847074,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -79.432661,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 470,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Cherrystone Creek 2A is a multi purpose dam that provides flood protection and water supply for Pittsylvania County residents.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Cherrystone Creek Dam No. 2A&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -79.4326610002271,\n",
       "                36.8470739998454\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3586,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -76.9811,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 525,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Ahoskie Creek Watershed encompasses the limited resource area of  Bertie County, and also serves Northampton and Hertford Counties.  The project would assist with restoring the original design of the watershed. Several storms have caused severe eros&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Ahoskie Creek Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -76.9810999999455,\n",
       "                36.3586000001816\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.259,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -76.9811,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 580,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Horse-Flat Swamp Watershed is located North of Ahoskie, NC. The project would assist with restoring the original design of the watershed when it was installed. Several storms have caused areas of severe erosion, in some instances prohibiting maintena&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Horse-Flat Swamp Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -76.9810999999455,\n",
       "                36.2590000002519\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior and Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service and the Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 1697340.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.87852362,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -76.74903828,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1427,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Engage with experts to complete 6 plans covering conservation and land management, traditional knowledge sharing, public education curriculum, business, risk management and safety training, marketing and communication, and architectural design and interp&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80844&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Return to the River: Developing a Master Plan for Conservation and Environmental Education (VA)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -76.7490382826675,\n",
       "                37.8785236177652\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.04420792,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -70.72492436,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1396,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Support implementation of three high priority salt marsh projects to restore single channel hydrology of tidal wetlands, primarily through salt marsh ditch remediation and runnels, as well as other interventions to enhance plant communities and habitat f&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80763&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoring New Hampshire Salt Marshes&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -70.724924356874,\n",
       "                43.04420792125\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 3537201.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.1339381,\n",
       "          &quot;LatLongTyp&quot;: &quot;Durham, NH&quot;,\n",
       "          &quot;Long&quot;: -70.92850882,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 708,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Town of Durham will design and implement removal of the Mill Pond Dam and install a fish ladder on the Oyster Reservoir Dam to improve fish passage on the Oyster River. In addition to reopening access to habitat, removal of the Mill Pond Dam will inc&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_026&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Improve fish passage on the Oyster River&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -70.9285088202819,\n",
       "                43.1339380997951\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2359186.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.66608031,\n",
       "          &quot;LatLongTyp&quot;: &quot;Ipswich River Watershed Association&quot;,\n",
       "          &quot;Long&quot;: -70.84291319,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 705,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Ipswich River Watershed Association will restore access to 238 miles of habitat in the Ipswich and Parker River watersheds, tributaries to the Great Marsh Area of Critical Environmental Concern. They will address five dams: Ipswich Mills, Larkin Mill&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_023&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Restore access to 238 miles of habitat in Massachusetts&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -70.8429131897944,\n",
       "                42.6660803101568\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.20871231,\n",
       "          &quot;LatLongTyp&quot;: &quot;Braintree, MA&quot;,\n",
       "          &quot;Long&quot;: -71.01001991,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 706,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Town of Braintree will remove two dams in the Monatiquot River watershed. The dam removals will create immediate access to habitat for alewives and other migratory species. They will also increase community resilience by reducing the flood elevation&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_024&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Removal of two dams in the Monatiquot River watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -71.0100199099873,\n",
       "                42.2087123098898\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.34584,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -71.61402,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 514,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Tyler Dam is currently undersized based on the current and future watershed build-out conditions and as a high hazard potential dam, no longer meets NRCS design criteria or performance standards. BIL REHAB funds will be used to excavate material within t&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Tyler Dam&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -71.6140200003655,\n",
       "                42.3458399998266\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 4900000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.3587646,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -71.7182007,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1143,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Southeastern Massachusetts Pine Barrens Landscape Conservation Initiative&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -71.7182006996964,\n",
       "                42.3587645998331\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.37913,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -71.64695,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 482,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Lester G. Ross Dam is a high hazard dam serving the town of Berlin, Massachusets and surounding community of Worcester County. BIL REHAB funds will be used to create a new non-erosive auxiliary spillway to extend the service life of the dam, rehabilitate&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Lester G. Ross Dam&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -71.6469500000797,\n",
       "                42.3791300001647\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.317697,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -71.705414,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 504,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;BIL REHAB funds will be used for new construction costs associated with the rehabilitation of the Rawson Hill Dam located in Shrewsbury, Massachusetts. The Rawson Hill Dam project will create a new non-erosive auxiliary spillway, lined with roller compac&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Rawson Hill Brook Dam&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -71.7054139999922,\n",
       "                42.3176970000389\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.13638,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -71.23703,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 457,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The funds for the Allen Site Dam Project will be used to prepare the design for rehabilitation of the Allen Dam Site located in Walpole Massachusetts. The Allen Site Dam is a high hazard dam, the hazard classification is based on the potential for loss o&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Allen Site&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -71.2370299997741,\n",
       "                42.136379999746\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1550000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.0025,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -70.9822,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Massachusetts Division of Ecological Restoration, Massachusetts Division of Marine Fisheries, The Nature Conservancy in Massachusetts, the Old Colony Planning Council, Town of Bridgewater MA, City of Brockton MA&quot;,\n",
       "          &quot;OBJECTID&quot;: 151,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The High Street Dam is the most downstream barrier to migratory fish passage on the Town River in the Taunton Watershed of southeast Massachusetts, blocking otherwise open passage to Narragansett Bay and the ocean. This significant hazard dam is an aging&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{99c781e6-49d3-460d-977b-704be065d885}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;High Street Dam Removal in the Taunton River Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/high-street-dam-removal-taunton-river-watershed&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -70.982200000123,\n",
       "                42.0025000001196\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.9943,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -71.49267,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 612,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Funds will be used to perform a preliminary feasibility report on the Blackstone River Watershed in Manville, Rhode Island to address flooding concerns, improve water quality and wildlife habitat.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Blackstone River Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -71.4926700004353,\n",
       "                41.9942999997936\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.7464,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -71.5725,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 632,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Funds will be used to perform a preliminary feasibility report on the Pawtuxet River Watershed in Warwick, Rhode Island to address flooding concerns, improve water quality and wildlife habitat.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Pawtuxet River Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -71.5724999999859,\n",
       "                41.7463999998639\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.718,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -72.1,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 659,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with water pollution, flooding and erosion concerns.  Sources of point and nonpoint water pollution have a detrimental effect on shellfish b&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Thames River Basin &amp; South East Coast Basin&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -72.1000000000447,\n",
       "                41.7179999999358\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.51394,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -71.2945,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 614,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Funds will be used to perform a preliminary feasibility report on the Bradley Brook Watershed in Middletown, Rhode Island to address flooding concerns, improve water quality and wildlife habitat.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Bradley Brook Watershed Middletown&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -71.29450000035,\n",
       "                41.5139399998613\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.5136,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -71.26885,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 631,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Funds will be used to perform a preliminary feasibility report on the Paradise Brook and Maidford River Watershed in East Middletown, Rhode Island to address flooding concerns, improve water quality and wildlife habitat.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Paradise Brook and Maidford River Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -71.2688499998006,\n",
       "                41.513600000188\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.5755145,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -70.89572946,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 744,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The 18,000-acre New Bedford site is an urban tidal estuary with sediments which are highly contaminated with polychlorinated biphenyls (PCBs) and heavy metals. At least two manufacturers in the area used PCBs while producing electric devices from the 194&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;NEW BEDFORD&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -70.8957294599561,\n",
       "                41.5755144999172\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.7203,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -71.2825,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 630,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Funds will be used to perform a preliminary feasibility report on the Palmer River Watershed in Warren, Rhode Island to address flooding concerns, improve water quality and wildlife habitat.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Palmer River Watershed in Warren&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -71.2825000002558,\n",
       "                41.7202999996891\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.81033,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -71.3414,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 636,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Funds will be used to perform a preliminary feasibility report on the Runnin&#x27;s River Watershed in East Providence, Rhode Island to address flooding concerns, improve water quality and wildlife habitat.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Runnin&#x27;s River Watershed East Providence&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -71.3414000001864,\n",
       "                41.810330000156\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 5769706.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.81721325,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -70.66771071,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 421,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Restore the site of a former cranberry bog; expand aquatic connectivity and riparian habitat; build ecosystem resilience of pine barrens, woodlands, shrublands, and sandplain grasslands; and improve ecological function of coastal plain pondshores. Projec&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77075&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Southeastern Massachusetts Pine Barrens Landscape Restoration and Community Engagement Initiative&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -70.6677107103273,\n",
       "                41.8172132497386\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 1002819.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.35301444,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -71.65845695,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1399,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Recover natural salt marsh hydrology degraded by legacy impacts and address non-native invasive species inhibiting natural processes that at-risk species like the saltmarsh sparrow rely on. Project will improve the resilience and landward migration of 73&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80890&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Conserving the Hydrology and Climate Resilience of Five Priority Salt Marshes in Rhode Island&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -71.6584569526436,\n",
       "                41.3530144440504\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.3471,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -71.8308,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 561,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Funds will be used to perform a preliminary feasibility report on the Deep Pond and School House Pond Watershed in Westerly, Rhode Island to address erosion control, water quality, and address needed habitat improvement caused by flooding.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Deep Pond and School House Pond Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -71.8308000002383,\n",
       "                41.3470999996884\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.3323,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -71.7567,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 679,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Funds will be used to perform a preliminary feasibility report on the Winnapaug and Salt Ponds Watershed in Westerly, Rhode Island to address flooding concerns, improve water quality and wildlife habitat.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Winnapaug and Salt Ponds Watershed in Westerly&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -71.7566999999489,\n",
       "                41.3323000001595\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 2500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.87721486,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -76.95011034,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1378,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Enhance the Fort Dupont Riparian Corridor through stream and wetland reconstruction projects including the removal of fish barriers and regenerative stream design that will benefit species of greatest conservation including the eastern worm snake, northe&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80275&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Regenerative Urban Watershed and Wetland Restoration on Fort Dupont Creek (DC)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -76.9501103432787,\n",
       "                38.8772148590739\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.9914703,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -75.5002213,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 917,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Delaware River Basin Conservation Act&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Data collection, design, consultation, and permitting for fish passage at dam no. 5 on the Brandywine Creek&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/delaware-watershed-conservation-fund-projects-funded-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -75.5002213000407,\n",
       "                38.9914703001459\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 107000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.9914703,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -75.5002213,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 876,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Delaware River Basin Conservation Act&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Building capacity for dam remove throughout the Delaware River watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/delaware-watershed-conservation-fund-projects-funded-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -75.5002213000407,\n",
       "                38.9914703001459\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 300000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;FWS Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.042618,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 303,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Systematic social science monitoring of the characteristics, experiences, and spending of visitors to highly visited national wildlife refuges. This data collected from refuges with notable visitation have up-to-date visitor information on a continual ba&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;150XX07US0222&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Visitation Trends on National Wildlife Refuges&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 389025.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042618,\n",
       "          &quot;Notes&quot;: &quot;Coordinates for Main Interior Building&quot;,\n",
       "          &quot;OBJECTID&quot;: 1360,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending (Or Other) For National Revegetation Strategy&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 028|389025|Revegetation an]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Revegetation and Seed Strategy&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Office of Insular Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 280351.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;OIA Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.042625,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 309,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;continue its campaign to detect, eradicate and implement preventative measures against this invasive species&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;410XX06MH0222&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Coconut Rhinoceros Beetle Detection, Eradication and Preventative Measures Proposal-Year 4&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426250002054,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 3520000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042618,\n",
       "          &quot;Notes&quot;: &quot;Coordinates for Main Interior Building&quot;,\n",
       "          &quot;OBJECTID&quot;: 1365,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 026|3520000|Southern High P]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Southern High Plains Grassland Protection, Restoration and Enhancement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;FWS Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.042618,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 307,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Native Seed Collection and Production in Key Geographies will enhance seed collection and production and ecoregional collaboration to increase the availability of native seed resources for restoration, including establishing native seed collection te&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;150XX09US0722&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Native Seed Collection and Production-Eastern&amp;SW&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1840000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;FWS Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.042618,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 306,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Native Seed Collection and Production in Key Geographies project will enhance seed production and ecoregional collaboration to increase the availability of native seed resources for restoration, including establishing native seed collection teams to&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;150XX08US0622&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Mitigate Hazards on Mined Lands, Native Seed Funds&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 562595.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042618,\n",
       "          &quot;Notes&quot;: &quot;Coordinates for Main Interior Building&quot;,\n",
       "          &quot;OBJECTID&quot;: 1366,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Sagebrush-Steppe&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 019|562595|Support critica]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Support critical capacity to build partnerships and deliver on-the-ground conservation projects&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/program/sagebrush-conservation&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 600000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;FWS Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.042618,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 304,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Maintain visitor satisfaction while ensuring adequate resource protection by improving signage at national wildlife refuges experiencing elevated visitation levels.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;150XX07US0322&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Wayfinding Signs on National Wildlife Refuges&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 785000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894508,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1307,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 014|785000|Eradicating Inv]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Eradicating Invasive Plants to Maintain Species Habitat and Increase Channel Capacity Along the Platte River&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Office of Insular Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 23970.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;OIA Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.042625,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 312,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Facilitate the annual Nuisance and Invasive Species Awareness Week; Implementation of the USVI EDRR; and Direct eradication projects&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;410XX06VI0522&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Eradication and Response for Nuisance and Invasive Species&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426250002054,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 260000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894508,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1304,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending (Or Other) For National Revegetation Strategy&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 022|260000|Development of ]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Development of a Native Plant Facility for National Parks in Sagebrush Systems&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Office of Insular Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 555765.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;OIA Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.042625,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 314,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The OIA BIL Activity 8 program provides grant funding to restore native vegetation and mitigate environmental hazards on mined Federal and non-Federal land in American Samoa, the Commonwealth of the Northern Mariana Islands, Guam and the U.S. Virgin Isla&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;410XX08IS0322&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;OIA Activity 8 funds&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426250002054,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894508,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1303,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 014|2500000|Developing the ]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Developing the Departmental Molecular-Based Early Detection Architecture to Support a National Early Detection and Rapid Response (EDRR) Framework&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 495297.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894508,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1290,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 022|495297|Comprehensive S]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Comprehensive Status Assessment  and Conservation Plan for the Grasslands, Savannas, and Other Open Ecosystems of the Cumberland Plateau&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042618,\n",
       "          &quot;Notes&quot;: &quot;Coordinates for Main Interior Building&quot;,\n",
       "          &quot;OBJECTID&quot;: 1345,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending (Or Other) For National Revegetation Strategy&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 028|500000|Optimizing Resi]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Optimizing Resilience and Adaptation for Restored Native Seedings in Sagebrush Steppe&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 600000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894508,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1268,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 024|600000|A National Geos]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;A National Geospatial Decision Tool for Science-based Restoration of Mined Lands: Revegetation and Environmental Hazards&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1852550.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042618,\n",
       "          &quot;Notes&quot;: &quot;Coordinates for Main Interior Building&quot;,\n",
       "          &quot;OBJECTID&quot;: 1354,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 029|1852550|Preventing the ]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Preventing the Introduction and Spread of Invasive Species Through Strategic Landscape-Level Approaches&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 200000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894508,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1270,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;DOI - 024|200000|Adding Ter&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Adding Terrestrial Invasive Plant Forecasting, Monitoring, and Data Visualization Capabilities to INHABIT- a Web Based Decision Support Tool - to Support a National Early Detection and Rapid Response (EDRR) Framework&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 200000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.89450778,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -77.0427023,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 5,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Project outcomes include private sector jobs, increasing native plant materials access, and expanding Tribal capacity to support national coordination on implementing the National Seed Strategy.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{E8343CDC-6E3C-47EE-8E07-4771E9265105}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Building Direct Tribal Adaptation/Plant Ecologist Technical Assistance Capacity through Cooperative Partnerships&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427022966424,\n",
       "                38.8945077849915\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2163285.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894508,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1282,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 024|2163285|BLM Working Cap]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;BLM Working Capital Fund and Seeds of Success Capacity Building&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 3339450.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894508,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1283,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending (Or Other) For National Revegetation Strategy&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 032|3339450|BLM Working Cap]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;BLM Working Capital Fund and SOS/IDIQ Capacity Building&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 880000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042618,\n",
       "          &quot;Notes&quot;: &quot;Coordinates for Main Interior Building&quot;,\n",
       "          &quot;OBJECTID&quot;: 1289,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Safety of Dams, Water Sanitation, And Other Facilities&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 020|880000|Columbia River ]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Columbia River In-lieu Treaty Fishing Sites&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-10-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 550000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042618,\n",
       "          &quot;Notes&quot;: &quot;Coordinates for Main Interior Building&quot;,\n",
       "          &quot;OBJECTID&quot;: 1359,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Resilient Recreation Sites&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 030|550000|Restoring Wildl]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoring Wildlife Habitat in Campgrounds and Along Trails at 7 National Parks in WA and CA&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1840000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894508,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1339,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 028|1840000|Native Seed Col]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Native Seed Collection and Production in Key Geographies - Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 250095.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042618,\n",
       "          &quot;Notes&quot;: &quot;Coordinates for Main Interior Building&quot;,\n",
       "          &quot;OBJECTID&quot;: 1357,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Resilient Recreation Sites&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 030|250095|Resilient Recre]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Resilient Recreation Sites on Federal Lands&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Department-Wide Programs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 33000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042618,\n",
       "          &quot;Notes&quot;: &quot;Coordinates for Main Interior Building&quot;,\n",
       "          &quot;OBJECTID&quot;: 1298,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Orphaned Well Site Plugging, Remediation, And Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 014|33000000|Department-Wide]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Department-Wide Programs&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Departmental Offices&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 72666667.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042618,\n",
       "          &quot;Notes&quot;: &quot;Coordinates for Main Interior Building&quot;,\n",
       "          &quot;OBJECTID&quot;: 1299,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Department of Interior Wildfire Management - Burned Area Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 034|72666667|Wildland Fire M]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Department of Interior Wildfire Management - Burned Area Rehabilitation&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/deputy-secretary-beaudreau-announces-228-million-wildfire-mitigation-and-resilience&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1944900.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042618,\n",
       "          &quot;Notes&quot;: &quot;Coordinates for Main Interior Building&quot;,\n",
       "          &quot;OBJECTID&quot;: 1358,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 031|1944900|Restoration and]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoration and Vegetation Management of Multiple Historic Mined Land Repository Areas in the Western United States&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Departmental Offices&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 72666667.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042618,\n",
       "          &quot;Notes&quot;: &quot;Coordinates for Main Interior Building&quot;,\n",
       "          &quot;OBJECTID&quot;: 1300,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Department of Interior Wildfire Management - Preparedness&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 037|72666667|Wildland Fire M]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Department of Interior Wildfire Management - Preparedness&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/deputy-secretary-beaudreau-announces-228-million-wildfire-mitigation-and-resilience&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 550000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894508,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1301,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 026|550000|Developing a Na]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Developing a National Early Detection and Rapid Response (EDRR) Information System to Support a National EDRR Framework&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 825185.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894451,\n",
       "          &quot;LatLongTyp&quot;: &quot;BIA Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.042641,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 242,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Provide funding for Tribal projects focused on invasive species; specifically projects that will achieve EDRR, prevention and eradication.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;060XX06TR0422&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Tribal Invasive Species Projects&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.042641000099,\n",
       "                38.8944509997477\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Departmental Offices&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 120000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042618,\n",
       "          &quot;Notes&quot;: &quot;Coordinates for Main Interior Building&quot;,\n",
       "          &quot;OBJECTID&quot;: 1371,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Department of Interior Wildfire Management - Preparedness&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 037|120000000|Wildland Firefi]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Wildland Firefighter Salary Increases&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/deputy-secretary-beaudreau-announces-228-million-wildfire-mitigation-and-resilience&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1296785.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.89450778,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -77.0427023,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 71,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project supports tribal efforts to manage reclamation of abandoned hard rock mine lands on Tribal lands. This effort will restore habitat connectivity for aquatic species, advance habitat restoration, control invasive species, species conservation.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{28BC0AB6-7EF5-4580-812B-3B209BA1A346}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Revegetation and Hazard Mitigation on Mined Lands&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427022966424,\n",
       "                38.8945077849915\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 900000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894508,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1326,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 029|900000|Invasive Specie]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Invasive Species Detection, Prevention, and Eradication&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 800000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;USBR Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.042625,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 250,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This effort is for invasive species herbicide treatment on an annual basis (about 3,500 acres annually from 2008 through 2019) and mechanical removal when necessary, there are no revegetation efforts as the intent is the keep the channel in a more wide a&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;070XX06MU0622&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Platte River Restoraton Invasive Plant Removal&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426250002054,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 150000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;USBR Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.042625,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 249,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Perform additional analysis on invasive mussel early detection samples collect additional samples. Expand eDNA analysis to more samples. We currently only analyze eDNA at sites where veligers have been previously detected.\\r\\r\\nAnalyze mussel plankton tow s&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;070XX06MU0422&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Westwide Detection of Invasive Dreissand Mussels&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426250002054,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 15000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;USBR Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.042625,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 247,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Invasive Crayfish Identification: To assist with identifying spread of invasive crayfish, crayfish trapping may be performed by the laboratory during routine site visits. Traps will be baited and deployed during routine sample collection then any collect&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;070XX06MU0122&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Detection of Invasive Crayfish in the West&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426250002054,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 800000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894451,\n",
       "          &quot;LatLongTyp&quot;: &quot;BIA Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.042641,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 246,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The primary production goal is to double the capacity at one of the selected each tribal greenhouses, as Tribal greenhouses need funding to update and expand their facilities to increase each Tribe\\u2019s capacity to supply the growing need due to catastrop&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;060XX09TR0222&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Tribal Greenhouses&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.042641000099,\n",
       "                38.8944509997477\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 200000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894451,\n",
       "          &quot;LatLongTyp&quot;: &quot;BIA Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.042641,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 245,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;In coordination with Activity 9 subgroup efforts, this goal of this project will be to 1) to better understand native seed and plant materials need in Indian Country through outreach to Tribes, 2) increase the availability of and access to native seed re&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;060XX09TR0122&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Building Tribal Plant Ecology Technical Capacity&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.042641000099,\n",
       "                38.8944509997477\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1296785.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894451,\n",
       "          &quot;LatLongTyp&quot;: &quot;BIA Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.042641,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 244,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A GIS-based modeling and assessment and LiDAR will be used to provide a baseline for analyzing activates and disturbances across vast landscapes. Due to its versatility and ability to integrate diverse types of information, a GIS can be a valuable tool i&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;060XX08TR0622&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Revegetation and Hazard Mitigation on Mined Lands&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.042641000099,\n",
       "                38.8944509997477\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1848205.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894508,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1329,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 022|1848205|Keetoowah River]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Keetoowah Rivercane Conservation&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1800000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;FWS Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.042618,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 301,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Using appropriations to the Infrastructure Investment and Jobs Act, the U.S. Fish and Wildlife Service (FWS), in collaboration with other DOI bureaus, anticipates providing grants to support implementation of measures to prevent the introduction or sprea&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;150XX06MU0522&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Invasive Species Prevention NOFO&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 800000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894451,\n",
       "          &quot;LatLongTyp&quot;: &quot;BIA Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.042641,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 241,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Build Tribal capacity to manage invasive species, implement EDRR, prevention, and eradication measures.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;060XX06TR0322&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Building Invasive Species Management Capacity&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.042641000099,\n",
       "                38.8944509997477\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 3339450.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894449,\n",
       "          &quot;LatLongTyp&quot;: &quot;BLM Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.042606,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 240,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The BLM Working Capital Fund and SOS/IDIQ Capacity Building project will increase the availability of native seed resources for restoration by purchasing available native seed, contracting with private farmers/nurseries to grow native seed/seedlings, and&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX09US5822&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;BLM WCF SOS/IDIQ Capacity Building&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426059999389,\n",
       "                38.8944490001434\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 700896.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894508,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1331,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 014|700896|L\\u00ebnapeh\\u00f2kink Tr]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;L\\u00ebnapeh\\u00f2kink Tribal Cultural Heritage Project: Developing a Homelands Fellowship in the Delaware River Valley, Phase I&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 2163285.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894449,\n",
       "          &quot;LatLongTyp&quot;: &quot;BLM Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.042606,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 237,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The BLM Working Capital Fund and SOS/IDIQ Capacity Building project will increase the availability of native seed resources for restoration by purchasing available native seed, contracting with private farmers/nurseries to grow native seed/seedlings, and&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX08US5722&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;BLM WCF SOS/IDIQ Capacity Building&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426059999389,\n",
       "                38.8944490001434\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 6000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894508,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1332,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Colorado River Endangered Species Recovery and Conservation Programs&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 006|6000000|Lower Colorado ]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Lower Colorado River Multi-Species Conservation Program&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4374&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 212020.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894508,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1333,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;DOI - 014|212020|Maajii-aki&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Maajii-akii-gikenjigewin - Starting Out in Earth Conservation&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 417205.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894449,\n",
       "          &quot;LatLongTyp&quot;: &quot;BLM Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.042606,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 226,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The BLM Working Capital Fund and SOS/IDIQ Capacity Building project will increase the availability of native seed resources for restoration by purchasing available native seed, contracting with private farmers/nurseries to grow native seed/seedlings, and&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX07US4122&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;BLM WCF SOS/IDIQ Capacity Building&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426059999389,\n",
       "                38.8944490001434\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 950000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894508,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1337,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending (Or Other) For National Revegetation Strategy&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 029|950000|Mojave Desert E]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Mojave Desert Ecoregional Seed Collection and Production&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894508,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1335,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 028|1000000|Mitigate Physic]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Mitigate Physical and Environmental Hazards on Mined FWS Lands&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 800000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.89450778,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -77.0427023,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 75,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Invasive species \\u201ctrainers\\u201d to work with tribes in building management capacity.  The NAFWS will provide reports on tribes served after services have been provided. They are also conducted outreach to ensure tribes are aware of the opportunity.\\r\\n&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{F109455A-BAFA-4E66-AA9B-DF81D3DCCD11}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Supporting the Native American Fish and Wildlife Society to Build Tribal Capacity for Invasive Species Management, Including Early Detection-Rapid Response, Prevention, and Eradication&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427022966424,\n",
       "                38.8945077849915\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 800000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894508,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1320,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Colorado River Endangered Species Recovery and Conservation Programs&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 014|800000|Improved Endang]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Improved Endangered Fish Monitoring&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4374&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;FWS Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.042618,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 302,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Improve virtual trip planning experience for recreational visitors to national wildlife refuges and wetland management districts by developing more user-friendly trip planning tools on fws.gov and configure an OMB approved government survey instrument ca&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;150XX07US0122&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Virtual Recreational Trip Planning on Refuges&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 4330059.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894508,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1306,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 019|4330059|Enhancing Fire-]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Enhancing Fire-Dependent Plant Communities of the Piney Woods, Blackland Prairie, and Loess Plains of the East Gulf Coastal Plain&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 80000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;FWS Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.042618,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 299,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;America the Beautiful Challenge is a nationwide program. The vision is to streamline grant funding opportunities for new voluntary conservation and restoration projects around the United States.  Projects throughout the U.S., U.S. territories and Tribal&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;150XX04US0922&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;America The Beautiful Grants&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 300000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894508,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1308,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending (Or Other) For National Revegetation Strategy&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 028|300000|Expand the Sout]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Expand the Southwest Seed Partnership for Southwestern National Parks&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 400000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042618,\n",
       "          &quot;Notes&quot;: &quot;Coordinates for Main Interior Building&quot;,\n",
       "          &quot;OBJECTID&quot;: 1368,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending (Or Other) For National Revegetation Strategy&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 028|400000|Using eDNA to A]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Using eDNA to Assess Ecological Resilience of Restored Grasslands&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894508,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1338,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending (Or Other) For National Revegetation Strategy&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 014|2000000|Native Seed Col]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Native Seed Collection and Production in Key Geographies - National Revegetation Strategy&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Departmental Offices&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 72666667.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042618,\n",
       "          &quot;Notes&quot;: &quot;Coordinates for Main Interior Building&quot;,\n",
       "          &quot;OBJECTID&quot;: 1369,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Wildfire Management - Fuels Management&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 035|72666667|Wildland Fire M]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Wildfire Management - Fuels Management&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/deputy-secretary-beaudreau-announces-228-million-wildfire-mitigation-and-resilience&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 551816.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042618,\n",
       "          &quot;Notes&quot;: &quot;Coordinates for Main Interior Building&quot;,\n",
       "          &quot;OBJECTID&quot;: 1349,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 026|551816|Pathways to Res]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Pathways to Resilience: Ensuring a Future for Tidal Wetlands&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 15000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894508,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1321,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;DOI - 031|15000|Improving&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Improving Identification and Detection of Invasive Species in Western Watersheds&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 200000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894508,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1322,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending (Or Other) For National Revegetation Strategy&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;DOI - 014|200000|Improving&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Improving Midwest Restoration Capacity by Developing NPS and Tribal Native Seed Nodes&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 150000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894508,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1325,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;DOI - 029|150000|Increasing&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Increasing Westwide Detection of Invasive Species Through Additional Environmental DNA Collection and Analysis&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 26700000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042618,\n",
       "          &quot;Notes&quot;: &quot;Coordinates for Main Interior Building&quot;,\n",
       "          &quot;OBJECTID&quot;: 1347,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 010|26700000|Overall BIL Fun]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Overall BIL Funding&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 220000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894508,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1323,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending (Or Other) For National Revegetation Strategy&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;DOI - 014|220000|Increase N&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Increase Native Seed Production for Restoration in Intermountain National Parks&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 825185.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894508,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1324,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 014|825185|Increasing the ]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Increasing the BIA Invasive Species Award Program to Support Tribal Projects Implementing Prevention, Early Detection-Rapid Response, and Eradication&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Departmental Offices&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 10000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.894444,\n",
       "          &quot;LatLongTyp&quot;: &quot;Multiple&quot;,\n",
       "          &quot;Long&quot;: -77.042618,\n",
       "          &quot;Notes&quot;: &quot;Coordinates for Main Interior Building&quot;,\n",
       "          &quot;OBJECTID&quot;: 1370,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Wildfire Management - Joint Fire Science Program with Department of Agriculture&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 036|10000000|Wildland Fire M]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Wildfire Management - Joint Fire Science Program with Department of Agriculture&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/deputy-secretary-beaudreau-announces-228-million-wildfire-mitigation-and-resilience&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 176400.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.39449393,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -75.69374109,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1119,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Delaware River Basin Conservation Act&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoring upland habitats in the Blackbird Creek watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/delaware-watershed-conservation-fund-projects-funded-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -75.6937410902094,\n",
       "                39.3944939299742\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.45548677,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -75.05320194,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 775,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Iceland Coin Laundry Superfund Site (Site) consists of\\u00a0the former Iceland Coin Laundry and Dry Cleaner facility (former facility), located at 1888 Delsea Drive in the City of Vineland, Cumberland County, New Jersey, and\\u00a0an\\u00a0area of contaminated gro&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;ICELAND COIN LAUNDRY AREA GW PLUME&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -75.0532019403096,\n",
       "                39.4554867703068\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.4784241,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -75.02550809,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 788,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The former Kil-Tone Company manufactured arsenic-based pesticides from the late 1910s to the late 1930s at a facility which was located at 527 East Chestnut Avenue in a mixed use area within the City of Vineland, Cumberland County, NJ.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;FORMER KIL-TONE COMPANY&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -75.0255080901309,\n",
       "                39.4784240999232\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.415281,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -74.52695,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 781,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Price Landfill site is located in the City of Pleasantville and\\u00a0Egg Harbor Township, Atlantic County, New Jersey. The 26-acre landfill\\u00a0 originally was a sand and gravel excavation operation that closed in 1968. Beginning in 1971, Price Landfill beg&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PRICE LANDFILL&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -74.5269500002178,\n",
       "                39.4152809997509\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.13318684,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -74.04341407,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 791,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The White Swan Cleaners/Sun Cleaners site is located in Wall Township, Monmouth County, New Jersey. Two former dry cleaning operations \\u2013 White Swan Cleaners and Sun Cleaners \\u2013 have been determined to be sources of area wide volatile organic compound&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;WHITE SWAN LAUNDRY AND CLEANER INC.&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -74.0434140702883,\n",
       "                40.1331868401672\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.64207711,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -73.70545568,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 800,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Peninsula Boulevard Groundwater Plume Superfund site includes the area within and around a groundwater plume, which is an area where contaminants disperse, in the Village of Hewlett, Town of Hempstead, Nassau County, New York.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PENINSULA BOULEVARD GROUNDWATER PLUME&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -73.7054556801456,\n",
       "                40.6420771101206\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.645,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -73.949,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 608,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with agricultural water management related to NYC Parks. The project would provide on-site water infrastructure to 260 food-producing com&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;NYC Parks Community Gardens Irrigation System&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -73.9490000002534,\n",
       "                40.6450000000922\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.73650016,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -73.61029636,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 802,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Old Roosevelt Field Contaminated Groundwater Area site includes an area of groundwater contamination in the Village of Garden City in central Nassau County, New York.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;OLD ROOSEVELT FIELD CONTAMINATED GW AREA&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -73.6102963596662,\n",
       "                40.73650016023\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.698484,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -74.198242,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 786,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The White Chemical Corporation (WCC) site is a 4.4-acre vacant lot located at 660 Frelinghuysen Avenue in Newark, New Jersey. Historically, the site was used to manufacture various acid chlorides and fire-retardant compounds. The WCC\\u00a0property was used f&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;WHITE CHEMICAL CORP.&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -74.1982420000352,\n",
       "                40.6984840000704\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.74871158,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -74.13078473,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 783,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Diamond Head Oil Refinery Div. Superfund site is a 30.5-acre area near the Hackensack Meadowlands in Kearny, New Jersey. The site has over 20 acres of unoccupied land, including wetland areas, a drainage ditch, a small pond, a vegetated landfill area&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;DIAMOND HEAD OIL REFINERY DIV.&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -74.1307847295564,\n",
       "                40.7487115803397\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.44267955,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -74.44042314,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 780,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Fried Industries site is a 26-acre area located in the northwest corner of East Brunswick Township near the border of the Borough of Milltown in Middlesex County, New Jersey. For 25 years, Fried Industries operated the site and manufactured floor fin&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;FRIED INDUSTRIES&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -74.4404231401741,\n",
       "                40.4426795501366\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.31618291,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -75.13577107,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 808,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Chem Fab Superfund Site\\u00a0is located on N. Broad Street in Doylestown, Bucks County, Pennsylvania. From the mid-1960s to the late 1970s, Chem Fab, Inc. operated an electroplating and metal etching facility and also stored and disposed of processing ch&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;CHEM-FAB&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -75.1357710702482,\n",
       "                40.3161829102684\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 750000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.22884417,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -74.93156318,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1107,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Delaware River Basin Conservation Act&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Removing the Spring Garden Dam on Neshaminy Creek to restore fish passage for American shad, alewife, and blueback herring&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/delaware-watershed-conservation-fund-projects-funded-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -74.9315631796262,\n",
       "                40.2288441697658\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.2498481,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -75.28395631,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 810,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This Site is in the Borough of Lansdale and small portions of Hatfield, Towamencin, and Upper Gwynedd townships.\\u00a0The preliminary boundaries of the Site were determined based on groundwater quality data. In 1979, high levels of trichloroethene were detec&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;NORTH PENN - AREA 6&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -75.2839563097102,\n",
       "                40.2498481002391\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.43868288,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -75.61484516,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 811,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The 209-acre Crossley Farm site is located in a rural area in Hereford Township, Pennsylvania. A farm has been located on site since 1927. From the mid-1960s to the mid-1970s, the Bally Case and Cooler Company disposed of numerous drums of liquid waste a&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;CROSSLEY FARM&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -75.6148451597896,\n",
       "                40.4386828799783\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.46003257,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -75.33107876,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 809,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The 56-acre Watson Johnson Landfill site is located in Richland Township, Pennsylvania. A 32-acre landfill accepted industrial and municipal wastes on part of the site from the late 1950s until the early 1970s. Waste disposal activities contaminated soil&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;WATSON JOHNSON LANDFILL&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -75.3310787602588,\n",
       "                40.4600325697254\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 723244.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.82361934,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -74.80989963,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 446,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Bring Lenape Tribal youth back to ancestral lands, the Le\\u0308napeho\\u0300kink, within the Delaware River watershed and in portions of New York to cultivate tribal identity, cultural resilience, and provide career orienting experiences and pathways for Tribal y&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77787&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Developing a Le\\u0308napeho\\u0300kink Cultural Heritage Homelands Fellowship Along the Delaware River (DE, PA, NJ, NY)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -74.8098996299326,\n",
       "                40.8236193399636\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 266100.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.81926018,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -75.04738123,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1106,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Delaware River Basin Conservation Act&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Removing the No Name and Cedar Grove Dams on the Pequest River&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/delaware-watershed-conservation-fund-projects-funded-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -75.0473812300694,\n",
       "                40.819260180204\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.68992983,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -75.2197937,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1108,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Delaware River Basin Conservation Act&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Removing three dams on the Bushkill Stream to restore fish passage&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/delaware-watershed-conservation-fund-projects-funded-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -75.2197937003675,\n",
       "                40.6899298300573\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 626300.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.79461447,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -75.32534408,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1117,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Delaware River Basin Conservation Act&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoring streambank along Bushkill Creek at the Jacobsburg Environmental Education Center&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/delaware-watershed-conservation-fund-projects-funded-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -75.3253440798767,\n",
       "                40.7946144696675\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.690536,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -75.9359,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 487,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The resource concern is addressing the needs of aging Watershed Infrastructure.  Pennsylvania is generally taking a watershed approach to evaluating how to rehabilitate our existing infrastructure, which is why we are considering all five dams in the Lit&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Little Schuylkill PA-425 Koenigs  Dam&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -75.93589999974,\n",
       "                40.6905360001012\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.837062,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -76.004945,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 483,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The resource concern is addressing the needs of aging Watershed Infrastructure.  Pennsylvania is generally taking a watershed approach to evaluating how to rehabilitate our existing infrastructure, which is why we are considering all five dams in the Lit&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Little Schuylkill PA-422&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -76.0049450002626,\n",
       "                40.8370619996972\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.836814,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -76.004999,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 484,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The resource concern is addressing the needs of aging Watershed Infrastructure.  Pennsylvania is generally taking a watershed approach to evaluating how to rehabilitate our existing infrastructure, which is why we are considering all five dams in the Lit&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Little Schuylkill PA-422A Neifert Creek&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -76.004998999791,\n",
       "                40.8368139998116\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.814013,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -76.054968,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 486,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The resource concern is addressing the needs of aging Watershed Infrastructure.  Pennsylvania is generally taking a watershed approach to evaluating how to rehabilitate our existing infrastructure, which is why we are considering all five dams in the Lit&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Little Schuylkill PA-424 Hosensock Dam&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -76.0549680003709,\n",
       "                40.8140129997993\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.804896,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -76.008376,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 485,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The resource concern is addressing the needs of aging Watershed Infrastructure.  Pennsylvania is generally taking a watershed approach to evaluating how to rehabilitate our existing infrastructure, which is why we are considering all five dams in the Lit&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Little Schuylkill PA-423 Locust Creek Dam&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -76.0083759996077,\n",
       "                40.8048959999482\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.12077251,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -74.7706667,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 782,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The 200-acre Roebling Steel Company site, which is next to the Delaware River in Florence Township, New Jersey, was used to manufacture steel products. The Roebling Steel Company produced steel wire and cable at the site for many years before closing in&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;ROEBLING STEEL CO.&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -74.7706666998421,\n",
       "                40.1207725101561\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.0363,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -74.694,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 778,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The five-acre Kauffman &amp; Minteer (K&amp;M), Inc. site in Jobstown, New Jersey is the former site of an industrial transportation facility where hazardous wastewater from cleaning the inside of trucks was discharged into a drainage ditch and an unlined lagoon&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;KAUFFMAN &amp; MINTEER, INC.&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -74.6939999998852,\n",
       "                40.0363000002335\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.05825321,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -74.92633118,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 776,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Cosden Chemical Coatings Corp. site is located in Beverly, New Jersey. \\u00a0A paint formulation and manufacturing facility operated at the 6.7-acre site from 1945 until 1989when it permanently closed. The facility produced paints for industrial applicat&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;COSDEN CHEMICAL COATINGS CORP.&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -74.9263311803074,\n",
       "                40.0582532102788\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 96800.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.08904386,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -74.89753392,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 843,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Delaware River Basin Conservation Act&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Advancing living-shoreline design and permitting along an urban Delaware River waterfront&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/delaware-watershed-conservation-fund-projects-funded-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -74.8975339195838,\n",
       "                40.0890438600623\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 90000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.95190028,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -75.16060945,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 922,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Delaware River Basin Conservation Act&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Designing a riverfront trail and greenway along the Schuylkill River to connect communities to the river&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/delaware-watershed-conservation-fund-projects-funded-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -75.1606094501248,\n",
       "                39.9519002802668\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.976667,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -75.051944,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 787,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Puchack Well Field site is located in Pennsauken, New Jersey. In the 1970s various organic and inorganic contaminants were detected in water collected from wells at the Puchack Well Field. In 1984, due largely to chromium contamination, the general u&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PUCHACK WELL FIELD&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -75.0519439997729,\n",
       "                39.9766669998113\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 199000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.89823436,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -75.26590704,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1099,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Delaware River Basin Conservation Act&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Reconnecting Hermesprota Creek to its floodplain in Conway Park for environmental and community resilience&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/delaware-watershed-conservation-fund-projects-funded-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -75.2659070401198,\n",
       "                39.8982343599209\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.89516758,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -75.26065068,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 812,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Lower Darby Creek Area (LDCA) Site is located in Darby Township and Folcroft Borough in Delaware and Philadelphia counties, Pennsylvania. The Site consists of two separate landfills, the\\u00a0Clearview and Folcroft Landfills. The Clearview Landfill is on&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;LOWER DARBY CREEK AREA&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -75.2606506802871,\n",
       "                39.8951675803033\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 900000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.8799,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -75.2852,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Ducks Unlimited, NOAA Restoration Program, Local Government (Tinicum Township), State Government, Audubon Mid-Atlantic Chapter, Eastwick Friends and Neighbors Coalition, Friends of Heinz Refuge, L.L. Bean Outdoor Disc&quot;,\n",
       "          &quot;OBJECTID&quot;: 150,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The U.S. Fish and Wildlife Service and Ducks Unlimited are working to restore 150 acres of Henderson Marsh at John Heinz National Wildlife Refuge. The marsh has experienced historic tidal restrictions and reduced connectivity with Darby Creek, a tributar&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{c3beb284-4ce7-4266-924a-23818939232a}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Henderson Marsh Reconnection Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/henderson-marsh-reconnection-project&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -75.2852000002717,\n",
       "                39.8798999998645\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 293700.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.93369745,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -75.40131846,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1150,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Delaware River Basin Conservation Act&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Streamlining stormwater work through the Growing Greener Communities program&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/delaware-watershed-conservation-fund-projects-funded-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -75.4013184599222,\n",
       "                39.9336974498389\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.8562009,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -75.17008239,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 779,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Matteo &amp; Sons, Inc. Superfund site is located in West Deptford, New Jersey. In 1947, the Matteo family purchased the 82.5-acre property, which includes upland areas and adjacent mudflats between Woodbury Creek, Hessian Run, and U.S. Highway 130. The&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;MATTEO &amp; SONS INC.&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -75.1700823896117,\n",
       "                39.856200900037\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.60069913,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -75.63538905,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 727,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Standard Chlorine of Delaware, Inc. site (also known as Metachem) is three miles northwest of Delaware City. It is approximately 65 acres in size and is west of River Road (Route 9) near the south bank of Red Lion Creek. Standard Chlorine of Delaware&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;STANDARD CHLORINE OF DELAWARE, INC.&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -75.6353890500257,\n",
       "                39.6006991297572\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.62943249,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -75.92322994,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 745,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Ordnance Products Inc. Site occupies approximately 95 acres in North East, Maryland. From 1957 to 1979, the site was occupied by a munitions\\u00a0manufacturing facility that produced, stored, and packaged grenade fuses, detonators, and related devices fo&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;ORDNANCE PRODUCTS, INC.&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -75.9232299399872,\n",
       "                39.6294324900489\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.64,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -78.2,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 675,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Warm Springs Run Watershed.  \\u200bThe watershed contains several NRCS flood control structures. The sponsor would l&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Warm Springs Run West Virginia&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -78.1999999996946,\n",
       "                39.6399999997904\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.796688,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -77.196325,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 493,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Rehabilitation of the exisiting dam to meet current criteria for a high hazard dam and to extend the service life. The dam provides flood damage reduction benefits to properties downstream.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Middle Creek PA 637 Walker Lake&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.1963249998917,\n",
       "                40.7966880000975\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.49,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -80.57,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 577,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200b\\u200b\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Harmon Creek Watershed.  The watershed has several existing NRCS flood control dams. The sponsor would like&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Harmon Creek Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.5699999998738,\n",
       "                40.4899999998079\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.87,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -80.66,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 671,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Upper Grave Creek Watershed.  The sponsor wants to take a fresh look at this watershed that has several NRCS floo&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Upper Grave Creek Watershed West Virginia&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.6600000001307,\n",
       "                39.8699999997365\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.55,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -79.85,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 670,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Upper Deckers Creek Watershed.  \\u200bThe Sponsor wants to take a fresh look at this watershed that has several NRCS flood&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Upper Deckers Creek Watershed West Virginia&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -79.8499999996147,\n",
       "                39.5499999997381\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.55,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -80.3,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 669,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Upper Buffalo Creek Watershed.  The watershed has several NRCS flood control structures. The sponsor would like to take&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Upper Buffalo Creek Watershed West Virginia&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.3000000000012,\n",
       "                39.5499999997381\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.3177,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -80.9828,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 465,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Bonds Creek Site 1, is a zoned earthfill embankment, multi-purpose (flood control &amp; fish &amp; wildlife development) dam in Ritchie County, West Virginia that was constructed in 1961.    Bonds Creek Site 1 is a part of the Bonds Creek Watershed Project, plan&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Bonds Creek Site 1&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.9827999998786,\n",
       "                39.3176999999761\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.94872212,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -81.76143924,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 834,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Ravenswood PCE site is located in downtown Ravenswood, West Virginia. In September 1989, perchloroethylene (PCE) contamination was detected in three of the city\\u2019s production wells at levels exceeding the federal drinking water maximum contaminant l&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;RAVENSWOOD PCE&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -81.7614392398026,\n",
       "                38.9487221199794\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.95,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -80.4,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 641,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200b\\u200b\\u200b\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Polk Creek Watershed. The sponsor would like to take a fresh look at this watershed which has several NR&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Polk Creek Watershed West Virginia&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.4000000001869,\n",
       "                38.9499999999456\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.2528,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -80.3186,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 617,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bThe City of Clarksburg and the town of Nutter Fort frequently experience flooding from Elk Creek, a tributary of the West Fork River. The city wants NRCS to determine the feasibility of flood control protection through dams, channels, or other measure&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Elk Creek Watershed Flood Control - Clarksburg&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.3185999997429,\n",
       "                39.2527999999021\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.32,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -80.5,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 645,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Salem Fork Watershed.  The sponsor wants to take a fresh look at the watershed which has several NRCS flood control&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Salem Fork Watershed West Virginia&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.5000000003726,\n",
       "                39.3200000000142\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 3190000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.48993371,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -79.63842401,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 448,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Improve aquatic habitat connectivity and fish passage at the decommissioned Albright Power Station dam on the Cheat River in West Virginia. Project will restore hydrology and habitat for species like eastern brook trout and hellbender, improve climate an&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77835&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Increasing Aquatic Habitat Connectivity at the Albright Dam in the Cheat River Watershed (WV)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -79.6384240102514,\n",
       "                39.489933710282\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.4905,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -79.639,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Friends of the Cheat River, American Rivers, West Virginia DNR, Ohio River Basin Fish Habitat Partnership, PFW, West Virginia DEP, Pew Charitable Trust, West Virginia Land Stewardship Corps, Preston County Commission,&quot;,\n",
       "          &quot;OBJECTID&quot;: 149,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Albright Power Station Dam is a low head dam that was built in 1952 on the Cheat River to feed cooling towers of the adjacent coal fired power plant. The plant was closed in 2012, leaving the dam defunct of its original purpose. The dam blocks fish p&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{82d06c5f-9fc4-425a-85ba-11c1d48d0ae7}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Cheat River Albright Power Station Dam Removal&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/cheat-river-albright-power-station-dam-removal&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -79.6390000001301,\n",
       "                39.4905000001711\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.435,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -78.9928,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 496,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;New Creek Site 1 is a high hazard potential dam located in Mineral County, West Virginia. Funds will be used to bring New Creek Site 1 into compliance with current NRCS and WVDEP dam design safety and engineering criteria and performance standards while&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;New Creek 1&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -78.9927999996865,\n",
       "                39.434999999686\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.4,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -79.0,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 607,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200b\\u200b\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the New Creek Watershed. \\u200bThe sponsor wants to take a fresh look at this watershed which has several NRCS flo&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;New Creek Watershed West Virginia&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -79.000000000282,\n",
       "                39.3999999998185\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.34,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -78.94,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 610,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200b\\u200b\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Patterson Creek Watershed.  Patterson Creek is a large watershed with multiple NRCS flood control structure&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Patterson Creek Watershed West Virginia&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -78.9399999998112,\n",
       "                39.3399999996793\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.53,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -78.2,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 651,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with watershed protections in the Sleepy Creek watershed. \\u200bThe project will look at water quality concerns impacting fish &amp; wildlife&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Sleepy Creek Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -78.1999999996946,\n",
       "                39.5299999999324\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.0610185,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -77.42164901,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 829,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Hidden Lane Landfill was a 25-acre privately owned and operated disposal facility north of Virginia Route 7 between the Broad Run Farms and Countryside communities. It is immediately adjacent to the floodplain of the Potomac River.\\u00a0Starting in 1971,&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;HIDDEN LANE LANDFILL&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.4216490102807,\n",
       "                39.0610184999168\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Geological Survey&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 214286.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.947243,\n",
       "          &quot;LatLongTyp&quot;: &quot;USGS Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.367439,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 259,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Atlas, a key deliverable of the America the Beautiful initiative, will provide a map-based decision support tool providing science to help track the level of conservation, restoration, and stewardship for lands and waters.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;080XX07US0222&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;American Conservation and Stewardship Atlas&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.3674390003624,\n",
       "                38.9472429998823\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Geological Survey&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 550000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.947243,\n",
       "          &quot;LatLongTyp&quot;: &quot;USGS Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.367439,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 256,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Develop National EDRR Activity Information System. This will be both a researcher, manager and decision-maker support network, a communications hub and community of practice. It will create an online tool serving as the central repository for collecting&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;080XX06US0922&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Developing National EDRR Information System&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.3674390003624,\n",
       "                38.9472429998823\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Geological Survey&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 200000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.947243,\n",
       "          &quot;LatLongTyp&quot;: &quot;USGS Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.367439,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 254,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The USGS Invasive Species Habitat Tool (INHABIT) is a novel, web-based Decision Support Tool built with R Shiny to display spatial predictions and tabular summaries of habitat suitability from Species Distribution Models for invasive plants across the co&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;080XX06US0122&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;INHABIT Enhancements for Terrestrial Plant EDRR&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.3674390003624,\n",
       "                38.9472429998823\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Geological Survey&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 2500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.947243,\n",
       "          &quot;LatLongTyp&quot;: &quot;USGS Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.367439,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 258,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Provide architecture for DOI and other federal, state, tribal and local resource management agencies through the development, implementation and operation of an eDNA based species-detection and assessment framework to support early detection, rapid respo&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;080XX06US1322&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Developing eDNA based EDRR Framework Architecture&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.3674390003624,\n",
       "                38.9472429998823\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Geological Survey&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 750000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.947243,\n",
       "          &quot;LatLongTyp&quot;: &quot;USGS Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.367439,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 257,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;National Horizon Scan of terrestrial and aquatic plants, including imported aquatic plants hitchhikers; National Horizon Scan of invertebrate taxa; National Transportation horizon scans for terrestrial species. Each Horizon Scan follows a standardized wo&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;080XX06US1222&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;National EDRR Horizon Scans and HotSpot Analyses&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.3674390003624,\n",
       "                38.9472429998823\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Geological Survey&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.947243,\n",
       "          &quot;LatLongTyp&quot;: &quot;USGS Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.367439,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 260,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Sustainable Recreation Data Initiative will build on successes of the National Digital Trails Project with the objective of facilitating the DOI\\u2019s vision to promote accessibility of outdoor recreational opportunities on public lands. This will be a&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;080XX07US0822&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Sustainable Recreation Data Initiative&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.3674390003624,\n",
       "                38.9472429998823\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Geological Survey&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 476190.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.947243,\n",
       "          &quot;LatLongTyp&quot;: &quot;USGS Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.367439,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 261,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Atlas, a key deliverable of the America the Beautiful initiative, will provide a map-based decision support tool providing science to help track the level of conservation, restoration, and stewardship for lands and waters.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;080XX08US0622&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;American Conservation and Stewardship Atlas&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.3674390003624,\n",
       "                38.9472429998823\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Geological Survey&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 400000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.947243,\n",
       "          &quot;LatLongTyp&quot;: &quot;USGS Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.367439,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 263,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This research will develop, test, and establish protocols for using pollinator environmental DNA (eDNA) to assess the success of grassland restoration and to improve understanding of the functioning and ecological resilience of America\\u2019s grasslands. Th&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;080XX09MU0422&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Pollinator eDNA and Grassland Restoration Success&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.3674390003624,\n",
       "                38.9472429998823\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Geological Survey&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.947243,\n",
       "          &quot;LatLongTyp&quot;: &quot;USGS Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.367439,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 264,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The goal is to evaluate how natural and management factors affect the recovery of post-fire seedings in sagebrush steppe, focusing on informing key decisions such as treatment prioritization, seed selection, and resumption of post-fire grazing.  We will&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;080XX09MU0722&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Optimizing Native Seeding in Sagebrush Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.3674390003624,\n",
       "                38.9472429998823\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Geological Survey&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 333333.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.947243,\n",
       "          &quot;LatLongTyp&quot;: &quot;USGS Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.367439,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 265,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Atlas, a key deliverable of the America the Beautiful initiative, will provide a map-based decision support tool providing science to help track the level of conservation, restoration, and stewardship for lands and waters.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;080XX09US0322&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;American Conservation and Stewardship Atlas&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.3674390003624,\n",
       "                38.9472429998823\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Geological Survey&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 476190.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.947243,\n",
       "          &quot;LatLongTyp&quot;: &quot;USGS Building, DC&quot;,\n",
       "          &quot;Long&quot;: -77.367439,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 255,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Atlas, a key deliverable of the America the Beautiful initiative, will provide a map-based decision support tool providing science to help track the level of conservation, restoration, and stewardship for lands and waters.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;080XX06US0522&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;American Conservation and Stewardship Atlas&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.3674390003624,\n",
       "                38.9472429998823\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1150000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.64055,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -79.0599,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Trout Unlimited, private landowners, Natural Resources Conservation Service (in three states), Farm Service Agency, USFS, PFW, West Virginia DNR, Maryland DNR, West Virginia DEP, Garrett County Roads (MD), West Virgin&quot;,\n",
       "          &quot;OBJECTID&quot;: 1241,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Potomac Headwaters Fish Passage Restoration Project is a watershed scale project to reconnect over 195 miles of habitat for brook trout, American eel, and other aquatic species in the Potomac Headwaters of the Chesapeake Bay across the states of Mary&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{3414cdc7-c120-424c-acc6-5411870d3d6a}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Potomac Headwaters Fish Passage Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/potomac-headwaters-fish-passage-restoration&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;8&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -79.0599000002953,\n",
       "                39.6405499997096\n",
       "              ],\n",
       "              [\n",
       "                -79.1115500003,\n",
       "                39.5628600002595\n",
       "              ],\n",
       "              [\n",
       "                -79.5933620003172,\n",
       "                38.677453000206\n",
       "              ],\n",
       "              [\n",
       "                -79.5546699997582,\n",
       "                38.6482449997912\n",
       "              ],\n",
       "              [\n",
       "                -79.6151609996003,\n",
       "                38.6516689997898\n",
       "              ],\n",
       "              [\n",
       "                -79.3729870001696,\n",
       "                38.8323120001639\n",
       "              ],\n",
       "              [\n",
       "                -79.2704810003785,\n",
       "                38.6695079996754\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.8863,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -79.1262,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 499,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;North and South Mill Creek 4 is a zoned earthfill embankment, single purpose flood control dam in Grant County, West Virginia that was constructed in 1980.  It is a part of the North and South Mill Creek Subwatershed of the Potomac River Watershed Projec&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;North and South Mill Creek Site 4&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -79.1261999999396,\n",
       "                38.8863000001955\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.9003,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -79.1154,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 498,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;North and South Mill Creek 3 is a zoned earthfill embankment, single purpose flood control dam in Grant County, West Virginia that was constructed in 1982.  It is a part of the North and South Mill Creek Subwatershed of the Potomac River Watershed Projec&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;North and South Mill Creek Site 3&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -79.1153999999447,\n",
       "                38.9002999999941\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.7,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -79.15,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 654,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200b\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the South Fork River Watershed.  The South Fork River Watershed is a large watershed with multiple NRCS flood cont&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;South Fork River Watershed West Virginia&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -79.1500000001114,\n",
       "                38.6999999998246\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.4043,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -80.5699,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 461,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Big Ditch Run Site 1 is a zoned earthfill embankment, multi-purpose (flood control and recreation) dam located in Webster County, West Virginia that was constructed in 1968.  Webster County is a limited resource area.  Site 1 is a part of the Big Ditch S&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Big Ditch Run Site 1&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.5699000003147,\n",
       "                38.4043000003167\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.4043,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -80.5699,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 462,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Big Ditch Run Site 1 is an earthen embankment dam located in Webster County, West Virginia - a limited resource area. Site 1 is the only flood control structure in the watershed and of Gauley River Watershed tributary of Big Ditch Run. Site 1 provides fl&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Big Ditch Run Site 1&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.5699000003147,\n",
       "                38.4043000003167\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.8,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -80.6,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 646,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Saltlick Creek Watershed. The sponsors want to take a fresh look at this watershed which has existing flood contr&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Saltlick Creek Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.59999999966,\n",
       "                38.8000000000294\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.7646,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -80.6006,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 506,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Saltlick Creek Sites 4,6, 7, 8, &amp; 9 are earthen embankments located in the designated limited resource area of Braxton County, West Virginia and currently considered high hazard potential dams. The Sites provide protection to approximately 1497 resid&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Saltlick Creek 6&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.6005999997096,\n",
       "                38.7646000002735\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.7468,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -80.5956,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 507,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Saltlick Creek Sites 4,6, 7, 8, &amp; 9 are earthen embankments located in the designated limited resource area of Braxton County, West Virginia and currently considered high hazard potential dams. The Sites provide protection to approximately 1497 resid&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Saltlick Creek 7&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.5956000001944,\n",
       "                38.7468000000159\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.7329,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -80.5817,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 508,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Saltlick Creek Sites 4,6, 7, 8, &amp; 9 are earthen embankments located in the designated limited resource area of Braxton County, West Virginia and currently considered high hazard potential dams. The Sites provide protection to approximately 1497 resid&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Saltlick Creek 8&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.5817000003923,\n",
       "                38.7329000003017\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.7323,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -80.5949,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 509,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Saltlick Creek Sites 4,6, 7, 8, &amp; 9 are earthen embankments located in the designated limited resource area of Braxton County, West Virginia and currently considered high hazard potential dams. The Sites provide protection to approximately 1497 resid&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Saltlick Creek 9&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.5948999996873,\n",
       "                38.7323000002736\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.7564,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -80.6321,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 505,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Saltlick Creek Sites 4,6, 7, 8, &amp; 9 are earthen embankments located in the designated limited resource area of Braxton County, West Virginia and currently considered high hazard potential dams. The Sites provide protection to approximately 1497 resid&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Saltlick Creek 4&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.632100000069,\n",
       "                38.7564000000526\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2900000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.6425285,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -80.6138382,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 848,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Albright Dam Removal on the Cheat River Watershed in WV&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.6138381998621,\n",
       "                38.6425285002225\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 167000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.6425285,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -80.6138382,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1036,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will mitigate three abandoned mine hazards at New River Gorge National Park and Preserve.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Mitigate 3 Abandoned Mine Hazards at New River Gorge National Park and Preserve&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.6138381998621,\n",
       "                38.6425285002225\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.78,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -81.66,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 603,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Mill Creek Watershed.  \\u200bThe watershed contains several NRCS flood control structures. The sponsor would like to take&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Mill Creek Watershed West Virginia&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -81.6600000001912,\n",
       "                38.7799999999356\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.6109,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -81.5808,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 503,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Pocatalico River Site 28, is a zoned earthfill embankment, multi-purpose (flood control, stream flow regulation, &amp; municipal and industrial water supply) dam located in Jackson County, West Virginia that was constructed in 1987.    Site 28 is a part of t&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Pocatalico River Site 28&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -81.5807999999291,\n",
       "                38.6109000000337\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.226071,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -82.175945,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 491,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Funding for construction High hazard flood control structure originally designed as significant. Structure past it&#x27;s 50 year service life. Proposed measures include elevating the top of dam and armoring aux spillway. Primarily protects ag land and residn&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Margaret Creek 1&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -82.1759450003948,\n",
       "                39.2260709996566\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.302724,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -82.184189,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 492,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Funding for construction High hazard flood control structure originally designed as significant. Structure past it&#x27;s 50 year service life. Proposed measures include elevating the top of dam and armoring aux spillway. Primarily protects ag land and reside&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Margaret Creek 6&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -82.1841889996572,\n",
       "                39.3027240002543\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.42720276,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -86.42934415,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 738,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Pike and Mulberry Streets PCE plume site is located in Martinsville, Indiana. There are several possible sources of contamination, including Master Wear, a commercial and institutional dry cleaning and laundry operation formerly operating at 28 N. Ma&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIKE AND MULBERRY STREETS PCE PLUME&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -86.4293441502282,\n",
       "                39.4272027596958\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Defense&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 500585.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.93980749,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -86.4817948,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1428,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Enhance local volunteer collaboration and partnership for improved land management and invasive plant control to benefit the ecosystem and two federally listed bat species by working with private landowners adjacent to Southern Indiana Sentinel Landscape&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80869&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Working Lands Invasive Species Management in the Southern Indiana Sentinel Landscape (IN)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -86.4817947970861,\n",
       "                38.9398074939662\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.3803,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -88.3658,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 634,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bThis area of interest is the upper 3,200 acres of the Johnson Creek watershed which is part of the HUC 12 Pond Creek-Little Wabash watershed. Johnson Creek flows through the town of Fairfield, IL. and is prone to flooding causing inundation issues thr&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Pond Creek - Little Wabash Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -88.3657999996384,\n",
       "                38.3803000000275\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.55130215,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -90.48485105,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 753,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Valley Park TCE Superfund Site is located in the eastern portion of the city of Valley Park, approximately 15 miles southwest of the city of St. Louis, in St. Louis County, Missouri. The Site is north of the Meramec River and lies within the river fl&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;VALLEY PARK TCE&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.484851050079,\n",
       "                38.5513021501353\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.26102655,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -90.53854855,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 759,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Southwest Jefferson County Mining Site includes all of Jefferson County, Missouri, excluding the Herculaneum Site. Jefferson County is located on the northern portion of an area known as the Old Lead Belt where mining began in the early 1700s. Mine w&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;SOUTHWEST JEFFERSON COUNTY MINING&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.5385485495681,\n",
       "                38.2610265503118\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.60056774,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -91.21311411,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 756,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Riverfront Site is contaminated with industrial chemicals, primarily chlorinated volatile organics. In 1986, the Missouri Department of Natural Resources (MoDNR) began testing public supply wells in the state for volatile organic compounds (VOCs) and&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;RIVERFRONT&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -91.2131141100543,\n",
       "                38.6005677403005\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 109500.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.5279,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -87.346,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Indiana DNR&quot;,\n",
       "          &quot;OBJECTID&quot;: 137,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will remove the low head dam on Otter Creek in Vigo County, Indiana.  This 9ft tall, 215 ft wide dam, is a priority basin for Indiana Department of Natural Resources, with a rich history fish surveys that date back to David Star Jordan (1885&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{0dcbd54d-a349-439b-ba00-d3ecc460412a}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Markle Dam Removal on Otter Creek&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/markle-dam-removal-otter-creek-improved-safety-socially-vulnerable-indiana-community&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -87.345999999737,\n",
       "                39.5278999998712\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 325000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.5748,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -85.6602,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Indiana DNR&quot;,\n",
       "          &quot;OBJECTID&quot;: 135,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will remove the Charles Mill Dam, a 350 ft wide, 10 ft tall dam in the Mississinewa River at Marion, Indiana. This dam removal will open up the Mississinewa watershed above a USACE flood control dam and reconnect 965 miles of stream.  This i&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{dc78bc37-bae7-4e86-8826-efc85eae0455}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Charles Mill Dam Removal&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/charles-mill-dam-removal-improved-safety-socially-vulnerable-indiana-community&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -85.6601999995511,\n",
       "                40.5748000002013\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.80162,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -86.1987,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 633,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The funding request is for restoration of wetlands along the White River in the City of Indianapolis between Riverside Park and Southwestway Park. Both of the parks and White River provide recreation benefits to the citizens for Marion County and adjacen&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Pleasant Run - White River Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -86.1986999996214,\n",
       "                39.8016200002707\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.83232918,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -86.12310367,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 739,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Keystone Corridor Ground Water Contamination site is in Indianapolis, Indiana. The site consists of the Fall Creek well field and potential sources of the groundwater contamination. The groundwater has been affected by an approximately 4,500 foot lon&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;KEYSTONE CORRIDOR GROUND WATER CONTAMINATION&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -86.1231036701733,\n",
       "                39.8323291798606\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.698358,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -82.658106,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 518,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Funding for planning of a High hazard flood control structure originally designed as significant. Structure past it&#x27;s 50 year service life. Primarily protects ag land and residents near Lancaster, OH.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Upper Hocking 3&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -82.6581060003914,\n",
       "                39.6983579999175\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.698358,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -82.658106,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 519,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Located in Fairfield County, Ohio, Upper Hocking 3 dam is past it\\u2019s 50-year service live. The dam serves the surrounding agricultural community and residents near Lancaster, Ohio. Funds for this project will be used by NRCS and the Hunter\\u2019s Run Conse&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Upper Hocking 3&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -82.6581060003914,\n",
       "                39.6983579999175\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.71583,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -82.21055,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 672,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200b\\u200b\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with watershed protections in the Upper Rush Creek watershed. Water quality of concern due to mine drainage contaminants.  There&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Upper Rush Creek&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -82.210549999686,\n",
       "                39.7158299997348\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.58254608,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -83.17056781,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 803,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Little Scioto River Superfund site is located west of the city of Marion in Marion County, Ohio. The site is comprised of two separate Operable Units, or OUs. OU 1 consists of an 8.5-mile stretch of Little Scioto River and OU 2 is the location of the&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;LITTLE SCIOTO RIVER&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -83.1705678100303,\n",
       "                40.5825460798144\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.10379189,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -83.20747753,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 750,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Detroit Steel Corp. McLouth Steel Gibraltar Plant is at 28000 W. Jefferson Ave., Gibraltar, Michigan, west of the Canadian National North American rail line. Catch basins there receive wastewater from adjacent landfills.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;DSC MCLOUTH STEEL GIBRALTAR PLANT&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -83.2074775297094,\n",
       "                42.1037918896974\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 800000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.1097,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -84.2456,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: River Raisin Watershed Council&quot;,\n",
       "          &quot;OBJECTID&quot;: 134,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will remove the Brooklyn Dam, in Brooklyn, Michigan, in the upper River Raisin watershed. The Brooklyn Hydroelectric Dam is one of the many dams within the River Raisin watershed. This structure is classified by State of Michigan as High Haz&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{65b9a83b-049e-4255-896f-f5ec68d2e6c1}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Brooklyn Dam Removal&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/brooklyn-dam-removal-removing-high-hazard-dam-southeast-michigan&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -84.2456000002353,\n",
       "                42.109699999887\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Forest Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 1500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.38400263,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -88.10512254,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1409,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Build on landscape-scale habitat restoration at the U.S. Forest Service\\u2019s Midewin National Tallgrass Prairie in Illinois by removing invasive trees and shrubs on a 1,321-acre tract in the Grant Creek Priority Watershed Area which shares a mile-long bor&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;79564&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Grassland Habitat Expansion and Restoration across Midewin National Tallgrass Prairie in Illinois.&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -88.1051225397146,\n",
       "                41.3840026348482\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.34059036,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -89.08415702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 735,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Matthiessen and Hegeler Zinc Co. site is located in LaSalle, Ill., with a portion of an off-site residential area being investigated in adjacent Peru, Ill. The Matthiessen and Hegeler Zinc Co. operated a zinc smelter on the industrial portion of the&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;MATTHIESSEN AND HEGELER ZINC COMPANY&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -89.0841570198704,\n",
       "                41.3405903599082\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.2307464,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -89.07445204,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 736,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This Superfund site consists of an approximately 7.5-square-mile area in southeastern portion of the city of Rockford. Ground water investigations performed by the Illinois Environmental Protection Agency between 1981 and 1988 showed that many private an&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;SOUTHEAST ROCKFORD GROUND WATER CONTAMINATION&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -89.0744520401557,\n",
       "                42.2307463997828\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.41111941,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -84.61665556,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 747,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Velsicol Chemical Corp. (formerly Michigan Chemical Corp.) produced various chemical compounds and products at its 54-acre main plant site in St. Louis, Mich., from 1936 to 1978. Products included the fire retardant polybrominated biphenyl (PBB) and the&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;VELSICOL CHEMICAL CORP. (MICHIGAN)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -84.6166555602783,\n",
       "                43.4111194098202\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Forest Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 784472.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.43885635,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -84.77499427,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1385,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Conduct on-the-ground conservation activities, such as invasive species removal and preparation for prescribed burns in each of Michigan&#x27;s three National Forests with Youthwork AmeriCorps members and volunteers. Project will lead to wide-ranging restorat&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80415&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Engage the Next Generation of Ecosystem Stewards through Restoration of Michigan&#x27;s National Forests&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -84.7749942732421,\n",
       "                43.4388563546357\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.48150594,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -82.89445313,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 749,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Ten-Mile Drain\\u00a0in St. Clair Shores, Michigan, includes an underground storm sewer utility heavily contaminated with\\u00a0polychlorinated biphenyls (PCBs). A historical PCB release is believed to have migrated from a commercial parking lot onto adjacent&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;TEN-MILE DRAIN&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -82.894453129834,\n",
       "                42.4815059402945\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 855650.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.0158,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -83.6952,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Genessee County Parks, Michigan DNR&quot;,\n",
       "          &quot;OBJECTID&quot;: 136,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project is part of the Flint River Restoration, a long-term effort focused on the revitalization of the riverfront in downtown Flint, Michigan.  Riverfront revitalization will enhance community connectivity, restore natural ecosystem functions, impr&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{8b1d3b6b-0991-4451-895d-f0f5674b048e}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Hamilton Dam Removal&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/hamilton-dam-removal-removing-high-hazard-dam-flint-mi&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -83.69519999963,\n",
       "                43.0158000003117\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.17956543,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -78.68849069,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 801,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Eighteen Mile Creek Superfund site is in Niagara County, New York. The creek flows north for approximately 15 miles and discharges to Lake Ontario in Olcott, New York. Immediately north of the New York State Barge Canal are the East and West branches&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;EIGHTEENMILE CREEK&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -78.6884906899816,\n",
       "                43.1795654298408\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.22290583,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -78.02904908,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 796,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The five-acre Diaz Chemical Corporation site is located in Holley, New York. The area includes the Diaz Chemical facility and parts of the surrounding residential neighborhood.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;DIAZ CHEMICAL&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -78.0290490802789,\n",
       "                43.2229058300089\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.789,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -77.514,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 621,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bThe Hamlet of Honeoye, in the Town of Richmond, is the merging point for Mill Creek and Honeoye Creek (Honeoye Lake outlet channel). This area is relatively flat serving as the settling point for fast moving, unchecked storm waters. The uncontrolled s&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Honeoye Creek Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.5139999995526,\n",
       "                42.7890000002704\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Department-Wide Programs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.28,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -81.567,\n",
       "          &quot;Notes&quot;: &quot;This project&#x27;s exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 3 wells&quot;,\n",
       "          &quot;OBJECTID&quot;: 1294,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Orphaned Well Site Plugging, Remediation, And Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 028||Cuyahoga Valley]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Cuyahoga Valley National Park&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -81.5669999996861,\n",
       "                41.2799999999306\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2510000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.8738899,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -77.7996063,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1076,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Pennsylvania Priority Grassland Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.7996062997021,\n",
       "                40.8738899001254\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 20000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.8738899,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -77.7996063,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 928,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Evaluate site conditions to determine if further action is warranted under the CERCLA process.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Develop Site Condition Assessment for Ice Pond Run, Friendship Hill National Historic Site&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.7996062997021,\n",
       "                40.8738899001254\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 2860000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.87414159,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -77.79926007,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 430,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Increase priority grassland habitats for at-risk bird species in targeted geographies across Pennsylvania. By enhancing capacity to manage and restore grassland habitat, project will increase species population resiliency through native habitat planting,&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77481&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Targeted Grassland Habitat Restoration and Management in Priority Pennsylvania Landscapes&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -77.799260070127,\n",
       "                40.8741415902455\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Department-Wide Programs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.65,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -79.007,\n",
       "          &quot;Notes&quot;: &quot;This project&#x27;s exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 18 wells&quot;,\n",
       "          &quot;OBJECTID&quot;: 1273,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Orphaned Well Site Plugging, Remediation, And Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 022||Allegheny Natio]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Allegheny National Forest&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -79.0069999999626,\n",
       "                41.6499999998991\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.132724,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -76.82938296,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 797,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Facet Enterprises, Inc. site is located in Elmira Heights, New York. Bendix Corporation, which manufactured various products including bicycle parts, automobile engine components, and small arms during World War II owned the Facet Enterprises, Inc. s&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;FACET ENTERPRISES, INC.&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -76.829382960282,\n",
       "                42.1327240000105\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.08952538,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -76.0522148,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 798,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Vestal Water Supply Well 1-1 Superfund site is in Vestal, New York and sits on the southern bank of the Susquehanna River. The drinking water well (Well 1-1) was one of three production wells in the Vestal Town Water District 1. This well provided dr&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;VESTAL WATER SUPPLY WELL 1-1&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -76.0522147996707,\n",
       "                42.0895253802208\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 635500.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.06431503,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -75.4173496,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1171,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Delaware River Basin Conservation Act&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Using nature-based solutions to improve passage for aquatic organisms in the Upper Delaware River watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/delaware-watershed-conservation-fund-projects-funded-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -75.4173496004465,\n",
       "                42.0643150301376\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 1406062.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.39733734,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -76.20965735,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1404,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Use an existing project pipeline to advance replacement of 36 crossings in a cost-effective manner with timber deck bridges which have no footprint in the stream channel and allow for organism passage. Project will replace culverts to restore connectivit&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;81067&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Re-Establishing Aquatic Connectivity on State Game Lands (PA)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -76.2096573524088,\n",
       "                41.3973373359679\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.93065814,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -74.70034719,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 790,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;T\\ufeffhe Mansfield Trail Dump site is in Byram Township, Sussex County, New Jersey. From the 1950s through the early 1970s, various parties used the site as a dump area for septic and industrial waste. The site is made up of wooded, undeveloped properties&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;MANSFIELD TRAIL DUMP&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -74.7003471902556,\n",
       "                40.9306581400472\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.45882187,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -73.71460626,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 799,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Located in Kent, New York, the Arsenic Mine site includes a historic mine known as Pine Pond Mine, Silver Mine, and Brown\\u2019s Serpentine Mine. There are two former entry shafts and a northern mine shaft on private property. A southern mine shaft lies in&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;ARSENIC MINE&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -73.7146062600911,\n",
       "                41.4588218697792\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.315,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -74.491,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 628,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bOver the last several years, tremendous investment has been made by federal, State and local entities to construct and maintain drainage and flood control measures in this 16,000 acre organic soil region. These measures are essential to economically v&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Middle Wallkill River - Lower Pochuk Creek Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -74.491000000164,\n",
       "                41.3150000003176\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.90188881,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -74.51192738,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 784,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Rockaway Borough Wellfield site is located in Rockaway Borough, New Jersey. The site covers a two-square-mile area and includes three municipal water supply wells, which are located in a glacial aquifer designated by EPA as the sole source aquifer fo&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;ROCKAWAY BOROUGH WELL FIELD&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -74.5119273802966,\n",
       "                40.9018888102792\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.88537487,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -74.5406747,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 785,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Dover Municipal Well 4 site is located in Dover, New Jersey. Drilled in 1962, Dover Municipal Well No. 4 (DMW-4) began pumping in June 1965, and was one of the town&#x27;s primary water supply wells. The Dover Municipal Well No. 4 site is located in the T&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;DOVER MUNICIPAL WELL 4&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -74.5406747000804,\n",
       "                40.8853748702908\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.87864666,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -74.26938221,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 777,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Unimatic Manufacturing Corporation site is in an industrial and residential area of Fairfield, New Jersey, at 25 Sherwood Lane, Block 2301 and Lot 8. The site includes three properties: General Hose Products to the east, National Precision Tools Co.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;UNIMATIC MANUFACTURING CORPORATION&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -74.2693822095669,\n",
       "                40.8786466601435\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.87250338,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -74.10268349,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 789,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Garfield Groundwater Contamination site is located in Garfield, New Jersey. The site consists of the E.C. Electroplating (ECE) property and a chromium groundwater plume that extends a half-mile west from the ECE property to the Passaic River. Site in&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;GARFIELD GROUND WATER CONTAMINATION&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -74.1026834898031,\n",
       "                40.8725033800508\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.18579081,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -73.11970147,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 725,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The 34-acre Raymark Industries, Inc. site is located at 75 East Main Street in Stratford, Connecticut.  Raymark Industries, Inc. (Raymark) was a manufacturer of automotive brakes, clutch parts, and other friction components, primarily for the automotive&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;RAYMARK INDUSTRIES, INC.&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -73.1197014700307,\n",
       "                41.1857908099004\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.382,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -72.862,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 653,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with water pollution, flooding and erosion concerns.  Sources of point and nonpoint water pollution have a detrimental effect on shellfish b&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;South Central Coast Basin&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -72.8620000001842,\n",
       "                41.3820000002699\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.47646997,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -72.679793,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 726,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Durham Meadows site is located in the Town of Durham, Middlesex County, Connecticut and includes an area of groundwater contamination generally centered on Main Street. \\u00a0The Site includes historic Main Street in Durham center and contains industrial&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;DURHAM MEADOWS&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -72.6797929998156,\n",
       "                41.4764699696665\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.815,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -72.71,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 557,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with water pollution, flooding and erosion concerns.  Sources of point and nonpoint water pollution have a detrimental effect on shellfish b&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Connecticut River Basin&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -72.7100000001894,\n",
       "                41.8150000002768\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 15000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.55490317,\n",
       "          &quot;LatLongTyp&quot;: &quot;Naugatuck Valley Council of Governments&quot;,\n",
       "          &quot;Long&quot;: -73.04225784,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 701,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Naugatuck Valley Council of Governments will remove the Kinneytown Dam Facility on the Naugatuck River. The project will open 29 miles for blueback herring, American shad, and alewife on the mainstem river, and an additional 28 miles of tributaries f&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_019&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Kinneytown Dam Facility removal&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -73.0422578396425,\n",
       "                41.5549031700473\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.61216124,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -73.78127997,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 795,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Hopewell Precision site is located in Hopewell Junction in the Town of East Fishkill, Dutchess County, New York. Hopewell Precision, Inc. has operated at either 15 or 19 Ryan Drive since the early 1970&#x27;s manufacturing sheet metal parts and assemblies&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;HOPEWELL PRECISION&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -73.7812799696734,\n",
       "                41.6121612397665\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.698,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -73.343,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 581,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with water pollution, flooding and erosion concerns.  Sources of point and nonpoint water pollution have a detrimental effect on shellfish b&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Housatonic River and Southwest Coast Basin&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -73.3430000004396,\n",
       "                41.6979999999259\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.03086,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -72.75561,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 576,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bThe Town of Southwick is requesting assistance to address flooding during large storm events around Congamond Lake in Hampden County, MA. The two outlets of the lake have issues with sedimentation that can not be addressed with maintenance. In additio&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Great Brook Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -72.7556100004132,\n",
       "                42.0308600000516\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 3500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.36166543,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -72.96061542,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1380,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Restore floodplains benches, riparian forests, and aquatic connectivity within three river basins in the Appalachian Highlands in Massachusetts. Project will improve habitat and corridors from the southern Berkshires to the Connecticut River Valley, enha&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80833&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Aquatic Connectivity for Imperiled Species in the Appalachian Corridor of Massachusetts&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -72.9606154189376,\n",
       "                42.3616654263755\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.173,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -76.116,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 605,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200b\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Mud Creek watershed.  Primary flooding concerns are in residential areas, including major road closures during&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Mud Creek-Town of Cicero&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -76.115999999813,\n",
       "                43.1730000001175\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.367519,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -72.727024,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 479,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Jewel Brook Site 2 was constructed in 1969 to provide flood protection for Ludlow, Vermont.  BIL Rehab funds will be used to bring the dam into compliance and extend the service life of the structure.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Jewel Brook 2&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -72.7270240000882,\n",
       "                43.3675190000399\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.392494,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -72.713138,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 480,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Jewel Brook Site 3 was constructed in 1970 to provide flood protection for Ludlow, Vermont.  BIL Rehab funds will be used to bring the dam into compliance and extend the service life of the structure.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Jewel Brook 3&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -72.7131379996314,\n",
       "                43.3924940002095\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.38084,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -72.723027,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 481,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Jewel Brook Site 5 was constructed in 1972 to provide flood protection for Ludlow, Vermont.  BIL Rehab funds will be used to bring the dam into compliance and extend the service life of the structure.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Jewel Brook 5&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -72.7230270001304,\n",
       "                43.3808400000181\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.362337,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -72.722884,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 478,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Jewel Brook Site 1 was constructed in 1966 to provide flood protection for Ludlow, Vermont.  BIL Rehab funds will be used to bring the dam into compliance and extend the service life of the structure.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Jewel Brook 1&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -72.7228840000153,\n",
       "                43.3623369999538\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.92919104,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -72.28236756,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 831,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Ely Copper Mine Superfund Site\\u00a0is an abandoned copper mine located in Vershire, Orange County, Vermont, and encompasses approximately 350 acres where historic mining activities took place, including about 30 acres of waste material containing an est&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;ELY COPPER MINE&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -72.2823675598973,\n",
       "                43.9291910399842\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 1000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.0737629,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -72.6640017,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1382,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Produce a long-term conservation plan that supports, maintains, and enhances an ecologically functional and connected landscape with sustainable production of natural resources and recreational opportunities. Project will launch a strategic planning proc&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;81116&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Vermont Conservation Strategy Initiative (VT)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -72.6640017022856,\n",
       "                44.0737629015306\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.45036918,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -73.12244895,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 830,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Commerce Street Plume site is located at an industrial park in Williston, Vermont. The property formerly leased by Mitec Systems Corp. (Mitec), one of the known plume contributors, occupies 1 acre at 96 Commerce Street and currently includes one 6,00&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;COMMERCE STREET PLUME&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -73.1224489502592,\n",
       "                44.4503691799325\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.3587,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -72.96474,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 623,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bBIL WFPO funds will be used conduct a feasibility report into a proposed project that would preserve an historic dam and maintain a large impoundment that provides recreation and other benefits to the Town of Richmond and Huntington, Vermont.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Johns Brook Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -72.964740000327,\n",
       "                44.3587000001571\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.3765,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -72.4958,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 616,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bFunds will be used to rehabilitate an existing historical mill dam which currently impounds a 72-acre pond. This pond is important for recreation, wildlife, and fish habitat; plus it is a huge economic draw for Town of Calais. There are approximately&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Curtis Pond&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -72.4958000004402,\n",
       "                44.3765000000454\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 4784222.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.27686027,\n",
       "          &quot;LatLongTyp&quot;: &quot;Trout Unlimited, MI&quot;,\n",
       "          &quot;Long&quot;: -84.38924511,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 707,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Trout Unlimited will remove or replace eight fish passage barriers to open 55 miles of spawning, rearing, and refuge habitat on high-quality cold water streams in the Great Lakes region. The projects are expected to benefit native Great Lakes species lik&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_025&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Remove or replace eight fish passage barriers in Michigan and Wisconsin&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -84.389245110234,\n",
       "                44.2768602702599\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 5000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.4830856,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -84.6214066,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1097,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Reclaiming Resilience in Streams: Part 1 (MI)&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -84.6214065997973,\n",
       "                43.4830855997127\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 1904400.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.65391111,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -90.4989799,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1419,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Conduct implementation-focused research to fill gaps in understanding of climate and non-climate stressors on manoomin (wild rice) to support tribal, state, and local government manoomin management strategies. Project will strengthen relationships betwee&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80251&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Intergovernmental Collaboration for Manoomin (Wild Rice) Stewardship in Wisconsin&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -90.498979899293,\n",
       "                45.6539111092908\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 250000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.97412174,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -89.88810808,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1315,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project implements actions in Lac du Flambeau\\u2019s Tribal Climate Resiliency Plan (TCRP) or better known as Waaswaaganing Gaagige Bimaadiziwin Gaawin Geqaabi Naniizanasinoon. In the plan 20 species were assessed for climate vulnerability through a cl&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 014|250000|Implementation ]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Implementation Actions on Treaty Resources and Other Animal Species&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -89.8881080796736,\n",
       "                45.9741217399732\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 42465.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.9696725,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -89.8920991,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 43,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Develop capacity to prevent invasive species invasions on Trust lands.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{56269854-81B8-432E-B978-9980F1DDC5EB}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Invasive Species Prevention&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -89.8920991004448,\n",
       "                45.9696724997147\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 250000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.96970837,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -89.8921069,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 37,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will implement at least 10 climate adaptation actions from the Tribe&#x27;s Climate Resiliency Plan and promote co-stewardship between local agencies and Tribes.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{A25F5D90-D37E-4C23-B548-B1EA181D489B}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Implementation Actions on Treaty Resources and Other Animal Species&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -89.8921068996181,\n",
       "                45.9697083688011\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 212079.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.57009139,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -88.83743591,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1317,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Forest County Potawatomi Community proposes a Tribal Climate Resilience project that will help the Tribe implement sustainability and climate change resilience in the Tribal community, specifically by establishing the Tribe\\u2019s Sustainability and Res&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;DOI - 024|212079|Implementi&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Implementing Sustainability &amp; Climate Change Resilience - Forest County Potawatomi Community&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -88.8374359101682,\n",
       "                45.5700913901363\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 212079.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.57190837,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -88.90290655,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 78,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Tribal Climate Resilience project will help the Tribe implement sustainability and climate change resilience in the Tribal community, specifically by establishing the Tribe\\u2019s Sustainability and Resilience Program.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{52506636-F404-48D8-8542-0FB46810F363}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Tribal Climate Resilience Implementation Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -88.9029065501079,\n",
       "                45.5719083736423\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 3600000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.02100571,\n",
       "          &quot;LatLongTyp&quot;: &quot;Grand Traverse Band of Ottawa and Chippewa Indians&quot;,\n",
       "          &quot;Long&quot;: -85.60477204,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 690,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Tribal Priority Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Grand Traverse Band of Ottawa and Chippewa Indians will replace 12 road stream crossings with fish passage infrastructure. They will also investigate fish passage alternatives for two hydropower dams: Tower Dam and Kleber Dam. Funding will support hi&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_008&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Replacement of 12 road stream crossings with fish passage infrastructure&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -85.6047720402959,\n",
       "                45.0210057097921\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.31413397,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -85.26193877,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 748,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Charlevoix Municipal Well site is located in Charlevoix, Michigan. Operations at a public school as well as several industrial and commercial facilities may have contaminated soil and groundwater with hazardous chemicals. Groundwater contamination im&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;CHARLEVOIX MUNICIPAL WELL&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -85.2619387697874,\n",
       "                45.3141339702175\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 85000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.4524756,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -84.6032488,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 31,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Build capacity for early detection/rapid response to invasive species invasions&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{7E581170-ABD4-40C2-AC14-C271120A920C}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Expanded Invasive Species Management, Early Detection and Rapid Response and Invasive Plant Disposal Alternatives&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -84.6032488002458,\n",
       "                46.4524755999544\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 5503400.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.31833376,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -89.37499969,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 438,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Remove 27 stream barriers located in fourteen Michigan counties to restore aquatic organism passage for at-risk species including Eastern Massasauga Rattlesnake, Pickerel Frog, and Flutedshell and Elkhorn freshwater mussels. By partnering with local orga&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77578&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Reclaiming Resilience and Removing Barriers to Aquatic Organism Passage in Michigan Streams&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -89.3749996896426,\n",
       "                46.3183337598431\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 165577.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.52368,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -91.2009,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 923,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Resilient Recreation Sites&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Funding will complete compliance and design for a network of mainland trails created to enhance health/fitness opportunities for Red Cliff tribal members and expand trail experiences for Apostle Islands visitors.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Designing the Apostle Islands National Lakeshore trail network (ADA and tribal land connections)&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -91.2009000001054,\n",
       "                46.5236799997261\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 232153.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.963776,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -89.6848121,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 42,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Build capacity for early detection/rapid response to invasive species invasions&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{742568E9-C114-4AD2-8D51-D8E62C40C80E}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Invasive Species Early Detection Plan&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -89.6848121003376,\n",
       "                47.9637760002884\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.134514,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -67.98994,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 523,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Rehabilitation of existing flood control struture as well as adding the required infrastructure to provide irrigation water to the surrounding crop ground&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Violette Brook Dam&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -67.9899400003124,\n",
       "                47.1345139998454\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior and Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service and the Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 1663142.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.87832095,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -68.88775635,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1412,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Create a portfolio of high priority river restoration projects that address top habitat needs, while producing safer and cost-effective infrastructure using a robust public-private consortium to support the success of developing this program in a region&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;79771&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Prioritizing River Restoration in the Wolastoq-St.John Watershed (ME)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -68.8877563475467,\n",
       "                46.8783209546399\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior and Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service and the Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 4999388.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.41159461,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -68.6486499,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1437,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Conduct habitat assessments of moose, wood turtles, vernal pools, fish passage for eastern brook trout and Atlantic salmon, plus restore riparian habitat and aquatic connectivity through the replacement of five stream crossings. Project will address goal&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;81192&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Prioritizing Habitat Restoration and Aquatic Connectivity in the Penobscot River Watershed (ME)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;5&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -68.6486498953853,\n",
       "                45.411594606569\n",
       "              ],\n",
       "              [\n",
       "                -68.7118879676207,\n",
       "                45.0995928803086\n",
       "              ],\n",
       "              [\n",
       "                -68.135173965944,\n",
       "                45.2701181024889\n",
       "              ],\n",
       "              [\n",
       "                -68.787555257688,\n",
       "                46.173759385775\n",
       "              ],\n",
       "              [\n",
       "                -69.1082526984111,\n",
       "                45.376567914964\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 5000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.7463837,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -69.0169067,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 992,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Improving Fish Passage at Milltown and Woodland Dams on the International St. Croix River, Maine&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -69.0169067002617,\n",
       "                45.746383699791\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 6600000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.15894353,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -67.40237106,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 420,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Expand aquatic connectivity for river herring and other at-risk species and enhance watershed health and local economic vitality in the St. Croix River and the Bay of Fundy. The project will significantly improve fish passage in historic spawning habitat&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77070&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Improving Connectivity for Sea-Run Fish at Milltown and Woodland Dams on the St. Croix River (ME)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -67.402371060373,\n",
       "                45.1589435300149\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2979896.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.99704646,\n",
       "          &quot;LatLongTyp&quot;: &quot;Penobscot Indian Nation&quot;,\n",
       "          &quot;Long&quot;: -68.62971625,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 688,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Tribal Priority Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Penobscot Indian Nation will eliminate five culvert and dam barriers within the East Branch of the Penobscot River. This work will benefit Endangered Species Act-listed Atlantic salmon and other migratory fish species. The project will also build tri&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_006&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Removal of five culvet and dam barriers&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -68.6297162496689,\n",
       "                44.9970464603103\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 14826500.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.30335591,\n",
       "          &quot;LatLongTyp&quot;: &quot;Maine Dept of Marine Resources&quot;,\n",
       "          &quot;Long&quot;: -69.7681145,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 704,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Maine Department of Marine Resources will design and implement a fish lift at Woodland Dam on the St. Croix River, providing access to 600 miles for all migratory fish and 60,000 acres of habitat for alewife. By benefitting species like alewife, Amer&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_022&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Implement fish lift on the St. Croix River&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -69.7681144995795,\n",
       "                44.3033559102058\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 350000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.0328,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -70.104,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Atlantic Salmon Federation, Maine Department of Marine Resources, NFWF, Town of Lisbon Maine, Town of Sabattus Maine, NOAA&quot;,\n",
       "          &quot;OBJECTID&quot;: 1242,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will remove two dams, the Upper Town Dam and the Mill Remnant Dam, from the Sabattus River, a tributary to the Androscoggin River in Maine. Both dams will be removed, and the river banks will be restored and revegetated. Removal of these two&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{03fb3fe1-2a71-42ae-ae50-bf85413f4242}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Sabattus River Restoration: Removal of Upper Town Dam and Mill Remnant Dam&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/sabattus-river-restoration-removal-upper-town-dam-and-mill-remnant-dam&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;2&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -70.1040000002547,\n",
       "                44.0328000000258\n",
       "              ],\n",
       "              [\n",
       "                -70.1077999996706,\n",
       "                44.120499999799\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Park Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.369,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -68.2102,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 268,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will include three components: (1) plug ditches in the wetland to improve natural water flow, (2) install culverts and boardwalk to improve recreation value of trails and reduce flooding, and (3) plant native plants appropriate for future cl&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;100XX07ME3022&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoration to improve trail use in ACAD&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -68.210199999934,\n",
       "                44.3690000002194\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.34627994,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -68.80717176,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 746,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Callahan Mining Corp site is located about 1,000 feet east-southeast of Harborside Village in Brooksville, Hancock County, Maine. Zinc-copper sulfide ore deposits at the Site were discovered in 1880.  The mine operated from the late 1800s until its c&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;CALLAHAN MINING CORP&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -68.8071717595642,\n",
       "                44.3462799396809\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.66433,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -68.3585,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1111,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Resilient Recreation Sites&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoration efforts to improve recreation use of trails in Great Meadow wetland, Acadia National Park&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -68.3585000000719,\n",
       "                44.6643299999412\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 7554797.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.65398915,\n",
       "          &quot;LatLongTyp&quot;: &quot;Downeast Salmon Federation, ME&quot;,\n",
       "          &quot;Long&quot;: -67.72716437,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 703,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Atlantic Salmon Federation will address fish passage barriers in the Penobscot River watershed to support the largest run of Atlantic salmon (a NOAA Species in the Spotlight) in the United States. They will completely remove two dams and install fish&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_021&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Peneobscot River watershed improval for fish passage&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -67.727164369634,\n",
       "                44.6539891501422\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2006693.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.95875677,\n",
       "          &quot;LatLongTyp&quot;: &quot;Pleasant Point Reservation&quot;,\n",
       "          &quot;Long&quot;: -67.0418591,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 689,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Tribal Priority Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Passamaquoddy Tribe (Pleasant Point Reservation) will identify preferred approaches to enhance fish passage across the Grand Falls and Woodland Dams. The project will strengthen tribal engagement in restoration decision-making alongside state and fed&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_007&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Enhance fish passage across the Grand Falls and Woodland Dams&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -67.0418590995832,\n",
       "                44.958756769746\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;&lt;Null&gt;&quot;,\n",
       "          &quot;FundingAmo&quot;: 5000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.0020092771287,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: 45.0020092771287,\n",
       "          &quot;Notes&quot;: &quot;$5 million for Planning Grants awarded over multiple years&quot;,\n",
       "          &quot;OBJECTID&quot;: 1255,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Community Relocation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Community Driven Relocation Demonstration Project - Passamaquoddy Indian Tribe&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -67.1002994127183,\n",
       "                45.0020092771287\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.78328,\n",
       "          &quot;LatLongTyp&quot;: &quot;Point&quot;,\n",
       "          &quot;Long&quot;: -101.322613,\n",
       "          &quot;Notes&quot;: &quot;County: Bottineau;API #: 33-009-02017&quot;,\n",
       "          &quot;OBJECTID&quot;: 836,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Orphaned Well Site Plugging, Remediation, and Restoration program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Orphaned oil and gas wells are polluting backyards, recreation areas, and community spaces across the country. Methane leaking from many of these unplugged wells is a serious safety hazard and is a significant cause of climate change, being more than 25&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Rice ET AL 1H&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -101.322612999965,\n",
       "                48.7832799999783\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.783465,\n",
       "          &quot;LatLongTyp&quot;: &quot;Point&quot;,\n",
       "          &quot;Long&quot;: -101.330547,\n",
       "          &quot;Notes&quot;: &quot;County: Bottineau; API#: 33-009-01981&quot;,\n",
       "          &quot;OBJECTID&quot;: 835,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Orphaned Well Site Plugging, Remediation, and Restoration program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Orphaned oil and gas wells are polluting backyards, recreation areas, and community spaces across the country. Methane leaking from many of these unplugged wells is a serious safety hazard and is a significant cause of climate change, being more than 25&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Rice Trust 1&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -101.330546999606,\n",
       "                48.7834649998991\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.93527,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -113.3427,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 657,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist with agricultural water management related to St. Mary Canal. The canal is a deteriorated state resulting in reduced flow&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;St. Mary Canal Modernization Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -113.342699999688,\n",
       "                48.9352699997265\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1421072.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.76070668,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -113.19041347,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 38,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Actions in this project include a culturally informed approach to water management, co-management of landscapes, sharing Indigenous knowledge and data, and building the adaptation workforce through agricultural producers and Climate Warrior Interns.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{B3EC2658-64C3-4D1A-AAC1-1921D98ACC92}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Implementation of the Blackfeet Climate Change Adaptation Plan&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -113.190413471253,\n",
       "                48.7607066765326\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 9779000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.7606966,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -113.1903952,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 3,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Indian Water Rights Settlements&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will plan, design and construct facilities to supply domestic water and support irrigation-including developing new water infrastructure on the Blackfeet Reservation.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{42F0D40C-40D4-41C4-B007-5F67687404F7}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Blackfeet BIA Water Rights Settlement Act&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -113.190395200419,\n",
       "                48.7606966000953\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2314610.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.96558732,\n",
       "          &quot;LatLongTyp&quot;: &quot;Enole Dam, WA&quot;,\n",
       "          &quot;Long&quot;: -119.5016022,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 714,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Trout Unlimited will conduct a planning and feasibility assessment for the removal of Enloe Dam on Similkameen River, a tributary of the Columbia River. The dam has blocked fish passage for 100 years. Its removal would open access to cold water habitat,&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_032&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Feasibility assessment for the removal of Enloe Dam&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.501602200141,\n",
       "                48.9655873197932\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 456206.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.89803962,\n",
       "          &quot;LatLongTyp&quot;: &quot;Nooksack Tribe&quot;,\n",
       "          &quot;Long&quot;: -122.354103,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 692,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Tribal Priority Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Nooksack Tribe will work collaboratively with the Lummi Tribe, the City of Bellingham, and the Washington Department of Fish and Wildlife to develop a plan for city-owned passage barriers that both addresses infrastructure needs and meets fisheries g&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_010&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Plan development for city-owned passage barriers&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.354102999751,\n",
       "                48.8980396200147\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1332278.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 65.34199596,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -147.7879929,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 225,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;a) Improve access to the outdoors, including ADA/ABA enhancements and removing barriers at recreation sites and facilities, to improve access for people with disabilities; b) Enhance tribal ability to access outdoor activities important to tribal subsist&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX07MU5222&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Increase Recreational Access on BLM Lands&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;16&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.781649600205,\n",
       "                34.5468646599871\n",
       "              ],\n",
       "              [\n",
       "                -107.065171299905,\n",
       "                37.5409100903371\n",
       "              ],\n",
       "              [\n",
       "                -119.692767799699,\n",
       "                39.0420420400052\n",
       "              ],\n",
       "              [\n",
       "                -124.172111400237,\n",
       "                40.1701423496842\n",
       "              ],\n",
       "              [\n",
       "                -115.739486600118,\n",
       "                40.7491698702759\n",
       "              ],\n",
       "              [\n",
       "                -109.177199299895,\n",
       "                40.89938876974\n",
       "              ],\n",
       "              [\n",
       "                -124.150449400323,\n",
       "                41.0521008796972\n",
       "              ],\n",
       "              [\n",
       "                -112.611123399582,\n",
       "                42.3724302001031\n",
       "              ],\n",
       "              [\n",
       "                -123.154778899944,\n",
       "                42.4164223197797\n",
       "              ],\n",
       "              [\n",
       "                -108.882348800075,\n",
       "                42.8352067301328\n",
       "              ],\n",
       "              [\n",
       "                -106.529655699939,\n",
       "                44.3521002401868\n",
       "              ],\n",
       "              [\n",
       "                -103.48293340016,\n",
       "                44.4101857300768\n",
       "              ],\n",
       "              [\n",
       "                -105.3787555001,\n",
       "                44.6363382299442\n",
       "              ],\n",
       "              [\n",
       "                -108.021183400226,\n",
       "                44.7846192900293\n",
       "              ],\n",
       "              [\n",
       "                -108.733505000289,\n",
       "                45.6441522299814\n",
       "              ],\n",
       "              [\n",
       "                -147.787992900108,\n",
       "                65.3419959600067\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 651250.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 65.88051887,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -149.7166034,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 224,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;a.\\tCommunity assistance to promote close-to home recreation near and far from BLM managed public lands (assistance for urban/rural, underserved/nature deprived communities)\\r\\r\\nb.\\tCampground modernization, recreation access facilities, visitor experiences&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX07MU4822&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;BLM Investments to Adapt Recreation Sites&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;8&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -104.243838900143,\n",
       "                33.6300237896728\n",
       "              ],\n",
       "              [\n",
       "                -111.996567800087,\n",
       "                38.7168291000712\n",
       "              ],\n",
       "              [\n",
       "                -110.689678700404,\n",
       "                39.3240463600959\n",
       "              ],\n",
       "              [\n",
       "                -120.042724200167,\n",
       "                40.0599527502172\n",
       "              ],\n",
       "              [\n",
       "                -112.160308600284,\n",
       "                40.2181954898418\n",
       "              ],\n",
       "              [\n",
       "                -109.185688499704,\n",
       "                40.8974213500269\n",
       "              ],\n",
       "              [\n",
       "                -114.15109710031,\n",
       "                42.6097934396982\n",
       "              ],\n",
       "              [\n",
       "                -149.716603400121,\n",
       "                65.880518869937\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 589762.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 59.40390396,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -135.88442127,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 44,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will allow restoration implementation and follow-up monitoring for Phase 3, to protect the buildings of the Jilkaat Kwaan Heritage Center Campus. The project is funded in part through Tribal Climate Resilence (TCR) annual appropriations.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{774A8DF5-25A3-4956-924F-26FE47F4DAF0}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Jilkaat Kwaan Heritage Center Bank Stabilization Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -135.884421266271,\n",
       "                59.4039039643402\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 296537.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 59.39893274,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -135.8904115,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1328,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Tribe will implement immediate Protect-In-Place measures that will also provide support for the long-term health of salmon runs by creating naturally-derived bank erosion protection structures that also provide salmon habitat. Our village is located&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 031|296537|Jilkaat Kwaan H]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Jilkaat Kwaan Heritage Center Bank Stabilization Project - Chilkat Indian Village (Klukwan)&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -135.890411500284,\n",
       "                59.398932740214\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1410000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 60.5470463,\n",
       "          &quot;LatLongTyp&quot;: &quot;Copper River Watershed Project&quot;,\n",
       "          &quot;Long&quot;: -145.7585833,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 696,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Copper River Watershed Project will remove two culverts and design seven additional culvert removals in Copper River delta. This flood-prone area has seen multiple 100-year flood events in recent years. Removing the culverts will reduce the risk of struc&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_014&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Culvert removal in Copper River delta&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -145.758583299956,\n",
       "                60.5470462998025\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2872614.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 60.54455582,\n",
       "          &quot;LatLongTyp&quot;: &quot;Eyak Corporation, Cordova&quot;,\n",
       "          &quot;Long&quot;: -145.7588376,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 685,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Tribal Priority Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Eyak Corporation will build capacity for planning and implementing fish passage and connection restoration projects in partnership with the U.S. Fish and Wildlife Service and the Copper River Watershed Project. The work will support salmon species of&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_003&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Build capacity for planning and implementing fish passage and connection restoration projects&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -145.758837600436,\n",
       "                60.544555819897\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 960000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 60.12459833,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -149.4099783,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 911,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;As site conditions were discovered to be unstable with elevated levels of arsenic, and likely to deteriorate if interim action is not taken, onsite work will be performed to stabilize and remove the immediate threats. Note: this is intended for the porti&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Conduct Time Critical Removal Action at Glass-Heifner Mine Site at Kenai Fjords National Park&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -149.409978300089,\n",
       "                60.1245983299518\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1614106.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 61.04521,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -151.18027,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Tyonek Tribal Conservation District, Tyonek Native Corporation, Alaska DFG, NRCS&quot;,\n",
       "          &quot;OBJECTID&quot;: 173,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Tyonek Creek is one of the largest and most important salmon streams near the village of Tyonek, Alaska. The Tyonek Native Corporation owns and maintains the road and is the primary partner. The project will replace an undersized culvert with a channel s&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{d516636b-e4cb-4dbd-8508-efc65adf19dc}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Tyonek Creek Culvert Replacement for the Benefit of Subsistence Resources&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/tyonek-creek-culvert-replacement-benefit-subsistence-resources&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -151.180270000093,\n",
       "                61.0452099997928\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 969100.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 61.20661608,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -149.8845013,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 874,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Bristol Bay National Wetlands Inventory&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -149.884501299823,\n",
       "                61.2066160801621\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Park Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 88000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 61.217,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -149.886,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 287,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;COLLECTION, PRODUCTION: This funding would build Alaska&#x27;s bank of regional and site-specific native seed for local restoration projects. Project outcomes include creating private sector jobs, increasing plant materials, and expanding agency botanical cap&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;100XX09AK0722&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Increase native seed bank to support AK parks&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -149.885999999635,\n",
       "                61.2170000000789\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1804800.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 61.58140169,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -149.43942331,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 52,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project is designed to implement a comprehensive outreach and community-based program to reduce the risks from the climate-driven increase of Paralytic Shellfish Poisoning in the Alaska marine ecosystem.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{42CF2DED-4F15-4486-931F-0C18E23660D6}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Paralytic Shellfish Poisoning Risk Management&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -149.439423307218,\n",
       "                61.5814016891228\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1804800.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 61.59904266,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -149.2186811,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1348,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Every year in Alaska people are sickened and can die from toxicity caused by harmful algal blooms. This project is designed to implement a comprehensive outreach and community-based program to reduce the risks from the climate-driven increase of PSP in t&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 029|1804800|Paralytic Shell]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Paralytic Shellfish Poisoning Risk Management&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -149.218681100037,\n",
       "                61.5990426599892\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1558006.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 61.74043301,\n",
       "          &quot;LatLongTyp&quot;: &quot;Chickaloon Native Village&quot;,\n",
       "          &quot;Long&quot;: -148.9195606,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 683,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Tribal Priority Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Chickaloon Native Village will remove fish passage barriers within traditional ancestral lands and develop a Fish Passage Working Group for the Matanuska-Susitna Borough. They will also increase the knowledge and capacity of tribal staff members to overs&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_001&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Removal of fish passage barriers in the Matanuska-Susitna Borough&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -148.919560600449,\n",
       "                61.7404330098373\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1318604.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 61.59437,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -145.22308,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Chugach Native Corporation, State of Alaska, BLM, NRCS, NMFS, Copper River Watershed Project, The Denali Commission&quot;,\n",
       "          &quot;OBJECTID&quot;: 172,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will remove an undersized, double barrel culvert on the Little Tonsina River in the Valdez-Cordova Borough.  This project is currently the highest priority barrier removal project for the Service in Alaska because of the 70.4 miles of relati&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{5326aac2-2f54-4ca9-8caa-c79b700273cc}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Little Tonsina River Bridge Installation&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/little-tonsina-river-bridge-installation&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -145.223079999723,\n",
       "                61.594370000104\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 230000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 61.45758553,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -145.4740877,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 186,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Replace an undersized culvert and reestablish upstream connectivity for juvenile and adult salmonids to improve infrastructure security and increase the resistance, resilience, and adaptability to climate change.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX02AK3522&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Little Tonsina Aquatic Organism Passage&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -145.474087700179,\n",
       "                61.4575855298861\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 63.87616,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -143.213,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1207,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Placer mined stream restoration - this is a \\&quot;Healthy Lands Focal Area\\&quot;.  Design and construction of stream restoration.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yukon-Tanana Uplands Ecoregion Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -143.213000000206,\n",
       "                63.8761600000416\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 185000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 67.09149795,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -149.9636089,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 227,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The project is focused on restoring and increasing bird habitat in mineral materials mining areas (sand and gravel)&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX08AK3122&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Dalton Corridor Rapor Survey&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -149.963608900273,\n",
       "                67.0914979501472\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;&lt;Null&gt;&quot;,\n",
       "          &quot;FundingAmo&quot;: 5000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 66.5673021024043,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: 66.5673021024043,\n",
       "          &quot;Notes&quot;: &quot;$5 million for Planning Grants awarded over multiple years&quot;,\n",
       "          &quot;OBJECTID&quot;: 1250,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Community Relocation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Community Driven Relocation Demonstration Project - Native Village of Fort Yukon&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -145.251327774462,\n",
       "                66.5673021024043\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;&lt;Null&gt;&quot;,\n",
       "          &quot;FundingAmo&quot;: 5000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 65.6986002077134,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: 65.6986002077134,\n",
       "          &quot;Notes&quot;: &quot;$5 million for Planning Grants awarded over multiple years&quot;,\n",
       "          &quot;OBJECTID&quot;: 1249,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Community Relocation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Community Driven Relocation Demonstration Project - Huslia Village&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -156.399726563895,\n",
       "                65.6986002077134\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;&lt;Null&gt;&quot;,\n",
       "          &quot;FundingAmo&quot;: 5000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 69.7574986735746,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: 69.7574986735746,\n",
       "          &quot;Notes&quot;: &quot;$5 million for Planning Grants awarded over multiple years&quot;,\n",
       "          &quot;OBJECTID&quot;: 1253,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Community Relocation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Community Driven Relocation Demonstration Project - Native Villiage of Point Lay&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -163.051130769247,\n",
       "                69.7574986735746\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 66.255556,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -166.072222,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 649,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist a community of 498 people with adequate safe drinking water. The project may address flood damage reduction and mitigation&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Shishmaref Community Flood Protection and Water Supply&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -166.072221999573,\n",
       "                66.2555559999708\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 83736.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 64.5432991939811,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -163.029224774325,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1258,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{77BCF125-9368-496B-9D82-0A54E0C310CB}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Relocation, Managed Retreat, and Protect-in-Place Coordinator - Chinik Eskimo Community&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -163.029224774325,\n",
       "                64.5432991939811\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 64.544722,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -163.0275,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 575,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bA preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist a community of 175 people with flood damage reduction and mitigation measures. The project may involve the removal of d&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Golovin Community Flood Protection&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -163.027499999996,\n",
       "                64.5447220000588\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 62.684722,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -164.645278,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 526,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist a community of 756 people with flood damage reduction and mitigation measures. The project may involve the removal of damageable property ou&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Alakanuk Community Flood Protection&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -164.645278000207,\n",
       "                62.684721999818\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 63.035833,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -163.560278,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 585,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist a community of 462 people with flood damage reduction and mitigation measures. The project may involve the removal of dama&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Kotlik Community Flood Protection&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -163.560278000303,\n",
       "                63.0358330001811\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 148432.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 63.46829454,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -162.1190154,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1350,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Native Village of Saint Michael, Alaska is among one of the most vulnerable to climate change impacts in the entire United States. Increasingly severe natural hazards threaten critical community infrastructure and jeopardize the health, safety, and p&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 022|148432|Native Village ]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Permafrost Risk Assessment  - Native Village of Saint Michael&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -162.119015399687,\n",
       "                63.4682945399883\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 148432.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 63.47809946,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -162.03922399,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 55,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will engage science and engineering consultants to complete a permafrost vulnerability assessment to forecast what infrastructure will be impacted, when, and support in developing solutions to mitigate threats.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{D8DC382F-05B5-45EF-983C-AB55F436B599}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Permafrost Risk Assessment&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -162.039223989066,\n",
       "                63.478099462371\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 143151.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 64.333899524894,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -161.153924819103,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1264,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{77BCF125-9368-496B-9D82-0A54E0C310CB}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Relocation, Managed Retreat, and Protect-in-Place Coordinator - Native Village of Shaktoolik&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -161.153924819103,\n",
       "                64.333899524894\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 146493.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 63.87609426,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -160.7920443,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1334,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The community of Unalakleet, Alaska, is planning a managed retreat from the current site on the shoreline of Norton Sound to a nearby hillside area in response to recent flooding and erosion caused by sea-level rise. The most recent statewide threat asse&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 022|146493|Native Village ]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Managed Retreat Housing Prototype Planning - Native Village of Unalakleet&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -160.79204430013,\n",
       "                63.8760942600785\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 290440.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 63.87309963,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -160.78812446,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 45,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Village will collaborate with the National Renewable Energy Lab&#x27;s Cold Climate Housing Research Center. As the community plans its managed retreat, this project will provide housing designs for their platted subdivision.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{CE52F017-63D8-4A34-96B4-65A4DE25846E}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Managed Retreat Housing Prototype Planning&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -160.788124458269,\n",
       "                63.8730996304822\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 88000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 64.4993744,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -152.6947327,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 996,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending (Or Other) For National Revegetation Strategy&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Increasing the Alaskan Native Seed Bank for Restoration in National Parks&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -152.694732700188,\n",
       "                64.4993744001363\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 20000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 64.4993744,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -152.6947327,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 856,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Perform site assessments to determine physical safety hazards and treatment of four culturally significant abandoned mine sites at Denali National Park.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Assess Mine Hazards at Alpha Ridge Mine in Denali National Park&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -152.694732700188,\n",
       "                64.4993744001363\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 185000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 64.4993744,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -152.6947327,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1032,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Minerals Materials Sites - Wildlife Surveys&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -152.694732700188,\n",
       "                64.4993744001363\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 339872.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 59.78510013,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -154.876355,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 441,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Create sustainable community-led environmental monitoring capacity for six rural Indigenous communities in the Lake Iliamna region to assist with climate resilience and adaptation planning efforts. Project will partner with Indigenous Sentinels Network t&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77635&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Building Capacity for Indigenous Community-Led Environmental Monitoring in Southwest Alaska&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -154.876354999836,\n",
       "                59.7851001298101\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 329370.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 59.30792873,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -155.8725733,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1013,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Lake Iliamna Indigenous Guardians&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -155.872573300061,\n",
       "                59.3079287299872\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1025356.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 59.33491471,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -157.3428724,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 435,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Map millions of acres of ecologically, economically, and culturally important wetlands in Bristol Bay, Alaska to improve region-wide prioritization and management for sockeye salmon and salmon habitat. Project is Tribally led and will help fill a critica&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77545&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Advancing Wetlands Mapping for Improved Regional Habitat Management in Bristol Bay (AK)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -157.342872399829,\n",
       "                59.3349147100822\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 150000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 59.8722996451391,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -163.165821323515,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1262,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{77BCF125-9368-496B-9D82-0A54E0C310CB}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Relocation, Managed Retreat, and Protect-in-Place Coordinator - Native Village of Kwigillingok&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -163.165821323515,\n",
       "                59.8722996451391\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 59.872222,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -163.166111,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 586,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist a community of 380 people with flood damage reduction and mitigation measures. The project may involve the removal of dama&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Kwigillingok Community Flood Protection&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -163.166110999652,\n",
       "                59.8722219999103\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 245056.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 59.93307796,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -164.0373051,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1269,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will engage science and engineering consultants to complete a long-term erosion and flood assessment to forecast what infrastructure will be impacted, when, and support us in developing solutions to mitigate the threats. This project will fo&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 014|245056|Adaption Plan: ]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Adaption Plan: Riverine Erosion and Flood Assessment - Native Village of Kipnuk&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -164.037305099705,\n",
       "                59.93307795999\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 245056.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 59.9401995,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -164.08332125,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 72,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will engage science and engineering consultants to complete a long-term erosion and flood assessment to forecast what infrastructure will be impacted, when, and support developing solutions to mitigate threats.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{5D123645-2CB7-4A67-8A65-5C429CE78D37}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Riverine Erosion Risk Assessment&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -164.08332125432,\n",
       "                59.9401994988792\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 2998343.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 60.15999945,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -164.26582137,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 7,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The community of Chefornak is facing severe impacts from permafrost degradation, erosion, and flooding. Thanks in part to past BIA TRP funding, we have planned and designed a subdivision site at a safe location. We will relocate and replace infrastructur&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{FA8E0738-FC2A-48B6-AE75-DB2080A501CA}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Managed Retreat Subdivision Construction and Home Relocation&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -164.265821367779,\n",
       "                60.1599994482389\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 149708.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 60.1599994482389,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -164.265821367779,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1267,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Village of Chefornak is a federally-recognized tribe/Alaska Native village. The Tribe will develop adaptation planning to address erosion, melting, permafrost, increasinglly violent storms, flooding, reduced stability of buildings, roads, and infrast&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{77BCF125-9368-496B-9D82-0A54E0C310CB}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Relocation, Managed Retreat, and Protect-in-Place Coordinator - Village of Chefornak&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -164.265821367779,\n",
       "                60.1599994482389\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 260019.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 60.15180453,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -164.2534328,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1352,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will engage science and engineering consultants to complete a permafrost vulnerability assessment to forecast what infrastructure will be impacted, when, and support us in developing solutions to mitigate the threats. This project will form&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 022|260019|Village of Chef]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Permafrost Risk Assessment and Tank Farm Design&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -164.253432799612,\n",
       "                60.1518045301782\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 180982.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 60.34004286,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -162.6658243,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1351,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Native Village of Tuntutuliak proposes to develop a permafrost vulnerability assessment to predict the future impacts of permafrost melt in the community and recommend solutions. This project will involve a desktop study of existing geological and ge&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 022|180982|Native Village ]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Permafrost Risk Assessment and Hazard Mitigation Plan&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -162.665824299604,\n",
       "                60.3400428599761\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 60.342778,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -162.672778,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 667,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bA preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist a community of 469 people with flood damage reduction and mitigation measures. The project may involve the removal of d&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Tuntutuliak Community Flood Protection&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -162.672778000115,\n",
       "                60.3427780000439\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 168452.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 60.14164959,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -163.37322146,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 53,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will engage science and engineering consultants to complete a permafrost vulnerability assessment to forecast what infrastructure will be impacted, when, and support the Native Village of Kipnuk in developing solutions to mitigate threats.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{ADE789E1-6019-485E-8698-AED48232D7A2}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Permafrost risk assessment&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -164.08332125432,\n",
       "                59.9401994988792\n",
       "              ],\n",
       "              [\n",
       "                -162.663121668664,\n",
       "                60.3430996748763\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 180982.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 60.14164959,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -163.37322146,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 54,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Native Village of Tuntutuliak will hire  an engineering contractor to develop a permafrost vulnerability assessment to  predict the future impacts of permafrost melt in the community and recommend solutions.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{03D17A68-AC59-4EE0-AD23-D4BA47EBD5C1}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Permafrost risk assessment&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -164.08332125432,\n",
       "                59.9401994988792\n",
       "              ],\n",
       "              [\n",
       "                -162.663121668664,\n",
       "                60.3430996748763\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;&lt;Null&gt;&quot;,\n",
       "          &quot;FundingAmo&quot;: 25000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 60.6966997499138,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: 60.6966997499138,\n",
       "          &quot;Notes&quot;: &quot;$25 million total, payments awarded over multiple years&quot;,\n",
       "          &quot;OBJECTID&quot;: 1251,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Community Relocation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Community Driven Relocation Demonstration Project - Native Villiage of Napakiak&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -161.951921972763,\n",
       "                60.6966997499138\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2217314.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 60.89574178,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -162.4586567,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1355,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Native Village of Nunapitchuk is a federally-recognized tribe located in Nunapitchuk, AK, a community which has experienced increasingly severe flooding, riverine erosion, and permafrost degradation caused by climate change. Erosion has advanced the&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 022|83239|Native Village ]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Public Safety Building Construction for Managed Retreat&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -162.458656699971,\n",
       "                60.8957417798215\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 2217314.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 60.89689965,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -162.45942204,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 59,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will assist the Tribe in completing construction of the new public safety building by the fall of 2023, and support project management, design, and phase I of construction. The project is funded in part through TCR annual appropriations.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{C961F3FD-E5E1-4B38-8229-9861879C03B1}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Public Safety Building Construction for Managed Retreat&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -162.45942204483,\n",
       "                60.896899650719\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 150000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 60.91219984487,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -161.213922188408,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1261,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{77BCF125-9368-496B-9D82-0A54E0C310CB}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Relocation, Managed Retreat, and Protect-in-Place Coordinator - Native Village of Akiak&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -161.213922188408,\n",
       "                60.91219984487\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior and Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service and the Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 1206976.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 61.74171755,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -161.52224891,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1432,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Create the First Indigenous Sovereign Habitat Tribal Conservation District - Mountains to Sea \\u2013 Alaska that will achieve co-management between the 38-Tribe Bering Sea-Interior Tribal Commission and federal agencies to improve management of ancestral ho&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80931&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Developing an Ancestral Homelands Tribal Conservation District in the Bering Sea-Interior (AK)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -161.522248905997,\n",
       "                61.7417175549944\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;&lt;Null&gt;&quot;,\n",
       "          &quot;FundingAmo&quot;: 25000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 60.9424993073918,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: 60.9424993073918,\n",
       "          &quot;Notes&quot;: &quot;$25 million total, payments awarded over multiple years&quot;,\n",
       "          &quot;OBJECTID&quot;: 1254,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Community Relocation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Community Driven Relocation Demonstration Project - Newtok Village&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -164.641921815254,\n",
       "                60.9424993073918\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 149064.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 60.9424993073918,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -164.641921815254,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1263,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{77BCF125-9368-496B-9D82-0A54E0C310CB}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Relocation, Managed Retreat, and Protect-in-Place Coordinator - Native Village of Newtok&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -164.641921815254,\n",
       "                60.9424993073918\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 60.580556,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -165.259444,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 668,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist a community of 411 people with flood damage reduction and mitigation measures. The project may involve the removal of dama&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Tununak Community Flood Protection&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -165.259444000364,\n",
       "                60.5805560000812\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;&lt;Null&gt;&quot;,\n",
       "          &quot;FundingAmo&quot;: 5000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 56.0019003197684,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: 56.0019003197684,\n",
       "          &quot;Notes&quot;: &quot;$5 million for Planning Grants awarded over multiple years&quot;,\n",
       "          &quot;OBJECTID&quot;: 1252,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Community Relocation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Community Driven Relocation Demonstration Project - Native Villiage of Nelson Lagoon&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -161.202819488502,\n",
       "                56.0019003197684\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 425920.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 58.30081846,\n",
       "          &quot;LatLongTyp&quot;: &quot;Sealaska Corporation&quot;,\n",
       "          &quot;Long&quot;: -134.4073466,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 684,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Tribal Priority Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Sealaska Corporation will assess and prioritize stream-crossing barriers on Prince of Wales Island and will create designs for 10 individual barrier projects. The island is one of the most productive areas for salmon in Southeast Alaska, supporting coho,&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_002&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Assessment and prioritization of stream-crossing barriers on Prince of Wales Island&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -134.407346600116,\n",
       "                58.3008184599228\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1964655.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 58.30190421,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -134.41972049,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 77,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Tribe will launch a Regional Community Greenhouse Program to build upon the existing Tlingit &amp; Haida Taay Hi\\u0301t Greenhouse in Juneau, the Tlingit &amp; Haida Climate Change Adaptation Plan, and Tlingit &amp; HaidamClimate Change Action Plan.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{A9482A44-7138-43D9-AB3D-B251E84BF396}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Tlingit &amp; Haida Regional Community Greenhouse Program&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -134.419720489812,\n",
       "                58.3019042107798\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 600000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 58.41153,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -135.76587,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: City of Gustavus, Southeast Alaska Watershed Council, USFWS, NPS&quot;,\n",
       "          &quot;OBJECTID&quot;: 171,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This is the final project to fully reconnect the Mountain View and Crane Flats Creek drainages by replacing a perched/undersized culvert with a timber bridge on Harry Hall Creek at Grandpa&#x27;s Farm Road in Gustavus, AK. This project will complement the sig&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{c0f91857-7531-45f8-a67f-4498c80fed98}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Gustavus Alaska Landscape Scale Waterhsed Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/gustavus-alaska-landscape-scale-watershed-restoration&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -135.765869999948,\n",
       "                58.4115300002298\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1232068.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.38971869,\n",
       "          &quot;LatLongTyp&quot;: &quot;Skagit River System Cooperative&quot;,\n",
       "          &quot;Long&quot;: -122.5004517,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 695,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Tribal Priority Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Skagit River System Cooperative will reopen access to habitat that has been blocked by undersized or improperly installed culverts. Work will focus on three sites of interest to the Swinomish Indian Tribal Community and Sauk-Suiattle Tribes: Martin S&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_013&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Reopen access at three sites in Washington&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.50045170009,\n",
       "                48.3897186897578\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 63292.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.39030564,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -122.50171511,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 58,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Here, we propose a project designed to increase both access to, and yield of, huckleberries in an area of traditional gathering. By building new trails and enhancing existing ones, we hope to get more Community members, especially children and elders, in&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{335FA8A7-2AA1-491C-A00C-71E38222C9D5}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Saving sw\\u00c9\\u2122d\\u00c3\\u00a1\\u00ca\\u201d\\u00cf\\u2021: Preserving Huckleberry Access and Culture in an Era of Climate Change&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.501715113163,\n",
       "                48.3903056380288\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 9733975.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.08001122,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tulalip Reservation, WA&quot;,\n",
       "          &quot;Long&quot;: -122.269907,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 716,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Tulalip Tribes will plan and construct 16 barrier removal projects in the Snohomish River watershed. These projects will remove or replace culverts with structures designed to withstand climate change. They will restore connectivity to more than 32 m&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_034&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;16 barrier removal projects in the Snohomish River watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.269907000171,\n",
       "                48.080011220059\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.12040111,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -123.4372061,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 998,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Irrigation Efficiency and Improvement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.437206100033,\n",
       "                48.1204011097614\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.0493,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -123.928,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 936,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Dungeness Reservoir Irrigation Conveyance Improvement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.927999999741,\n",
       "                48.0493000002122\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 149923.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.0255055643926,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -122.996315101967,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1259,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{77BCF125-9368-496B-9D82-0A54E0C310CB}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Relocation, Managed Retreat, and Protect-in-Place Coordinator - Jamestown S&#x27;Klallam Tribe&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.996315101967,\n",
       "                48.0255055643926\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1109796.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.02550556,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -122.9963151,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 9,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Tribe will purchase a commercially available mobile resilience hub and a support vehicle to enhance the resilience of existing Tribal health, emergency management, and community centers.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{FB39CECF-7CAD-4D80-A3F8-049DBD6201AE}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Climate Adaptation Strategies Implementation&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.996315101967,\n",
       "                48.0255055643926\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1109796.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.02484523,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -122.9959869,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1288,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Dramatic changes to the Earth\\u2019s (s\\u010dt\\u0259\\u0301\\u014bx\\u02b7\\u0259n) atmosphere are resulting in loss of treaty protected natural resources, loss of economic opportunities, threatening Tribal facilities, and threatening the health of Tribal Citizens and the community. T&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 022|1109796|Climate Adaptat]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Climate Adaptation Strategies Implementation - Jamestown S&#x27;Klallam Tribe&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.995986899783,\n",
       "                48.0248452297619\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1747490.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.05470565,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -122.25851499,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 40,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project aims to implement key elements of the Tribe&#x27;s climate adaptation strategy by achieving their goal of resource protection and restoration. The Tribe will implement a means in accounting for ecosystem services on the landscape.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{89DA572F-7146-4489-A436-67588017E6BB}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Implementing Tulalip Natural Capital Climate Adaptation&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.258514988845,\n",
       "                48.0547056481052\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1747490.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.05469831,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -122.2588586,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1319,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project is designed to support building capacity within the Tulalip Tribal government to account for and track the impacts of various land use action proposals on ecosystem services and natural capital assets. This project supports The Tulalip Tribe&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 022|1747490|Tulalip Tribes ]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Implementing Tulalip Natural Capital Climate Adaptation&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.258858599831,\n",
       "                48.0546983099738\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1194224.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.85208678,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -122.5694102,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1356,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will relocate three families to newly constructed homes on other Reservation lots away from the shoreline. The project will demolish the three houses located on the high-risk properties and will restore the shoreline vegetation. The Tribe wi&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 022|1194224|Port Gamble S&#x27;k]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Relocation of High-Risk Shoreline Residents&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.569410200037,\n",
       "                47.8520867798703\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 2137650.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.8522056,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -122.56931499,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 60,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project proposes to relocate the three families to newly constructed homes on other reservation lots away from the shoreline. The project is funded in part through TCR annual appropriations.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{DFE6414A-A9D0-46C6-97B2-AABA884D6318}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Relocation of High-Risk Shoreline Residents&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.569314990295,\n",
       "                47.8522056029521\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 150000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.8522056029521,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -122.569314990295,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1265,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{77BCF125-9368-496B-9D82-0A54E0C310CB}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Relocation, Managed Retreat, and Protect-in-Place Coordinator - Port Gamble S&#x27;klallam Tribe&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.569314990295,\n",
       "                47.8522056029521\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 7071627.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.74117692,\n",
       "          &quot;LatLongTyp&quot;: &quot;Hoh tribe, WA&quot;,\n",
       "          &quot;Long&quot;: -124.4144435,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 715,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Trout Unlimited will replace eight fish passage barriers as part of the Coldwater Connection Campaign, a partnership to reconnect 125 miles of high quality salmon and steelhead streams in Washington\\u2019s coastal areas. The project will open more than 7 mi&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_033&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Replace eight fish passage barriers in Washington&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -124.414443499564,\n",
       "                47.7411769198181\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Forest Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 870713.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.96718591,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -124.24388489,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1426,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Work with Olympic National Forest, Washington Department of Natural Resources, and the Quileute Tribe to develop fourteen miles of road storage and decommissioning project plans along with decommissioning implementation off 4.2 miles of National Forest r&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80840&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Reducing Flood Risk in Olympic National Forest (WA)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -124.243884888806,\n",
       "                47.9671859096746\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 551000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.06375,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -124.16155,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Wild Salmon Center, Coast Salmon Foundation, Trout Unlimited, Clallam County, Washington DFW, Quileute Tribe&quot;,\n",
       "          &quot;OBJECTID&quot;: 1246,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will replace three undersized culvert fish barriers: one culvert on Wisen Creek and two culverts on Wisen Branch Creek. The overall goal is to replace the three undersized culverts with fish passable structures to increase the quantity and q&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{c76f3a1c-4b21-4553-9526-a5eddfb7f2b4}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Wisen Creek Fish Passage Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/wisen-creek-fish-passage-restoration-removal-3-fish-passage-barriers-olympic-peninsula&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;3&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -124.161549999968,\n",
       "                48.0637499998189\n",
       "              ],\n",
       "              [\n",
       "                -124.161200000164,\n",
       "                48.0645300002812\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 992000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.07698,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -124.20478,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Wild Salmon Center, Coast Salmon Foundation, Trout Unlimited, Clallam County, Washington DFW, Quileute Tribe&quot;,\n",
       "          &quot;OBJECTID&quot;: 86,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will correct two fish passage barriers on a Clallam County owned road within the Sol-Duc watershed on the Olympic Coast. Anton Creek and Cedar Creek cross at mileposts 1.74 and 1.78 of the Bear Creek Road and block nearly 5 miles of field ve&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{7fe472fc-8b4d-480a-ba9c-1aaee5fb5d4a}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Anton &amp; Cedar Creek Fish Passage Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/anton-cedar-creek-fish-passage-restoration&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -124.204780000085,\n",
       "                48.076979999707\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 992000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.077289,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -124.203995,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Wild Salmon Center, Coast Salmon Foundation, Trout Unlimited, Clallam County, Washington DFW, Quileute Tribe&quot;,\n",
       "          &quot;OBJECTID&quot;: 87,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will correct two fish passage barriers on a Clallam County owned road within the Sol-Duc watershed on the Olympic Coast. Anton Creek and Cedar Creek cross at mileposts 1.74 and 1.78 of the Bear Creek Road and block nearly 5 miles of field ve&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{b507d675-7959-4ce4-8d33-4192ab1cdd20}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Anton &amp; Cedar Creek Fish Passage Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/anton-cedar-creek-fish-passage-restoration&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -124.203995000087,\n",
       "                48.0772890002297\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;&lt;Null&gt;&quot;,\n",
       "          &quot;FundingAmo&quot;: 25000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.3473053874914,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: 47.3473053874914,\n",
       "          &quot;Notes&quot;: &quot;$25 million total, payments awarded over multiple years&quot;,\n",
       "          &quot;OBJECTID&quot;: 1256,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Community Relocation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Community Driven Relocation Demonstration Project - Quinault Indian Nation&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -124.293215136015,\n",
       "                47.3473053874914\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 150000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.3473053874914,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -124.293215136015,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1266,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{77BCF125-9368-496B-9D82-0A54E0C310CB}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Relocation, Managed Retreat, and Protect-in-Place Coordinator - Quinault Indian Nation&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -124.293215136015,\n",
       "                47.3473053874914\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 10396280.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.41631664,\n",
       "          &quot;LatLongTyp&quot;: &quot;Quinault Reservation&quot;,\n",
       "          &quot;Long&quot;: -124.1788184,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 717,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Wild Salmon Center will design, permit, and remove nine culverts as part of the Coldwater Connection Campaign. The culvert removals will improve access for migratory salmon and improve the durability of public infrastructure. The project was develope&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_035&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Removal of nine culverts in Washington&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -124.178818400014,\n",
       "                47.4163166403022\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 75900.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.9801,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -123.56473,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Chehalis Basin Fisheries Task Force, Grays Harbor Stream Team, Grays Harbor County, Salmon Recovery Funding Board&quot;,\n",
       "          &quot;OBJECTID&quot;: 97,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The project is to remove a 33% passable fish passage barrier on Schafer Boom Road In Grays Harbor, WA. It will be replaced with a structure that is fully passable to fish and other aquatic species in Camp Creek. A correction for a second barrier 0.13 mil&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{03a41972-6338-437a-9562-dbdb4e2af8ac}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Schaffer Boom Road Camp Creek Fish Passage Barrier Removal&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/schafer-boom-road-camp-creek-fish-passage-barrier-corrections&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.564729999925,\n",
       "                46.9800999998927\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1231350.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.98528687,\n",
       "          &quot;LatLongTyp&quot;: &quot;Hoquiam, WA&quot;,\n",
       "          &quot;Long&quot;: -123.8920404,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 713,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The City of Hoquiam will assess the feasibility of removing the West Fork of the Hoquiam River Dam. The project will also involve installing and testing groundwater wells as an alternative water source for the city. If found feasible, the effort would op&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_031&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Feasibility assessment for the removal of the West Fork of the Hoquiam River Dam&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.89204040029,\n",
       "                46.985286869933\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.62350307,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -122.9316288,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 832,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Hamilton/Labree Roads Groundwater Contamination site is located about two miles southwest of Chehalis, Washington. The site is contaminated with PCE. PCE is also called PERC, perchloroethylene, or tetrachloroethene. It\\u2019s a chemical used for dry cle&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;HAMILTON/LABREE ROADS GW CONTAMINATION&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.931628799967,\n",
       "                46.6235030697903\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2577880.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.15397408,\n",
       "          &quot;LatLongTyp&quot;: &quot;Cowlitz Indian Tribe&quot;,\n",
       "          &quot;Long&quot;: -122.9345916,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 694,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Tribal Priority Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Cowlitz Indian Tribe will remove Kwoneesum Dam on Wildboy Creek, a tributary to the West Fork Washougal River in the Columbia River watershed. Removal of the 55-foot tall, 425-foot long rock fill embankment dam will restore access to 6.5 miles of hig&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_012&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Kwoneesum Dam removal&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.93459160008,\n",
       "                46.1539740798047\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 99800.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.3939,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -123.5622,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Washington DFW, Cowlitz Indian Tribe, Columbia Land Trust, local organizations, Chinook Indian Nation, private landowners, and Wahkiakum and Pacific County commissioners&quot;,\n",
       "          &quot;OBJECTID&quot;: 98,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Cowlitz Indian Tribe proposes to remove the derelict water intake infrastructure previously operated to support the Grays River State Fish Hatchery, owned by Washington Department of Fish and Wildlife (WDFW) and located in Pacific County, Washington.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{d59a556a-77fa-4a07-9f32-b65455d4e7d4}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;West Fork Grays River Fish Passage Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/west-fork-grays-river-fish-passage-project&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.56220000003,\n",
       "                46.3938999998318\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 60.46462,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -151.07334,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 305,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Service will mitigate physical safety and environmental hazards at mined FWS lands.  Actions will include assessment of physical safety hazards, mitigation of safety hazards, and assessment of environmental contamination.   Risks to employee, visitor&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;150XX08MU0422&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Mitigate Hazards on Mined Lands&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;5&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.965019999775,\n",
       "                32.6914700002101\n",
       "              ],\n",
       "              [\n",
       "                -114.180030000353,\n",
       "                33.2308099996882\n",
       "              ],\n",
       "              [\n",
       "                -98.6236900004162,\n",
       "                34.7106500002244\n",
       "              ],\n",
       "              [\n",
       "                -115.358579999685,\n",
       "                36.438440000292\n",
       "              ],\n",
       "              [\n",
       "                -151.073339999649,\n",
       "                60.4646200002109\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 3815138.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.99125787,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -124.0276939,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 426,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Restore populations of Oregon Coast coho salmon by re-establishing floodplain connection and improve natural watershed processes on over 180 acres of tidal wetland in the Siuslaw River Estuary on the Oregon Coast. Project will implement recently complete&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77381&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Tidal Wetland Restoration to Improve Oregon Coast Coho Salmon Habitat in the Siuslaw River Estuary&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -124.027693899892,\n",
       "                43.9912578698412\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 70000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.93865,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -122.848,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 960,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Eradicating Invasive Plants to Support Prairie Restoration in Four Areas of Critical Environmental Concern in Oregon&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.848000000251,\n",
       "                43.938650000264\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 80000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.8362608,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -123.6645197,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 199,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Design 3 culvert replacements to improve passage to spawning and rearing habitat for Coho Salmon, steelhead, Cutthroat trout, and lamprey&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX02OR2022&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Smith River Fish Passage&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.664519700011,\n",
       "                43.8362607998272\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 70000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.6899,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -123.0378,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 221,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Prairie restoration in four ACECs: Dorena, McGowan, Garoutte, and Twin Prairie. This project builds on and allows us to maintain and enhance the gains made from previous work accomplished at these sites. The goals of this project are to restore high qual&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX06OR1522&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Prairie Restoration in 4 Oregon ACECs&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.037799999779,\n",
       "                43.6898999999861\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 20000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.856,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -122.7617,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 196,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Decommissioning of a road and application of native seed to revegetate the site.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX02OR0222&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Lost Creek road decommissioning and revegetation&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.761699999851,\n",
       "                43.8559999999718\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 40000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.19692459,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -123.436872,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 197,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Replace failing culvert and improve aquatic organism passage in the Upper Long Tom watershed for cutthroat and lamprey to improve infrastructure security and increase the resistance, resilience, and adaptability to climate change.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX02OR0922&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Michaels Creek Culver and Aquatic Organism Passage&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.436872000409,\n",
       "                44.1969245898633\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 25000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.1383,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -123.296,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 220,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Removal of invasive weeds improves the persistence of listed species&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX06OR0322&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;West Eugene Wetlands Integrated Pest Management&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.295999999574,\n",
       "                44.1382999999481\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 95000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.22821052,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -123.4706222,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 200,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The project has three overall goals: 1)  Replacing a failing County Road culvert to improve infrastructure and ESA Listed coho salmon access to critical habitat; 2) Decommissioning an obsolete BLM road that was constructed in middle of valley bottom betw&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX02OR2322&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Swartz Creek Coho Salmon Habitat Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.470622199707,\n",
       "                44.2282105197344\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 15000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.42469279,\n",
       "          &quot;LatLongTyp&quot;: &quot;Kellogg Creek, OR&quot;,\n",
       "          &quot;Long&quot;: -122.6121873,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 711,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;American Rivers will design, permit, and begin construction activities for the removal of Kellogg Creek Dam. The dam currently blocks access to 15 miles of high quality habitat in Kellogg Creek, a tributary of the Willamette River. Removing the dam will&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_029&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Removal of Kellogg Creek Dam&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.61218730013,\n",
       "                45.424692790084\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 504645.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.92152923,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -123.5952754,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 203,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Obtain aquatic organism passage designs for 16 priority culverts within the Mid Coast watersheds, Oregon. Considering the programmatic permitting and NEPA, culverts with engineering designs would quickly become shovel ready projects and field office prio&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX02OR4322&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Mid Coast Aquatic Organism Passage Surveys&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.595275400158,\n",
       "                44.9215292300814\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 150000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.561733,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -123.881786,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Tillamook County, ODFW, OWEB, NOAA, USFWS, Trout Unlimited, Tillamook Estuary Partnership&quot;,\n",
       "          &quot;OBJECTID&quot;: 89,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project is part of the Salmon SuperHwy strategic effort to restore 95% historic habitat connectivity for 5 species of anadromous ESA-listed salmonids and Pacific lamprey while reducing flooding and improving public safety in the flood-prone coastal&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{36234df2-df3d-4a83-9516-f257dc06f90e}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Illingsworth Creek Culvert Removal&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/illingsworth-creek-fish-passage-improvement&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.881786000168,\n",
       "                45.5617330002427\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.52072,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -123.8156162,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Tillamook County, Oregon DFW, Oregon Water Enhancement Board, NOAA, USFWS, Trout Unlimited, Tillamook Estuary Partnership&quot;,\n",
       "          &quot;OBJECTID&quot;: 95,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project is part of the Salmon SuperHwy strategic Fish Passage partnership in the TIllamook and Nestucca Basins of coastal Oregon (priority #51, Barrier ID 591). The Myrtle Creek fish passage restoration project is located on Tillamook County owned K&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{3a47851f-0d23-468f-981f-40570855b7d1}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Myrtle Creek Culvert Removal&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/myrtle-creek-fish-passage-improvement&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.815616199646,\n",
       "                45.52072000002\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.4565,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -123.64949,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Tillamook County, Oregon DFW, Oregon Water Enhancement Board, NOAA, USFWS, USFS, Trout Unlimited, Tillamook Creamery&quot;,\n",
       "          &quot;OBJECTID&quot;: 96,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project is part of the Salmon SuperHwy strategic effort to restore 95% historic habitat connectivity for 5 species of anadromous ESA-listed salmonids and Pacific lamprey while reducing flooding and improving public safety in the flood-prone coastal&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{18936bef-f580-4d6f-a516-6762dfb9cbee}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Samson Creek Culvert Replacement&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/samson-creek-fish-passage-improvement&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.649489999569,\n",
       "                45.4564999996981\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 3625109.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.52953458,\n",
       "          &quot;LatLongTyp&quot;: &quot;Wild Salmon Center, OR&quot;,\n",
       "          &quot;Long&quot;: -122.680983,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 712,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Wild Salmon Center will implement nine fish passage projects in four Oregon coastal watersheds. The effort will remove and replace aging culverts, dams, tide gates, and other infrastructure to reopen and reconnect habitat for Southern Oregon/Northern Cal&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_030&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Nine fish passage projects in Oregon&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.680983000195,\n",
       "                45.5295345801764\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.6266,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -121.5967,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 566,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Modernizing the East Fork Irrigation District (EFID) infrastructure will conserve water, reduce energy use, improve reliability, increase public safety, and enhance fish and wildlife habitat in the Hood River watershed. Funds will go towards design of hi&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;East Fork Irrigation District Irrigation Modernization&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.596699999619,\n",
       "                45.6266000001131\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 880000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.70876498,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -121.6612316,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 13,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Safety of Dams, Water Sanitation, And Other Facilities&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Columbia River fishing sites are critical to supporting traditional fishing for  the Yakima, Umatilla, and Warm Springs Indian Tribes. This project will upgrade critical water and sanitation needs, and ensure safe drinking water.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{CC17E500-3786-4591-83A4-B9CAEAFFF971}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Columbia In-Lieu Treaty Fishing Cooks Site&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.661231600049,\n",
       "                45.7087649802264\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 6156417.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.85137961,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -121.1600874,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 443,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Restore the relationship between the land, water, and people of the Columbia River Gorge by conserving ecologically and culturally important terrestrial and aquatic pathways. Project will implement seven habitat restoration projects on 1,540 acres, funct&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77657&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Healing Land: Landscape Scale Reconnection of Culturally and Ecologically Important Pathways (WA)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.160087399672,\n",
       "                45.8513796099096\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.62293758,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -121.534576,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1064,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Oanna &amp; Yasui Sublateral Efficiency Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.534576000032,\n",
       "                45.6229375801599\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.06225712,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -118.3409377,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1182,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Walla Walla, Municipal Master Smart Metering Project of Water System Districts/Zones&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -118.340937700337,\n",
       "                46.0622571202036\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1600000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.06171223,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -118.3378635,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 853,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Aquifer Storage and Recovery&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -118.337863500145,\n",
       "                46.0617122301202\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior and Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service and the Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 1999390.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.70089815,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -117.16297372,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1411,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Strengthen the Tribally-led Camas to Condors collaborative by completing a range study, nesting territory surveys, release and feeding site selection, and hosting stakeholder workshops. Project will explore ecological employment, education, workforce tra&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;79670&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Camas to Condors: Biocultural Restoration Planning for Ananasocum (ID, MT, OR, WA)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.162973722371,\n",
       "                45.7008981459726\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 3304858.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.66556113,\n",
       "          &quot;LatLongTyp&quot;: &quot;\\u00a0Confederated Tribes of the Umatilla Indian Reservation&quot;,\n",
       "          &quot;Long&quot;: -118.6858961,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 691,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Tribal Priority Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Confederated Tribes of the Umatilla Indian Reservation will remove or remediate barriers to fish migration in three watersheds: Umatilla, Walla Walla, and Grande Ronde. Projects within the Walla Walla and Umatilla watersheds are classified as imminen&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_009&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Remove or remidate barriers to fish migration in three watersheds in Oregon&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -118.685896100042,\n",
       "                45.6655611301361\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 60000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.59189,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -118.737,\n",
       "          &quot;Notes&quot;: &quot;Rehabilitate 2800 linear feet of the main canal by relining with Geo-Foam lining for 40% and new concrete panels for 60% of the project.  Will also install drainage system for 60% of the project as groundwater is causing the deterioration of the lining.&quot;,\n",
       "          &quot;OBJECTID&quot;: 1165,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Umatilla&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -118.736999999812,\n",
       "                45.5918900001528\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 4885710.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.34060242,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -117.2442417,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1183,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Wallowa Lake Dam Rehabilitation and Wallowa River Restoration Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.244241700112,\n",
       "                45.3406024199183\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 198000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.93643778,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -119.3720322,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 201,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The project will repair and/or reconstruct approximately 18 miles of riparian fencing to control unauthorized livestock grazing.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX02OR3222&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;North Fork John Day Riparian Fence Maintenance&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.372032200339,\n",
       "                44.9364377801016\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 115563.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.5644989,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -119.5329971,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 359,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This funding will be used to hire 1 GS 9/11 staff member in 2022. Continued funding for FY22 position and one new position in 2023 to work directly with local governments (Soil &amp; Water Conservation Districts) to enroll landowners in priority habitats in&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220044&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Partnerships Coordinator&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.532997100307,\n",
       "                44.5644988999786\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 115563.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.165398467,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -120.489585847,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 395,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;1 new position in FY23. This funding will be used to hire GS 9/11 staff member to work directly with local governments (Soil &amp; Water Conservation Districts) to enroll landowners in priority habitats in existing Candidate Conservation Agreements.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230080&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Partnerships Coordinator&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.489585847176,\n",
       "                44.1653984668131\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 33499.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.167873752,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -120.362190686,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 398,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This funding will be used to hire 1 GS 9/11 staff member in 2022. Continued funding for FY22 position and one new position in 2023 to work directly with local governments (Soil &amp; Water Conservation Districts) to enroll landowners in priority habitats in&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230083&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Partnerships Coordinator&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.362190685745,\n",
       "                44.1678737521473\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 133665.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.165398467,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -120.66099804,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 409,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Support rangewide spatial mapping work, including scaling down conservation design to local levels.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230094&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Spatial Ecologist&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.660998039812,\n",
       "                44.1653984668131\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.1501,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -121.3303,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 666,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Tumalo Irrigation District Modernization Project will modernize up to 1.9 miles of Tumalo Irrigation District\\u2019s canals and 66.9 miles of laterals to improve water conservation, water delivery reliability, and public safety.  The project will occur&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Tumalo Irrigation District Irrigation Modernization Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.330300000044,\n",
       "                44.1500999997929\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 28668.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.05692082,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -121.3050335,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 855,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Arnold Irrigation District, River Diversion Gate Automation and Flow Measurement&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.305033500171,\n",
       "                44.056920819819\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 120039.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.0597,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -121.0,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 323,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Habitat restoration (juniper removal) on FWS Candidate Conservation Agreement with Assurances-enrolled state lands.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220008&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Barbwire Juniper Removal Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.000000000125,\n",
       "                44.059700000288\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 120039.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.0596590580001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -121.000248601,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 372,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Habitat restoration (juniper removal) on FWS Candidate Conservation Agreement with Assurances-enrolled state lands.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230057&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Barbwire Juniper Removal Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.000248600795,\n",
       "                44.0596590579761\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 25000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.9366608,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -120.5551682,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 961,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Eradicating Invasive Plants Using Integrated Pest Management to Conserve the West Eugene Wetlands in Western Oregon&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.555168199807,\n",
       "                43.9366607998534\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 70000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.9366608,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -120.5551682,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1199,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;West Extension Irrigation District, Canal Automation and Monitoring Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.555168199807,\n",
       "                43.9366607998534\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2787679.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.9366608,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -120.5551682,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1008,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Klamath Siskiyou Oak Network Upper Rogue Oak Initiative&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.555168199807,\n",
       "                43.9366607998534\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 120039.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.94,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -120.5551682,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1346,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Sagebrush-Steppe&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 019|120039|Oregon Departme]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Oregon Department of State Lands Barbwire Juniper Removal Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/press-release/2022-11/president-bidens-bipartisan-infrastructure-law-provides-10-million-sagebrush&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.555168199807,\n",
       "                43.940000000276\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 250000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.7588997,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -118.6050034,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 320,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Through the framework of six Programmatic CCAAs established with USFWS in 2015, private landowners engage in voluntary sage-brush conservation actions throughout Southeastern Oregon.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220005&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Oregon Candidate Conservation Agreement with Assurances Initiative to Protect and Enhance Sagebrush Ecosystems on Private Lands&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -118.605003399798,\n",
       "                43.758899700015\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 250000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.7588908920001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -118.605229069,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 394,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Through the framework of six Programmatic CCAAs established with USFWS in 2015, private landowners engage in voluntary sage-brush conservation actions throughout Southeastern Oregon.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230079&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Oregon Candidate Conservation Agreement with Assurances Initiative to Protect and Enhance Sagebrush Ecosystems on Private Lands&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -118.605229069174,\n",
       "                43.7588908917143\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.795,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -117.0639,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 609,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;In recent years, the Owyhee Irrigation District has faced droughts that limit water supply to irrigators. The design and age of the District&#x27;s conveyance system no longer meets its obligations. To address these concerns, funds will be used to implement a&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Owyhee Irrigation District Infrastructure Modernization Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.063900000227,\n",
       "                43.7949999997141\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 119200.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.4216995,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -117.7149963,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 322,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Habitat restoration (juniper and invasive annual grass control) via the Baker and Vale Local Implementation Teams (LITs) across multiple land ownerships.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220007&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Southeastern Oregon Collaboration to Address Primary Threats to Sagebrush Landscapes.&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.714996299568,\n",
       "                44.4216995001856\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 119200.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.4217129300001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -117.715336492,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 408,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Habitat restoration (juniper and invasive annual grass control) via the Baker and Vale Local Implementation Teams (LITs) across multiple land ownerships.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230093&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Southeastern Oregon Collaboration to Address Primary Threats to Sagebrush Landscapes.&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.715336491566,\n",
       "                44.4217129298129\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.50983902,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -116.0460179,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 889,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Cascade, Real-Time Water Metering for Increased Efficiency&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.046017899864,\n",
       "                44.5098390200215\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 138518.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.5503998,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -114.6589966,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 358,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;1 GS 12 employee to support existing BLM liaison position, providing a key leadership role in leading sage grouse conservation (post-fire restoration, invasive species control, and Land Use Plan amendments) for IFWO.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220043&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Partnerships Coordinator&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.658996600182,\n",
       "                44.5503997999846\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 115563.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.5504392710001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -114.659421094,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 396,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;GS 11 position, located in Salmon, Idaho, to work in coordination with other established liaison positions across southern Idaho to implement sage grouse conservation.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230081&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Partnerships Coordinator&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.65942109368,\n",
       "                44.550439270913\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 240000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.39,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -114.6593552,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1314,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Sagebrush-Steppe&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 014|240000|Idaho&#x27;s Cheatgr]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Idaho&#x27;s Cheatgrass Challenge; Implementing a State-wide Strategy for Invasive Annual Grasses&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/program/sagebrush-conservation&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.659355199559,\n",
       "                44.3899999998969\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 74185.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.3890915,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -114.6593552,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1187,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Water District 63, Real-Time Monitoring Implementation Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.659355199559,\n",
       "                44.389091500052\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1050000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.3890915,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -114.6593552,\n",
       "          &quot;Notes&quot;: &quot;replace current water storage and distribution system. This investment is critical to address widespread deficiencies and deteriorated infrastructure that resulted in an emergency order from EPA on the water system in 2018.\\u00a0&quot;,\n",
       "          &quot;OBJECTID&quot;: 1343,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Safety of Dams, Water Sanitation, And Other Facilities&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 020|1050000|Nez Perce North]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Nez Perce Northern Idaho Water System&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-10-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.659355199559,\n",
       "                44.389091500052\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.3890915,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -114.6593552,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1088,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Pumping Plant Elimination and Canal Abandonment Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4247&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.659355199559,\n",
       "                44.389091500052\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.3890915,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -114.6593552,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1074,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Parks and Lewisville Irrigation Company, SCADA Installation Project - Phase I&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.659355199559,\n",
       "                44.389091500052\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 415606.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.3890915,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -114.6593552,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1136,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Snake River Plain Aquifer Wells Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.659355199559,\n",
       "                44.389091500052\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 5000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.3890915,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -114.6593552,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 948,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Enterprize Canal Company Conveyance Improvement and Aquifer Recharge Facility&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.659355199559,\n",
       "                44.389091500052\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 31500.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.3890915,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -114.6593552,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 967,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Farmers Friend Irrigation Company, Headgate Automation - Phase I&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.659355199559,\n",
       "                44.389091500052\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 43583.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.3890915,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -114.6593552,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 969,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Fremont-Madison Irrigation District, Main Water Control Structures and Flow Measurement Station&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.659355199559,\n",
       "                44.389091500052\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.3890915,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -114.6593552,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 991,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Idaho Irrigation District, Headgate Automation and Irrigation Flow Measurement Projects&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.659355199559,\n",
       "                44.389091500052\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 23890.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.3890915,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -114.6593552,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1000,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Island Ward Canal Company, Automated Headgate Installation Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.659355199559,\n",
       "                44.389091500052\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 51500.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.3890915,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -114.6593552,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1058,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;North Fremont Canal Systems Inc, Canal Lining Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.659355199559,\n",
       "                44.389091500052\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 3000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.57,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -116.56,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1045,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water Recycling&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Nampa Recycled Water Program&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4296&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.560000000324,\n",
       "                43.570000000323\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 43790.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.60221224,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -116.2160538,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 873,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Boise Project Board of Control, Automation of Arena Canal and Arena Lake Drain&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.216053799823,\n",
       "                43.6022122401333\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 4208805.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.61730601,\n",
       "          &quot;LatLongTyp&quot;: &quot;Species Conservation Office, ID&quot;,\n",
       "          &quot;Long&quot;: -116.2015114,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 702,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Idaho Office of Species Conservation will improve fish passage in the Upper Snake River. It will address four culverts at Poison Creek, Kinnikinic Creek, George Creek, and Big Cedar Creek. Improving access to these tributaries will provide important&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_020&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Fish passage improval in the Upper Snake River&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.201511400388,\n",
       "                43.6173060098039\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.8,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -113.5,\n",
       "          &quot;Notes&quot;: &quot;Project Lat/Long was incorrectly listed. Longitudes was positive. Lat/Long fields updated with negative longitude and manually moved to presumed correct location.&quot;,\n",
       "          &quot;OBJECTID&quot;: 602,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with \\u200birrigation infrastructure modernization.  Canal lining, amongst others practices, will be evaluated to benefit aquifers, streams, an&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Middle Big Lost&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -113.499999999672,\n",
       "                43.8000000001293\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 156852.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.792716974,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -112.711374496,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 414,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project is delivering integrated habitat restoration treatments (e.g., fuel breaks, revegetation, riparian enhancement) in two priority sagebrush  landscapes in Idaho, with an emphasis on re-establishing functional sagebrush habitat for Greater sage&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230099&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Upper Snake Sagebrush Steppe Enhancement&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.711374495958,\n",
       "                43.7927169739529\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 183148.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.7927017,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -112.7109985,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 317,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will increase the pace and scale of ongoing conifer removal partnerships in two key mixed-jurisdiction sagebrush landscapes in southern Idaho; and, will promote consistent delivery of conifer treatments across time and space (and land owners&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220002&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Upper Snake Sagebrush Steppe Enhancement&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.710998499808,\n",
       "                43.7927016997754\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.9,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -112.2,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 568,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with aquifer recharge, surface water quantity, and fish and wildlife habitat enhancement.  \\u200bManaged recharge will be evaluated for the Eas&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;ESPA Recharge&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.199999999952,\n",
       "                43.9000000002327\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 30000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.3007,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -111.92,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 954,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Eradicating Invasive Plants to Maintain Wilderness Character in Montana&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.920000000151,\n",
       "                45.3006999999708\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 30000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.32033111,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -112.1930275,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 219,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project would work to maintain and restore the wilderness characteristics that exist in these areas but are slowly disappearing due to invasion by noxious weeds.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX06MT0622&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Dillon FO Invasive Plant Treatments&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.193027500398,\n",
       "                45.320331109863\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 437185.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.2168999,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -113.0019989,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 331,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Remove 4,000 acres of invasive conifers in CSAs/GOAs.  Restore 350 acres of mesic habitat including Smith Springs.  Treat 1,500 of invasive annual grasses ion mixed jurisdiction lands, including Red Rock Lakes NWR.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220016&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;SW Montana Sage Steppe Resiliency Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -113.001998900269,\n",
       "                45.2168998998749\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 468508.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.2169428080001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -113.002201725,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 412,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Remove 4,000 acres of invasive conifers in core sagebrush and growth opportunity areas. Restore 350 acres of mesic habitat including Smith Springs, near Wisdom, MT. Treat 1,500 of invasive annual grasses on mixed jurisdiction lands, including Red Rock La&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230097&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;SW Montana Sage Steppe Resiliency Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -113.002201724589,\n",
       "                45.2169428078328\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 492000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.3228989,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -113.939003,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 365,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will step down and accelerate Idaho&#x27;s state-led \\&quot;Cheatgrass Challenge\\&quot; and empower regional partnerships to actively manage invasive annual grasses and wildfire threats in sagebrush core habitat in strategic geographies within the state. Thi&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220050&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Addressing Invasive Annual Grass in Sage-Grouse Core Areas in Idaho&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -113.93900300042,\n",
       "                45.3228989001782\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 328000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.322941427,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -113.939426709,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 368,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project steps down and accelerates Idaho&#x27;s state-led \\&quot;Cheatgrass Challenge\\&quot; and empowers regional partnerships to actively manage invasive annual grasses and wildfire threats in sagebrush core habitat in strategic geographies within the state. This&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230053&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Addressing Invasive Annual Grass in Sage-Grouse Core Areas in Idaho&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -113.93942670879,\n",
       "                45.3229414267981\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 19791492.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.82233816,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -116.108553,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 432,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Enable a collaboration among two Federally recognized Tribes, an irrigation district, and the State of Oregon to complete rehabilitation of the Wallowa Dam to balance rural community resilience and economic benefit with improved aquatic habitat connectiv&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77494&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoring Sockeye Salmon Habitat Connectivity at the Wallowa Dam (OR)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.108552999966,\n",
       "                45.8223381602146\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 250000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.8993611,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -112.509,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Montana FWP, Trout Unlimited, Blackfoot Challenge, USFS, Trout Unlimited, Lewis &amp; Clark County, USFWS, Montana Fish, Wildlife &amp; Parks, private landowner&quot;,\n",
       "          &quot;OBJECTID&quot;: 1240,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This proposed project improves connectivity for native trout in Montana by creating fish passage at three diversions and one culvert within climate resilient priority watersheds for bull trout and arctic grayling. All projects are scheduled to be done by&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{af1fa370-1c87-44ef-8601-d6c3b5dc3ddc}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Increasing Bull Trout and Arctic Grayling Fish Passage in Montana&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/increasing-bull-trout-and-arctic-grayling-fish-passage-montana&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;4&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.509000000356,\n",
       "                46.8993611001558\n",
       "              ],\n",
       "              [\n",
       "                -113.020459999806,\n",
       "                47.0295000001359\n",
       "              ],\n",
       "              [\n",
       "                -113.41199999958,\n",
       "                45.6952300001849\n",
       "              ],\n",
       "              [\n",
       "                -112.12199999979,\n",
       "                44.7047599997567\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 4972308.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.28915594,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -112.33267338,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1417,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Coordinate with independent livestock producers and local landowner-led groups to expand the use of proven and locally-designed non-lethal carnivore conflict prevention techniques. Project will contribute a critical component of a larger strategy, securi&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80001&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Landowner-led Carnivore Conflict Reduction in Western Montana&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.332673379023,\n",
       "                46.2891559414198\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 230000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.1005,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -114.289,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Clark Fork Coalition, Bitterroot National Forest, Montana FWP, Montana DNRC, Trout Unlimited, Uinta CCD, WNTI, Open Rivers Fund, Wyoming GFD, Wyoming Wildlife and Natural Resource Trust, Wyoming DEQ&quot;,\n",
       "          &quot;OBJECTID&quot;: 1244,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The project&#x27;s goal is to maximize connectivity for fish passage within the watershed for native ESA listed bull trout and state priority westslope cutthroat in a priority area for the State of Montana to allow migratory access to upper elevation cold wat&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{e7d03b83-a074-441c-ad5e-24fdd90efd93}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Upper Clark Fork Fish Passage for Bull Trout and Westslope Cutthroat&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/upper-clark-fork-fish-passage-bull-trout-and-westslope-cutthroat&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;4&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.289000000248,\n",
       "                46.1005000001396\n",
       "              ],\n",
       "              [\n",
       "                -113.039000000172,\n",
       "                46.1539999997702\n",
       "              ],\n",
       "              [\n",
       "                -113.185999999753,\n",
       "                46.1481000000886\n",
       "              ],\n",
       "              [\n",
       "                -113.215200000372,\n",
       "                46.1638999997269\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 908523.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.65,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -112.79,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 868,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Blackfeet Conservation in the Ninnaastakoo (Chief Mountain) Area: Planning for large landscape connectivity and cultural use&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.79000000024,\n",
       "                46.65000000006\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1421072.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.65,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -112.79,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1293,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Blackfeet Tribe, Blackfeet Environmental Office (BEO) is responsible for planning for the increasing impacts of climate change across the Blackfeet Nation, home of the Blackfeet people, the largest Native American Tribe in Montana. BEO hopes to share&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 026|1421072|Culture as Clim]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Culture as Climate Adaptation: Implementation of the Blackfeet Climate Change Adaptation Plan&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.79000000024,\n",
       "                46.65000000006\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 9779000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.65,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -112.79,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1281,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Indian Water Rights Settlements&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 024|9779000|Blackfeet Water]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Blackfeet Water Rights Settlement\\u202f\\u00a0\\u00a0&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/bipartisan-infrastructure-law-supports-580-million-investment-fulfill-indian-water&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.79000000024,\n",
       "                46.65000000006\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.48242413,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -112.2533267,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 765,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The 53-square-mile Upper Tenmile Creek Mining Area site is located in Lewis and Clark County, just southwest of Helena, Montana. The site includes about 150 active and abandoned mines in the historic Rimini Mining District. Mining for gold, lead, copper&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;UPPER TENMILE CREEK MINING AREA&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.253326700045,\n",
       "                46.4824241298001\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.647575,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -111.727867,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 620,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;BIL WFPO funding will be used to implement ag-water management methods to build towards climate resiliency. Funds are needed to modernize the Helena Valley Irrigation District water delivery system.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Helena Valley Irrigation District&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.727867000372,\n",
       "                46.6475749998536\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.86193088,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -113.9845969,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 997,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Invasive grass species detection, prevention, and treatment planning for the benefit of USFS (Region 1) and neighboring lands, with a focus on ventenata&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -113.984596900139,\n",
       "                46.8619308800279\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.868189,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -113.996389,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 629,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;BIL WFPO funding will be used to implement ag-water management methods to build towards climate resiliency. Funds are needed to modernize the Missoula Conservation District Irrigation District water delivery system.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Missoula Conservation District&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -113.996389000432,\n",
       "                46.8681889997746\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 6700000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.2662139,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -116.687339,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1344,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Indian Water Rights Settlements&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 024|6700000|Nez Perce Water]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Nez Perce Water Rights Settlement Operations, Maintenance &amp; Replacement\\u202f\\u00a0\\u00a0&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/bipartisan-infrastructure-law-supports-580-million-investment-fulfill-indian-water&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.687338999981,\n",
       "                46.2662139000133\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1050000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.39639626,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -116.804199,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 50,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Indian Water Rights Settlements&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Completion of the project will ensure EPA Drinking Water compliance requirements, provides firefighting demand for water, and provides safe drinking water to an estimated 240 residents; including an elementary school, and a day care facility.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{C083FEC8-96CD-4D03-A84D-14B08846D79B}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Northern Idaho Water System&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.804199000034,\n",
       "                46.3963962600896\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 242946.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.40490612,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -116.80491366,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 10,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Nez Perce Tribe will produce a comprehensive and actionable adaptation plan that addresses current needs and builds upon ongoing management efforts, the most current climate projections, provide wins for the climate and the economy.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{B6939465-543A-4CA7-B9B1-7E85324F2181}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Climate Change Adaptation Plan&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.804913661047,\n",
       "                46.4049061230382\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior and Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service and the Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 2500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.21141908,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -118.60406185,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1376,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Create instream diversity through installation of over 160 engineered large wood structures and conserve a 400 acre floodplain on the Touchet River using the Tribe&#x27;s River Vision restoration philosophy as a guide. Project will create instream fish habita&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80193&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;T\\u00fau\\u0161i W\\u00e1na Floodplain, River, and Salmon Habitat Restoration (OR)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -118.604061847701,\n",
       "                46.211419076414\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.19,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -119.158,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 837,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;2022 Canal Lining and Water Conservation Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4247&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.157999999597,\n",
       "                46.1900000001569\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 93786.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.2461582610001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -119.561987235,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 407,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Approximately 300 acres of invasive species (cheatgrass and Russian thistle) treatment and 100 acres of revegetation to restore native habitats, increase fire resiliency, and protect sage-obligate species at the Dept. of Energy Hanford Site in Washington&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230092&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Shrub-Steppe Restoration for Fire and Climate Resilience on Hanford Reach National Monument&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.561987234712,\n",
       "                46.2461582607684\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 75000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.21075367,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -119.1688218,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 909,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Columbia Irrigation District, Canal #2 MidCanal Automated Check Structure&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.168821799907,\n",
       "                46.2107536702266\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 3626635.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.24402995,\n",
       "          &quot;LatLongTyp&quot;: &quot;Bateman Island, WA&quot;,\n",
       "          &quot;Long&quot;: -119.2265455,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 718,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Yakama Nation will remove the Bateman Island Causeway, located at the confluence of the Yakima and Columbia Rivers. It will complete hydraulic modeling at the Prosser Dam on the Yakima River. These efforts will improve spawning and rearing habitat fo&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_036&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Removal of the Bateman Island Causeway&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.22654549999,\n",
       "                46.2440299497646\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2422750.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.25102191,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -120.1974705,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 986,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Healing Land: Climate Resilience in Yakama Nation Lands&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.197470500004,\n",
       "                46.2510219102927\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1179073.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.27902436,\n",
       "          &quot;LatLongTyp&quot;: &quot;Yakama Indian Reservation&quot;,\n",
       "          &quot;Long&quot;: -120.9013786,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 693,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Tribal Priority Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Yakama Nation will remove barriers on the Snake Creek to address a \\u201cmortality hotspot\\u201d for Endangered Species Act-listed Middle Columbia River steelhead in the Yakima River watershed. Two dams will be removed, opening six miles of habitat. They w&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_011&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Remove barriers on the Snake Creek&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.901378600388,\n",
       "                46.2790243599293\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 3740000.0,\n",
       "          &quot;ImageLink&quot;: &quot;https://dwpdst.doi.gov/power/BIL_Funding/WapatoDiversion.jpg&quot;,\n",
       "          &quot;Lat&quot;: 46.52436254,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -120.47835539,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 81,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Irrigation and Power Systems&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Wapato Irrigation Project provides irrigation water to over 135,500 acres with an estimated direct harvest benefit of $560 million.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{1BFE2A54-0A71-4006-8890-1B572EA99624}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Wapato Irrigation Project - Wapato Diversion Dam on the Yakima River&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.478355385276,\n",
       "                46.5243625430369\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1660000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.45706,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -120.738,\n",
       "          &quot;Notes&quot;: &quot;Installation of Aqualastic lining for 55,773 linear feet of the YTID Main Canal as a interim measure until a project can be developed, approved, funded, and constructed to replace or upgrade the 111-year-old Main Canal. Funding is provided for implementa&quot;,\n",
       "          &quot;OBJECTID&quot;: 1206,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yakima&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.738000000016,\n",
       "                46.4570600000472\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 400000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.6286944,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -121.1334583,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Yakima County, Yakima Basin Integrated Plan, BOR, USFWS&quot;,\n",
       "          &quot;OBJECTID&quot;: 88,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Constructs a fish passage and enhanced spillway at Tieton Dam to alllow fish access to the SF Tieton River from Rimrock Reservoir, allowing more flexibility in management of the Yakima Basin Project as a whole, especially for the release of cool-water pu&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{b1d30c5b-a379-4015-abc3-982326fb74a1}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Fish Ladder and Spillway Addition on Tieton Dam&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/south-fork-tieton-bridge-fish-passage-improvement&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.133458300142,\n",
       "                46.6286944000046\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.99525873,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -120.5501615,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1139,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;South Branch Piping&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.550161499758,\n",
       "                46.9952587298441\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 150000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.93443491,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -120.5257036,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 206,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The project has three primary goals: 1) improve access to high quality fishing on BLM lands; 2) restore currently-degraded riparian gallery habitat including invasive species removal and native tree and shrub plantings; and 3) develop off-channel pool ar&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX02WA2922&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Ringer Road Riparian Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.525703600422,\n",
       "                46.9344349098673\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Forest Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 810039.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.10680836,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -121.49221835,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1414,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Lead collaborative efforts to improve native vegetation for Tribal harvest, ungulate forage, pollinator habitat, and improve terrestrial and hydrologic connectivity that restores hillslope hydrology and prevents sediment input to at-risk salmon headwater&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;79838&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Enhancing First Foods and Habitat Connectivity and Resilience in Mt. Baker-Snoqualmie National Forest (WA)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.492218352091,\n",
       "                47.1068083565216\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 5000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.3747749,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -120.4328003,\n",
       "          &quot;Notes&quot;: &quot;The purpose of the Cle Elum Pool Raise Project is to increase the reservoir\\u2019s capacity an additional 14.600 acre-feet to be managed for instream flows for fish; additional funds for shoreline protection will provide mitigation for the pool raise.&quot;,\n",
       "          &quot;OBJECTID&quot;: 900,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water &amp; Groundwater Storage, And Conveyance&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Cle Elum Pool Raise (Yakima)&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/bil/docs/spendplan-2022/Reclamation-BIL-Spend-Plan-Storage-Addendum-09-30-2022.pdf&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.432800299964,\n",
       "                47.3747748997663\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 87500.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.3747749,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -120.4328003,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1181,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Walla Walla Basin Water Management Decision Support Tool Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.432800299964,\n",
       "                47.3747748997663\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.3747749,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -120.4328003,\n",
       "          &quot;Notes&quot;: &quot;Replacing approximately 1,500 linear feet of the West Canal (Stations 849+40 to 864+40) to mitigate adverse seepage and protect the homes downstream of the section.  The mitigation would include drain system with pumps to reduce groundwater infiltration.&quot;,\n",
       "          &quot;OBJECTID&quot;: 908,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Columbia Basin&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.432800299964,\n",
       "                47.3747748997663\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 30758.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.3747749,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -120.4328003,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1096,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Quincy Columbia Basin Irrigation District, Automation of W38 Lateral Turnout of the West Canal&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.432800299964,\n",
       "                47.3747748997663\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 1000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.39880697,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -120.41886945,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1425,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Collaborate with Washington\\u2019s 29 federally recognized Tribes and two Tribes with off-reservation treaty rights to develop an adaptive framework to mitigate outdoor recreation impacts on ecosystems, Tribal treaty rights, and other interests across state&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80808&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Partnering with Tribes to Sustainably Manage Recreation on Washington State Public Lands (WA)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.418869453812,\n",
       "                47.3988069683643\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 115563.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.2732024470001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -119.830308184,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 399,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Work with landowners and partner organizations on the development and implementation of CCAAs, invasives and fire projects on identified high-priority areas in Washington.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230084&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Partnerships Coordinator (ES)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.830308183605,\n",
       "                47.2732024469477\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.0475,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -118.9486,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 565,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with agricultural water management and watershed protection in the Odessa Aquifer area.  There is a federal, state, and private partnersh&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;East Columbia Basin Irrigation District - Odessa Groundwater Replacement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -118.948600000245,\n",
       "                47.0475000002688\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 175000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.4319992,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -117.5960007,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 355,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Washington shrub steppe Restoration and Resiliency Initiative is a collaborative effort dedicated to achieving long-term shrub steppe conservation in eastern Washington, recognizing and acknowledging the shared benefit to people. A spatial decision s&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220040&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Washington Shrub-steppe Restoration and Resiliency Initiative: Defining Shared Spatial Priorities&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.596000699556,\n",
       "                47.4319991997555\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 5445750.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.48,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -117.575,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 896,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water Recycling&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Cheney Purple Pipe Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4296&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.574999999828,\n",
       "                47.4800000002851\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior and Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service and the Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 614329.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.97123177,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -117.33195168,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1436,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Develop an analysis to support long-term efforts of restoring habitat for the return of Chinook salmon to its historical home. Project will establish four monitoring programs enabling the Tribe and its partners to identify lands on the Reservation and in&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;81183&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Salmon Restoration Planning in the Hangman Watershed (ID; WA)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.331951683606,\n",
       "                47.9712317693821\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 199530.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.8865061,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -117.98821421,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 82,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The project will develop a climate adaptation plan to build drought and climate change resiliency within two culturally significant watersheds on the Spokane Reservation. This project is funded in part through TCR&#x27;s annual appropriations.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{6092402D-A9B1-441E-BDC6-9596F2B96D13}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Wetland Enhancements and Beaver Reestablishment to Protect Instream Flows in Blue and Sand Creeks&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.98821421301,\n",
       "                47.886506104572\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 28637.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.94847143,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -118.2968359,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1302,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Spokane Tribe of Indians (STI) strives to sustainably manage our natural resources, which support tribal recreational, cultural, subsistence and economic activities. However, the impacts of climate change continue to make that effort more challenging&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 022|28637|Spokane Tribe o]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Developing a Plan to Protect and Enhance Instream Flows in Blue and Sand Creeks&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -118.29683589961,\n",
       "                47.9484714301095\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 209100.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.5683871100001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -119.486336371,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 374,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Partner with the Washington Department of Fish and Wildlife to support their Pygmy Rabbit Recovery program. Propagate and release rabbits (listed as endangered under the ESA and by the state) , assist landowners with habitat restoration, and enroll up to&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230059&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Columbia Basin Pygmy Rabbit Recovery&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.486336371238,\n",
       "                47.5683871097814\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.7382520580001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -119.654449401,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 400,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Large-scale mesic habitat restoration within a sage grouse Priority Area for Conservation.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230085&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Post-Fire Restoration of Stream and Riparian Habitat Condition on East Foster Creek Douglas County, Washington&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.65444940128,\n",
       "                47.7382520578175\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 31515.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.6465988,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -119.8690033,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 327,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will restore a section of Smith Draw in northern Douglas County, Washington to improve system function, water table level, and capacity for the system to support riparian and wet meadow habitat. Wet meadow habitat is a very important compone&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220012&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Process-Based Stream Restoration in Smith Draw&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.86900330042,\n",
       "                47.6465988001849\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 183323.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.4612007,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -120.098999,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 328,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;In 2021 TNC received USFWS RIF to support Phase 1 post-fire restoration tasks to conduct weed control and native grass seeding. Phase 2 will include weed control, native tree/shrub planting, and a BDA project.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220013&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Moses Coulee Post-Fire Sage-Steppe Restoration: Phase II&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.098999000343,\n",
       "                47.4612006999725\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 87007.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.4283108,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -120.324926,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 895,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Chelan County, Yaksum Water Company Pipeline Replacement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.324926000374,\n",
       "                47.428310800293\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior and Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service and the Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 2997338.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.76771803,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -120.72634994,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1392,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Remove a 0.55 mile-long segment of State Route 207 from the Nason Creek floodway, reconnect 13 acres of side channel and floodplain habitat, protect 0.6 miles of oxbow rearing habitat, and restore more natural stream hydraulics and habitat complexity wit&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80476&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Salmon Habitat Restoration in the Nason Creek Floodplain of the Upper Columbia Basin (WA)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.726349936844,\n",
       "                47.7677180300029\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 186000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.9049988,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -119.5940018,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 326,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will support Chelan Douglas Land Trust staff time and costs of transactions involved in purchasing three agricultural land easements to protect 10,000 acres of sage grouse habitat on Badger Mountain in Douglas County, Washington.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220011&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Easement Support for Sage Grouse Habitat Protection&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.594001799948,\n",
       "                47.9049988002169\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 600000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.494528,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -119.527053,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Trout Unlimited, Colville Confederated Tribes, Washington State Fish Barrier Board, USFWS, Washington DOT&quot;,\n",
       "          &quot;OBJECTID&quot;: 92,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Johnson Creek is a tributary of the Okanogan river near Riverside, Washington. This tributary is important to the overall recovery goals in the Okanogan Basin and is identified as one of few lower Okanogan River tributaries that provide cold water refuge&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{e207e66b-9680-486c-bfff-f7cb4e1900a2}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Johnson Creek Culvert Replacement&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/johnson-creek-fish-passage-improvement&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.527053000174,\n",
       "                48.4945279997524\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 600000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.50066,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -119.50893,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Trout Unlimited, Colville Confederated Tribes, Washington State Fish Barrier Board, USFWS, Washington DOT&quot;,\n",
       "          &quot;OBJECTID&quot;: 91,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Johnson Creek is a tributary of the Okanogan river near Riverside, Washington. This tributary is important to the overall recovery goals in the Okanogan Basin and is identified as one of few lower Okanogan River tributaries that provide cold water refuge&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{07f2daa1-645e-43b2-883b-5887a5d19ca4}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Johnson Creek Culvert Replacement&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/johnson-creek-fish-passage-improvement&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.50892999956,\n",
       "                48.5006600001032\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 600000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.5168,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -119.509628,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Trout Unlimited, Colville Confederated Tribes, Washington State Fish Barrier Board, USFWS, Washington DOT&quot;,\n",
       "          &quot;OBJECTID&quot;: 93,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Johnson Creek is a tributary of the Okanogan river near Riverside, Washington. This tributary is important to the overall recovery goals in the Okanogan Basin and is identified as one of few lower Okanogan River tributaries that provide cold water refuge&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{c92841e9-e49f-4d30-b454-129846fc70ba}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Johnson Creek Culvert Replacement&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/johnson-creek-fish-passage-improvement&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.506305999954,\n",
       "                48.5011049998254\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 600000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.500686,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -119.511794,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Trout Unlimited, Colville Confederated Tribes, Washington State Fish Barrier Board, USFWS, Washington DOT&quot;,\n",
       "          &quot;OBJECTID&quot;: 90,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Johnson Creek is a tributary of the Okanogan river near Riverside, Washington. This tributary is important to the overall recovery goals in the Okanogan Basin and is identified as one of few lower Okanogan River tributaries that provide cold water refuge&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{d5700249-92eb-423a-a1e2-2159a1a6215b}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Johnson Creek Culvert Replacement&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/johnson-creek-fish-passage-improvement&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.504798999708,\n",
       "                48.5020970001241\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 250000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.49425601,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -115.97617109,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1403,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Convert an unused, functional bridge along Interstate 90 between the Coeur d&#x27;Alene and St. Joe National Forests in Idaho, into a wildlife crossing structure by installing 2 miles of fencing and 10 one-way gates. Project is a cost-effective, community-led&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;81032&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Repurposing Osborn, Idaho Overpass for Wildlife Connectivity (ID)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.976171091865,\n",
       "                47.4942560062364\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1000000.0,\n",
       "          &quot;ImageLink&quot;: &quot;https://dwpdst.doi.gov/power/BIL_Funding/MissionValley_KerrSub.jpg&quot;,\n",
       "          &quot;Lat&quot;: 47.67824353,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -114.24628434,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 46,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Irrigation and Power Systems&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This utility provides electrical service to approximately 23,000 customers, through 20 substations and 2,450 miles of power lines within the Flathead Indian Reservation and is is the largest source of power to the Mission Valley Power system.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{80789936-581F-4B27-B604-DC3F6DAFCAA9}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Mission Valley Power (MVP)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.246284335937,\n",
       "                47.6782435260887\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 156937000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.59638779,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -114.1140719,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1291,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Indian Water Rights Settlements&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 029|156937000|Confederated Sa]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Confederated Salish Kootenai Tribes - Montana Water Rights Protection Act\\u202f\\u00a0\\u00a0&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/bipartisan-infrastructure-law-supports-580-million-investment-fulfill-indian-water&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.114071900404,\n",
       "                47.5963877902589\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 800000.0,\n",
       "          &quot;ImageLink&quot;: &quot;https://dwpdst.doi.gov/power/BIL_Funding/Flathead_Greenhouse.png&quot;,\n",
       "          &quot;Lat&quot;: 47.602957,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -114.1195251,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 80,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Updating and Expanding Tribal Greenhouse Facilities to Increase Native Plant Capacity project will double the capacity at selected tribal greenhouses, as Tribal greenhouses need funding to update and expand their facilities to increase each Tribe\\u2019s&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{AD2C3A98-898F-4C9B-AD7B-95A422E5EED7}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Updating and Expanding Tribal Greenhouse Facilities to Increase Native Plant Capacity&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.11952509998,\n",
       "                47.6029569998506\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 997585.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.602957,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -114.1195251,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 47,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Indian Water Rights Settlements&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This settlements will improve the water efficiency of the Federal Flathead Indian Irrigation Project, restoring and protecting Tribal resources, and constructing and maintaining community water distribution and wastewater facilities.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{1D489E88-7E4A-4229-9263-12E979FB6915}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Montana BIA Water Rights Protection Act&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.11952509998,\n",
       "                47.6029569998506\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior and Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service and the Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 3499936.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.64451024,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -113.83718573,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1400,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Develop Landscape Conservation Design collaborative strategies for 16 landscape features and invasive plant risk assessments, restore whitebark pine, and engage with the community to develop and monitor collaborative actions. Project will return the Trib&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80947&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Bio-Cultural Restoration within the Crown of the Continent (MT)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -113.837185728177,\n",
       "                48.6445102429662\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 937491.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.65914332,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -112.8722683,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 449,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Formulate a conservation plan for stewardship of Crown of the Continent cultural and ecological resources within the Blackfeet Nation Ninnaastakoo boundary by creating community-based environmental assessments and working collaboratively with transnation&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77870&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Blackfeet Ecological and Cultural Stewardship in the Ninnaastakoo (Chief Mountain) Area (MT)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.872268299661,\n",
       "                48.6591433200945\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 999436.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.53930711,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -108.78171244,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 34,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will improve the resilience of rangelands to ongoing and projected climate change on Fort Belknap lands. The Tribe will implement rangeland water improvements from their recent Agricultural Resource Management Plan from 2018.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{D92E1B49-F4A3-42F5-AC90-ED9BB43D84FC}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Fort Belknap Indian Community Rangeland Water Improvement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -108.781712439631,\n",
       "                48.5393071078472\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 309218.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.3745995,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -107.8499985,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 332,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Deliver grazing systems on five ranches covering 54,713 acres.  CCAAs on an additional three ranches cover 23,128 acres.  Restoration of 1,500 acres of marginal cropland to native vegetation and restoration of mesic habitat on 300 acres or approx. 2 mile&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220017&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Maintaining Sagebrush Cores in Montana&#x27;s Northern Great Plains&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -107.849998500222,\n",
       "                48.374599499795\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 431504.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.3745623450001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -107.849613835,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 391,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Deliver grazing systems on five ranches covering 54,713 acres.  CCAAs on an additional three ranches cover 23,128 acres.  Restoration of 1,500 acres of marginal cropland to native vegetation and restoration of mesic habitat on 300 acres or approx. 2 mile&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230076&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Maintaining Sagebrush Cores in MT&#x27;s Northern Great Plains&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -107.849613835329,\n",
       "                48.3745623448615\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 574000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.25919,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -107.913,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1235,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Restoration and revegetation of holding ponds from historic mining operations in the Zortman and Landusky mines.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Zortman and Landusky Mine Site Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -107.913000000229,\n",
       "                48.2591900002231\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 4831178.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.16470102,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -108.6152721,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1116,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoring Plains Bison and Landscape Connectivity on Tribal Lands: An Inter-Tribal Buffalo Programs Initiative for Long-term Ecological Resiliency&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -108.615272099597,\n",
       "                48.1647010201846\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 119682.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.8613014,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -107.4560013,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 354,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will use a multi-agency/partner collaboration to pilot a large-scale assessment of an emerging grazing strategy designed to mimic pre-colonial grazing patterns by bison. The goal is to determine the value of these grazing strategies for enha&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220039&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Assessing traditional and emerging grazing strategies for creating a mosaic of diverse habitat patches for sagebrush associated birds&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -107.456001300024,\n",
       "                47.8613014001224\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 100318.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.8612927550001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -107.456020325,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 371,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will use a multi-agency/partner collaboration to pilot a large-scale assessment of an emerging grazing strategy designed to mimic pre-colonial grazing patterns by bison. The goal is to determine the value of these grazing strategies for enha&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230056&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Assessing traditional and emerging grazing strategies for creating a mosaic of diverse habitat patches for sagebrush associated birds&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -107.456020325443,\n",
       "                47.8612927549279\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 15000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.0334854,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -109.6451187,\n",
       "          &quot;Notes&quot;: &quot;$15 million for the Fort Peck Reservation \\u2013 Dry Prairie Rural Water System in Montana to support substantial completion of the project.&quot;,\n",
       "          &quot;OBJECTID&quot;: 968,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Rural Water Projects&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Fort Peck Reservation \\u2013 Dry Prairie Rural Water System&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-delivers-728-million-historic-investments-address-western&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.645118700431,\n",
       "                47.0334854002763\n",
       "              ],\n",
       "              [\n",
       "                -105.695344000001,\n",
       "                48.2164999998783\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 77560000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.0334854,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -109.6451187,\n",
       "          &quot;Notes&quot;: &quot;Core pipeline construction on segments 7 and 8, continued construction progress of a water treatment plant, as well as construction for segments associated with Havre, Chester and Shelby Hub service areas.&quot;,\n",
       "          &quot;OBJECTID&quot;: 1123,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Rural Water Projects&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Rocky Boys / North Central Montana Rural Water System&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-delivers-728-million-historic-investments-address-western&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.645118700431,\n",
       "                47.0334854002763\n",
       "              ],\n",
       "              [\n",
       "                -110.416834999956,\n",
       "                48.3461299998444\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.54884562,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -111.5392061,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1043,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Muddy Creek Restoration and Resilience Project Phase I&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.539206099659,\n",
       "                47.5488456202472\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 24675.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.0334854,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -109.6451187,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1082,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Pondera County Canal and Reservoir Company, Flowmeter Upgrades for Automation&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.645118700431,\n",
       "                47.0334854002763\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 3000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.0334854,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -109.6451187,\n",
       "          &quot;Notes&quot;: &quot;Funding would provide the authorized but not yet appropriated Federal cost-share for finishing the Dry Redwater Regional Water System Feasibility Study.&quot;,\n",
       "          &quot;OBJECTID&quot;: 935,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water &amp; Groundwater Storage, And Conveyance&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Dry Redwater Regional Water System Feasibility Study&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/bil/docs/spendplan-2022/Reclamation-BIL-Spend-Plan-Storage-Addendum-09-30-2022.pdf&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.645118700431,\n",
       "                47.0334854002763\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2941926.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.33242,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -111.495,\n",
       "          &quot;Notes&quot;: &quot;Rehabilitation of the Crow Creek Pumping Plant with Toston Irrigation District. Funding is provided for implementation.&quot;,\n",
       "          &quot;OBJECTID&quot;: 885,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Canyon Ferry Unit - P/S&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.495000000036,\n",
       "                46.3324200001475\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 37000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.2212,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -108.8842,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1044,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Rural Water Projects&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Musselshell-Judith Rural Water System&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4152&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -108.884199999704,\n",
       "                46.2211999997885\n",
       "              ],\n",
       "              [\n",
       "                -109.645118700431,\n",
       "                47.0334854002763\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 97977.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.7864155250001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -108.68024891,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 369,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Candidate Conservation Agreement with Assurances (CCAA) on 48,897 acres,1,500 acres of annual grass treatments, 1,000 acres of conifer removal and 400 acres or two miles of mesic habitat restoration.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230054&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Addressing Threats to Sagebrush in Montana&#x27;s Musselshell Plains&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -108.680248909574,\n",
       "                46.7864155249578\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 120263.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.7863998,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -108.6800003,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 333,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;CCAA on 48,897 acres, 1,500 acres of annual grass treatments, 1,000 acres of conifer removal and 400 acres or two miles of mesic habitat restoration.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220018&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Addressing Threats to Sagebrush in Montana&#x27;s Musselshell Plains&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -108.680000299921,\n",
       "                46.7863998000679\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.543481,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -105.703631,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 624,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Bil WFPO funds will be used to perform a feasibility study on a proposed watershed project that would rehabilitate and modernize the Kinsey Irrigation District water delivery system located in the Cabin Creek Watershed near West Yellowstone, Montana.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Kinsey Irrigation District&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.70363099982,\n",
       "                46.5434809996975\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.447222,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -105.772953,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 638,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;BIL WFPO funding will be used to implement ag-water management methods to build towards climate resiliency. Funds are needed to modernize the Tongue &amp; Yellowstone River Irrigation District delivery system.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Tongue &amp; Yellowstone River Irrigation District&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.772953000352,\n",
       "                46.4472220002113\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 2499976.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.91577234,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -102.50299034,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1395,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Assemble collective insights, resources, and efforts of conservation, agriculture, and industry partners to enhance, restore, and sustain native grasslands in North Dakota. Project will protect approximately 18,000 acres of native grasslands by providing&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80750&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;The Meadowlark Initiative: Advancing Grassland Conservation on Private Lands in North Dakota&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -102.502990343264,\n",
       "                46.9157723362616\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.74019,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -103.395,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1191,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Watford City, Watford City Advanced Metering Infrastructure - Phase I&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -103.395000000265,\n",
       "                47.7401899999198\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1250000.0,\n",
       "          &quot;ImageLink&quot;: &quot;https://dwpdst.doi.gov/power/BIL_Funding/FortPeckPumpingPlants.jpg&quot;,\n",
       "          &quot;Lat&quot;: 48.0327387,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -106.12988022,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 35,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Irrigation and Power Systems&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Fort Peck Irrigation Project provides irrigation water to nearly 19,000 acres from pump facilities from the Missouri River.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{81100F4C-A2E3-4A93-B5E1-569D06155CAD}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Fort Peck Irrigation Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -106.129880216034,\n",
       "                48.0327387026326\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.034872,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -106.003553,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 619,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;BIL WFPO funding will be used to implement ag-water management methods to build towards climate resiliency. Funds are needed to modernize the Wolf Point Irrigation Project water delivery system.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Fort Peck Tribes - Wolf Point Irrigation Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -106.003552999661,\n",
       "                48.0348719997301\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.034872,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -106.003553,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 639,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;BIL WFPO funding will be used to implement ag-water management methods to build towards climate resiliency. Funds are needed to modernize the Wyota Irrigation Project water delivery system.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Wyota Irrigation Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -106.003552999661,\n",
       "                48.0348719997301\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior and Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service and the Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 4999583.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.30245699,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -105.30292509,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1397,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Enhance grassland habitat conservation value within the 17,000 acre Fort Peck Cultural Buffalo Ranch in northeast Montana. Project will utilize herd health and range ecological assessments to identify and implement appropriate habitat improvement, workfo&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80845&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Northern Plains Bison Range Conservation Improvements with the Fort Peck Buffalo Program (MT)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.302925089452,\n",
       "                48.3024569907102\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 4985221.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.36316902,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -105.5386951,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 450,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Advance ecosystem resiliency of lands allocated for bison restoration through the unique collaboration of Blackfeet, Rocky Boy, Fort Belknap, and Fort Peck Native American communities in Montana. Project will enhance ecosystem function on 57,000 acres by&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77876&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Intertribal Approach to Restoring Plains Bison and Landscape Connectivity on Tribal Lands (MT)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.538695099833,\n",
       "                48.3631690202728\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 70000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.435433448,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -106.559144803,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 401,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Japanese brome infestations are present within sagebrush core and growth areas of the Charles M. Russell NWR. Herbicidal treatment sites will be paired with untreated Japanese brome invaded sagebrush areas and sagebrush areas with native dominated unders&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230086&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Pre and post treatment impacts of Japanese brome treatment on pollinators in sagebrush rangeland&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -106.559144802671,\n",
       "                48.4354334481264\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 443555.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.65998809,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -91.95146789,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 427,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Conduct five workshops with stakeholders to: identify and prioritize the challenges for large-scale moose habitat restoration in northeastern Minnesota, develop strategies to address these challenges, identify three habitat priority areas of 10,000 to 50&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77414&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Large-Scale Moose Habitat Restoration Planning in Northeastern Minnesota&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -91.9514678899205,\n",
       "                47.659988090038\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 260751.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.54758347,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -91.93801936,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 442,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Build a young adult Indigenous Conservation Crew (Maajii-akii-gikenjigewin crew) to support existing and future on-the-ground management plans on Fond du Lac Reservation. Project will conduct 34 monitoring studies and restore 100 acres through locally le&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77648&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Maajii-akii-gikenjigewin: Launching an Indigenous Young Adult Conservation Crew (MI, MN, WI)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -91.938019360024,\n",
       "                47.5475834699263\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 247686.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.05320944,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -95.20708324,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1305,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will improve the ability of Midwest tribes to assess changes in mercury levels in fish and other culturally important species as well as ambient water concentrations with a focused effort on subsistence use of various fish species. The proje&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 022|247686|Red Lake Band o]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Development of Long-Term Mercury Monitoring Program Plan for Climate Adaptation&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -95.2070832400933,\n",
       "                48.0532094402516\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 247686.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 47.87630826,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -95.0169087,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 27,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will improve the ability of Midwest Tribes to assess changes in mercury levels in fish and other culturally important species, as well as ambient water concentrations with a focused effort on subsistence use of various fish species.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{15E1E413-70C6-4D71-909B-8C3595986D5C}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Development of Long Term Mercury Monitoring for Climate Adaptation&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -95.0169087023808,\n",
       "                47.8763082607455\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 402205.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.316597,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -94.3087616,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 904,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Collaborative planning to identify and overcome challenges facing large-scale moose habitat restoration in northeastern Minnesota&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -94.3087616003932,\n",
       "                46.3165970000358\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.67205539,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -95.66581799,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1372,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Replace two undersized culverts with properly sized channel flow span bridges in the upper Otter Tail River. Project will reconnect 20 miles of critical spawning habitat for Red River lake sturgeon, Walleye, and other native fish species to an additional&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;79503&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoring Connectivity for Lake Sturgeon on the Upper Otter Tail River (MN)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -95.6658179947719,\n",
       "                46.6720553899398\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 51000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 46.931,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -98.7087,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 972,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Rural Water Projects&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Garrison-Diversion Unit of the Pick-Sloan Missouri Basin Program&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4152&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -98.7087000003054,\n",
       "                46.9309999997195\n",
       "              ],\n",
       "              [\n",
       "                -100.46931459981,\n",
       "                47.4463042998108\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.79013174,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -92.42861449,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 833,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Penta Wood Products site is in the unincorporated town of Daniels in Burnett County, Wisconsin. An inactive wood treatment facility is located on an 80-acre parcel of the 120-acre property. The facility operated from 1953 to 1992 and used a chemical&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PENTA WOOD PRODUCTS&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -92.428614490408,\n",
       "                45.7901317399168\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Park Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 200000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.9936406,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -101.257554,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 292,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;ECOREGIONAL COLLABORATION, COLLECTION: The goal is to create two seed collection sites with plant propagation capacity within the Midwest Region of NPS that could be expanded with partner organizations. Project outcomes include creating private sector jo&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;100XX09MU2022&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Develop NPS and Tribal Native seed nodes in MWR&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;6&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -103.747999999815,\n",
       "                42.4206000002008\n",
       "              ],\n",
       "              [\n",
       "                -102.575167000225,\n",
       "                43.0203619999617\n",
       "              ],\n",
       "              [\n",
       "                -100.662031400319,\n",
       "                43.3057506001596\n",
       "              ],\n",
       "              [\n",
       "                -103.49763999995,\n",
       "                43.5684599000099\n",
       "              ],\n",
       "              [\n",
       "                -86.0466000000674,\n",
       "                44.8734000003108\n",
       "              ],\n",
       "              [\n",
       "                -101.257554000428,\n",
       "                44.9936406001896\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 75500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.54095,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -96.885843,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1019,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Rural Water Projects&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Lewis &amp; Clark Rural Water System&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4152&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -96.8858429996672,\n",
       "                43.5409499999661\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior and Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service and the Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 2343301.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.09279114,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -99.58513259,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1389,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Stabilize shoreline of Lake Sharpe; establish trees, shrubs, vines and other culturally important riparian plants; build an island and a peninsula; restore wetland habitats; establish a walking trail and cultural interpretive natural area; and protect tw&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;79569&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Shoreline Stabilization and Ecosystem Recovery of Lake Sharpe (SD)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -99.5851325855135,\n",
       "                44.0927911362066\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 195055.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.0511074,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -99.61190935,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 28,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Tribe will develop a Drought Vulnerability Assessment and Drought Adaptation Plan for the Lower Brule Sioux Tribe (LBST). This project will assist the LBST in answering the following research question: How is the LBST vulnerable to drought?&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{DE400BEE-408A-403D-95FB-67F9C1744695}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Drought Vulnerability Assessment and Drought Adaptation Plan - Lower Brule Sioux Tribe&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -99.6119093546018,\n",
       "                44.0511074004267\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 200000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.67763,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -103.452,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 946,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Resilient Recreation Sites&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project would create additional recreational opportunities and relieve crowding by restoring up 5,556 acres of recently acquired land that is currently closed to visitation. Visitation at Wind Cave is heavily congested in and around the Visitor Cent&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Enhance recreation resilience at the historic Casey Property, Wind Cave National Park&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -103.451999999589,\n",
       "                43.6776299999515\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 102564.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.3615080110001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -105.592591311,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 402,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This funding will be used to hire 1 GS 5/7 term position based in Northeastern Wyoming, to support projects in Sage Core Areas in Northeastern Wyoming.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230087&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Project implementation support&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.592591311155,\n",
       "                44.3615080107745\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 102564.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.3614998,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -105.5930023,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 361,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This funding will be used to hire 1 GS 5/7 term position based in Northeastern Wyoming, to support projects in Sage Core Areas in Northeastern Wyoming.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220046&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Project implementation support&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.593002300279,\n",
       "                44.3614997996866\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.33232374,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -103.6687282,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 814,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The 360-acre Gilt Edge Mine site is located about 6.5 miles east of Lead, South Dakota. The primary mine disturbance area encompasses a former open pit and a cyanide heap-leach gold mine, as well as prior mine exploration activities from various companie&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;GILT EDGE MINE&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -103.668728199908,\n",
       "                44.3323237401021\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 99452.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.90579,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -103.508,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 865,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Belle Fourche Irrigation District, Sorenson 1.9 Lateral Buried Pipeline Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -103.507999999729,\n",
       "                44.9057900000851\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.8829002,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -106.987999,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 366,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The purpose of this agreement is to utilize the resources of Sheridan County Weed and Pest (SCWP) along with participating Weed and Pest District of Johnson and Campbell Counties to implement control measures for invasive species (primarily winter annual&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220051&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Sheridan, Johnson and Campbell County Invasive Species Treatment&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -106.987999000258,\n",
       "                44.8829001997407\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.89081828,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -108.5920338,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 916,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;D52 Lateral Piping and Shoshone River Sediment Reduction Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -108.592033799803,\n",
       "                44.8908182797231\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: &quot;https://dwpdst.doi.gov/power/BIL_Funding/WillowCreek.jpg&quot;,\n",
       "          &quot;Lat&quot;: 45.1617,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -107.5946,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 84,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Safety of Dams, Water Sanitation, And Other Facilities&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Dam rehabilitation will address concerns related to the embankment, spillway and outlet works resulting in improved safety to an estimated population at risk (PAR) of more than 2,600 people and improved operability.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{ACA1BECC-B141-466C-BAB5-941AA8F17741}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Willow Creek Dam&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -107.594599999947,\n",
       "                45.1617000003057\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 20000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.58126014,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -107.4519346,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1292,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Indian Water Rights Settlements&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 028|20000000|Crow Tribe Wate]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Crow Tribe Water Rights Settlement\\u202f\\u00a0\\u00a0&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/bipartisan-infrastructure-law-supports-580-million-investment-fulfill-indian-water&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -107.451934599783,\n",
       "                45.5812601401546\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 813750.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.7628866,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -107.2164948,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 455,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Develop decision support tools to identify invasive treatment locations within U.S. Forest Service Region 1 where early detection and rapid response has the greatest potential for success. Project will facilitate surveillance of 1.2 million acres of shru&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;78141&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Invasive Grass Detection, Prevention, and Treatment Planning in Eastern Montana&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -107.216494800219,\n",
       "                45.7628865999548\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.77,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -108.56,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1067,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Owl Creek Irrigation District Water Delivery and Efficiency Improvement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4247&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -108.55999999984,\n",
       "                43.7699999999134\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.72341593,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -111.1113651,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1098,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Reconnecting Canyon Creek&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.111365100202,\n",
       "                43.7234159303081\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 250000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.120806434,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -107.747150438,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 417,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will restore more than 10,000 acres of wet meadow/riparian habitat on largely private rangelands to increase species diversity and drought resilience in core sagebrush habitat in Wyoming using a variety of techniques ranging from off-stream&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230102&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Wyoming Collaborative Sage-Steppe Mesic Habitat Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -107.74715043814,\n",
       "                43.1208064336791\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 250000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.1208,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -107.7470016,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 336,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will restore more than 10,000 acres of wet meadow/riparian habitat on largely private rangelands to increase species diversity and drought resilience in core sagebrush habitat in Wyoming using a variety of techniques ranging from off-stream&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220021&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Wyoming Collaborative Sage-Steppe Mesic Habitat Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -107.747001599874,\n",
       "                43.1208000000191\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.999649,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -107.5514755,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1051,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;New Fork River Gas Wells River Restoration and Fish Habitat Improvement&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -107.551475499773,\n",
       "                42.999648999875\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.999649,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -107.5514755,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 912,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Connecting Wyoming\\u2019s Wildlife Habitats&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -107.551475499773,\n",
       "                42.999648999875\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.999649,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -107.5514755,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1100,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Resilient Recreation Sites&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Currently, the Wyoming Area Office cannot ascertain whether GPRA weed management goals are being met as there in not a comprehensive survey of noxious weed infestation of Reclamation surface lands. The goal of this project is to accurately and comprehens&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Recreation Lands Weed Inventory&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -107.551475499773,\n",
       "                42.999648999875\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 750000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.1368424830001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -107.197834032,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 418,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project is a partnership between the Service, the State of Wyoming, Eastern Shoshone and Northern Arapaho Tribes, USDA agencies, local governments and other partners to control invasive annual grass and defend approximately 100,000 acres of high-qua&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230103&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Wyoming Invasive Annual Grass Management Collaborative&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -107.197834032143,\n",
       "                43.1368424832457\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 750000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.1367989,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -107.197998,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 337,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project is a partnership between the Service, the State of Wyoming, Eastern Shoshone and Northern Arapaho Tribes, USDA agencies, local governments and other partners to control invasive annual grass and defend approximately 100,000 acres of high-qua&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220022&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Wyoming Invasive Annual Grass Management Collaborative&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -107.197997999835,\n",
       "                43.1367989002535\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 644760.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.00630653,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -108.88231143,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 39,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The project will improve resiliency by utilizing previous Eastern Shoshone Tribal Climate Adaptation Planning, the Wind River Indian Reservation BIA Wildfire Management, the Drought Contingency, and Regional and State Hazard Mitigation Plans.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{AE43E269-B58C-41EF-8B88-DE0A37227699}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Implementing A Sustainable Eastern Shoshone Tribal Climate Change Resilience Project for a Climate Change, Weather Ready and Resilient Community&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -108.882311425668,\n",
       "                43.0063065320595\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 764000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.00630653,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -108.88231143,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 76,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Tribe will implement a pilot project identified in their 2016 climate adaptation plan related to the Dry Creek Rancheria-owned vineyard properties. The project is funded in part through TCR annual appropriations.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{FA191263-467D-4D23-9EB7-690EA45CE767}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;The project will improve resiliency by utilizing previous Tribal Climate Adaptation Planning, the Wind River Indian Reservation BIA Wildfire Management, the Drought Contingency, and Regional and State Hazard Mitigation Plans.&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -108.882311425668,\n",
       "                43.0063065320595\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 644760.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.00526463,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -108.882512,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1316,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The project\\u2019s technical objectives will involve being Climate Change Ready and improve resiliency by utilizing previous Eastern Shoshone Tribal Climate Adaptation Planning, the Wind River Indian Reservation (WRIR) BIA wildfire management plan, and the&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 022|644760|Eastern Shoshon]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Implementing A Sustainable Eastern Shoshone Tribal Climate Change Resilience Project for a climate Change, Weather Ready and Resilient Community&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -108.882511999708,\n",
       "                43.0052646296899\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 764000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.02519968,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -108.7704193,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1318,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Northern Arapaho tribe on the remote and vulnerable Wind River Reservation (WRIR) has experienced increasingly frequent extreme weather since 2010, with 17 different identified all-hazard events occurring, including floods and droughts. A marked incr&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 022|764000|Northern Arapah]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Implementing the Sustainable Northern Arapaho Tribal Climate Change Resilience Project for a Climate Change, Weather Ready and Resilient Community&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -108.770419299579,\n",
       "                43.0251996799756\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior and Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service and the Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 619519.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.02080057,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -109.14322517,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1421,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Provide Tribal leaders with the community support they need to develop a strategic plan and take action to advance shared goals. Project will plan a series of community meetings and field trips, designed to build community engagement to develop a plan th&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80309&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Reconnecting the Eastern Shoshone and Northern Arapaho Tribes to Cultural and Ecological Values (WY)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.143225174851,\n",
       "                43.0208005739113\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1111111.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.40702756,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -109.9629451,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 445,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Convert fences posing a threat to ungulate migration in Wyoming by removing, replacing and/or modifying fences to wildlife-friendly standards. Project will work with landowners and federal land managers and utilize existing partnerships to prioritize and&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77732&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Connecting Wyoming\\u2019s Habitats for Migratory Species through Wildlife-Friendly Fences&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.962945100353,\n",
       "                42.4070275601375\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 60000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.8021,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -111.3475,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: USFS, Caribou County, Upper Blackfoot Confluence Committee&quot;,\n",
       "          &quot;OBJECTID&quot;: 94,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will replace an undersized and perched pipe culvert on Mill Creek, a tributary to Blackfoot Reservoir, with a natural bottom box culvert resulting in spawing habitat access for adfluvial Yellowstone cutthroat trout.  The project will provide&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{707d0321-3cb7-4fc9-93d8-6ab541725a9f}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Mill Creek Culvert Removal&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/mill-creek-fish-passage&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.355684999675,\n",
       "                42.8077549996708\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1390000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.98708,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -111.264,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Trout Unlimited, City of Evanston, Uinta CCD, Open Rivers Fund, Wyoming GFD, Wyoming Wildlife and Natural Resource Trust, WNTI, WY DEQ, NRCS, East Fork Hilliard Canal Company, Utah DWR, USFS, Utah&#x27;s Watershed Restorat&quot;,\n",
       "          &quot;OBJECTID&quot;: 162,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Upper Bear River straddles the border between Wyoming and Utah and has been a long-term refuge for native Bear River Cutthroat, which are unique to the watershed. However, the area is also one of the oldest agricultural districts in these states and&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{fca4f7ea-90e2-494d-9243-8b6636acc0d2}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Upper Bear River Fish Passage for Native Bear River Cutthroat&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/upper-bear-river-fish-passage-native-bear-river-cutthroat&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.263999999795,\n",
       "                41.9870799997287\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 40000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.67431033,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -111.2810352,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 204,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The project will repair and/or reconstruct approximately 27 miles of riparian fencing as part of a larger effort to restore degraded streams critical to Bonneville cutthroat trout.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX02UT1022&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Rich County Riparian Grazing Exclosure&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.281035199889,\n",
       "                41.674310329843\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1390000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.280362,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -110.974285,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Trout Unlimited, City of Evanston, Uinta CCD, Open Rivers Fund, Wyoming GFD, Wyoming Wildlife and Natural Resource Trust, WNTI, WY DEQ, NRCS, East Fork Hilliard Canal Company, Utah DWR, USFS, Utah&#x27;s Watershed Restorat&quot;,\n",
       "          &quot;OBJECTID&quot;: 160,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Upper Bear River straddles the border between Wyoming and Utah and has been a long-term refuge for native Bear River Cutthroat, which are unique to the watershed. However, the area is also one of the oldest agricultural districts in these states and&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{872b01cf-98f8-4b25-aca1-6195590ebaee}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Upper Bear River Fish Passage for Native Bear River Cutthroat&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/upper-bear-river-fish-passage-native-bear-river-cutthroat&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -110.974284999572,\n",
       "                41.2803619998981\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1390000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.90332,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -110.815,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Trout Unlimited, City of Evanston, Uinta CCD, Open Rivers Fund, Wyoming GFD, Wyoming Wildlife and Natural Resource Trust, WNTI, WY DEQ, NRCS, East Fork Hilliard Canal Company, Utah DWR, USFS, Utah&#x27;s Watershed Restorat&quot;,\n",
       "          &quot;OBJECTID&quot;: 161,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Upper Bear River straddles the border between Wyoming and Utah and has been a long-term refuge for native Bear River Cutthroat, which are unique to the watershed. However, the area is also one of the oldest agricultural districts in these states and&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{15b4b9db-67bc-42d7-b8e6-7e03b4f0a07c}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Upper Bear River Fish Passage for Native Bear River Cutthroat&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/upper-bear-river-fish-passage-native-bear-river-cutthroat&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -110.81500000039,\n",
       "                40.9033200001113\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1390000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.152515,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -110.879726,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Trout Unlimited, City of Evanston, Uinta CCD, Open Rivers Fund, Wyoming GFD, Wyoming Wildlife and Natural Resource Trust, WNTI, WY DEQ, NRCS, East Fork Hilliard Canal Company, Utah DWR, USFS, Utah&#x27;s Watershed Restorat&quot;,\n",
       "          &quot;OBJECTID&quot;: 159,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Upper Bear River straddles the border between Wyoming and Utah and has been a long-term refuge for native Bear River Cutthroat, which are unique to the watershed. However, the area is also one of the oldest agricultural districts in these states and&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{69250c6b-76e8-402b-8d52-50e9a837dd8c}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Upper Bear River Fish Passage for Native Bear River Cutthroat&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/upper-bear-river-fish-passage-native-bear-river-cutthroat&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -110.879725999841,\n",
       "                41.1525150002661\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 3000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.0879,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -104.353,\n",
       "          &quot;Notes&quot;: &quot;Major repairs on the FT. Laramie canal. Funding is provided for a planning study.&quot;,\n",
       "          &quot;OBJECTID&quot;: 1060,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;North Platte&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -104.353000000445,\n",
       "                42.0878999998214\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 3000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.0879,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -104.353,\n",
       "          &quot;Notes&quot;: &quot;Major repairs on the FT. Laramie canal. Funding is provided for a planning study.&quot;,\n",
       "          &quot;OBJECTID&quot;: 1061,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;North Platte - FT. Laramie canal&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -104.353000000445,\n",
       "                42.0878999998214\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 5000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 51.5806067,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -112.16435604,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1440,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Enhance, prioritize, restore, and conserve habitats that improve landscape permeability and connectivity, directly contribute to overall ecosystem resiliency and biodiversity, plus provide economic benefits to rural communities. Project will advance exis&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;81231&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Improving Migration Corridor Connectivity Across Western States (WY)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -104.842228596551,\n",
       "                41.1687281631504\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.7562,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -103.7222,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 574,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding and irrigation in the Gering Valley Watershed. The 50+ year-old project has 10 dams and a system of drains that need some upgr&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Gering Valley Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -103.722200000377,\n",
       "                41.7562000001146\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 21100000.0,\n",
       "          &quot;ImageLink&quot;: &quot;https://dwpdst.doi.gov/power/BIL_Funding/Oglala2.jpg&quot;,\n",
       "          &quot;Lat&quot;: 43.17843568,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -102.7393677,\n",
       "          &quot;Notes&quot;: &quot;$21.1M-construction&quot;,\n",
       "          &quot;OBJECTID&quot;: 51,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Safety of Dams, Water Sanitation, And Other Facilities&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Dam rehabilitation will restore water storage (currently under no storage order) for a variety of beneficial uses, return the spillway and outlet works to operational status, and improve safety to Population at Risk (PAR) of estimated 296 people.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{4E6B4882-6EB4-45C8-8D52-2B83649C6633}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Oglala Dam&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -102.739367701914,\n",
       "                43.1784356762319\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: &quot;https://dwpdst.doi.gov/power/BIL_Funding/Allen.jpg&quot;,\n",
       "          &quot;Lat&quot;: 43.33330717,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -102.03880985,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 2,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Safety of Dams, Water Sanitation, And Other Facilities&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Dam rehabilitation will address safety concerns with the existing embankment and spillway, allowing for continued safe operation of the dam and improved safety to population at risk (PAR) of estimated 50 people.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{6831AF5C-5571-4A7B-9267-1372BFE4C781}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Allen Dam&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -102.038809845925,\n",
       "                43.3333071680584\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1681224.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.19283598,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -100.6381292,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1363,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Rosebud Sioux Tribe seeks to develop a Sicangu Climate Center to assert tribal sovereignty over water, lands and resources, protect tribal life, property and resources from climate change, and better manage and integrate existing tribal programs and&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 022|1681224|Rosebud Sioux T]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Sicangu Climate Center&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -100.638129199715,\n",
       "                43.1928359797328\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 519938.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.19283598,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -100.6381292,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1005,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Keya Wakpala Woicageyapi Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -100.638129199715,\n",
       "                43.1928359797328\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1681224.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.2583072,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -100.82260955,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 74,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Tribe will develop a Sicangu Climate Center to assert tribal sovereignty over water, lands and resources, protect Tribal life, property and resources from climate change, and better manage and integrate existing Tribal programs and activities.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{D116B773-E73E-43C5-8B28-CF167519CC5F}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Sicangu Climate Center&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -100.822609550404,\n",
       "                43.258307202114\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 552612.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.33311164,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -100.1791854,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 419,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Design Phase I of the Keya Wakpala Woicageyapi wetlands restoration project and connect the broader Sicangu community to restoration and conservation efforts in a culturally aligned and meaningful way. Project will produce a community-driven wetlands tra&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;76995&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Keya Wakpala Woicageyapi Wetlands Restoration and Nature-Based Community Engagement (SD)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -100.179185399884,\n",
       "                43.333111639687\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Forest Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 1377212.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.9861088,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -101.61122472,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1375,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Provide technical assistance, training, and networking to Tribal Nations for the purpose of developing Tribal co-stewardship agreements with the United States Forest Service that restore the health of federal grasslands through Indigenous natural resourc&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;79839&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Promoting Tribal Co-Stewardship for Grasslands Health (CO, KS, ND, NE, SD)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -101.611224721695,\n",
       "                42.9861088031552\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 450000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.54499,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -101.119,\n",
       "          &quot;Notes&quot;: &quot;Ainsworth Main Canal Concrete Slab replacement and Tarring of Joints. Funding is provided for implementation.&quot;,\n",
       "          &quot;OBJECTID&quot;: 847,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Ainsworth Unit - P/S&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -101.118999999775,\n",
       "                42.544989999912\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.636,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -100.36,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 618,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Evergreen Creek Watershed project is in Cherry County, Nebraska. The primary purpose of the project is for Watershed Protection. The project would address resources concerns throughout Evergreen Creek in association with high and excessive water flow&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Evergreen Creek Watershed - Cherry County Watershed D&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -100.359999999884,\n",
       "                42.6359999997807\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.6735,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -96.2159,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 560,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding and watershed protection in Davis Creek watershed. Watershed protection looks to address excessive sedimentation and incisi&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Davis Creek Watershed (Terry Schumacher, Land &amp; Water Prog. Coordinator)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -96.2158999998515,\n",
       "                41.6734999997405\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.40368323,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -94.99580478,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 734,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The PCE Former Dry Cleaner Site is located in Atlantic, Cass County, Iowa. The site is a former dry cleaning facility located at\\u00a01205 E. 7th Street and operated during the 1960s.\\u00a0In 1974, the Iowa Department of Transportation (IDOT) leased the site as&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PCE FORMER DRY CLEANER&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -94.9958047799387,\n",
       "                41.4036832298775\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.082,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -96.1225,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 535,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with watershed protection. The potential watershed project would include measures to provide stream grade and bank stabilization. These meas&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Buffalo Creek Watershed-Platte River&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -96.1225000002116,\n",
       "                41.0820000001702\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.859594,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -97.580614,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 774,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The PCE Southeast Contamination Site is located in York, York County, Nebraska. The site was previously identified as two separate sites: the York PCE Site and the Southeast York Groundwater Site.\\u00a0Tetrachloroethene (PCE)\\u00a0and other volatile organic comp&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PCE SOUTHEAST CONTAMINATION&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -97.5806140002247,\n",
       "                40.8595939999621\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.88910169,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -98.41767017,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 773,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;In October 1999, volatile organic compounds (VOCs) were detected in a Grand Island municipal water supply well during routine monitoring. Subsequent investigations identified two VOC groundwater plumes with different sources. A southern plume emanates fr&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PARKVIEW WELL&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -98.417670170137,\n",
       "                40.8891016901177\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 4000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.5271492,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -99.8108444,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1149,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Strategic Implementation of Habitat Restoration in the Central Great Plains&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -99.8108444004073,\n",
       "                41.527149199824\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 4900000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.93504534,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -100.5604471,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 424,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Implement a voluntary, incentive-based program to promote vibrant grasslands and ranching communities, increase climate resilience and improve habitat connectivity in the Sandhills to benefit at-risk species like the greater prairie-chicken. By engaging&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77153&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Prairie, Stream, and Wetland Restoration in the Sandhills Landscape of the Central Great Plains (NE)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -100.560447099857,\n",
       "                41.9350453400219\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.159,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -101.0,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 564,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with agricultural water management related to irrigation districts within the Twin Platte Natural Resources District. The potential water&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;East Clear Creek Watershed-North Platte River&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -100.999999999815,\n",
       "                41.1589999999152\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.5,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -101.6,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 656,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with agricultural water management related to Spring Creek watershed. \\u200bIrrigators in one of the most densely irrigated regions of Nebra&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Spring Creek Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -101.600000000031,\n",
       "                40.5000000000936\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.53033928,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -98.19941297,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 771,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Hastings Ground Water Contamination Site is located in and around Hastings, Nebraska. The site was placed on the National Priorities List in 1986. The Site consists of 7 Subsites with 21 operable units (OUs). Contamination from a vapor degreasing ope&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;HASTINGS GROUND WATER CONTAMINATION&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -98.1994129698313,\n",
       "                40.5303392798011\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.56403081,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -98.41501595,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 772,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The former Garvey Elevators, Inc. (Garvey) grain storage facility is currently owned and operated by Ag Processing, Inc. (AGP), and is located at 2315 West Highway 6 in Hastings, Nebraska. Soil and groundwater beneath the facility are contaminated with c&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;GARVEY ELEVATOR&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -98.4150159503064,\n",
       "                40.5640308099323\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.67,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -96.142,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 532,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding and watershed protection in Brownell Creek watershed. The project would provide the District a watershed-based plan, pri&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Brownell Creek Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -96.1419999995786,\n",
       "                40.6699999999997\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.63,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -96.012,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 678,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Wilson Creek Watershed.  The project would provide the District a watershed-based plan, prioritizing projects tha&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Wilson Creek Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -96.0119999996067,\n",
       "                40.6300000000695\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.63,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -96.245,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 682,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Ziegler Creek Watershed.  The project would provide the District a watershed-based plan, prioritizing projects th&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Ziegler Creek Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -96.2450000000125,\n",
       "                40.6300000000695\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.0,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -95.31,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 593,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding along the Lower Missouri River.  This is a multi-state effort to develop systemic approach to identify problem areas and desig&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Lower Missouri River Resiliency \\u2013 DNR 3&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -95.309999999938,\n",
       "                39.9999999999781\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.42,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -95.28,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 592,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding along the Lower Missouri River.  This is a multi-state effort to develop systemic approach to identify problem areas and desig&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Lower Missouri River Resiliency \\u2013 DNR 2&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -95.2800000001518,\n",
       "                39.4200000001662\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 4730000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.34513217,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -95.17459861,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1393,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Reconstruct and manage an estimated 28,000 acres of state wildlife action plan-prioritized tallgrass prairie in Missouri and Iowa through multi-jurisdictional partnerships. Project will collaborate with Tribes, landowners, and other organizations to cons&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80521&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Conserving, Enhancing, and Connecting Core Areas of Tallgrass Prairie Ecosystem (IA, MO)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;4&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -95.174598613419,\n",
       "                40.345132165608\n",
       "              ],\n",
       "              [\n",
       "                -93.3261475593073,\n",
       "                38.5368791351174\n",
       "              ],\n",
       "              [\n",
       "                -94.3631649385404,\n",
       "                37.0089011306012\n",
       "              ],\n",
       "              [\n",
       "                -94.2448346416074,\n",
       "                37.4826571803359\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.6,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -92.192,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 591,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding along the Lower Missouri River.  This is a multi-state effort to develop systemic approach to identify problem areas and&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Lower Missouri River Resiliency \\u2013 DNR 1&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -92.1919999998789,\n",
       "                38.6000000002877\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 14000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.39327,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -98.2094,\n",
       "          &quot;Notes&quot;: &quot;Replacement of the concrete spillway at Glen Elder Dam. Funding is provided for planning, design, and a portion of implementation.&quot;,\n",
       "          &quot;OBJECTID&quot;: 975,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Glen Elder Unit - P/S&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -98.2093999998839,\n",
       "                39.3932699998976\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 83100.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.73596832,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -103.5370242,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1021,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Lincoln County, Improving Water Efficiency Through Smart Water Meters&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -103.537024200046,\n",
       "                38.73596832004\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.24900859,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -104.6101224,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 724,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;While Pueblo has a long industrial past, the Superfund site focuses on the impact from one historic smelter. The historic Colorado Smelter was a silver and lead smelter that operated in the Eilers and Bessemer neighborhoods from 1883 to 1908. The Colorad&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;COLORADO SMELTER&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -104.61012240009,\n",
       "                38.2490085899268\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 5112626.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.82511516,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -106.3535321,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 444,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Prioritize five major watershed areas of Colorado for strengthened ecosystem and community resilience through habitat and ecosystem restoration, enhanced habitat connectivity, increased recreational access, and local community and workforce engagement. P&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77714&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Stakeholder Driven Watershed Health and Resilience Partnerships in Colorado&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -106.353532099658,\n",
       "                38.8251151599294\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.80348833,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -104.700465,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 907,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Colorado Springs Utilities, High Efficiency Toilets for Affordable Housing&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -104.70046499983,\n",
       "                38.8034883298041\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Forest Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.96810242,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -105.36628776,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1405,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Restore the natural river channel and re-establish approximately 45 miles of aquatic species passage and spawning habitat on the South Platte River, part of the Pike-San Isabel National Forests by removing an obsolete diversion dam and accumulated sedime&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;81119&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Lake George Aquatic Connectivity and River Restoration (CO)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.366287758017,\n",
       "                38.9681024248504\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 85000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.9985466,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -105.5478134,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 957,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Eradicating Invasive Plants to restore Dolores River Desert Riparian Systems in Colorado&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.547813399717,\n",
       "                38.9985465997279\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 4000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.9985466,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -105.5478134,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 906,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Colorado Department of Agriculture, Conservation Services Division Watershed Health Partnership Proposal&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.547813399717,\n",
       "                38.9985465997279\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 6400000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.9985466,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -105.5478134,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 978,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Colorado River Endangered Species Recovery and Conservation Programs&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Grand Valley Irrigation Company Fish Screen Installation&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4374&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.547813399717,\n",
       "                38.9985465997279\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 60000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.9985466,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -105.5478134,\n",
       "          &quot;Notes&quot;: &quot;The project will provide safe, long-term water supply to an estimated 50,000 people in 40 rural communities along the Arkansas River. Replaces current groundwater sources contaminated with radionuclides and helps communities comply with EPA drinking wate&quot;,\n",
       "          &quot;OBJECTID&quot;: 854,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water &amp; Groundwater Storage, And Conveyance&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Arkansas Valley Conduit&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/bil/docs/spendplan-2022/Reclamation-BIL-Spend-Plan-Storage-Addendum-09-30-2022.pdf&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.547813399717,\n",
       "                38.9985465997279\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.9985466,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -105.5478134,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 930,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Dolores Water Conservation District, Full-Service Acres Meter Upgrades&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.547813399717,\n",
       "                38.9985465997279\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 25000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.9985466,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -105.5478134,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 953,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Eradicating Invasive Plants to Improve Riparian Habitats in McElmo Creek and Yellow Jacket Creek in Colorado&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.547813399717,\n",
       "                38.9985465997279\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 210000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.9985466,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -105.5478134,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1167,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Low tech restoration project to be implemented in high alpine mountainous areas of the Upper Arkansas and Upper Animas River watersheds.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Upper Arkansas and Upper Animas Watersheds Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.547813399717,\n",
       "                38.9985465997279\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 62400.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.9985466,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -105.5478134,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1092,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Purgatoire River Water Conservancy District, Water Control Gates for Water Efficiency&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.547813399717,\n",
       "                38.9985465997279\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 585000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.9985466,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -105.5478134,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 919,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;DDWC Storage and Efficiency Improvements&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.547813399717,\n",
       "                38.9985465997279\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 33500.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.22731985,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -104.8870222,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1016,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Larkspur, Improving Water Efficiency Through Smart Water Meters&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -104.887022199759,\n",
       "                39.2273198500266\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 84325.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.22184032,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -105.2663512,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 918,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Dave Miller Mutual Ditch Company, Ditch Piping Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.266351199552,\n",
       "                40.2218403201727\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.2916,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -105.049,\n",
       "          &quot;Notes&quot;: &quot;Project Lat/Long was incorrectly listed. Longitudes was positive. Lat/Long fields updated with negative longitude and manually moved to presumed correct location.&quot;,\n",
       "          &quot;OBJECTID&quot;: 625,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bRe-construction of the Little Thompson Reservoir aka Hillsborough Reservoir to increase water availability and quantity. The project will entail rebuilding the 1903 dam to current standards. The water decree from the Big Thompson River is still in eff&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - La Plate River Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.048999999617,\n",
       "                40.2916000001821\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.42,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -104.709,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 893,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Central Colorado Water Conservancy District, Northeast Colorado Augmentation Automation Efficiency Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -104.709000000244,\n",
       "                40.4200000001035\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.42,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -104.709,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 979,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Greeley AMI Meter Installation Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4247&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -104.709000000244,\n",
       "                40.4200000001035\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.06069121,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -105.5081811,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 721,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Captain Jack Mill site is located at the headwaters of upper Left Hand Creek, about 1.5 miles south of Ward, in Boulder County, Colorado. The site is in a narrow valley known as California Gulch. Mining for gold and silver in the region began in 1860&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;CAPTAIN JACK MILL&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.508181100211,\n",
       "                40.0606912099518\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 113548.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.7437282870001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -105.009159059,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 370,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Climate change may substantially alter big sagebrush plant communities, including potential ecological transformations to novel or less productive plan communities within the current sagebrush biome. This project will use an ecological simulation model t&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230055&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Assessing the future sagebrush core habitats: impacts of climate &amp; climate uncertainty, wildfire and invasive species&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.0091590592,\n",
       "                39.7437282869822\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 110000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.7436981,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -105.0090027,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 349,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Climate change may substantially alter big sagebrush plant communities, including potential ecological transformations to novel or less productive plan communities within the current sagebrush biome. This project will use an ecological simulation model t&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220034&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Assessing the future sagebrush core habitats: impacts of climate &amp; climate uncertainty, wildfire and invasive species&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.009002700238,\n",
       "                39.7436981002103\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.7430683210001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -104.987014741,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 390,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project seeks to put science into practice, helping land managers scale-up conservation delivery to address the largest threat to the sagebrush biome: invasive annual grasses. Centered around the proactive \\u201cDefend the Core and Grow the Core\\u201d con&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230075&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Invasive Annual Grass Tech Transfer Partnership: Empowering Land Managers to Defend and Grow Sagebrush Cores&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -104.987014741233,\n",
       "                39.7430683207194\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 200000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.7430992,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -104.9869995,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 348,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project seeks to put science into practice, helping land managers scale-up conservation delivery to address the largest threat to the sagebrush biome: invasive annual grasses. Centered around the proactive \\u201cDefend the Core and Grow the Core\\u201d con&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220033&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Invasive Annual Grass Tech Transfer Partnership: Empowering Land Managers to Defend and Grow Sagebrush Cores&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -104.986999500416,\n",
       "                39.7430991998802\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 150000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.7326012,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -104.9869995,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 351,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Conservation Efforts Database is a web-based data portal to collect information from federal and non-federal partners on management actions that benefit sagebrush ecosystems and sagebrush-dependent wildlife habitats. This project leverages the existi&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220036&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Evaluating the effectiveness of conservation actions directed for greater sage-grouse using hierarchical models and the Conservation Efforts Database&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -104.986999500416,\n",
       "                39.7326011996679\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 150000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.732640028,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -104.987358064,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 381,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Conservation Efforts Database is a web-based data portal to collect information from federal and non-federal partners on management actions that benefit sagebrush ecosystems and sagebrush-dependent wildlife habitats. This project leverages the existi&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230066&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Evaluating the effectiveness of conservation actions directed for greater sage-grouse using hierarchical models and the Conservation Efforts Database&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -104.98735806386,\n",
       "                39.7326400281375\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 99995.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.7252133370001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -104.988539199,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 382,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project  will lead to a more healthy ecosystem on which the rural community lives by specifically understanding and planning for the effects of climate change .&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230067&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Geospatial analyses, species modeling, and interactive web application development to support sagebrush biome assessment and inform conservation delivery&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -104.988539199338,\n",
       "                39.7252133366954\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.7256872200001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -105.008255703,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 405,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will identify biome-wide costs needed to address the invasive annual grass threat  with a Defend and Grow the Core approach. Economic comparisons of allocation scenarios that vary based on site conditions and ecological outcomes will define&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230090&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Sagebrush Biome Invasive Annual Grass Economic Assessment&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.00825570257,\n",
       "                39.7256872197318\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 115000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.7332993,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -105.0090027,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 356,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will leverage the power of the Land Treatment Exploration Tool and monitoring data from landscape-scale restoration projects on private and public lands to act as a \\u201cone stop shop\\u201d for restoration planning. The enhanced tool will provide&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220041&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Planning for Conservation Delivery Success: Linking Biome-wide Sagebrush Conservation Design to Local Treatment Planning by Leveraging Landscape Restoration Outcomes&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.009002700238,\n",
       "                39.7332992998132\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 75000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.7528,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -104.987999,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 353,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will directly link the sagebrush conservation design to greater sage-grouse populations. The research will provide the scientific evidence to link management actions applied under the sagebrush conservation design to the greater sage-grouse&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220038&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Understanding greater sage-grouse population trends from the lens of the WAFWA Conservation Design Strategy: implications for management of impacted, core, and growth opportunity areas within the sagebrush biome&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -104.987999000137,\n",
       "                39.7527999996954\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 75000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.7528351650001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -104.987529726,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 413,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will directly link the sagebrush conservation design to greater sage-grouse populations. The research will provide the scientific evidence to link management actions applied under the sagebrush conservation design to the greater sage-grouse&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230098&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Understanding greater sage-grouse population trends from the lens of the WAFWA Conservation Design Strategy: implications for management of impacted, core, and growth opportunity areas within the sagebrush biome&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -104.987529725623,\n",
       "                39.7528351647129\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 150000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.7535019,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -105.0090027,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 350,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will enhance the Sagebrush CD by incorporating landscape-scale connectivity among core sagebrush areas. Connectivity will be defined using genetics from target species and cross-referenced with analyzed ungulate migration corridors. The conn&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220035&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Incorporating Connectivity and Wildland Fire Risk into the WAFWA Sagebrush Conservation Design&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.009002700238,\n",
       "                39.7535019001864\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 25950.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.764801,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -105.0080032,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 363,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The CED will be the tool for USFWS programs to enter in their information on BIL projects. This funding supports modifications to the system to allow for BIL tracking and reporting.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220048&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Conservation Efforts Database (CED) upgrades&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.008003199619,\n",
       "                39.7648009999277\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 13399.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.7648283250001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -105.008144788,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 377,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The CED will be the tool for USFWS programs to enter in their information on BIL projects. This funding supports modifications to the system to allow for BIL tracking and reporting.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230062&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Conservation Efforts Database (CED) upgrades&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.008144787582,\n",
       "                39.7648283249406\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 50000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.7644005,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -104.987999,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 362,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Partnership with the Intermountian West Joint Venture to support communications on BIL project opportunities &amp; outcomes.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220047&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Communications Support&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -104.987999000137,\n",
       "                39.7644004999764\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 50000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.7644324670001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -104.987888746,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 375,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Partnership with the Intermountian West Joint Venture to support communications on BIL project opportunities &amp; outcomes.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230060&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Communications Support&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -104.987888746309,\n",
       "                39.7644324668081\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.78188675,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -104.9918368,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1039,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Modernization of the Maybell Irrigation District&#x27;s Diversion from the Yampa River in Colorado&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -104.991836799762,\n",
       "                39.7818867501272\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 5000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.69720458,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -104.8090656,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1057,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;North Campus Radial Collector Well - Drought Resilience Initiative&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -104.809065599903,\n",
       "                39.697204579801\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Park Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 220000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.70095749,\n",
       "          &quot;LatLongTyp&quot;: &quot;NPS Intermountain Regional Office, CO&quot;,\n",
       "          &quot;Long&quot;: -105.1427669,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 294,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Increase in-house supplies of genetically-appropriate native seeds to support grassland, sagebrush, and southwestern desert rehabilitation, restoration, and climate adaptation in NPS Intermountain Region parks. Project outcomes include creating private s&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;100XX09MU2322&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Increase native seed production for IMR parks&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.142766899965,\n",
       "                39.70095749003\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 230926.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.6511993,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -108.2559967,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 329,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Aerial application of herbicide to treat cheatgrass on approximately 7,125 acres of privately owned sagebrush habitat on working ranchlands in NW CO. This project will complement ongoing, partner-driven work in this strategic landscape to benefit Greater&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220014&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoration of Native Sagebrush Habitats from Cheatgrass Invasion in Northwestern Colorado (Phase 1)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -108.255996700339,\n",
       "                40.6511993001082\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 230926.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.6511543140001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -108.256107976,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 403,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Aerial application of herbicide to treat cheatgrass on approximately 7,125 acres of privately owned sagebrush habitat on working ranchlands in NW CO. This project will complement ongoing, partner-driven work in this strategic landscape to benefit Greater&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230088&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoration of Native Sagebrush Habitats from Cheatgrass Invasion in Northwestern Colorado (Phase 1)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -108.256107975551,\n",
       "                40.6511543142086\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 25000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.33078,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -111.168,\n",
       "          &quot;Notes&quot;: &quot;Install a new intake structure at Deer Creek Dam for additional flow control redundancy and flexibility. Funding is provided for planning, design, and subsequently, a portion of implementation.&quot;,\n",
       "          &quot;OBJECTID&quot;: 1087,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Provo River&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.16799999994,\n",
       "                40.3307799996979\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 232398.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.8794119460001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -111.180377977,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 416,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will advance mesic habitat restoration within larger watershed scale habitat restoration projects in Utah to increase climate and drought resiliency.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230101&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Utah: Climate Resilience Projects for Mesic Habitat Restoration and Enhancements&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.18037797697,\n",
       "                39.8794119462493\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 475453.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.8793983,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -111.1800003,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 334,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The primary purpose of this funding request is to support upland habitat restoration in Utah. Removing conifers is an effective restoration tool in these systems and is necessary for defending and growing the core sagebrush habitats in Utah.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220019&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Utah: Climate Resilience Projects for Mesic Habitat Restoration and Enhancements&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.180000300072,\n",
       "                39.8793983003037\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 14000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.12479,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -109.519,\n",
       "          &quot;Notes&quot;: &quot;Finish piping the 12-mile long Steinaker Service Canal. Funding is provided for planning, design, and subsequently, a portion of implementation.&quot;,\n",
       "          &quot;OBJECTID&quot;: 1177,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Vernal Unit - C/U&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.519000000103,\n",
       "                40.1247900001152\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.0,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -110.0,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 563,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bA preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist with agricultural water management.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Duchesne Water Conservancy District&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -110.000000000358,\n",
       "                39.9999999999781\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.0,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -110.0,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 562,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;BIL WFPO funds will support construction efforts to address agricultural water management concerns.  Project details provide water conservation and canal stabilizations.  Water conservation includes irrigation efficiencies through reduced seepage and eva&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Duchesne County WCD&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -110.000000000358,\n",
       "                39.9999999999781\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.7014,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -110.8655,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Town of Helper, Trout Unlimited, Utah DNR, Utah DWQ, Utah Office of Outdoor Recreation, Utah Natural History Museum, Carbon County, Utah Coal Country Task Force, Ross Gigliotti Enterprises, USU Price, local individual&quot;,\n",
       "          &quot;OBJECTID&quot;: 154,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The proposed Gigliotti Dam removal is the last of 6 dam removals within the town of Helper, Utah and is highly supported by the town and owner to be completed by the end of 2023. The dam is a private, concrete dam that has been no longer needed for water&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{3761eb43-ce49-4c7b-afba-eb47c935539f}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Gigliotti Diversion Dam Removal on the Price River&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/gigliotti-diversion-dam-removal-price-river&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -110.865499999626,\n",
       "                39.7013999998257\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 5000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.3237877,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -111.6782074,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 933,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Draper Irrigation Company Reuse Pump Station Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.678207400237,\n",
       "                39.3237877002544\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.3237877,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -111.6782074,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1073,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Paris Creek Hydropower Decommissioning and Instream Flow Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.678207400237,\n",
       "                39.3237877002544\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2800000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.3237877,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -111.6782074,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1168,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Colorado River Endangered Species Recovery and Conservation Programs&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Upper Colorado River Endangered Fish Recovery Program&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4374&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.678207400237,\n",
       "                39.3237877002544\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.3237877,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -111.6782074,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1190,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Resilient Recreation Sites&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Watershed Restoration and Recreation Connectivity Design Across Multiple Landowners, East Zion National Park&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.678207400237,\n",
       "                39.3237877002544\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 3754393.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.3237877,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -111.6782074,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1193,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;WBWCD AV Watkins &amp; Siphon Replacement and South Delivery Conduit Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.678207400237,\n",
       "                39.3237877002544\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.3237877,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -111.6782074,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1198,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;West Corinne Water Company Culinary Well and Booster Pump Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.678207400237,\n",
       "                39.3237877002544\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 99597.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.3237877,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -111.6782074,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1204,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Wilson Irrigation Company, Canal System Automation Project - Phase 1&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.678207400237,\n",
       "                39.3237877002544\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 3200000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.3237877,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -111.6782074,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 877,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Building Drought Resilience Through Increased Groundwater Production Capacity and Aquifer Storage and Recovery&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.678207400237,\n",
       "                39.3237877002544\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 5000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.3237877,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -111.6782074,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 974,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;GHID Anderson Water Treatment Plant and Well No. 18 Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.678207400237,\n",
       "                39.3237877002544\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.3237877,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -111.6782074,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 863,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Bear River Canal Company, Automated Diversion Gate System&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.678207400237,\n",
       "                39.3237877002544\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 50000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.3237877,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -111.6782074,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 949,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Eradicating Invasive and Noxious Plants in Riparian and Upland Habitats in Iron and Beaver Counties in Utah&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.678207400237,\n",
       "                39.3237877002544\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 5300000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.0183,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -108.466,\n",
       "          &quot;Notes&quot;: &quot;Line approximately 1-mile of the Government Highline Canal in an urbanized reach and replace a cross-drainage undershot. Funding is provided for implementation.&quot;,\n",
       "          &quot;OBJECTID&quot;: 977,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Grand Valley&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -108.466000000151,\n",
       "                39.0183000003273\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 42000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.0183,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -108.466,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 963,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Eradicating Tamarisk to Improve Riparian Habitats in Western Colorado&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -108.466000000151,\n",
       "                39.0183000003273\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Park Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 200000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.16513,\n",
       "          &quot;LatLongTyp&quot;: &quot;Upper Colorado Basin&quot;,\n",
       "          &quot;Long&quot;: -109.023,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 293,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;PRODUCTION: Increase seed production and storage of native &#x27;workhorse&#x27; species to support grassland, sagebrush, and southwestern desert rehabilitation and restoration for parks in and adjacent to the Upper Colorado Basin. Project outcomes include creatin&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;100XX09MU2122&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Increase native seed production for Upper CO basin&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.023000000404,\n",
       "                39.1651300003257\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 42000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.1984565,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -108.9129546,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 214,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Tamarisk removal along riparian corridors.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX06CO1122&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Riparian Habitat Improvement in Western Colorado&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -108.912954600333,\n",
       "                39.1984564997446\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 398139.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.7238007,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -107.0039978,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 330,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project further long-term sagebrush efforts with strategic collaborative conservation action. Funding will support delivery of tangible outcomes involving wet meadow restoration, prioritized cheatgrass treatments, and sagebrush restoration within th&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220015&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Gunnison Basin Cheatgrass Implementation Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -107.003997799636,\n",
       "                38.7238007001285\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 395337.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.7237645160001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -107.003666569,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 383,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will deliver multiple treatments, including wet meadow restoration (150 acres), prioritized cheatgrass treatments (1000 acres) and other sagebrush restoration outcomes within the Gunnison Basin of Colorado. These deliverables will benefit fe&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230068&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Gunnison Basin Cheatgrass Implementation Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -107.003666569231,\n",
       "                38.7237645157921\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 188726.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.6179019420001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -107.126105997,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 384,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The project aims to develop priority conservation action maps for Gunnison sage-grouse based on species abundance, habitat features, predicted future risk (e.g., invasive grasses, pinyon-juniper encroachment, development, wildfire), and other relevant da&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230069&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Gunnison Sage-grouse Prioritizing Restoration of Sagebrush Ecosystems Tool (PReSET)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -107.126105997429,\n",
       "                38.6179019416817\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 85000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.23519021,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -108.8813235,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 213,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Watershed level restoration with the focus of removing invasive vegetation such as tamarisk in important desert riparian systems.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX06CO0522&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Dolores River Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -108.881323499841,\n",
       "                38.2351902102447\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Forest Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 802934.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.4904953,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -110.04460147,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1430,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Inventory and prioritize opportunities for aquatic connectivity on U.S. Forest Service lands in Regions 3, 4, 5, 8, and 9, to maximize reconnection, restoration, and enhancement of aquatic habitat. Project will expand knowledge of aquatic fragmentation o&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80900&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Assessing and Prioritizing Aquatic Connectivity on United States Forest Service Lands&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -110.044601468301,\n",
       "                38.4904952977003\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Department-Wide Programs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.56,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -109.549,\n",
       "          &quot;Notes&quot;: &quot;This project&#x27;s exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 14 wells&quot;,\n",
       "          &quot;OBJECTID&quot;: 1336,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Orphaned Well Site Plugging, Remediation, And Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 031||Moab Field Offi]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Moab Field Office BLM Lands&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.548999999889,\n",
       "                38.5600000001883\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 50000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.53424185,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -112.6740307,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 222,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Noxious weed eradication across the landscape and within important riparian and upland habitats.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX06UT1322&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Iron and Beaver Counties Noxious Weed Eradication&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.674030699554,\n",
       "                38.5342418499932\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 50000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.8189011,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -116.6429977,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 345,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Service and Nevada Department of Wildlife, with other state partners, have a statewide Programmatic Candidate Conservation Agreement with Assurances (CCAA) planned for completion in FY22. Funding will be used to support the implementation of this pro&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220030&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Reducing Threats to Nevada Sage-grouse Populations through a Programmatic Candidate Conservation Agreement with Assurances&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.642997700315,\n",
       "                38.8189010998167\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.35405208,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -120.7864194,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 720,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Argonaut Mine site (site) is an historic hard rock gold mine that operated from the 1850s to 1942. The Argonaut Mining Company processed ore and disposed of tailings in a portion of\\u00a0the northwest side of present-day Jackson, Calif. As a result of ye&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;ARGONAUT MINE&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.786419400442,\n",
       "                38.3540520798626\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 24115808.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.47,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -121.35,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 984,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water Recycling&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Harvest Water Program&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4296&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.350000000326,\n",
       "                38.4699999996875\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.70642768,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -120.8292742,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1084,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Post Caldor Fire Watershed Restoration for Securing Water Supply for the Grizzly Flats Community&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.829274200316,\n",
       "                38.7064276798232\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.56755629,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -121.5026599,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1140,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;South Sutter Water District, Main Diversion Modernization Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.502659900033,\n",
       "                38.5675562902263\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.56755629,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -121.5026599,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 886,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Carmichael Water District, Turf Removal Incentive Program&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.502659900033,\n",
       "                38.5675562902263\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 79516.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.56755629,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -121.5026599,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 973,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Georgetown Divide Public Utility District, Concrete Lining of Upper Canal Water Delivery System&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.502659900033,\n",
       "                38.5675562902263\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.8687,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -119.126,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 673,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with agricultural water management related Walker River Irrigation District.  The Walker River has a high sediment load, which is causing&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Walker River Irrigation District - East Walker Diversions&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.125999999645,\n",
       "                38.8687000002093\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 35000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.02064,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -119.189,\n",
       "          &quot;Notes&quot;: &quot;Line Canal for approximately 3.5 miles using geomembrane and concrete and modify two check structures. Submitted as Infrastructure Request. Funding is provided for implementation.&quot;,\n",
       "          &quot;OBJECTID&quot;: 1052,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Newlands Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.189000000364,\n",
       "                39.020640000313\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 206229.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.10178395,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -119.9378689,\n",
       "          &quot;Notes&quot;: &quot;Most AIS infestations occur within and around the marinas on Lake Tahoe. This investment will fund a feasibility study to determine the potential for redesign at marinas around the lake to help reduce potential AIS infestation.&quot;,\n",
       "          &quot;OBJECTID&quot;: 1015,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Lake Tahoe&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Lake Tahoe Marina Redesign Feasibility Study&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/program/lake-tahoe-aquatic-invasive-species&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.937868900194,\n",
       "                39.101783949682\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 64635.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.10178395,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -119.9378689,\n",
       "          &quot;Notes&quot;: &quot;The resident and visitor population of Lake Tahoe is diverse and includes a significant number of people who are part of the Latinx community. Public education is critical when it comes to preventing the introduction of AIS into the region, but many educ&quot;,\n",
       "          &quot;OBJECTID&quot;: 867,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Lake Tahoe&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Bilingual AIS Education and Outreach&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/program/lake-tahoe-aquatic-invasive-species&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.937868900194,\n",
       "                39.101783949682\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1550000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.10178395,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -119.9378689,\n",
       "          &quot;Notes&quot;: &quot;The Taylor and Tallac creeks and marshes are infested with approximately 17 acres of the invasive aquatic weed Eurasian watermilfoil. This investment will fund the installation of benthic barriers that smother invasive aquatic plants and prevent photosyn&quot;,\n",
       "          &quot;OBJECTID&quot;: 1157,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Lake Tahoe&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Taylor-Tallac AIS Control Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/program/lake-tahoe-aquatic-invasive-species&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.937868900194,\n",
       "                39.101783949682\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 681724.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.10178395,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -119.9378689,\n",
       "          &quot;Notes&quot;: &quot;For Washoe Environmental Protection Department (WEPD) staff to fully engage on planning, monitoring and control of AIS from a Washoe Tribe perspective. \\nFor WEPD staff to build more effective working relationships with environmental partners working in L&quot;,\n",
       "          &quot;OBJECTID&quot;: 1186,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Lake Tahoe&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Washoe Tribe Priorities&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/program/lake-tahoe-aquatic-invasive-species&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.937868900194,\n",
       "                39.101783949682\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.10178395,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -119.9378689,\n",
       "          &quot;Notes&quot;: &quot;The Lake Tahoe Watercraft Inspection Program is one of the most successful programs in the country, with no new invasions discovered since program inception in 2008. Currently, inspections occur at three off-ramp, temporary inspection stations along corr&quot;,\n",
       "          &quot;OBJECTID&quot;: 1078,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Lake Tahoe&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Permanent Watercraft Inspection Stations&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/program/lake-tahoe-aquatic-invasive-species&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.937868900194,\n",
       "                39.101783949682\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.4856,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -118.9227,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 664,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with agricultural water management related \\u200bThe Truckee Carson Irrigation District. This infrastructure is aging, which is why the dist&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Truckee Carson Irrigation District - V Line Ditch&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -118.922700000348,\n",
       "                39.4856000001403\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.47205744,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -118.7792801,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1162,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Truckee-Carson Irrigation District, Upgrade to Satellite Relay for Near Real-Time Data Acquisition&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -118.779280099788,\n",
       "                39.4720574402852\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior and Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service and the Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 1496613.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.11264502,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -118.96493765,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1407,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Protect, enhance, and reconnect aquatic, wetland, and riparian habitats to prepare for the reintroduction of Lahontan cutthroat trout to Walker Lake while increasing tribal sovereignty. Project will develop and implement a beaver management plan, map and&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;81194&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Building a Healthier Riparian Corridor to Support Lahontan Cutthroat Trout Reintroduction (NV)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -118.964937648639,\n",
       "                39.1126450152014\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.9454,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -118.8011,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 674,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with agricultural water management related to Walker River Paiute Tribe irrigation system. Field evaluation completed in 2011 showed loca&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Walker River Paiute Reservation Irrigation System Restoration and Improvement&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -118.801100000173,\n",
       "                38.9454000000392\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1747500.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.3564339,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -116.6553879,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1132,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Septic System Conversion Incentive Program&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.655387899822,\n",
       "                39.3564338998386\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 200000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.36,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -116.6553879,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1353,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Sagebrush-Steppe&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 019|200000|Pinyon-Juniper ]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Pinyon-Juniper Removal on Fortynine Mountain for Greater Sage-Grouse&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/program/sagebrush-conservation&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.655387899822,\n",
       "                39.3599999997563\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 405000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.36,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -116.6553879,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1284,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Sagebrush-Steppe&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 014|405000|Bothwick Habita]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Bothwick Habitat Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/program/sagebrush-conservation&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.655387899822,\n",
       "                39.3599999997563\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.492022467,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -116.79763093,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 397,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This funding will be used to hire 1 GS 9/11 Sagebrush Coordinator, who will focus on conservation delivery of sagebrush BIL funding with a focus on developing tribal partnerships.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230082&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Partnerships Coordinator&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.797630930105,\n",
       "                39.4920224671398\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 130000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.4695015,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -116.8880005,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 360,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This funding will be used to hire 1 GS 12 Sagebrush Coordinator, who will focus on conservation delivery through completion and implementation of CCAA with NDOW, and other public/private landowners.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220045&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Sagebrush Coordinator&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.888000499965,\n",
       "                39.4695014997522\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 50000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.5984001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -116.8809967,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 357,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Mining activities are increasing within sagebrush ecosystems and likely have adverse effects on wildlife species occupying imperiled habitats, yet the impacts of mining on sagebrush obligate species have not been quantified. A pilot study will be initiat&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220042&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Impacts of mining exploration and development on sagebrush ecosystems and wildlife: a pilot study&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.880996700411,\n",
       "                39.5984001002843\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 50000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.598406647,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -116.88136873,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 387,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Mining activities are increasing within sagebrush ecosystems and likely have adverse effects on wildlife species occupying imperiled habitats, yet the impacts of mining on sagebrush obligate species have not been quantified. A pilot study will be initiat&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230072&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Impacts of mining exploration and development on sagebrush ecosystems and wildlife: a pilot study&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.881368729601,\n",
       "                39.5984066469206\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 252500.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.597457761,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -116.703762025,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 380,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Conifer removal is a key tool for restoring and conserving sagebrush ecosystems and greater sage-grouse populations. Yet, there are still gaps on the response of sagebrush obligate songbirds and pinyon jays to conifer treatments. By monitoring songbird r&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230065&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Effect of conifer treatments and landscape management on sagebrush obligate songbirds and Pinyon Jays in the Great Basin.&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.703762025158,\n",
       "                39.5974577609707\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.5974998,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -116.7040024,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 352,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Conifer removal is a key tool for restoring and conserving sagebrush ecosystems and greater sage-grouse populations. Yet, there are still gaps on the response of sagebrush obligate songbirds and pinyon jays to conifer treatments. By monitoring songbird r&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220037&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Effect of conifer treatments and landscape management on sagebrush obligate songbirds and Pinyon Jays in the Great Basin.&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.704002399955,\n",
       "                39.5974997996864\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 262790.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.6798857470001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -116.810914607,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 389,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Plant seeds that are adapted to hot and dry climates are necessary for successful restoration efforts in the Great Basin and Nevada. This project will increase the availability of native seeds and plant material from ecotypes adapted to dry conditions fo&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230074&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Increasing the availability of dry ecotype native seeds and plant materials for the Great Basin (Nevada Seed Strategy Actions 1.3.5, 2.2.2, 2.2.3, and 2.2.4)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.810914606571,\n",
       "                39.6798857467442\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 51166.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.9510994,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -117.1139984,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 344,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Reese River is a tributary of the Humboldt River but in recent years has dwindled into a chain of shallow pools before it reaches the Humboldt River. A pipeline and troughs will be installed to provide water for livestock and wildlife in this sagebru&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220029&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Home Ranch Water Distribution - Phase II&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.113998400429,\n",
       "                39.9510993998182\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 96154.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.8318537,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -119.3579527,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 41,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Prevent invasive mussels from becoming established in Pyramid Lake, NV&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{D83EEE8E-3E1D-4781-BE38-D3A0D9DA0D52}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Increase Capacity: Watercraft Inspections and Decontaminations, Public Outreach and Education&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.357952700075,\n",
       "                39.8318537002903\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 8292215.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.7896,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -119.3491,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Pyramid Lake Paiute Tribe, BOR, Nevada DOW, local and regional recreational angling community&quot;,\n",
       "          &quot;OBJECTID&quot;: 174,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Numana Dam is a Pyramid Lake Paiute Tribe Agricultural diversion structure located 8 miles above Marble Bluff Dam. It severely restricts migration of endangered Cui-ui and threatened Lahontan Cutthroat Trout (LCT) from Pyramid Lake to historic spawning h&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{20cc2710-2170-4963-802e-7d663386830f}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Numana Dam Fish Passage Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/numana-dam-fish-passage-project&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.349099999681,\n",
       "                39.7896000000682\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 249458.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.55909302,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -119.773693,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1287,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will help to complete a Climate Adaptation Plan, which will quantify and assess the impacts of climate on the ecosystem and community/infrastructure needs, on the Summit Lake Reservation and the surrounding watershed. The Summit Lake Paiute&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 022|249458|Summit Lake Pai]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Climate Adaptation Planning for Ecosystems and Community&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.773693000091,\n",
       "                39.5590930201561\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 443684.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.55909302,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -119.773693,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 947,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Ensuring Resilient Cultural and Riparian Connectivity Within the Summit Lake Paiute Tribe Reservation&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.773693000091,\n",
       "                39.5590930201561\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 249458.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.5409053,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -119.76581302,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 8,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Summit Lake Paiute Tribe will partner with the University of Nevada, Reno and McBain Associates to fill knowledge gaps, project future climate scenarios, collect data and develop a Climate Adaptation Plan.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{0B345A3B-86A3-4567-A9DC-267B9D02EDE2}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Climate Adaptation Planning for Ecosystems and Community&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.765813017046,\n",
       "                39.5409052962923\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Park Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 550000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 48.8995,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -121.2923,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 269,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This multi-park restoration project at 7 parks in WA and CA will restore highly sensitive habitats threatened by unstable trails and over-capacity campgrounds and include public education on sustainable stewardship of recreation sites. By restoring habit&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;100XX07MU3122&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoring wildlife habitat in 7 parks in WA and CA&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;7&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.238900000328,\n",
       "                32.6709000000389\n",
       "              ],\n",
       "              [\n",
       "                -119.574999999949,\n",
       "                34.0488000001315\n",
       "              ],\n",
       "              [\n",
       "                -121.146100000081,\n",
       "                36.4921999997565\n",
       "              ],\n",
       "              [\n",
       "                -122.529700000426,\n",
       "                37.8480999998451\n",
       "              ],\n",
       "              [\n",
       "                -122.536799999666,\n",
       "                37.8536999996607\n",
       "              ],\n",
       "              [\n",
       "                -123.546399999622,\n",
       "                47.8952999998633\n",
       "              ],\n",
       "              [\n",
       "                -121.292299999596,\n",
       "                48.899500000014\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 503786.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.381855843,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -117.136448126,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 388,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Partnering with the Nevada Department of Wildlife, this project focuses on climate resilience of the sagebrush ecosystem at four sites across northern Nevada. This includes pinyon-juniper removal, protective fencing, seeding with native forbs and grasses&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230073&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Improving Climate Resilience of Sagebrush Ecosystem Communities in the Great Basin (BIL)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.136448125829,\n",
       "                40.3818558433394\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 887832.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.3819008,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -117.1360016,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 367,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Partnering with the Nevada Department of Wildlife, this project focuses on climate resilience of the sagebrush ecosystem at four sites across northern Nevada. This includes pinyon-juniper removal, protective fencing, seeding with native forbs and grasses&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220052&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Improving Climate Resilience of Sagebrush Ecosystem Communities in the Great Basin&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.136001600251,\n",
       "                40.3819008002198\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 7660.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.9090004,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -116.2789993,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 343,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Along the slopes of the Monitor Range in central Nevada, pinyon-juniper woodlands have expanded into sagebrush rangelands along the valley floor. This encroachment is depleting understory vegetation and dewatering the landscape. We plan to thin the trees&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220028&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Kelly Creek Conifer Thinning - Phase I&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.278999299754,\n",
       "                39.9090003999576\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1944900.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.52391996,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -112.1947788,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 234,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Restoration and vegetation management of mined land repositories containing waste rock and tailings on BLM-managed land and surrounding associated watershed areas.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX08MU5522&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoration of Mined Land Repositories&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;15&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -113.209649000312,\n",
       "                34.6382007402722\n",
       "              ],\n",
       "              [\n",
       "                -107.197511500125,\n",
       "                35.2683005001266\n",
       "              ],\n",
       "              [\n",
       "                -107.827567500204,\n",
       "                35.3310933498838\n",
       "              ],\n",
       "              [\n",
       "                -117.621879700434,\n",
       "                35.3522843403408\n",
       "              ],\n",
       "              [\n",
       "                -117.665366899895,\n",
       "                35.3697159099248\n",
       "              ],\n",
       "              [\n",
       "                -107.8207141999,\n",
       "                35.3731098997722\n",
       "              ],\n",
       "              [\n",
       "                -117.408770499782,\n",
       "                35.8906278897051\n",
       "              ],\n",
       "              [\n",
       "                -107.335192199981,\n",
       "                38.0209944902859\n",
       "              ],\n",
       "              [\n",
       "                -120.89276979978,\n",
       "                38.2373678998004\n",
       "              ],\n",
       "              [\n",
       "                -122.449575400175,\n",
       "                39.0787833700843\n",
       "              ],\n",
       "              [\n",
       "                -122.449296999692,\n",
       "                39.0824401700527\n",
       "              ],\n",
       "              [\n",
       "                -107.921280599551,\n",
       "                39.523328210155\n",
       "              ],\n",
       "              [\n",
       "                -120.816233599882,\n",
       "                44.3237984198252\n",
       "              ],\n",
       "              [\n",
       "                -117.483899499568,\n",
       "                44.9150222201934\n",
       "              ],\n",
       "              [\n",
       "                -112.19477880018,\n",
       "                45.5239199602037\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.42218538,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -112.3857359,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 828,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Jacobs Smelter site is located in the Rush Valley, Tooele County, Utah near the town of Stockton and about five miles south of Tooele, Utah. The site covers about eight square miles and includes the town of Stockton. The risks posed by the site deriv&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;JACOBS SMELTER&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.385735899862,\n",
       "                40.4221853798587\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 461271.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.7963982,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -112.6750031,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 335,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The primary purpose of this funding request is to support upland habitat restoration in Utah. Removing conifers is an effective restoration tool in these systems and is necessary for defending and growing the core sagebrush habitats in Utah.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220020&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Utah: Conifer Treatment Projects for Upland Habitat Restoration and Enhancements&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.675003099798,\n",
       "                40.796398199826\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 250000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.796365542,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -112.674518602,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 415,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will support upland habitat restoration in Utah. Removing conifers is an effective restoration tool in these systems and is necessary for defending and growing the core sagebrush habitats in Utah.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230100&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Utah: Climate Conifer Treatment Projects for Upland Habitat Restoration and Enhancements&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.674518602432,\n",
       "                40.7963655421147\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 4991383.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.59401084,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -111.91466385,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1415,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Revitalize the Jordan River and adjacent habitats along the south shorelands of the Great Salt Lake through floodplain and wetland restoration, native and invasive species management, and community engagement. Project will facilitate engagement of over 2&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;79886&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Community-Driven Riparian and Wetland Restoration in the Jordan River (UT)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.914663852853,\n",
       "                40.5940108448732\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.75364059,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -111.9170608,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 932,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Draper Irrigation Co. (WaterPro), Culinary Smart-Metering Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.917060799678,\n",
       "                40.7536405899513\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 70000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.75364059,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -111.9170608,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 943,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Emigration Improvement District, Residential Water Meter Upgrade&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.917060799678,\n",
       "                40.7536405899513\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.88768888,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -111.9043419,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 827,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The 450-acre Bountiful/Woods Cross 5th S. PCE Plume site is in southern Davis County, Utah, about 10 miles north of Salt Lake City.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;BOUNTIFUL/WOODS CROSS 5TH S. PCE PLUME&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.90434190032,\n",
       "                40.8876888800275\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.13867853,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -112.0676174,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 902,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Clinton City Well and Water Storage Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.067617400149,\n",
       "                41.1386785298043\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.13,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -112.028,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 884,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Canal Enclosure and Solar Energy Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4247&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.0280000001,\n",
       "                41.1299999997845\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.02690232,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -111.9497398,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 982,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Haights Creek Irrigation Company, Haights Creek Irrigation Company Piping Project - Phase 8&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.94973980022,\n",
       "                41.0269023201432\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.11,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -111.912,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1170,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Upper Willard Canal Lining Project (Phase 8)&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4247&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.912000000388,\n",
       "                41.1099999998381\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 14300000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.108,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -111.91,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1159,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water Recycling&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Tertiary Treatment Facility in Central Weber&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4296&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.910000000222,\n",
       "                41.1080000001026\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.17033101,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -111.9779573,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1185,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Washington Terrace City, Automatic Metering Infrastructure Installation Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.977957299938,\n",
       "                41.1703310097031\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.22322547,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -112.1271363,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1196,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Weber River Ecological Resiliency Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.127136299785,\n",
       "                41.2232254701952\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1547700.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.2993075,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -111.8148819,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1020,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Liberty Pipeline Company Drought Resiliency Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.814881899838,\n",
       "                41.2993075002337\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 23000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.26982,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -111.913,\n",
       "          &quot;Notes&quot;: &quot;Install a parallel pipeline next to the Davis Aqueduct for maintenance redundancy. Funding is provided for planning, design, and subsequently, a portion of implementation.&quot;,\n",
       "          &quot;OBJECTID&quot;: 1195,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Weber Basin&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.912999999572,\n",
       "                41.2698200001971\n",
       "              ],\n",
       "              [\n",
       "                -113.082000000135,\n",
       "                41.5210100000711\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 220000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.9870409310001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -114.953448694,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 392,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will enhance vegetation communities in the sagebrush ecosystem  and protect/restore wetlands and mesic habitats. Activities to be funded under this proposal include removing and replacing older fencing and replacing with wildlife friendly fe&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230077&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Northeastern Nevada Sagebrush Ecosystem Enhancement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.95344869358,\n",
       "                40.9870409310186\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 38050.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.854599,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -115.4000015,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 342,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Reno Fish and Wildlife Office Partners for Fish and Wildlife Program will work with the Cottonwood Ranch in Elko County, Nevada to improve meadows in the floodplain of Cottonwood Creek to benefit both wildlife and livestock. Three phases are targeted&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220027&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Fourmile Creek Wet Meadow Enhancement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.400001499793,\n",
       "                40.8545990000473\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 175000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.3245760190001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -115.39278408,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 393,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Reno Fish and Wildlife Office Partners for Fish and Wildlife Program will work with the Cottonwood Ranch in Elko County, Nevada to improve meadows in the floodplain of Cottonwood Creek to benefit both wildlife and livestock. Three phases are targeted&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230078&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;O&#x27;Neil Basin Meadow Enhancement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.392784079966,\n",
       "                41.3245760187555\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 20000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.3443985,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -114.598999,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 347,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project is located at a small spring found on private property in Elko County, Nevada.  The outflow of the spring is impounded into a pond  where it continues downstream through a diversion pipe on the east side of the pond to the water right owner&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220032&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Clover Valley Speckled Dace Habitat Enhancement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.59899900001,\n",
       "                41.3443984998497\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 25000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.5791016,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -116.5439987,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 346,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Reno Fish and Wildlife Office Partners for Fish and Wildlife Program will work with the Cottonwood Ranch in Elko County, Nevada to improve meadows in the floodplain of Cottonwood Creek to benefit both wildlife and livestock. Three phases are targeted&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220031&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Cottonwood Ranch Meadow Enhancement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.543998700037,\n",
       "                41.5791015997582\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 91162.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.7131996,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -115.4329987,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 340,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Projects funded under this project will enhance vegetation communities in the sagebrush ecosystem and protect mesic habitats on a privately owned ranch in Nevada. Project activities include installing fuel breaks strategically along dirt roads in two are&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220025&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Humboldt Ranch Sagebrush and Riparian Enhancement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.432998699779,\n",
       "                41.7131996001028\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 80000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.94210395,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -113.0482967,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 205,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Reconstruct Pilot Pond to provide a refuge population of least chub, provide water for livestock, and habitat for wildlife.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX02UT1922&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Pilot Pond Reconstruction&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -113.048296700082,\n",
       "                41.942103950141\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.73428768,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -111.8351732,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1023,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Lower Logan River Trapper Park River Restoration Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.835173199986,\n",
       "                41.7342876796723\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.79744082,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -111.819619,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 990,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Hyde Park City&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.819619000199,\n",
       "                41.7974408200113\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 144000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.4603004,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -114.1660004,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 316,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will deliver integrated habitat restoration treatments (e.g., fuel breaks, revegetation, riparian enhancement) in two priority sagebrush landscapes in Idaho, with an emphasis on re-establishing functional sagebrush habitat for Greater sage-g&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220001&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Idaho Conifer Treatments; Increasing the Pace and Scale of Regional Landscape Strategies&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.166000399707,\n",
       "                42.4603004001385\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 96000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.4602616060001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -114.166372431,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 385,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project increases the pace and scale of ongoing conifer removal partnerships in two key mixed-jurisdiction sagebrush  landscapes in southern Idaho and promotes consistent delivery of conifer treatments across time and space (and land ownership) in t&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230070&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Idaho Conifer Treatments; Increasing the Pace and Scale of Regional Landscape Strategies&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.166372430693,\n",
       "                42.4602616060263\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 71971.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.6177869,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -113.6767816,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1034,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Minidoka Irrigation District, Minidoka Irrigation District&#x27;s Piping of Lateral 24&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -113.676781599729,\n",
       "                42.6177868998804\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.5,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -112.2,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 642,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding, irrigation infrastructure, and water quality concerns.  \\u200bFlooding damage results from surface runoff entering the canal sys&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Portneuf-Marsh Valley&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.199999999952,\n",
       "                42.4999999998613\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.5,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -111.7,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 573,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding, irrigation infrastructure, and water quality concerns.  \\u200bFlooding damage results from surface runoff entering the canal sys&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Gentile Valley&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.699999999922,\n",
       "                42.4999999998613\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.89726791,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -112.4541652,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 861,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Battle Creek Ecological Restoration at Sowo Gahni&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.454165199581,\n",
       "                42.8972679098646\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 52131.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.982399,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -112.3820038,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 318,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project is a multi-faceted restoration effort to reconnect upland and riparian habitats and function in in core sagebrush areas in three priority landscapes within Idaho, including in the Bear Lake watershed, a crucial water resource for the larger&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220003&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Southeast Idaho Sagebrush Steppe Enhancement&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.382003799607,\n",
       "                42.9823990001048\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1085584.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.02715058,\n",
       "          &quot;LatLongTyp&quot;: &quot;Shoshone-Bannock Tribes&quot;,\n",
       "          &quot;Long&quot;: -112.4337278,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 687,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Tribal Priority Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Shoshone-Bannock Tribes of the Fort Hall Reservation will restore fish passage and habitat connectivity in the Yankee Fork watershed, supporting three Endangered Species Act-listed species: Snake River spring/summer-run Chinook salmon, Snake River st&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_005&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoration of fish passage and habitat connectivity in the Yankee Fork watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.43372780013,\n",
       "                43.0271505802334\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 4200000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.85429,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -113.637,\n",
       "          &quot;Notes&quot;: &quot;Refurbish\\u00a0and modernization of the following\\u00a0features\\u00a0of the Falls ID pumping plant\\u00a0below American Falls Dam: electrical\\u00a0components, motors, pumps, valves, overhead crane, arc flash safety system, cooling system, flow meters on all pumps discharge,&quot;,\n",
       "          &quot;OBJECTID&quot;: 1033,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Minidoka&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -113.637000000223,\n",
       "                42.8542899998489\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 53000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.09395068,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -115.3411615,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 216,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Blair Fire Noxious Weed Inventory\\r\\r\\nA total of 5,500 acres would be inventoried for noxious weeds on the (B1LL) Blair Fire. Treatment would be implemented through an end-product service contract.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX06ID1422&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Blair Fire Invasive Plant Treatments&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.341161500137,\n",
       "                43.0939506800179\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.33070064,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -114.3197011,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 870,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Board of Control Diversion 45 Stabilization and Fish Passage Remediation&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.319701100079,\n",
       "                43.330700640055\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 53000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.35396,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -115.469,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 924,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Detecting and Eradicating Invasive Plants That Remain After Blair Fire Rehabilitation in Idaho&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.468999999924,\n",
       "                43.3539600002552\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 85000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.35396,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -115.469,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 952,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Eradicating Invasive Plants Remaining After Pony Fire Burned Area Rehabilitation in Idaho&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.468999999924,\n",
       "                43.3539600002552\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 8300000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.4511,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -116.241,\n",
       "          &quot;Notes&quot;: &quot;Lining of 6-miles of the New York Canal through a highly urbanized/commercial area of the Boise Bench with a geocomposite membrane and capped with steel reinforced concrete. Funding is provided for a planning study and design, and subsequent funding for&quot;,\n",
       "          &quot;OBJECTID&quot;: 871,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Boise - Arrowrock Division&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.240999999992,\n",
       "                43.451100000054\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.4511,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -116.241,\n",
       "          &quot;Notes&quot;: &quot;Removal and replacement of two large concrete siphons. Project consist of 4,000 feet of C-West 11.0 siphon which is 39\\&quot; diameter and 3,062 feet of Conway Gulch 4.4 siphon which is 54\\&quot; diameter. Will replace with HDPE or comparable PVC. Funding is provide&quot;,\n",
       "          &quot;OBJECTID&quot;: 872,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Boise - Payette Division&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.240999999992,\n",
       "                43.451100000054\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 85000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.14891563,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -115.4290418,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 218,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A total of 9,041 acres would be treated with a selective herbicide to control invasive annual plants on former ESR drill seedings.  Treatment would be implemented through an end-product service contract.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX06ID2122&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Pony Fire Invasive Weed Treatments&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.429041799717,\n",
       "                43.1489156301674\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 120000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.6842003,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -116.2910004,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 364,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will deliver dedicated technical and financial capacity to implement on-the-ground treatments to promote the resilience and persistence of mesic habitats in strategic geographies in Idaho using low-tech/high-efficacy (and high transferabilit&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220049&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Idaho Mesic Rangeland Resources Enhancement; A Statewide Strategy to Increase the Pace and Scale of Delivery&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.291000400284,\n",
       "                42.6842002997967\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 80000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.684199225,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -116.290500927,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 386,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project is delivering dedicated technical and financial capacity to implement on-the-ground treatments to promote the resilience and persistence of mesic habitats in strategic geographies in Idaho using low-tech/high-efficacy (and high transferabili&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230071&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Idaho Mesic Rangeland Resources Enhancement; A Statewide Strategy to Increase the Pace and Scale of Delivery&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.290500927105,\n",
       "                42.684199224742\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 75000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.58142,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -116.17,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 951,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Eradicating Invasive Plants Remaining After Burned Area Rehabilitation in Western Idaho&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.170000000408,\n",
       "                42.5814200000784\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Park Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 260000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 45.649192,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -113.646049,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 295,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Ecoregional Collaboration, Collection, Production: Native plant materials will be produced for a network of parks with sagebrush systems, which are at-risk and under-supported vegetation types across millions of acres in the Western US. Project outcomes&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;100XX09MU2522&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Develop native plant capacity for sagebrush parks&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;6&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.186902999812,\n",
       "                38.9151350000744\n",
       "              ],\n",
       "              [\n",
       "                -113.706126000038,\n",
       "                42.0724949999256\n",
       "              ],\n",
       "              [\n",
       "                -114.946516000172,\n",
       "                42.7937329998893\n",
       "              ],\n",
       "              [\n",
       "                -113.506083999833,\n",
       "                43.4050420000851\n",
       "              ],\n",
       "              [\n",
       "                -120.239075000411,\n",
       "                44.6345680000762\n",
       "              ],\n",
       "              [\n",
       "                -113.646048999574,\n",
       "                45.6491919998534\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 56142.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.0564995,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -117.6490021,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 324,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Habitat restoration and native plant revegetation on tribal-owned wildlife management area.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220009&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Burns-Paiute Tribe Jonsboro Upland Native Plant Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.649002099921,\n",
       "                43.0564995001866\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 75000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.2876,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -116.7817,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 217,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Continuation of previous ESR project and on-going shrub restoration project.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX06ID1722&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Owyhee FO Invasive Weeds Eradication&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.781700000244,\n",
       "                43.2876000000969\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 360000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.0806007,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -119.0230026,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 321,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will protect and restore mesic habitats within and connecting southeast Oregon&#x27;s Trout Creek and Pueblo Mountains.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220006&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Assessing, Protecting, and Restoring Mesic Habitats in the Pueblo and Trout Creek Mountains&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.023002599834,\n",
       "                43.0806007001885\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 57000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.14488298,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -118.226364232,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 411,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will generate species and community data for bumble bees throughout the high desert in Southeast Oregon where historical community baselines have not been established and contemporary species occurrence data is sparse. Species of wild, unman&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230096&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Survey of Bombus (Hymenoptera: Apidae) and DNA barcoding of sagebrush biome wild bees in Southeast Oregon.&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -118.226364231584,\n",
       "                43.1448829803221\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 114000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.7910995,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -120.5390015,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 325,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Final phase of juniper control on priority habitats on Hart Mountain NWR.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220010&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Completing Removal of Encroaching Juniper from the Lower Guano Creek Area on Hart Mountain National Wildlife Refuge&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.539001499913,\n",
       "                42.7910995003127\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 143858.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.7910631390001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -120.53882282,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 376,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Final phase of juniper control on priority habitats on Hart Mountain NWR.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230061&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Completing Removal of Encroaching Juniper from the Lower Guano Creek Area on Hart Mountain National Wildlife Refuge&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.538822819614,\n",
       "                42.7910631392903\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.91176,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -121.44872,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 665,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bTulelake Irrigation District (TIO) is in need of modernizing their system to meet multiple public benefits. Their irrigation system was constructed over a span of a few decades in the early to mid-1900s as development of the Klamath Reclamation Projec&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Tulelake Irrigation District&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.448720000046,\n",
       "                41.9117599999153\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.803299,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -119.6849976,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 339,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will enhance vegetation communities in the sagebrush ecosystem  and protect/restore wetlands and mesic habitats. Activities to be funded under this proposal include removing and replacing older fencing and replacing with wildlife friendly fe&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220024&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Vya Conservation District Sagebrush and Wet Meadow Enhancements Phase I&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.684997599765,\n",
       "                41.8032990000519\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 41000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.8283306920001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -119.231449772,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 379,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project develops site-specific reclamation plans for approximately 17 springs and associated spring brooks and meadows in areas of Sheldon National Wildlife Refuge that have had juniper removal efforts completed since 2014. The prescriptions defined&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230064&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Developing Spring Reclamation Plans for Developed and Altered Springs and Associated Spring Brooks and Meadows in Completed Juniper Control Areas on Sheldon National Wildlife Refuge&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.231449772334,\n",
       "                41.8283306916716\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 450000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.88609261,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -118.0267576,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 195,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The project will repair and/or reconstruct approximately 40 miles of riparian fencing as part of a larger effort to restore degrade streams critical to the Lahontan cutthroat trout.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX02NV4222&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Habitat Improvement for Lahontan Cutthroat Trout&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -118.026757599882,\n",
       "                41.8860926100084\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 70000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.5159988,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -117.7399979,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 338,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The project will protect and restore two large, degraded springs (Tule and Slide Springs) within the Summit Lake Paiute Tribe Reservation. Spring ecosystems are vulnerable to overgrazing by domestic and wild ungulates, and fencing springs and associated&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220023&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Summit Lake Sagebrush Spring(s) into Action&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.739997899739,\n",
       "                41.5159988001539\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 472092.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.53556892,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -119.0485005,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 429,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Complete feasibility and design for fish passage and riparian restoration projects to improve the connectivity of the lake and its sole perennial creek within the Summit Lake Paiute Tribe Reservation. Project will build on the existing Lahontan cutthroat&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77451&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Designing Habitat Connectivity and Ensuring Resilience for Lahontan Cutthroat Trout (NV)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.048500500334,\n",
       "                41.5355689197761\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 20000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.4794998,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -118.8359985,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 319,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Theis project will develop site-specific reclamation plans for approximately 17 springs and associated spring brooks and meadows in areas of Sheldon National Wildlife Refuge that have had juniper removal efforts completed since 2014. The prescriptions de&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220004&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Developing Spring Reclamation Plans for Developed and Altered Springs and Associated Spring Brooks and Meadows in Completed Juniper Control Areas on Sheldon National Wildlife Refuge&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -118.835998499729,\n",
       "                41.4794998000791\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 25000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.438941846,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -118.297777246,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 406,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Reno Fish and Wildlife Office Partners for Fish and Wildlife Program will work with the Cottonwood Ranch in Elko County, Nevada to improve meadows in the floodplain of Cottonwood Creek to benefit both wildlife and livestock. Three phases are targeted&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230091&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Santa Rosa Paradise Priority Landscape Restoration Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -118.297777245993,\n",
       "                41.438941845936\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 212832.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.9625015,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -119.6740036,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 341,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Spring ecosystems are vulnerable to overgrazing by domestic and wild ungulates, and fencing springs and associated wet meadows can facilitate recovery. Protection fencing will be installed at eight spring sites on private and public lands, totaling 110 a&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20220026&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Spring and Mesic Habitat Protections for Greater Sage-grouse and Mule Deer in NW Nevada&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.674003599601,\n",
       "                40.9625014997821\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 198786.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.962541586,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -119.67351303,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 410,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Spring ecosystems are vulnerable to overgrazing by domestic and wild ungulates, and fencing springs and associated wet meadows can facilitate recovery. Protection fencing will be installed at eight spring sites on private and public lands, totaling 110 a&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230095&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Spring and Mesic Habitat Protections for Greater Sage-grouse and Mule Deer in NW Nevada&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.673513029625,\n",
       "                40.9625415856671\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.0285,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -123.813,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 188,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Thin forest to improve forest resilience to wildfire and insects. The project will provide employment to the Hoopa Indian tribe.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX02CA2722&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Lacks Creek Forest Health Good Neighbor Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.813000000112,\n",
       "                41.028499999828\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 119986.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.5265092,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -124.0384069,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 85,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Eradicate invasive species from Tribal lands&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{0B8EFA48-5BCF-4105-B20F-C5D060253B25}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Yurok Tribe Wildlife Program Invasive Species Removal: Feral Cattle Removal on Yurok stainable, Long-Term Feral Cattle Management Practices&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -124.038406899848,\n",
       "                41.5265091999371\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;&lt;Null&gt;&quot;,\n",
       "          &quot;FundingAmo&quot;: 5000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.5265050888045,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: 41.5265050888045,\n",
       "          &quot;Notes&quot;: &quot;$5 million for Planning Grants awarded over multiple years&quot;,\n",
       "          &quot;OBJECTID&quot;: 1257,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Community Relocation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Community Driven Relocation Demonstration Project - Yurok Tribe&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -124.038413963302,\n",
       "                41.5265050888045\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior and Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service and the Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 1000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.51142631,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -124.02739949,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1406,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Improve wetland habitat and reduce flooding impacts in the Lower Klamath River Basin by rectifying aquatic barrier infrastructure and planting native plants and shrubs for at-risk and Tribal trust species, including coho salmon. Project will replace two&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;81188&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Expanding Coho Habitat and Increasing Resiliency on Tribal Lands in Lower Klamath River Basin (CA)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -124.027399487838,\n",
       "                41.5114263134261\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 118816.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.58504416,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -123.1041976,\n",
       "          &quot;Notes&quot;: &quot;Funds will be used to maintain beaver dam analogue (BDA) sites within the McGarvey Creek watershed, and implement new, innovative restoration techniques in upper McGarvey Creek. Funds will also be used to assess restoration effectiveness of BDAs and othe&quot;,\n",
       "          &quot;OBJECTID&quot;: 1030,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;McGarvey Creek Restoration and Effectiveness Monitoring&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 861000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.58504416,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -123.1041976,\n",
       "          &quot;Notes&quot;: &quot;Funding for this project will be used to connect one acre of slow, cold-water refugia rearing habitat to one acre of floodplain habitat constructed in an earlier phase of this project. When complete, this project will result in a total two acres of new h&quot;,\n",
       "          &quot;OBJECTID&quot;: 1151,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Sugar Creek Coho Salmon Refugia Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 591798.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.58504416,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -123.1041976,\n",
       "          &quot;Notes&quot;: &quot;Funding for this project will help improve conditions for native fish and other aquatic species. Using a helicopter, this project will add 120 pieces of large wood to 2-1/2 miles of West Fork Beaver Creek in Siskiyou County, on privately owned land. Thes&quot;,\n",
       "          &quot;OBJECTID&quot;: 864,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Beaver Creek Helicopter Wood Loading Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 51581.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.58504416,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -123.1041976,\n",
       "          &quot;Notes&quot;: &quot;Funding will be used for riparian stewardship actions within lower Terwer Creek to improve habitat. Native trees and shrubs will be planted in key locations and vegetation will be monitored for survival and plant success within a two-mile reach of lower&quot;,\n",
       "          &quot;OBJECTID&quot;: 1160,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Terwer Creek Riparian Habitat Enhancement&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 81340.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.58504416,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -123.1041976,\n",
       "          &quot;Notes&quot;: &quot;Funding for this project will be used to install 5,000 native tree and shrub species to further bolster the native woody plant assemblage in riparian and floodplain, remove invasive plant species, including scotch broom and Himalaya berry from within the&quot;,\n",
       "          &quot;OBJECTID&quot;: 1041,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Monitoring and Maintenance of Native Plant Installations on Mill Creek and Supply Creek&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1619434.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.58504416,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -123.1041976,\n",
       "          &quot;Notes&quot;: &quot;Funding for the construction of the Weitchpec Fisheries Research Center, located on the Yurok Reservation in Weitchpec, CA. This building and site would consist of eight office spaces, a conference room, a laboratory, boat/equipment storage, work areas f&quot;,\n",
       "          &quot;OBJECTID&quot;: 1197,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Weitchpec Fisheries Research Center&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 194503.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.58504416,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -123.1041976,\n",
       "          &quot;Notes&quot;: &quot;Funding will be used to restore fish passage over a diversion structure by creating a 200-foot-long roughened channel ramp by increasing stream bed slope from 2.1% to 3.6% below the diversion to meet the sill elevation at the diversion. The existing wate&quot;,\n",
       "          &quot;OBJECTID&quot;: 1137,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Soctish Creek Fish Passage implementation&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 202396.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.58504416,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -123.1041976,\n",
       "          &quot;Notes&quot;: &quot;Funding for this project will be used develop an implementation plan for process-based restoration strategies to at locations along the 4,800 linear feet of channel in Shackleford Creek, located in the Scott River sub-basin. These strategies will include&quot;,\n",
       "          &quot;OBJECTID&quot;: 1133,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Shackleford Creek Habitat Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 393823.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.58504416,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -123.1041976,\n",
       "          &quot;Notes&quot;: &quot;Funding will be used for improving stream and riparian habitats in the Yurok Tribe Blue Creek Sanctuary. Wood jams and other habitat structures will be constructed and installed. Off-channel and wetland habitats will be enhanced. Riparian treatments will&quot;,\n",
       "          &quot;OBJECTID&quot;: 869,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Blue Creek Sanctuary habitat improvement and bridge crossing replacement project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 735465.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.58504416,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -123.1041976,\n",
       "          &quot;Notes&quot;: &quot;Funding will be used, in part, to fund removal of over 330,000 cubic yards of mining tailings to address intense disturbances to the Trinity River and valley caused by historical gold mining. During the period of upslope hydraulic mining in the late 19th&quot;,\n",
       "          &quot;OBJECTID&quot;: 1065,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Oregon Gulch Project on Mainstem Trinity River&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 626621.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.58504416,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -123.1041976,\n",
       "          &quot;Notes&quot;: &quot;Funds will be to complete design plans for approximately 1.75 miles of tributary habitat that will focus on improving instream habitat, increasing off-channel rearing habitat, enhancing thermal refugia, and reconnecting historic floodplains along these t&quot;,\n",
       "          &quot;OBJECTID&quot;: 1101,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Red Cap Creek &amp; Camp Creek Floodplain Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 455203.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.58504416,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -123.1041976,\n",
       "          &quot;Notes&quot;: &quot;Funding for this project will be used to improve the understanding of the integrated surface water and groundwater system in the Quartz Valley so that the Quartz Valley Indian Reservation and other water managers can effectively manage their limited wate&quot;,\n",
       "          &quot;OBJECTID&quot;: 1094,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Quartz Valley Integrated Hydrological Model&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 151901.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.58504416,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -123.1041976,\n",
       "          &quot;Notes&quot;: &quot;Funding will be used to enhance the Tribe\\u2019s ability to quickly and efficiently respond to data requests, establish cohesive and structured storage of chemical data and physical water quality data. This project will address a data gap at the mouth of th&quot;,\n",
       "          &quot;OBJECTID&quot;: 1004,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Karuk Tribe Water Monitoring Program in the Mid Klamath Basin&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 615153.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.58504416,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -123.1041976,\n",
       "          &quot;Notes&quot;: &quot;Funding for this project will be to help the Resighini Rancheria replace existing culverts that create public safety concerns and limit access to important coho salmon habitat. On Waukel Creek, the existing 49-foot long, 10-foot diameter culvert will be&quot;,\n",
       "          &quot;OBJECTID&quot;: 1192,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Waukel Creek and Junior Creek Culvert Replacement&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 173428.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.58504416,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -123.1041976,\n",
       "          &quot;Notes&quot;: &quot;Funding for this project will help be used to collect data in the Mid-Klamath Basin for adult spring Chinook population trends at the adult life stage by engaging the local community in a watershed wide volunteer driven surveys and build community suppor&quot;,\n",
       "          &quot;OBJECTID&quot;: 1003,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Karuk Tribe Spring-Run Chinook salmon Life Cycle Monitoring&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 235043.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.58504416,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -123.1041976,\n",
       "          &quot;Notes&quot;: &quot;The Yurok Tribe Fisheries Department (YTFD) has made enormous contributions to the restoration of the Lower Klamath River Basin. This funding will add capacity so that the Tribe can continue to meet and expand its priority fish restoration efforts. The p&quot;,\n",
       "          &quot;OBJECTID&quot;: 1233,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yurok Tribal Capacity&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 249681.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.58504416,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -123.1041976,\n",
       "          &quot;Notes&quot;: &quot;Funding will be used to develop and implement engineered designs to create a passage over a barrier that, once removed, will allow the native salmonids and other species to move upstream. The Highway 96 crossing over Hospital Creek in Hoopa, CA is a comp&quot;,\n",
       "          &quot;OBJECTID&quot;: 988,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Hospital Creek In-Stream Barrier Removal Design and Build Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 202246.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.58504416,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -123.1041976,\n",
       "          &quot;Notes&quot;: &quot;Funding will be used to design, plan for, and implement comprehensive stream and floodplain habitat enhancement actions within the Ah Pah Creek watershed. Proposed actions will focus on coordinating with a private timber company to reduce the footprint o&quot;,\n",
       "          &quot;OBJECTID&quot;: 846,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Ah Pah Creek Stream and Floodplain Habitat&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 160338.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.58504416,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -123.1041976,\n",
       "          &quot;Notes&quot;: &quot;Funding for this project will evaluate the feasibility of expanding upon existing Weaver Creek restoration plans with additional scope of work, design, and permitting analysis. Funds will be used to assess bridge and road improvement, recreational trail&quot;,\n",
       "          &quot;OBJECTID&quot;: 1194,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Weaver Basin Improvement Planning Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 82162.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.792705165654,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -123.378613908732,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1260,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{77BCF125-9368-496B-9D82-0A54E0C310CB}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Relocation, Managed Retreat, and Protect-in-Place Coordinator - Karuk Tribe&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.378613908732,\n",
       "                41.792705165654\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior and Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service and the Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 608259.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.81385444,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -121.631693,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1433,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Complete initial planning for a restoration effort that will reduce encroaching juniper, remove invasive vegetation, and reseed native plants in the Lower Klamath River Basin in partnership with the Modoc National Forest. Project will result in a plan th&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80984&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Shapa&#x27;sh Landscape Restoration Project (CA)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.631693002841,\n",
       "                41.8138544352664\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 200000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.19840978,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -121.8023177,\n",
       "          &quot;Notes&quot;: &quot;Upper Klamath Lake (UKL) is the primary habitat for the endangered Lost River sucker and shortnose sucker. The Sprague and Williamson rivers are a major source of nutrient loading to UKL. Reduction of nutrient loading to UKL, particularly phosphorus has&quot;,\n",
       "          &quot;OBJECTID&quot;: 1203,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Williamson River Delta Preserve (WRDP) Phosphorus Capture Potential&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1198378.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.19840978,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -121.8023177,\n",
       "          &quot;Notes&quot;: &quot;The Pit Tag coalition is a collaborative effort that will develop a basin wide fish tracking infrastructure in order to monitor the success of restoration efforts in the Klamath Basin. A comprehensive PIT infrastructure and integrated upper and lower bas&quot;,\n",
       "          &quot;OBJECTID&quot;: 1007,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Klamath River Pit Tag Coalition Infrastructure Development Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 903075.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.19840978,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -121.8023177,\n",
       "          &quot;Notes&quot;: &quot;Funding for this project will be used to develop a master plan to restore, develop and expand wetlands to the Keno Reach of the Klamath River. Following dam removal on the Klamath River, salmon and steelhead are expected to return to the Upper Klamath Ba&quot;,\n",
       "          &quot;OBJECTID&quot;: 970,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Fringe Wetland Restoration Master Plan for The Keno Reach of the Klamath River&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 875061.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.19840978,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -121.8023177,\n",
       "          &quot;Notes&quot;: &quot;The Klamath Tribes have successfully increased their endangered Lost River and shortnose sucker rearing program, adding additional ponds, raising fish from eggs, conducting staff professional development, and continuing to develop a systematic approach t&quot;,\n",
       "          &quot;OBJECTID&quot;: 1010,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Klamath Tribes Sucker Rearing program expansion&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 147117.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.19840978,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -121.8023177,\n",
       "          &quot;Notes&quot;: &quot;This funding will be used to test and refine predictive models for annelid hosts in the Klamath River hydroelectric reach, which will inform and improve management decisions in the Klamath Basin. High annelid host densities, which are linked to fish dise&quot;,\n",
       "          &quot;OBJECTID&quot;: 929,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Development of models for predicting annelid hosts in the Klamath River Hydroelectric Reach&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 913786.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.19840978,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -121.8023177,\n",
       "          &quot;Notes&quot;: &quot;Funding will be used to help the Klamath Tribes jumpstart the return of salmon to the Upper Klamath Basin. The Klamath Tribes have not had access to native Klamath River salmon fisheries for more than 100 years. This funding will help the Tribe institute&quot;,\n",
       "          &quot;OBJECTID&quot;: 1009,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Klamath Tribes Salmon Reintroduction program&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 231714.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.19840978,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -121.8023177,\n",
       "          &quot;Notes&quot;: &quot;Funding for this project will be used to implement Low-Tech Process-Based Restoration techniques (which include Beaver Dam Analogs, Post Assisted Woody Structures, and other similar structures) throughout the Sprague River Watershed in order to reduce se&quot;,\n",
       "          &quot;OBJECTID&quot;: 1145,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Sprague Watershed Low-Tech Process-Based Restoration Collaboration&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 807086.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.19840978,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -121.8023177,\n",
       "          &quot;Notes&quot;: &quot;Funding will be deployed for habitat restoration within the Bootleg Fire Area. An assessment of stream conditions and identification of necessary restoration throughout the Klamath Tribes Treaty Boundary area will commence with an emphasis on the ability&quot;,\n",
       "          &quot;OBJECTID&quot;: 901,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Climate Change Resiliency Stream Restoration and Post-Bootleg Fire Stream Stabilization and Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2668147.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.19840978,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -121.8023177,\n",
       "          &quot;Notes&quot;: &quot;Funding for this project will be used for the construction of four pumping stations, two each in both Lower Klamath National Wildlife Refuge and Tule Lake National Wildlife Refuge. Together, these pumping stations will improve water supply reliability an&quot;,\n",
       "          &quot;OBJECTID&quot;: 993,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Improving Wetland Habitat through Irrigation Efficiencies on Lower Klamath and Tule Lake National Wildlife Refuges&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.19840978,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -121.8023177,\n",
       "          &quot;Notes&quot;: &quot;Funds for this project will be used to achieve site surveys, geomorphic assessment, hydrology and hydraulics analysis, engineering design drawings, environmental compliance, and development of a pre- and post-project monitoring plan. The Upper Williamson&quot;,\n",
       "          &quot;OBJECTID&quot;: 1114,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoration of the Upper Williamson River including Rocky Ford Ranch&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 150000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.19840978,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -121.8023177,\n",
       "          &quot;Notes&quot;: &quot;Funding will be used for project engineering designs and project implementation. Funds will also be used to develop a post-project monitoring plan. Barkley Springs is the largest of six spring complexes on the east side of Upper Klamath Lake (UKL). Histo&quot;,\n",
       "          &quot;OBJECTID&quot;: 1113,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoration of the Barkley Springs Complex&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 50000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.19840978,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -121.8023177,\n",
       "          &quot;Notes&quot;: &quot;Funding is for the Klamath Tribes to monitor Lost River sucker spawning and success of Reclamation-funded projects that were designed to enhance sucker spawning sites. A population of Lost River suckers spawn exclusively at eastern shoreline springs in U&quot;,\n",
       "          &quot;OBJECTID&quot;: 1169,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Upper Klamath Lake Shoreline Sucker Spawning Habitat&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 10000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.19840978,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -121.8023177,\n",
       "          &quot;Notes&quot;: &quot;The infrastructure investment into the hatchery\\u2019s expansion will increase rearing capacity and help prevent the extinction of two federally listed species, the Lost River and shortnose suckers (C\\u2019waam and Koptu). These fish are found only in the Klam&quot;,\n",
       "          &quot;OBJECTID&quot;: 966,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Expansion of the Klamath Falls National Fish Hatchery&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 225576.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.19840978,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -121.8023177,\n",
       "          &quot;Notes&quot;: &quot;Funding for this project place large wood into the Williamson River to address limiting factors that affect spawning and juvenile rearing habitat of native fish. The project goals include augmenting spawning habitat and increasing juvenile redband trout&quot;,\n",
       "          &quot;OBJECTID&quot;: 1024,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem - Klamath Basin&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Lower Williamson River Bothwell Property Spawning Gravel Augmentation and Large Wood Placement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 7192667.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.46321804,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -122.5701136,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 434,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Reduce the threats of fire exclusion and conifer encroachment in oak savanna habitat through restoration actions in the Upper Rogue Watershed, Jackson County, Oregon. Project will help stabilize populations of oak-prairie dependent wildlife species, stew&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77537&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Reducing Threats to Imperiled Oak Savannah and Woodland Ecosystems in the Upper Rogue Watershed (OR)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.570113599769,\n",
       "                42.4632180399\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.37524313,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -122.9183378,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 862,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Bear Creek Fish Passage Barriers Removal&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.918337800435,\n",
       "                42.3752431300752\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.68638,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -121.65,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1173,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Van Brimmer Ditch Company, Van Brimmer Falvey Road Piping Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.649999999984,\n",
       "                42.6863800002367\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 200000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.25316986,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -123.8310759,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 202,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Place log and boulder structures within approximately 1 mile of Tioga Creek to increase complexity, improve rearing and spawning habitat, and create edge habitat for high velocity refuge&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX02OR3322&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Tioga Creek Fish habitat Improvements&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.831075900259,\n",
       "                43.2531698600447\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.85249222,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -123.3848948,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 807,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The 76-acre Formosa Mine Site is located on Silver Butte in Douglas County, Oregon. This abandoned mine discharges millions of gallons of acid rock drainage and toxic metals into the upper reaches of the Middle Creek and South Fork Middle Creek watershed&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;FORMOSA MINE&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.384894799842,\n",
       "                42.8524922201994\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 75000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.26444564,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -124.0689359,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 198,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Replacement of 2 barrier culverts.  Once the project is implemented, it will allow fish access to approximately 1.02 miles of high-quality, low gradient fish habitat.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX02OR1622&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Woodward Creek Watershed Habitat Improvement&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -124.068935900437,\n",
       "                43.2644456401105\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 3406521.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 43.3889191,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -124.2653775,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1180,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Waite Ranch Tidal Wetland Restoration Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -124.265377499695,\n",
       "                43.3889191001183\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 42.40472549,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -124.4191817,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1135,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Sixes Riverbank Restoration and Estuary Enhancement&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -124.419181700361,\n",
       "                42.4047254900808\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 80000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.2069,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -124.1328,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 209,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Removal of invasive weeds improves the persistence of native species.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX06CA1822&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Invasive Weeds Treatment King Range NCA&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -124.132799999611,\n",
       "                40.2069000000825\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 80000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.80203333,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -124.1076833,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 959,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Eradicating Invasive Plants to Support Native Species in the Kings Range Conservation Area in California&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -124.1076833001,\n",
       "                40.8020333301823\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 275000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.556,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -122.483,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 190,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project is close to the city of Redding, CA and the project area is used for recreation. The goal is to reduce hazards from fire killed trees and reduce the build up of wildfire fuels from dead, falling trees.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX02CA3622&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Carr Fire Trail and Cultural Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.482999999708,\n",
       "                40.5560000000257\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.28256703,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -122.1545035,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 189,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The project will construct approximately 5 miles of riparian fencing to control livestock grazing and protect habitat for ESA listed fishes.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX02CA2822&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Payne&#x27;s Creek Riparian Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.154503499774,\n",
       "                40.2825670302545\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 547853.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 40.3392,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -123.9052,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 191,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Restore and connect climate-resilient cold-water habitat in the Eel River by suppressing non-native predatory pikeminnow.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX02CA4522&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Eel River Climate Resilience Refugia Protection&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.905199999652,\n",
       "                40.3392000003068\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 10000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.8122,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -121.6106,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 187,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Reduce wildfire fuels adjacent to the wildland urban interface (WUI). The project site is adjacent to the community of Paradise, California and within the Camp fire burn area. Large amounts of dead trees from the severe fire are falling and causing a fir&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX02CA0122&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Coutolenc Hazardous Fuels Removal&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.610600000319,\n",
       "                39.8121999997117\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 3000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.59814,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -122.392,\n",
       "          &quot;Notes&quot;: &quot;The Stony Gorge spillway gates are in poor condition which, according to the most recent 2021 PFR, \\u201c\\u2026impacts their operability and reliability and puts the dam at risk\\u2026\\u201d and warranted the issuance of a Category 1. Funding is provided for a planni&quot;,\n",
       "          &quot;OBJECTID&quot;: 1066,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Orland&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.392000000266,\n",
       "                39.5981400000803\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1270299.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.8145618,\n",
       "          &quot;LatLongTyp&quot;: &quot;Round Valley Indian Tribes&quot;,\n",
       "          &quot;Long&quot;: -123.2487823,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 686,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Tribal Priority Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Round Valley Indian Tribes will support building tribal capacity to engage in the decommissioning process and dam removal at the Potter Valley Project on the Eel River. The river is a historic tribal source of livelihood, sustenance, and connection t&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_004&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Potter Valley Project on the Eel River&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.248782299757,\n",
       "                39.8145617997209\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 39.26316756,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -121.62205839,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1384,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Remove the existing Sunset Weir, a 10-foot tall boulder weir in the Feather River, and modify the appurtenant pumps to allow for unimpeded passage for threatened salmon, steelhead, and sturgeon. Project will contribute to conservation and climate resilie&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;81139&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Expanding Salmon Habitat Connectivity on the Feather River (CA)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.622058391755,\n",
       "                39.263167556418\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.91,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -121.792,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 999,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Irrigation Efficiency Upgrades and Water Savings SCADA and Automated Water Delivery Systems&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4247&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.792000000051,\n",
       "                38.9099999996611\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 6934655.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.58,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -122.988,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1056,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water Recycling&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;North Bay Reuse Program: Phase 2 Program&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4296&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.988000000152,\n",
       "                38.5799999996869\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1986672.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.70750498,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -122.9028134,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 33,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Tribe will implement a pilot project identified in their 2016 climate adaptation plan related to the Dry Creek Rancheria-owned vineyard properties. The project is also funded in part through Tribal Climate Resilence (TCR) annual appropriations.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{3FE603FA-0EEC-45EB-A4CA-1C4E2414F70F}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Flood-MAR Pilot Project and Alexander Reach Climate Resiliency Plan&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.902813400461,\n",
       "                38.7075049824807\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 15000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.71295846,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -121.6524093,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 452,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Develop designs and engage stakeholders for the restoration of historic floodplains and tidal marsh in the Yolo Bypass of the Sacramento River in California. Project will advance plans for a new sustainable floodway management regime using infrastructure&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;78045&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Floodplain and Tidal Wetland Restoration Design in the Yolo Bypass of the Sacramento River (CA)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.652409300441,\n",
       "                38.7129584596709\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 594079.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.51059667,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -122.7910502,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1272,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The project proposes development of a vulnerability assessment, data analysis and gathering, and a water resources climate adaptation plan for an off rancheria campground property along the Russian River. Water resource actions to be addressed in the pla&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 024|594079|Dry Creek Ranch]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Alexander Valley RV Park and Campground Water Resource Climate Adaptation Plan&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.791050199683,\n",
       "                38.5105966702712\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 3000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.26996,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -121.933,\n",
       "          &quot;Notes&quot;: &quot;The purpose of the project is to conduct seismic upgrades and risk reductions to the 3\\u2010mile\\u2010long Terminal Check portion of the Putah South Canal (PSC). The Terminal Check portion of the PSC crosses 2\\u2010active earthquake faults, the Concord \\u2013 Green&quot;,\n",
       "          &quot;OBJECTID&quot;: 1138,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Solano&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.933000000034,\n",
       "                38.2699599998081\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior and Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service and the Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 1000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.5233264,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -123.23546398,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1377,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Engage scientists, engineers and consultants to assess the current state of red abalone populations in Northern California, plan for the restoration of abalone in wild habitat, and co-design abalone production infrastructure on Tribal and partner propert&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80253&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Tribal-led Restoration Alliance to Restore Red Abalone in Northern California\\u2019s Kelp Forest&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -123.23546397617,\n",
       "                38.5233264001821\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1531635.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.22349279,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -122.2662548,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 914,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Creating Long-Term Water Supply Resiliency for the Communities of Ukiah Valley and the Upper Russian River&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.266254799671,\n",
       "                38.2234927900893\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.93696588,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -122.5183081,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1011,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Lagunitas Creek Stream Channel Restoration Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.518308099592,\n",
       "                37.9369658799834\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 9949795.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.7973098,\n",
       "          &quot;LatLongTyp&quot;: &quot;California Trout Office&quot;,\n",
       "          &quot;Long&quot;: -122.402747,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 698,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;California Trout will plan and design the removal of a rockfall barrier and obsolete fishway in Big Chico Creek. The project will reconnect access to more than 8 miles of high-quality habitat for Central Valley Spring Run Chinook and Central Valley steel&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_016&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Removal of a rockfall barrier and obsolete fishway in Big Chico Creek&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.40274699966,\n",
       "                37.7973098002349\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 3257851.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.7973098,\n",
       "          &quot;LatLongTyp&quot;: &quot;California Trout Office&quot;,\n",
       "          &quot;Long&quot;: -122.402747,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 697,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;California Trout will remove and replace a bridge on the Santa Margarita River. The new, 575-foot bridge will be sized to accommodate a 500-year flood event, increasing community climate resilience. The new bridge will also provide access to 12 miles of&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_015&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Replacement of a bridge on the Santa Margarita River&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.40274699966,\n",
       "                37.7973098002349\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 293267.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.79517325,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -122.40278437,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1445,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Implement a multistate Pollinator Steward Certification program to foster community engagement in conservation, and provide technical assistance to private landowners in priority Monarch Butterfly Working Land for Wildlife locations. Project will target&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;79878&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Project Wingspan: Monarch Butterfly Pollinator Steward Certification Program (IL, IN, OH)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;M&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.402784369575,\n",
       "                37.7951732465537\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 6222830.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.84262273,\n",
       "          &quot;LatLongTyp&quot;: &quot;Trout Unlimited, CA&quot;,\n",
       "          &quot;Long&quot;: -122.2879822,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 700,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Trout Unlimited will support the removal of nine barriers on the Eel, Noyo, Navarro, and Big Rivers by constructing seven projects and designing two additional projects. The work will benefit endangered Central California Coast coho salmon (a NOAA Specie&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_018&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Removal of nine barriers in California&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.287982199633,\n",
       "                37.8426227299413\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 45000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.66879801,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -121.8714753,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1081,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Pleasanton, Pleasanton Eco-Friendly Lawn Conversion Rebate Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.871475299811,\n",
       "                37.668798009743\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.59896173,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -122.3980166,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1031,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Millbrae, Drought-Tolerant Landscaping&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.398016599833,\n",
       "                37.5989617298029\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 12867875.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.43,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -122.129,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1071,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water Recycling&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Palo Alto Advanced Water Purification System&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4296&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.129000000074,\n",
       "                37.4300000001553\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.05619,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -122.002,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1130,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;San Lorenzo Valley Water District, Water Meter Replacement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -122.002000000351,\n",
       "                37.0561899998112\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 20925000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.986,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -121.949,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1091,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water Recycling&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Pure Water Soquel: Groundwater Replenishment and Seawater Intrusion Prevention Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4296&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.948999999561,\n",
       "                36.9859999999253\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.80167814,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -121.7881411,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1029,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;MBARI Cooperative Agreement&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usgs.gov/news/national-news-release/bipartisan-infrastructure-law-investments-combine-science-and-technology&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.788141099898,\n",
       "                36.8016781396653\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.65763278,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -121.6087347,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1126,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Salinas River Arundo Eradication Project Phase V&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.608734699836,\n",
       "                36.6576327797869\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 10316822.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.57,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -121.819,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 965,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water Recycling&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Expand Pure Water Monterey Groundwater Replenishment Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4296&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -121.818999999589,\n",
       "                36.5699999999405\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 9310095.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.375,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -120.86,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1188,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water Recycling&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Water Reclamation Facility Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4296&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.860000000224,\n",
       "                35.374999999638\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 14124000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.141,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -120.644,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 892,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water Recycling&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Central Coast Blue&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4296&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.644000000326,\n",
       "                35.1410000002915\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.49,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -119.145,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 883,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Calloway Canal Lining&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4247&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.145000000318,\n",
       "                35.4899999997368\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Department-Wide Programs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.44,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -119.076,\n",
       "          &quot;Notes&quot;: &quot;This project&#x27;s exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 8 wells&quot;,\n",
       "          &quot;OBJECTID&quot;: 1278,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Orphaned Well Site Plugging, Remediation, And Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 006||Bakersfield Fie]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Bakersfield Field Office BLM Lands&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.076000000001,\n",
       "                35.4400000000009\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 61903.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.34265,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -118.73,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1134,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Shafter-Wasco Irrigation District, Energy Efficiency Improvement to Kimberlina Recharge Facility&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -118.730000000131,\n",
       "                35.3426499997629\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.41,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -118.509,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 858,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Automated Metering Infrastructure Project (Phase 1)&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4247&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -118.50899999982,\n",
       "                34.4099999998269\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 9659990.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.404,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -119.527,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 887,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water Recycling&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Carpinteria Advanced Purification Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4296&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.526999999572,\n",
       "                34.4040000002838\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2185330.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.51310456,\n",
       "          &quot;LatLongTyp&quot;: &quot;Jalama Creek&quot;,\n",
       "          &quot;Long&quot;: -120.4790496,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 699,\n",
       "          &quot;ParentProg&quot;: &quot;NOAA BIL OHC&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Restoring Fish Passage through Barrier Removal Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Nature Conservancy will address two barriers on Jalama Creek that are high priority for Southern California steelhead. They will completely remove a weir at one site. At a second site, they will build a roughened channel to address passage at Jalama&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;NOAA_017&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Jalama Creek restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Proposed for Funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.479049599735,\n",
       "                34.5131045598971\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.2783352,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -119.2931676,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1127,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;San Buenaventura, Expanding Turf Removal Rebate&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.293167599563,\n",
       "                34.2783352001482\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 14026650.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.278,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -119.27,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1175,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water Recycling&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Ventura Water Pure Program&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4296&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.269999999877,\n",
       "                34.2779999999953\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Department-Wide Programs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.97,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -119.991,\n",
       "          &quot;Notes&quot;: &quot;This project&#x27;s exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 2 wells&quot;,\n",
       "          &quot;OBJECTID&quot;: 1286,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Orphaned Well Site Plugging, Remediation, And Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 032||Channel Islands]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Channel Islands National Park&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.991000000218,\n",
       "                33.9700000001205\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 9941533.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.22,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -117.309,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1089,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water Recycling&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Pure Water Oceanside Program&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4296&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.309000000286,\n",
       "                33.2199999996921\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 17826952.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.067,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -117.246,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1062,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water Recycling&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;North San Diego Water Reuse Coalition Regional Recycled Water Program: 2020 Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4296&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.245999999567,\n",
       "                33.0669999996671\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 358160.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.36648928,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -117.0689192,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1285,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Pala Band of Mission Indians (PBMI) Planet Pala Information Campaign for Climate Resilience (Planet Pala ICCR) is a hands-on climate adaptation and hazard mitigation program that addresses vulnerabilities identified in the Tribe\\u2019s Climate Change Vu&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 022|358160|Pala Band of Mi]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;California Wildfire, Water, and Health Intertribal Resilience Data Development Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.068919200333,\n",
       "                33.3664892796759\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 224539.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.36520484,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -117.07651193,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 6,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will develop and analyze wildfire-related illness and water supply datasets to help inform and advance multipleTribes\\u2019 climate vulnerability assessments and adaptation planning, decision-making, and monitoring efforts.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{2E4DB6E2-DB1B-484F-A25F-9F039EFE2A37}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;California Wildfire, Water, and Health Intertribal Resilience Data Development Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.076511932693,\n",
       "                33.3652048413216\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 358160.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.36520484,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -117.07651193,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 56,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Planet Pala Information Campaign for Climate Resilience is a hands-on climate adaptation and hazard mitigation program that addresses vulnerabilities identified in the Tribe\\u2019s Climate Change Vulnerability Assessment and Hazard Mitigation Plan.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{5BF3190B-CB42-4442-A957-70F04B008D21}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Planet Pala Information Campaign for Climate Resilience&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.076511932693,\n",
       "                33.3652048413216\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 7928615.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.581,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -117.63,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1129,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water Recycling&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;San Juan Watershed Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4296&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.629999999885,\n",
       "                33.5810000000864\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.74520936,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -116.9849977,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 987,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Hemet, Landscape Irrigation Controller Rebate Program&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.984997699854,\n",
       "                33.7452093601569\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 10000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.76,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -117.184,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1093,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water Recycling&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Purified Water Replenishment Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4296&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.18399999983,\n",
       "                33.7599999997332\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.87,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -117.566,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 841,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Advanced Metering Infrastructure Program&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4247&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.565999999982,\n",
       "                33.8700000003548\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 12245625.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.67,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -117.819,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1156,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water Recycling&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Syphon Reservoir Improvement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4296&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.819000000245,\n",
       "                33.6699999996789\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 15478307.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.83,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -118.159,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 980,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water Recycling&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Groundwater Reliability Improvement Program Recycled Water Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4296&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -118.158999999619,\n",
       "                33.8299999997626\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.82877795,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -117.9361393,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 849,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Anaheim, Central Anaheim Smart Irrigation Controller Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.936139299995,\n",
       "                33.8287779502521\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.05,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -118.236,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1103,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Regional Public Agency Turf Replacement Program&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4247&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -118.235999999699,\n",
       "                34.0500000001135\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.0522342,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -118.2436849,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 915,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Crescenta Valley Water District, Water Meter Enhancement Advanced Metering Infrastructure Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -118.243684900105,\n",
       "                34.0522341998743\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 10199637.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.136,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -118.702,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1090,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water Recycling&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Pure Water Project Las Virgenes-Triunfo&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4296&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -118.701999999612,\n",
       "                34.1360000000661\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 12275000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.01,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -117.529,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1002,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water Recycling&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Joint IEUA-JCSD Recycled Water Intertie Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4296&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.528999999617,\n",
       "                34.0100000002769\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.98428297,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -117.3518284,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1201,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Western Municipal Water District, Drought-Tolerant Landscape Transformation for March Field Air Museum Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.351828399572,\n",
       "                33.9842829700144\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.06981719,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -117.2769503,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 852,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Anza Creek Aquatic and Riparian Habitat Restoration Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.276950300143,\n",
       "                34.069817189831\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.1107726,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -117.3842395,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 899,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;City 3A Groundwater Well Treatment Facility Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.384239500039,\n",
       "                34.1107725997143\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.11,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -117.37,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 840,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Advanced Metering Infrastructure Implementation Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4247&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.369999999941,\n",
       "                34.1100000003467\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 50000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.04927033,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -116.7511187,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 208,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Whitewater Canyon Tamarisk Eradication. Invasive species removal in ACEC, Wilderness, Wild and Scenic River Corridor within the Sand to Snow National Monument. Project would maintain initial fuels treatment that removed invasive species that posed signif&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX06CA1222&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Sand to Snow National Monument Reslience&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.751118699739,\n",
       "                34.0492703299211\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 8267112.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.26,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -116.815,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1109,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water Recycling&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Replenish Big Bear Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4296&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.814999999854,\n",
       "                34.2600000000071\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.24925903,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -116.8974884,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 866,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Big Bear Lake, Pontell Hydropneumatic System Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.897488399995,\n",
       "                34.2492590303704\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1600000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.24500208,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -116.9297607,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1205,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Wolf Reservoir Boosters and Pipeline Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.92976069997,\n",
       "                34.2450020800217\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;&lt;Null&gt;&quot;,\n",
       "          &quot;FundingAmo&quot;: 1000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.16803793,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -114.27731418,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 11,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Irrigation and Power Systems&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Provides electrical service to approximately 4,200 customers, through 8 substations and 463 miles of power line.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{1466C5A3-4AC6-4C30-9944-EBF7780934E4}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Colorado River Agency Electrical Serivices&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.277314183229,\n",
       "                34.1680379274084\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1850000.0,\n",
       "          &quot;ImageLink&quot;: &quot;https://dwpdst.doi.gov/power/BIL_Funding/ColoradoRiverHeadgates.jpg&quot;,\n",
       "          &quot;Lat&quot;: 34.07010813,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -114.32531121,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 12,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Irrigation and Power Systems&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Colorado River Indian Irrigation Project provides irrigation water to over 79,500 acres, 100% Trust lands, with an estimated direct harvest benefit of $120 million.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{EC1B80A3-73C1-46B9-92DA-A8CF711490CD}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Colorado River Irrigation Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.325311210182,\n",
       "                34.0701081293447\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 8975640.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.74364,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -115.994,\n",
       "          &quot;Notes&quot;: &quot;CVWD&#x27;s entire distribution system off of the Coachella Canal is buried pipeline underground. The district has been proactive in identifying and prioritizing capital improvement projects to replace box diversions and underground pipelines that service the&quot;,\n",
       "          &quot;OBJECTID&quot;: 1225,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yuma Area Projects - Irrigation Lateral 123.45-1.3 and 2.8 Box Replacement&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.994000000225,\n",
       "                33.7436399999514\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 5732250.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.74364,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -115.994,\n",
       "          &quot;Notes&quot;: &quot;CVWD&#x27;s entire distribution system off of the Coachella Canal is buried pipeline underground. The district has been proactive in identifying and prioritizing capital improvement projects to replace box diversions and underground pipelines that service the&quot;,\n",
       "          &quot;OBJECTID&quot;: 1219,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yuma Area Projects - Irrigation Lateral 101.3 Replacement&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.994000000225,\n",
       "                33.7436399999514\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 6448650.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.74364,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -115.994,\n",
       "          &quot;Notes&quot;: &quot;CVWD&#x27;s entire distribution system off of the Coachella Canal is buried pipeline underground. The district has been proactive in identifying and prioritizing capital improvement projects to replace box diversions and underground pipelines that service the&quot;,\n",
       "          &quot;OBJECTID&quot;: 1220,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yuma Area Projects - Irrigation Lateral 102.3 Replacement&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.994000000225,\n",
       "                33.7436399999514\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1469400.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.74364,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -115.994,\n",
       "          &quot;Notes&quot;: &quot;CVWD&#x27;s entire distribution system off of the Coachella Canal is buried pipeline underground. The district has been proactive in identifying and prioritizing capital improvement projects to replace box diversions and underground pipelines that service the&quot;,\n",
       "          &quot;OBJECTID&quot;: 1221,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yuma Area Projects - Irrigation Lateral 119.64-2.6 Replacement&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.994000000225,\n",
       "                33.7436399999514\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 10607000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.74364,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -115.994,\n",
       "          &quot;Notes&quot;: &quot;CVWD&#x27;s entire distribution system off of the Coachella Canal is buried pipeline underground. The district has been proactive in identifying and prioritizing capital improvement projects to replace box diversions and underground pipelines that service the&quot;,\n",
       "          &quot;OBJECTID&quot;: 1228,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yuma Area Projects - Irrigation Lateral 99.8-0.51-3.0 Replacement&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.994000000225,\n",
       "                33.7436399999514\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 4195225.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.74364,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -115.994,\n",
       "          &quot;Notes&quot;: &quot;CVWD&#x27;s entire distribution system off of the Coachella Canal is buried pipeline underground. The district has been proactive in identifying and prioritizing capital improvement projects to replace box diversions and underground pipelines that service the&quot;,\n",
       "          &quot;OBJECTID&quot;: 1227,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yuma Area Projects - Irrigation Lateral 2.2 Box Replacement&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.994000000225,\n",
       "                33.7436399999514\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 9231950.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.74364,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -115.994,\n",
       "          &quot;Notes&quot;: &quot;CVWD&#x27;s entire distribution system off of the Coachella Canal is buried pipeline underground. The district has been proactive in identifying and prioritizing capital improvement projects to replace box diversions and underground pipelines that service the&quot;,\n",
       "          &quot;OBJECTID&quot;: 1222,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yuma Area Projects - Irrigation Lateral 119.64-7.5 Replacement&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.994000000225,\n",
       "                33.7436399999514\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 8173450.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.74364,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -115.994,\n",
       "          &quot;Notes&quot;: &quot;CVWD&#x27;s entire distribution system off of the Coachella Canal is buried pipeline underground. The district has been proactive in identifying and prioritizing capital improvement projects to replace box diversions and underground pipelines that service the&quot;,\n",
       "          &quot;OBJECTID&quot;: 1226,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yuma Area Projects - Irrigation Lateral 123.45 1.3-2.8 Replacement&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.994000000225,\n",
       "                33.7436399999514\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1707340.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.74364,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -115.994,\n",
       "          &quot;Notes&quot;: &quot;CVWD&#x27;s entire distribution system off of the Coachella Canal is buried pipeline underground. The district has been proactive in identifying and prioritizing capital improvement projects to replace box diversions and underground pipelines that service the&quot;,\n",
       "          &quot;OBJECTID&quot;: 1223,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yuma Area Projects - Irrigation Lateral 123.45-1.3-2.2 Phase 2 Replacement&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.994000000225,\n",
       "                33.7436399999514\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 4390520.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.74364,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -115.994,\n",
       "          &quot;Notes&quot;: &quot;CVWD&#x27;s entire distribution system off of the Coachella Canal is buried pipeline underground. The district has been proactive in identifying and prioritizing capital improvement projects to replace box diversions and underground pipelines that service the&quot;,\n",
       "          &quot;OBJECTID&quot;: 1224,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yuma Area Projects - Irrigation Lateral 123.45-1.3-3.2 RT&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.994000000225,\n",
       "                33.7436399999514\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.79152838,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -116.5213849,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 921,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Desert Water Agency, Desert Water Agency Grass Removal Program&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.521384900045,\n",
       "                33.7915283797859\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 950000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.82167802,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -116.5223118,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 239,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will increase the availability of native seed resources for restoration by establishing native seed collection teams to meet habitat restoration objectives in the Mojave Desert using the science-based Seeds of Success protocols, and this pro&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX09MU5022&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Mojave Ecoregional Seed Collection and Production&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.522311799721,\n",
       "                33.8216780201282\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 12276517.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.67,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -116.166,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1189,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water Recycling&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Water Reclamation Plant 10 (WRP-10) Non-Potable Water System&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4296&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.166000000077,\n",
       "                33.6699999996789\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.09427495,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -115.9394319,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 211,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Invasive tamarisk established in San Sebastian Marsh negatively impact natural ecosystem functioning, native plant communities, and wildlife habitat, especially impacting species of conservation concern including endangered Desert Pupfish. Invasive tamar&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX06CA2522&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;San Sebastian Marsh Tamarisk Removal&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.939431900275,\n",
       "                33.0942749500698\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 5957539.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.03951,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -115.365,\n",
       "          &quot;Notes&quot;: &quot;Project is an Imperial Dam project that was identified as a significant need with a significant cost to underfunded California users of Colorado Water. In the current state, the desilting basins at Imperial Dam are minimally functional, leaving excess se&quot;,\n",
       "          &quot;OBJECTID&quot;: 1212,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yuma Area Projects - desilting&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.365000000305,\n",
       "                33.0395100001165\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1368111.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.03951,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -115.365,\n",
       "          &quot;Notes&quot;: &quot;Project is an Imperial Dam project with minimal design and permitting requirements, and is operated to deliver Colorado River water in southern California. Funding is provided for implementation.&quot;,\n",
       "          &quot;OBJECTID&quot;: 1211,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yuma Area Projects - CA&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.365000000305,\n",
       "                33.0395100001165\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.03951,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -115.365,\n",
       "          &quot;Notes&quot;: &quot;Much like YMIDD, BWD has a manually operated system that needs to be put on SCADA to realize efficiencies in water operation.  This project would fund the evaluation, design, and implementation of SCADA on major checks and turnouts on the system. Funding&quot;,\n",
       "          &quot;OBJECTID&quot;: 1210,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yuma Area Projects - BWD&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.365000000305,\n",
       "                33.0395100001165\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 75000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.03951,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -115.365,\n",
       "          &quot;Notes&quot;: &quot;The distribution system that serves Bard Water District (BWD) in the Reservation Division is past its design life and is inefficient. A  history of being underfunded has left a multitude of large capital projects without adequate funding in reserves to f&quot;,\n",
       "          &quot;OBJECTID&quot;: 1209,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yuma Area Projects - Bard&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.365000000305,\n",
       "                33.0395100001165\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 637172.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.03951,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -115.365,\n",
       "          &quot;Notes&quot;: &quot;This is a shovel ready project related to Imperial Dam and the All-American Canal (AAC) to refurbish check gates at PK. PK is the last diversion off the AAC and the Colorado River in order to deliver water to Mexico at the Northerly International Boundar&quot;,\n",
       "          &quot;OBJECTID&quot;: 1208,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yuma Area Projects - AAC&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.365000000305,\n",
       "                33.0395100001165\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 200000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.03951,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -115.365,\n",
       "          &quot;Notes&quot;: &quot;This project is proposed by BWD to replace the maintenance shop with a more modern and efficient facility. Funding is provided for implementation.&quot;,\n",
       "          &quot;OBJECTID&quot;: 1229,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yuma Area Projects - Maintenance Building&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.365000000305,\n",
       "                33.0395100001165\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 7500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.03951,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -115.365,\n",
       "          &quot;Notes&quot;: &quot;The Mid-Canal Storage project will provide critically needed in line storage on the Coachella Canal, which services Coachella Valley Water District (CVWD), Imperial Irrigation District, and benefits parties including San Luis Rey Bands and The Metropolit&quot;,\n",
       "          &quot;OBJECTID&quot;: 1230,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yuma Area Projects - mid-canal&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.365000000305,\n",
       "                33.0395100001165\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 22000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.02515728,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -112.0669392,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1271,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Indian Water Rights Settlements&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 028|22000000|Ak-Chin Indian ]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Ak-Chin Indian Water Rights Settlement Operations, Maintenance &amp; Replacement\\u202f\\u00a0\\u00a0&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/bipartisan-infrastructure-law-supports-580-million-investment-fulfill-indian-water&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.066939199957,\n",
       "                33.0251572798693\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 35000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.13458,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -111.7949131,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1311,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Indian Water Rights Settlements&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 029|35000000|Gila River Indi]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Gila River Indian Community - Pima Maricopa Irrigation Project\\u202f\\u00a0\\u00a0&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/bipartisan-infrastructure-law-supports-580-million-investment-fulfill-indian-water&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.794913100267,\n",
       "                33.1345799996473\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.44605588,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -111.9512871,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1124,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Roosevelt Watershed Protection and Forest Thinning Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.951287099788,\n",
       "                33.4460558798296\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.43450824,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -112.070159,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1028,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Mayer Domestic Water Improvement District, Water Meter Upgrade and Radio Read Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.070158999989,\n",
       "                33.4345082403409\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.3703197,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -112.5837766,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 875,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Buckeye Water Conservation and Drainage District, Installation of Relief Drainage and Automated Gate System on Lateral 44 Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.583776600039,\n",
       "                33.3703197000118\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 50000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.99597,\n",
       "          &quot;LatLongTyp&quot;: &quot;Lower Colorado Basin Region&quot;,\n",
       "          &quot;Long&quot;: -111.91435,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 248,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Increase Reclamation\\u2019s biocontrol efforts. Identify locations where biocontrol would be useful as part of an IPM approach for eradication. One of the first projects could focus on Arundo biocontrol as it is widely distributed in the Reclamation Lower C&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;070XX06MU0222&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Biocontrol to Improve Invasive Plant Eradication&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.914350000358,\n",
       "                33.9959699997644\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 44120.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.77278161,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -112.4454328,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 897,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Chino Valley Water Demand Rate Study to Analyze, Develop and Deploy New Rate Structures&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.445432799773,\n",
       "                34.7727816098236\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.84137,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -116.178,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1102,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Watershed revegetation and restoration to remedy detrimental affects from historic hard rock mining operations&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Red Mountain Wash Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.178000000171,\n",
       "                34.8413700000306\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.6828,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -115.4054,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 210,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;removal of invasive species from fragile and important desert springs in an effort to improve landscape and ecosystem function.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX06CA2422&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Mojave Springs Restoration and Maintenance Plan&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.405400000053,\n",
       "                34.6827999999707\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.1030764,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -114.5873367,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 879,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Bullhead City, Water Meter Conversion Metering Project Reclamation Funding&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.587336699988,\n",
       "                35.1030763997423\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 250000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.1853,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -114.5636,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 251,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Arizona portion of the Colorado River Heritage Trail provides recreation amenities to underserved communities.  The Colorado River Heritage Trail as a whole continues to see increased public use.  Additional drainage features and incorporation of a v&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;070XX07AZ0522&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Colorado River Heritage Trail Improvements&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.563599999602,\n",
       "                35.1852999999746\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;&lt;Null&gt;&quot;,\n",
       "          &quot;FundingAmo&quot;: 5000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.2369054457021,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: 36.2369054457021,\n",
       "          &quot;Notes&quot;: &quot;$5 million for Planning Grants awarded over multiple years&quot;,\n",
       "          &quot;OBJECTID&quot;: 1248,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Community Relocation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Community Driven Relocation Demonstration Project - Havasupai Tribe&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.689111375795,\n",
       "                36.2369054457021\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.17424165,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -115.1477265,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1018,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Las Vegas Wash Riparian Restoration Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.147726500152,\n",
       "                36.1742416500346\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.16994042,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -115.2409348,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1038,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Moapa Valley Water District, Water Meter and Data Collection System Upgrade&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.240934800208,\n",
       "                36.1699404203553\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 95000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.16994042,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -115.2409348,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1144,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Southern Nevada Water Authority, Water Efficient Technologies Program Cooling System Upgrade Incentives&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.240934800208,\n",
       "                36.1699404203553\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.21519,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -115.014,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1178,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Virgin Valley Water District, Water Meter and Data Collection Upgrade&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -115.014000000022,\n",
       "                36.2151900002609\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 8500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.1464673,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -114.41414,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1014,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Colorado River Endangered Species Recovery and Conservation Programs&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Lake Mead State Fish Hatchery Water Intake System&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4314&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.414140000446,\n",
       "                36.1464672997295\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.71393729,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -116.234683,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 212,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Removal of invasive plant species, including tamarisk and Russian Olive, from critical riparian habitats. This will improve critical habitat for ESA listed birds.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX06CA2622&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Desert Riparian Restoration for ESA listed birds&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.234683000201,\n",
       "                35.7139372900102\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior and Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service and the Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 2782952.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.03105376,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -118.71365212,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1374,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Conduct wildfire resilience and post-fire restoration activities including hazard tree removal, ladder fuel reductions, thinning, cultural and prescribed burning, slash disposal, reforestation, and site stabilization on 2,600 acres of land. Project will&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;79833&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Wildfire Resilience and Reforestation in Parker Peak Giant Sequoia Grove (CA)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -118.713652124418,\n",
       "                36.031053764652\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 150000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 964,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending (Or Other) For National Revegetation Strategy&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;COLLECTION, PRODUCTION: This project will identify new Joshua tree habitat under future climate scenarios, burned over climate refugia with potential for Joshua tree augmentation, mitigate risks at these habitats, collect seed, propagate plants and outpl&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Expand Joshua Tree Source Materials to Mitigate Climate Change Impacts&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 99750.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 920,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Del Puerto Water District, Groundwater Well Remote Telemetry Program&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 882,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending (Or Other) For National Revegetation Strategy&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;California Seed Collection and Seed Production&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 209000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 903,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The project will permanently close two shafts and three adits currently open and unprotected from visitor entry at Joshua Tree National Park.  Mobilize materials and equipment by helicopter.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Close and Secure 5 Abandoned Mine Hazards at Joshua Tree National Park&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 958,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Eradicating Invasive Plants to Support Desert Riparian Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 5000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 878,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Building Groundwater Reliability and Resiliency: Regional Well Installation and Water Quality Treatment Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 956,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Eradicating Invasive Plants to Protect Desert Springs at Mojave Springs in California&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1315083.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1006,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Kimberlina Pipeline Conveyance Improvement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 976,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Goleta Water District Airport Well Treatment Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 240000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 994,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending (Or Other) For National Revegetation Strategy&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Increased Native Seed Production to Restore Native Grasslands in 14 California National Parks&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 955,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Eradicating Invasive Plants to Promote Habitat Restoration in the San Felipe Creek Watershed in California&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 888,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Carter-Bybee Recharge Basin Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 50000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 950,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Eradicating Invasive Plants in White Water Canyon to Support Restoration in Sand to Snow National Monument in California&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1202,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Westlands Water District, 7-1 Pumping Plant Metering Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1473621.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1083,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Portola Redwoods State Park Drought Resiliency Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1353519.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 880,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Cactus Basins Connector Pipeline Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1142,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Southeast Recharge Facility and Conveyance Improvements&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 850,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Anderson-Cottonwood Irrigation District, Water Conservation and Efficiency Conversion to Pipeline Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 600000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1148,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Stockton East Water District Aquifer Storage and Recovery Well&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1069,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Palmdale Water District, Water Use Efficiency Rebate Program&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1147,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Stockton-East Water District, Eight Mile Dam Automation Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 342000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1115,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending (Or Other) For National Revegetation Strategy&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoring California Grasslands at 14 National Parks with Native Seed Collection and Curation&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 25000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: &quot;The San Luis and Delta-Mendota Authority (Authority, in close coordination with Reclamation, is pursuing the B.F. Sisk Dam Raise and Reservoir expansion Project (Project) and prepared the Feasibility Study and supplemental Environmental Impact Statement&quot;,\n",
       "          &quot;OBJECTID&quot;: 859,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water &amp; Groundwater Storage, And Conveyance&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;B.F. Sisk Dam Raise and Reservoir Expansion Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/bil/docs/spendplan-2022/Reclamation-BIL-Spend-Plan-Storage-Addendum-09-30-2022.pdf&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 860,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Bard Water District, Supervisory Control and Data Acquisition Installation Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 57753.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1163,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Turlock Irrigation District, Lateral 6 Water Control Structure Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2352759.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1164,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Turnipseed Water Bank Phase VI&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1054,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Nigiri Multi-benefit Floodplain Restoration Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1141,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;South Tahoe Public Utility District, Washoan and Acoma Operational Efficiency Improvement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 30000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: &quot;A 1.5 million acre-foot off-stream storage reservoir in the Sacramento River system located in the Coast range mountain we of Maxwell, CA. The reservoir would utilize existing facilities pumping from the Sacramento River to fill, create two new regulatin&quot;,\n",
       "          &quot;OBJECTID&quot;: 1059,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water &amp; Groundwater Storage, And Conveyance&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;North of Delta Off Stream Storage (NODOS or Sites)&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/bil/docs/spendplan-2022/Reclamation-BIL-Spend-Plan-Storage-Addendum-09-30-2022.pdf&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 5000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1120,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Reuse Produced Water Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1079,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Phase I - Lateral #4 Expansion Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 460891.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1063,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;North West Service Area Conjunctive Use Groundwater Recharge Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 845,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;AEWSD Drought Recovery Wells and Conjunctive Use Modeling Tool&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 82000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: &quot;The proposed project efficiently integrates new facilities (115,000 acre-feet of additional storage capacity and new conveyance facilities) with existing facilities (three intakes in the Delta and various regional pumping facilities) to allow Delta water&quot;,\n",
       "          &quot;OBJECTID&quot;: 1022,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water &amp; Groundwater Storage, And Conveyance&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Los Vaqueros Expansion Phase II&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/bil/docs/spendplan-2022/Reclamation-BIL-Spend-Plan-Storage-Addendum-09-30-2022.pdf&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1131,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;San Luis Water District, Relift Canal and Third Lift Canal Monitoring&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 5000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.3754883,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -119.2720108,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1125,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;S Wells Per- &amp; Polyfluoroalkyl Substances Treatment &amp; Disinfection Facilities&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.05833333,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -120.8685833,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1040,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Dam Safety Program&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Modification Of B.F. Sisk Dam&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4142&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.868583300356,\n",
       "                37.0583333300084\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Park Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 240000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.769924,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -121.52641,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 290,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;PRODUCTION: Effective restoration requires locally adapted and regionally grown native plant materials. This project will support 14 National Parks in California for nursery operations and regional production capacity for seed amplification to restore na&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;100XX09CA2422&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Increase native seed production for 14 CA parks&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;14&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.240938999953,\n",
       "                32.6722259997996\n",
       "              ],\n",
       "              [\n",
       "                -120.095419999961,\n",
       "                33.9663719997635\n",
       "              ],\n",
       "              [\n",
       "                -118.734609999659,\n",
       "                34.0923519996931\n",
       "              ],\n",
       "              [\n",
       "                -121.17114100036,\n",
       "                36.48625099992\n",
       "              ],\n",
       "              [\n",
       "                -118.772718999887,\n",
       "                36.564720999905\n",
       "              ],\n",
       "              [\n",
       "                -119.085095000282,\n",
       "                37.6251259997248\n",
       "              ],\n",
       "              [\n",
       "                -119.516587999915,\n",
       "                37.8405480001599\n",
       "              ],\n",
       "              [\n",
       "                -122.51775200021,\n",
       "                37.8499270003215\n",
       "              ],\n",
       "              [\n",
       "                -122.132207999837,\n",
       "                37.991361000132\n",
       "              ],\n",
       "              [\n",
       "                -122.917612000313,\n",
       "                38.0705320000274\n",
       "              ],\n",
       "              [\n",
       "                -121.404335999861,\n",
       "                40.4913839996807\n",
       "              ],\n",
       "              [\n",
       "                -122.32621199991,\n",
       "                40.8273000002039\n",
       "              ],\n",
       "              [\n",
       "                -124.050501000265,\n",
       "                41.7680750003051\n",
       "              ],\n",
       "              [\n",
       "                -121.526409999689,\n",
       "                41.7699239999519\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Park Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 342000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 41.769924,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -121.52641,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 291,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;COLLECTION: Ecoregional collaboration from seed to seed is critical to sustain NPS grassland resources in California from impairment in the face of climate change. This project will collect and curate seed to support native plant materials development an&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;100XX09CA2722&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Collect and curate native seed for 14 CA parks&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;14&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.240938999953,\n",
       "                32.6722259997996\n",
       "              ],\n",
       "              [\n",
       "                -120.095419999961,\n",
       "                33.9663719997635\n",
       "              ],\n",
       "              [\n",
       "                -118.734609999659,\n",
       "                34.0923519996931\n",
       "              ],\n",
       "              [\n",
       "                -121.17114100036,\n",
       "                36.48625099992\n",
       "              ],\n",
       "              [\n",
       "                -118.772718999887,\n",
       "                36.564720999905\n",
       "              ],\n",
       "              [\n",
       "                -119.085095000282,\n",
       "                37.6251259997248\n",
       "              ],\n",
       "              [\n",
       "                -119.516587999915,\n",
       "                37.8405480001599\n",
       "              ],\n",
       "              [\n",
       "                -122.51775200021,\n",
       "                37.8499270003215\n",
       "              ],\n",
       "              [\n",
       "                -122.132207999837,\n",
       "                37.991361000132\n",
       "              ],\n",
       "              [\n",
       "                -122.917612000313,\n",
       "                38.0705320000274\n",
       "              ],\n",
       "              [\n",
       "                -121.404335999861,\n",
       "                40.4913839996807\n",
       "              ],\n",
       "              [\n",
       "                -122.32621199991,\n",
       "                40.8273000002039\n",
       "              ],\n",
       "              [\n",
       "                -124.050501000265,\n",
       "                41.7680750003051\n",
       "              ],\n",
       "              [\n",
       "                -121.526409999689,\n",
       "                41.7699239999519\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.65669778,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -120.9943469,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 719,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Modesto Ground Water Contamination site is located in Modesto, California. A dry cleaning facility contaminated soil and groundwater with tetrachloroethylene (PCE). Following construction of an interim remedy, operation and maintenance activities and&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;MODESTO GROUND WATER CONTAMINATION&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.994346900245,\n",
       "                37.6566977798356\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 83030.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.20459,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -120.554,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1172,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Utica Water and Power Authority, Lower Utica Canal Lining and Gaging Stations Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -120.554000000069,\n",
       "                38.2045900003293\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 250000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.0541552920001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -119.045902646,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 373,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will enhance vegetation communities in the sagebrush ecosystem  and protect/restore wetlands and mesic habitats. Activities to be funded under this proposal include removing and replacing older fencing and replacing with wildlife friendly fe&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230058&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Bi-State Sagebrush Ecosystem Enhancement project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -119.045902646195,\n",
       "                38.0541552919159\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 82000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.9731664280001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -118.925959603,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 378,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Conway and Mattly Ranches were purchased by Mono County, California for their high conservation, cultural, and historic resource values. The Eastern Sierra Land Trust holds a Conservation Easement on both ranches to permanently protect these values.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230063&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Conway Ranch Wet Meadow Enhancement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -118.925959602934,\n",
       "                37.973166427949\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 150000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.9342093220001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -118.943087957,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 404,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Sage - Steppe Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will address impacts to meadow habitats that bi-state sage-grouse rely on within the Mono Basin. Currently, there are over 400 wild horses that are well outside their designated wild horse territory, and the current wild horse population is&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;SAGE20230089&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Sage-Grouse Habitat Restoration through Wild Horse Management&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -118.943087957424,\n",
       "                37.9342093220655\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1700000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.64331,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -114.878,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 890,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Three washes have been impacted by historic mining in Caselton, NV.  Restoration will ensure these washes are not only made whole, but made resilient.  It is also a potential site for a solar project involving BLM &amp; The Nature Conservancy.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Caselton Mine &amp; Mill and Impacted Watersheds Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.877999999554,\n",
       "                37.6433100001269\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 3520000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.2861,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -112.9498,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: NPS, UFSS, Utah DNR, Virgin River Program, Washington Country Water Conservancy District, BLM,\\u00a0Dixie Conservation District,\\u00a0Washington County Farm Bureau, The Nature Conservancy, Town of Springdale, National Wild an&quot;,\n",
       "          &quot;OBJECTID&quot;: 1245,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The National Park Service (NPS) owns the uppermost four dams on the Virgin River, a designated Wild and Scenic River. NPS proposes to finalize design of fish passage on all four dams and construct two of the four dam removals and rocky ramp installations&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{db8ffed0-f253-4ff6-8778-cc0238901ae9}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Virgin River Fish Passage Initiative in Zion National Park&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/virgin-river-fish-passage-initiative-zion-national-park&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;4&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.949799999981,\n",
       "                37.2860999996582\n",
       "              ],\n",
       "              [\n",
       "                -112.963400000208,\n",
       "                37.2372000001163\n",
       "              ],\n",
       "              [\n",
       "                -112.974099999745,\n",
       "                37.2192000000505\n",
       "              ],\n",
       "              [\n",
       "                -112.975899999894,\n",
       "                37.2144999997268\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.2804,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -113.505,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1184,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Washington County Water Conservancy District, Installing Smart Water Meters - Phase 2&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -113.505000000085,\n",
       "                37.2803999997121\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Park Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.246438,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -112.866004,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 273,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project goal is developing Sustainable Visitor Use and Destination Management:  Planning &amp; assessments for watershed protection on NPS and adjacent lands via conservation easements. Easements will also allow for trails connecting a new multi-partner&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;100XX07UT1022&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoration and recreation connectivity in ZION&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.866004000435,\n",
       "                37.2464379998563\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 45000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.62602,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -109.805,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1110,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Resilient Recreation Sites&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoration Actions to Improve Recreation Opportunities Along the San Juan River, Glen Canyon National Recreation Area&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.805000000401,\n",
       "                37.6260200000289\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Forest Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 300000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.59869565,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -109.75552147,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1387,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Collaborate with the United States Forest Service and utilize the Manti-La Sal National Forests&#x27; Land &amp; Resource Management Plan to implement watershed restoration techniques such as fencing, channel and slope manipulation, range improvements, trail stab&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;81085&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Bears Ears National Monument and Manti-La Sal National Forest Watershed Restoration (UT)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.755521465593,\n",
       "                37.5986956532934\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 160000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.76403,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -107.676,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 851,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Restoration of streambanks and wetlands negatively impacted by upstream mining.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Animas Forks - Upper Animas Watershed restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -107.676000000391,\n",
       "                37.7640300001581\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.86440261,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -107.6128627,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 723,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Bonita Peak Mining District site consists of 48 historic mines or mining-related sources where ongoing releases of metal-laden water and sediments are occurring within the Mineral Creek, Cement Creek and Upper Animas River drainages in San Juan Count&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;BONITA PEAK MINING DISTRICT&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -107.612862700265,\n",
       "                37.8644026103179\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 300000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.82128,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -107.3,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1070,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Restoration of Palmetto Gulch in the Upper Lake Fork of the Gunnison River.  The project will remove mine tailings from streambeds downstream of remediated mined sites, contour and restore streambeds and ensure stability for climate resiliency, re-seed w&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Palmetto Gulch Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -107.299999999836,\n",
       "                37.821279999673\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 25000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.43727429,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -109.008495,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 215,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Removal of invasive vegetation, including tamarisk and russian olive, from sensitive desert and canyon riparian systems.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX06CO3822&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Dolores County Riparian Restoration&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.008494999631,\n",
       "                37.4372742900442\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.347,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -108.293,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 596,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with irrigation infrastructure and forest stand improvements.  Irrigation infrastructure improvements include analysis of off-farm reservoir&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Mancos Conservation District&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -108.293000000216,\n",
       "                37.3470000003357\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.27166641,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -107.0442746,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1068,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Pagosa Gateway Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -107.044274599934,\n",
       "                37.2716664103417\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 3300000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.25423776,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -107.8773958,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1275,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Indian Water Rights Settlements&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 014|3300000|Animas-La Plata]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Animas-La Plata (Colorado Ute) Operations, Maintenance &amp; Replacement\\u202f\\u00a0\\u00a0&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/bipartisan-infrastructure-law-supports-580-million-investment-fulfill-indian-water&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -107.877395800355,\n",
       "                37.2542377597397\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 39114000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.13714388,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -109.5707533,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1341,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Indian Water Rights Settlements&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 024|39114000|Navajo-Utah Wat]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Navajo-Utah Water Settlement\\u202f\\u00a0\\u00a0&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/bipartisan-infrastructure-law-supports-580-million-investment-fulfill-indian-water&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.570753300077,\n",
       "                37.1371438803556\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Park Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 45000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.38840764,\n",
       "          &quot;LatLongTyp&quot;: &quot;San Juan River, Glen Canyon National Rec Area, AZ&quot;,\n",
       "          &quot;Long&quot;: -110.842422,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 272,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Campground and Trail Restoration to Improve recreation activities (camping, wildlife observations and photography, fishing access) and visitor safety.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;100XX07UT0622&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Improve recreation on San Juan River in GLCA&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -110.842421999702,\n",
       "                37.3884076397256\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Department-Wide Programs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.39,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -110.842,\n",
       "          &quot;Notes&quot;: &quot;This project&#x27;s exact funding amount was not provided by the DOI, but the press release noted that it is paying for funding an inventory and assessment of the wells present in the park.&quot;,\n",
       "          &quot;OBJECTID&quot;: 1312,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Orphaned Well Site Plugging, Remediation, And Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 014||Glen Canyon Nat]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Glen Canyon National Recreation Area&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -110.841999999928,\n",
       "                37.3899999997141\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Geological Survey&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 600000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.19241,\n",
       "          &quot;LatLongTyp&quot;: &quot;Colorado River Basin&quot;,\n",
       "          &quot;Long&quot;: -110.68578,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 262,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The goal of this project is to create a tool for use by managers and decision-makers that allows for the analysis of defined mine lands to identify potential hazards (e.g., toxic metals, holding ponds, waste pile slopes, etc.), risks to vulnerable commun&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;080XX08US1122&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Support for Safe Restoration of Mined Lands&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -110.685780000393,\n",
       "                36.1924100001098\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 8720000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.86654122,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -110.5689296,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 36,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Safety of Dams, Water Sanitation, And Other Facilities&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The project will connect three BIA PWSs to the regional water supply delivery system \\u201cHopi Arsenic Mitigation Project\\u201d (HAMP), reduce concentrations of arsenic in drinking water supply, and provide superior quality drinking water to Hopi communities.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{24B1F4EC-CEAD-4F71-A572-2D046E6BC23B}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Hopi Arsenic Management Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -110.568929599737,\n",
       "                35.8665412199385\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 399953.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.68060559,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -109.05261059,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 49,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will support the Tribe&#x27;s implementation strategy project goals in accordance with the Climate Adaptation Plan of the Navajo Nation, and will serve as the next step in addressing climate change effects.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{388941C5-5D5A-4669-A91B-ECCE8F204AA2}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Navajo Nation Climate Change Program&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.052610588599,\n",
       "                35.6806055936599\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 205245.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.680573,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -109.0525929,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 48,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Indian Water Rights Settlements&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This agreement provides 81,500 acre-feet of water to Navajo residents in Utah, resolves claims to water rights, and guarantees they will not lose water rights that are not in use. Eight Navajo Utah communities will directly benefit.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{23BE1536-AECE-407F-93C0-8D418F8B2EDD}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Navajo-Utah BIA Water Rights Settlement Act&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.052592899873,\n",
       "                35.6805730001085\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 399953.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.67930754,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -109.0469345,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1342,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This category will help continue CCP\\u2019s efforts by sponsoring implementation strategy project goals in accordance with the Climate Adaptation Plan of the Navajo Nation (CAP). This category award will serve as the next step in addressing climate change e&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 022|399953|Navajo Nation D]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Navajo Nation Department of Fish and Wildlife Climate Change Program&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.046934499933,\n",
       "                35.6793075401485\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 4000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.50034243,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -108.16572762,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1383,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Conserve 80,000 acre feet of water, increase ecosystem resilience through implementation of monitoring and adaptive management plans, and expand outreach within the Jicarilla Apache Nation and local community partners around water conservation and manage&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;81135&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Water Resource Management for Fish Habitat Improvement in the San Juan River (NM)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -108.165727615128,\n",
       "                36.500342426719\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 950000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.87415128,\n",
       "          &quot;LatLongTyp&quot;: &quot;Mundo Lake, NM&quot;,\n",
       "          &quot;Long&quot;: -106.9287255,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 243,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project proposes the establishment of an all-weather road to the lake and campsites replacing two corroding culverts and increasing road drainage. As well as improving campsites with picnic tables, fire \\r\\nrings, grill boxes, graveled parking areas,&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;060XX07NM0522&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Mundo Lake Recreational Improvement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -106.928725499697,\n",
       "                36.8741512797142\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 151120.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.870626,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -105.289143,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Carson National Forest, New Mexico DGF&quot;,\n",
       "          &quot;OBJECTID&quot;: 120,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This infrastructure project and will serve to fulfill the requirements of the Justice 40 initiative. Four road-stream crossings (culverts)  in the Rio Costilla watershed in the Valle Vidal unit of the Carson National Forest have been identified as aquati&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{c3e0ffe6-f28b-49cc-ba5f-482a4bfeb1ba}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Carson National Forest Valle Vidal Culvert Replacement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/carson-national-forest-valle-vidal-culvert-replacement-project&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.289142999819,\n",
       "                36.8706260001766\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 151120.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.840302,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -105.309252,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Carson National Forest, New Mexico DGF&quot;,\n",
       "          &quot;OBJECTID&quot;: 117,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This infrastructure project and will serve to fulfill the requirements of the Justice 40 initiative. Four road-stream crossings (culverts)  in the Rio Costilla watershed in the Valle Vidal unit of the Carson National Forest have been identified as aquati&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{59754108-fc85-4cde-aef5-58b33a2ce06a}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Carson National Forest Valle Vidal Culvert Replacement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/carson-national-forest-valle-vidal-culvert-replacement-project&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.309252000355,\n",
       "                36.8403019998878\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 151120.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.804805,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -105.299451,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Carson National Forest, New Mexico DGF&quot;,\n",
       "          &quot;OBJECTID&quot;: 118,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This infrastructure project and will serve to fulfill the requirements of the Justice 40 initiative. Four road-stream crossings (culverts)  in the Rio Costilla watershed in the Valle Vidal unit of the Carson National Forest have been identified as aquati&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{8765cb3b-9c54-4369-bbc0-07eb7733396d}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Carson National Forest Valle Vidal Culvert Replacement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/carson-national-forest-valle-vidal-culvert-replacement-project&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.299450999719,\n",
       "                36.8048049999009\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 151120.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.814227,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -105.306102,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Carson National Forest, New Mexico DGF&quot;,\n",
       "          &quot;OBJECTID&quot;: 119,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This infrastructure project and will serve to fulfill the requirements of the Justice 40 initiative. Four road-stream crossings (culverts)  in the Rio Costilla watershed in the Valle Vidal unit of the Carson National Forest have been identified as aquati&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{d1a6c305-7115-4558-99ee-8f0ff4b3ac8f}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Carson National Forest Valle Vidal Culvert Replacement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/carson-national-forest-valle-vidal-culvert-replacement-project&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.306102000319,\n",
       "                36.8142269999482\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 4118675.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.97210646,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -106.0895416,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1121,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Riparian and Wildlife Corridor Restoration at Santa Clara Pueblo&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -106.089541599966,\n",
       "                35.972106459816\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 4377500.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.94554085,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -106.100272,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 440,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Perform post-fire and flood riparian and wildlife corridor restoration across Santa Clara Pueblo reservation lands in the Santa Clara Creek Watershed, the lower Rio Santa Cruz, and Rio Grande River. Project will reconnect, protect and restore over 40-mil&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77634&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Riparian Wildlife Corridor Restoration and Wildfire Recovery at Santa Clara Pueblo (NM)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -106.100272000289,\n",
       "                35.9455408502055\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Park Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 300000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.658997,\n",
       "          &quot;LatLongTyp&quot;: &quot;Southwest office Institute for Applied Ecology, NM&quot;,\n",
       "          &quot;Long&quot;: -105.941224,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 296,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Ecoregional Collaboration, Collection, Production: Increase investment in existing Southwest Seed Partnership with the Institute for Applied Ecology to support the National Seed Strategy and park seed needs throughout the Southwest. Project outcomes incl&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;100XX09MU2622&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Expand Southwest Seed Partnership for IMR parks&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.941224000035,\n",
       "                35.6589969999145\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1099804.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.8890058,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -106.06570996,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 57,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will provide long-and short-term solutions to reduce wildfire risk on and around the Pueblo de San Ildefonso by assessing wildfire risk to target adaptation actions, implementa a community outreach and education program, and more.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{76F130DA-F400-4C9A-B41D-D7BC0536C839}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Preparing the Pueblo de San Ildefonso for Wildfire&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -106.065709960231,\n",
       "                35.8890057981182\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 99990.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.11627035,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -104.5231564,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1146,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Starkville, Improving Water Efficiency Through Smart Water Meters&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -104.523156400416,\n",
       "                37.116270350354\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 25000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.9271,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -105.9032,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 194,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Development of a water catchment to support wildlife such as Pronghorn during a drought.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX02NM0422&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Taos Pronghorn Ware Catchment&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -105.903200000196,\n",
       "                36.9271000002324\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.42391715,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -106.5984915,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 722,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The 1,400-acre Summitville Mine site is a former gold mine in Rio Grande County, Colorado. Gold mining started in the late 1800s. By 1984, the Summitville Consolidated Mining Corporation Inc. began open pit mining for gold, copper and silver. Mining proc&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;SUMMITVILLE MINE&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -106.5984914999,\n",
       "                37.423917150117\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.17351,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -104.513,\n",
       "          &quot;Notes&quot;: &quot;To study and mitigate storage issues caused by sedimentation at Pueblo Reservoir which is causing a continued loss of storage capacity. Funding is provided for a planning study.&quot;,\n",
       "          &quot;OBJECTID&quot;: 971,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Fryingpan- Arkansas&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -104.513000000203,\n",
       "                38.1735100001351\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 99990.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.06718286,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -103.2227248,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1017,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Las Animas, Improving Water Efficiency Through Smart Water Meters&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -103.222724799729,\n",
       "                38.0671828596688\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.0603,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -96.6378,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 522,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Floodwater Retarding Dam No. 21 is a zoned earth embankment flood water retarding structure. The dam was designed and constructed as a significant hazard potential dam. The dam is currently classified by  as a high hazard potential dam. The proposed work&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Upper Walnut (NS) FRD 21&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -96.6378000001598,\n",
       "                38.0602999999069\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.92686503,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -95.40434885,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 741,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Iola, Kansas was the home of several zinc and lead smelting plants during the early 1900\\u2019s.\\u00a0The United Zinc and East Iola smelters were located on the east side of town. The Lanyon smelters were located on the west edge of town. These plants were demo&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;FORMER UNITED ZINC &amp; ASSOCIATED SMELTERS&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -95.4043488495882,\n",
       "                37.9268650301968\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 38.189597,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -91.944158,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 760,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Vienna Wells superfund site consists of three contaminated public drinking water wells and the source area, a former hat factory. The site property is a 7.9-acre parcel of land that begins at the southeast corner of the 10th Street and Chestnut Stree&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;VIENNA WELLS&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -91.944158000213,\n",
       "                38.1895970002559\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.93262278,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -94.36018258,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 755,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Newton County Mine Tailings Superfund site encompasses over 600 square miles of Newton County\\u00a0and a portion of Lawrence County. The Site is part of the Tri-State Mining District\\u00a0(TSMD)\\u00a0of Missouri, Kansas, and Oklahoma, formerly one of the richest&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;NEWTON COUNTY MINE TAILINGS&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -94.3601825803061,\n",
       "                36.932622780056\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.96553333,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -94.81563663,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 806,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Tar Creek Superfund Site is located in Ottawa County, Oklahoma. The Site itself has no clearly defined boundaries, but consists of areas within Ottawa County impacted by historical mining wastes. The Site is part of the larger Tri-State Mining Distri&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;TAR CREEK (OTTAWA COUNTY)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -94.8156366300749,\n",
       "                36.9655333299409\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.08781562,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -94.7133598,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 740,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Cherokee County Superfund site is a former mining area in southeast Kansas, part of a larger regional mining area known as the Tri-State Mining District. It covers about 115 square miles. Over 100 years of widespread lead and zinc mining created pile&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;CHEROKEE COUNTY&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -94.7133598003943,\n",
       "                37.0878156203292\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 37.09035727,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -94.5217492,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 752,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Oronogo-Duenweg Mining Belt Superfund site is part of the Tri\\u2010State Mining District where mining, milling, and smelting of lead and zinc ore began in the mid\\u20101800s and continued for more than 100 years. The site consists of numerous mine waste ar&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;ORONOGO-DUENWEG MINING BELT&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -94.521749199699,\n",
       "                37.0903572700561\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 638420.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.79142191,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -94.86765233,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1424,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Train and support leaders from low-income communities, and nine federally recognized Tribal Nations, to develop landscape-level proposals for restoring woodland and tallgrass prairie ecosystems in northeast Oklahoma\\u2019s Neosho River Watershed. Project wi&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80742&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoring Tallgrass Prairie Ecosystems  in Oklahoma\\u2019s Neosho River Watershed&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -94.867652328842,\n",
       "                36.7914219134902\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 3934122.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.98562174,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -93.67782251,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1391,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Collaborate with partners and landowners to remove four aquatic organism passage barriers to reconnect 434 miles of War Eagle Creek, restore 5,500 linear feet of streambanks, create 4 acres of wetlands, install instream habitat structures, establish publ&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80304&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;War Eagle Creek Collaborative Restoration Initiative (AR)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -93.6778225060846,\n",
       "                35.9856217366794\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior and Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service and the U.S. Forest Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 1499971.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.60260542,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -93.61244558,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1420,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Restore and maintain 4,023 acres of glades and open woodlands through invasive species removal, vegetation management, and prescribed fire across the Ozark and Mark Twain National Forests in Arkansas and Missouri. Project will enhance habitat for over 10&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80290&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Glade and Woodland Restoration in Ozark and Mark Twain National Forests (AR, MO)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;3&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -93.612445577497,\n",
       "                36.6026054160864\n",
       "              ],\n",
       "              [\n",
       "                -94.3612560077818,\n",
       "                35.6831314023526\n",
       "              ],\n",
       "              [\n",
       "                -92.2739596866776,\n",
       "                36.0576702290516\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1921439.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.73538662,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -93.42960112,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 425,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Identify, map, restore, and manage endangered river cane ecosystems within the historic homelands of the United Keetoowah Band through the Keetoowah River Cane Conservation Program. Project will provide new opportunities for Tribal members to access outd&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77197&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;River Cane Ecosystem Conservation and Connection to Keetoowah Traditional Practices (AR, OK)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -93.4296011200264,\n",
       "                35.7353866201526\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 99000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.1786181,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -94.57247146,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1200,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;West Siloam Springs, Water Distribution System Advanced Metering Infrastructure Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -94.5724714601024,\n",
       "                36.1786181000268\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.84124181,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -96.38076292,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 804,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The 140 to 150-acre Wilcox Oil Company site is located in Bristow, Oklahoma, and includes the inactive and abandoned Lorraine and Wilcox Oil Refineries. The property was used as a crude oil refinery from approximately 1915 to 1963. Wilcox Oil and Gas Com&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;WILCOX OIL COMPANY&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -96.3807629198058,\n",
       "                35.8412418099005\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 4830000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 36.70230796,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -101.3445087,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 439,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Support the Playa Lakes Joint Venture in work with five land trusts to advance grassland conservation across more than 250,000 acres of the Southern High Plains. Project will enable partners to deliver conservation and shared best practices according to&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77631&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Southern High Plains Grassland Habitat Protection, Restoration, and Enhancement (CO, KS, NE, NM, OK, TX)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -101.344508700193,\n",
       "                36.7023079599724\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 517000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 44.95704299,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -113.4467335,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 223,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;a.\\tProject supports protection of cultural and historic resources, enhancement of habitats, recreational opportunities, access and scenic qualities of sensitive public lands and resources.\\r\\r\\nMove, direct, or change visitor uses impacting threatened, enda&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX07MU4422&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Mitigate Impacts to Sensitive BLM Lands&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;7&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.0834807397329,\n",
       "                26.9482318700042\n",
       "              ],\n",
       "              [\n",
       "                -119.956988000406,\n",
       "                40.4202956801169\n",
       "              ],\n",
       "              [\n",
       "                -113.642575100284,\n",
       "                42.0643802699101\n",
       "              ],\n",
       "              [\n",
       "                -110.869521599947,\n",
       "                42.418777710294\n",
       "              ],\n",
       "              [\n",
       "                -115.671322999602,\n",
       "                42.6920903901279\n",
       "              ],\n",
       "              [\n",
       "                -103.741303000084,\n",
       "                44.3007097299862\n",
       "              ],\n",
       "              [\n",
       "                -113.446733500178,\n",
       "                44.9570429901249\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.6422,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -99.339,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 627,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bLugert-Altus Irrigation District located in Southern Greer and Central Jackson County Oklahoma delivers irrigation water from Lake Lugert Altus in Greer County via channel system to supply irrigation water to about 45,000 acres of cropland. In additio&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Lugert Altus Irrigation District&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -99.3389999998832,\n",
       "                34.6422000001496\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.898331,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -98.193339,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 805,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The 160-acre Oklahoma Refining Co. site is located in Cyril, Oklahoma. A refinery operated by several different owners was located on site until 1984.\\u00a0Site operations contaminated soil, sediment, surface water and groundwater with polycyclic aromatic hy&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;OKLAHOMA REFINING CO.&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -98.1933390002579,\n",
       "                34.8983309999912\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.7164,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -98.405,\n",
       "          &quot;Notes&quot;: &quot;Project Lat/Long was incorrectly listed. Longitudes was positive. Lat/Long fields updated with negative longitude and manually moved to presumed correct location.&quot;,\n",
       "          &quot;OBJECTID&quot;: 601,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Cache Creek/Medicine Creek watersheds. Agricultural and residential areas have been experiencing serious and worsening&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Medicine Creek - Lower Cache Creek Flood Study&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -98.4049999998914,\n",
       "                34.7164000001735\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.22,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -97.44,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1055,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Norman Utilities Authority Advanced Metering Infrastructure Implementation Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4247&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -97.4400000000308,\n",
       "                35.2200000003662\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 34340.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.5835495,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -97.5084381,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 913,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Corral Kreek Water District, Advance Metering Infrastructure Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -97.5084380996457,\n",
       "                35.5835495001384\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 249427.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.3013281,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -96.9245339,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 29,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Eradicate invasive species from Tribal lands&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{30A9935A-F703-4ECC-B135-A05C3A45B8F4}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Eastern Red Cedar Eradication&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -96.9245338997899,\n",
       "                35.301328099745\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Department-Wide Programs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.54,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -95.927,\n",
       "          &quot;Notes&quot;: &quot;This project&#x27;s exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 24 wells&quot;,\n",
       "          &quot;OBJECTID&quot;: 1297,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Orphaned Well Site Plugging, Remediation, And Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 026||Deep Fork Natio]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Deep Fork National Wildlife Refuge&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -95.9269999997632,\n",
       "                35.5400000002231\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.1486,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -92.5533,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 552,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bThe City of Menifee requests assistance to conduct a PIFR for a possible PL-566 project in the Rocky Cypress Creek-Arkansas River Watershed and the Lower Cadron Creek Watershed. The city is experiencing flooding that impacts safety, comfort, and quali&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;City of Manifee&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -92.5532999996668,\n",
       "                35.1485999999844\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.8825,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -95.33576,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 477,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;MPS No. 7M no longer meets current safety criteria or performance standard for a high hazard potential dam. Funds will be used to maintain present level of flood control benefits and bring the dam to compliance standards. The dam serves 5,230 users as th&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Fourche Maline 7M&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -95.3357600000922,\n",
       "                34.8824999999272\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 212420.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.77340611,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -96.67820762,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 79,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project aims to develop and conduct vulnerability assessments that will advance the Chickasaw Nation\\u2019s capacity for both adaptation planning and resilience by focusing on climate change-related exposure within six key economic centers.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{F64586C1-50D9-46A8-8813-844EFBCC4E51}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Tribal Facility Climate Vulnerability Assessments - Chickasaw Nation&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -96.6782076239096,\n",
       "                34.7734061132761\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 85149.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.93335946,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -96.42953118,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 881,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Calera, Updating Analog Water Meters with Efficient Smart Meters&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -96.4295311800746,\n",
       "                33.9333594603721\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.2302,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -92.0023,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 553,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bThe City of Pine Bluff requests assistance to conduct the PIFR, Planning, Design, and Construction for a PL-566 project in 9 sub-watersheds: Bayou Bartholomew Headwaters, Caney Creek-Caney Bayou, Caney Creek-Arkansas River, Plum Bayou-Arkansas River,&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;City of Pine Bluff&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -92.0022999999102,\n",
       "                34.2302000002839\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.6135,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -93.8153,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 549,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bThe City of Fulton requests assistance to conduct a Preliminary Investigation and Feasibility Report for a possible PL-566 project in the Bois d\\u2019Arc Creek \\u2013 Red River Watershed. The City of Fulton is reportedly experiencing flooding within the cit&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;City of Fulton&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -93.8152999998365,\n",
       "                33.6135000000115\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.408331,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -94.053339,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 823,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Texarkana Wood Preserving Company (TWPC) is a 26-acre wood-treating site located at 1001 Lubbock Street in Texarkana, Texas. Since the early 1900s, the Site used creosote and pentachlorophenol (PCP) as the source material for wood preserving operatio&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;TEXARKANA WOOD PRESERVING CO.&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -94.0533390001155,\n",
       "                33.4083309996404\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.5846,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -92.8343,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 541,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bThe City of Camden requests assistance to conduct a PIFR, Planning, Design, and Construction project in the Freeo Creek-Ouachita River &amp; North Bayou-Two Bayou Watersheds. The city is experiencing flooding that impacts safety, comfort, and quality of l&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;City of Camden&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -92.8342999995509,\n",
       "                33.5846000000395\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.205,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -92.676,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 546,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bThe City of El Dorado requests assistance to conduct a PIFR, Planning, Design, and Construction for a possible PL-566 project in six 12-digit HUC sub-watersheds located within the Hibank Creek-Bayou de Loutre, Little Cornie Bayou, and Haynes Creek-Sma&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;City of El Dorado&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -92.6760000003825,\n",
       "                33.2050000001046\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.227,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -93.572,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 538,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bThe Cities of Stamps and Lewisville request assistance to conduct a PIFR, Planning, Design, and Construction project in the Lake Erling-Bodeau Creek watershed. The cities are experienced flooding that impacts the safety, comfort, and quality of life.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Cities of Stamps and Lewisville&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -93.5719999999264,\n",
       "                33.2269999997342\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.362775,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -97.680374,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 463,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Big Sandy 26 provides flood damage reduction to Bronte, Texas and the surrounding community of  Wise County, Texas. Now classified as a high hazard potential dam due to development downstream, BIL REhab funds will be used to bring the dam to meet current&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Big Sandy 26&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -97.6803740002109,\n",
       "                33.3627750003256\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.59623778,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -102.4187364,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 826,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The site consists of groundwater plumes in the Ogallala Aquifer extending for about 1.5 miles along State Road 114. The Ogallala Aquifer is the only source of high-quality drinking water in the site area.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;STATE ROAD 114 GROUNDWATER PLUME&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -102.418736399654,\n",
       "                33.5962377801409\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.38066532,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -104.5221245,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 792,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The 550-acre McGaffey and Main Groundwater Plume site is located in Roswell, New Mexico. The site includes locations where several dry cleaners operated from 1956 to 1963. These operations contaminated soil and soil vapor, indoor air, and groundwater wit&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;MCGAFFEY AND MAIN GROUNDWATER PLUME&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -104.522124500259,\n",
       "                33.3806653200027\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 249826.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.34237255,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -106.5277699,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1309,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Pueblo of Santa Ana (Pueblo), proposes to conduct Phase II of a three-phase effort to develop an Adaptation Management Plan (Plan) to help the Pueblo mitigate and overcome the impacts of expected future extreme droughts to its resources, and, ultimat&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 022|249826|Pueblo of Santa]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Extreme Drought Adaptation Planning: Phases I and II, Data Analysis for Resilient Land Management&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -106.527769899901,\n",
       "                35.3423725498482\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 249826.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.34370569,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -106.53071001,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 32,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Climate Resilience - Adaptation Planning&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Tribe will conduct Phase II of a three-phase effort to develop an Adaptation Management Plan to mitigate and overcome the impacts of expected future extreme droughts to its resources, and, ultimately, to its cultural persistence.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{2AB36694-F352-4DDA-974D-E49234431E77}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Extreme Drought Adaptation Planning: Phases 1 and II, Data Analysis for Resilient Land Management&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -106.530710014859,\n",
       "                35.3437056907814\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 160000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.36027,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -103.682845,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 938,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Rural Water Projects&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Eastern New Mexico Rural Water System&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4152&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -103.682845000019,\n",
       "                35.3602699997518\n",
       "              ],\n",
       "              [\n",
       "                -106.108375500346,\n",
       "                34.4213637997036\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.4213638,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -106.1083755,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1037,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will mitigate three abandoned mine hazards at New River Gorge National Park and Preserve.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Mitigate Safety Risks to Visitors at Abandoned Sulfur Mine Site, Valles Caldera National Preserve&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -106.108375500346,\n",
       "                34.4213637997036\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 12000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.4213638,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -106.1083755,\n",
       "          &quot;Notes&quot;: &quot;$12 million for the Jicarilla Apache Rural Water System in New Mexico to support progress toward water treatment plant upgrades.&quot;,\n",
       "          &quot;OBJECTID&quot;: 1001,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Rural Water Projects&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Jicarilla Apache Rural Water System&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-delivers-728-million-historic-investments-address-western&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -106.108375500346,\n",
       "                34.4213637997036\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1464685.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.4213638,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -106.1083755,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1104,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Regions of New Mexico with Acequia Water Distribution Systems: Tools to Adapt to Water Scarcity and Guide Implementation of Strategies to Increase Acequia Community and Water Resilience&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -106.108375500346,\n",
       "                34.4213637997036\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 94710.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.4213638,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -106.1083755,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 942,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Elephant Butte Irrigation District, Leasburg Canal Gate Actuators and Metering Station&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -106.108375500346,\n",
       "                34.4213637997036\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 950000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.4213638,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -106.1083755,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 944,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Resilient Recreation Sites&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Project will increase the depth of the lake as the lake becomes more eutrophic due to changing climate.  Improvements include road to the lake and campsites, drainage surrounding campgrounds, and increasing road drainage and improving campsites.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Enbom Lake Recreational Improvement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -106.108375500346,\n",
       "                34.4213637997036\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 89000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.4213638,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -106.1083755,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 925,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Develop a reclamation plan for an abandoned sulfur mine site at Valles Caldera National Preserve.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Develop Reclamation Plan to Restore Abandoned Mine Site, Valles Caldera National Preserve&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -106.108375500346,\n",
       "                34.4213637997036\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 3000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.4213638,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -106.1083755,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1128,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Colorado River Endangered Species Recovery and Conservation Programs&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;San Juan River Basin Recovery Implementation Program&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4374&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -106.108375500346,\n",
       "                34.4213637997036\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 300000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.4213638,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -106.1083755,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1112,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoration of Cooke&#x27;s Peak, Flourite Ridge and New Placers Watersheds&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -106.108375500346,\n",
       "                34.4213637997036\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.155778,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -107.843889,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 793,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Grants Chlorinated Solvents site is located in Grants, Cibola County, New Mexico. The site consists of a 20-acre, 100-foot-deep groundwater plume that extends about 1,000 feet from the source. An operating dry cleaning facility, no longer a source is&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;GRANTS CHLORINATED SOLVENTS&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -107.843888999584,\n",
       "                35.1557779998842\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior and Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service and the Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 4000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.48790229,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -106.90345043,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1381,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Implement and design wildlife-highway mitigation structures along a 5 mile stretch of high-volume roadway, including upgrading 69 miles of fencing, and removing 3,000 acres of woody encroachment. Project will facilitate movements and restore important ha&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80856&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Landscape Scale Restoration for Large Mammal Species in a Regional Wildlife Corridor (NM)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -106.903450433489,\n",
       "                35.4879022901367\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 5000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.52430909,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -108.7331735,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 934,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Drought Resiliency Ground Water Well&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -108.733173500389,\n",
       "                35.5243090903598\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.54697936,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -108.8045036,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1340,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Indian Water Rights Settlements&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 024|2000000|Navajo-Gallup W]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Navajo-Gallup Water Supply Operations, Maintenance &amp; Replacement\\u202f\\u00a0\\u00a0&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/bipartisan-infrastructure-law-supports-580-million-investment-fulfill-indian-water&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -108.804503600297,\n",
       "                35.5469793603187\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 1000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.95227001,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -111.6694225,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1373,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Establish wildlife corridors for pronghorn, elk, deer, and other wildlife by upgrading fencing and developing overpasses on two interstates with a high number of wildlife-vehicle collisions in Arizona. This project will build off findings from past studi&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;79727&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Reconnecting Wildlife Corridors along Two Northern Arizona Interstates&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.669422501088,\n",
       "                34.9522700119119\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Forest Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 1404660.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.86913945,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -111.55849478,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1429,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Recruit and field two specialized six-person crews to perform invasive species management and watershed improvement projects on the Coconino National Forest in Arizona. Project will remove and treat invasive species on 1,000 acres and will deliver 15 mil&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80893&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Deployment of Invasive Species and Watershed Improvement Crews in Coconino National Forest (AZ)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.558494781135,\n",
       "                34.8691394462028\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.46011224,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -110.1200931,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1158,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Taylor, Water Meter Replacement - Phase 2&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -110.120093100001,\n",
       "                34.4601122398777\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 5000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.2932129,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -111.6646423,\n",
       "          &quot;Notes&quot;: &quot;Funding would provide the Federal cost-share for conducting the Verde River Sedimentation Feasibility Study, which would identify alternatives to restore a minimum of 46,000 acre-feet of water storage lost due to sediment accumulation at Horse Reservoir,&quot;,\n",
       "          &quot;OBJECTID&quot;: 1176,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water &amp; Groundwater Storage, And Conveyance&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Verde River Sedimentation Feasibility Study&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/bil/docs/spendplan-2022/Reclamation-BIL-Spend-Plan-Storage-Addendum-09-30-2022.pdf&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.664642299559,\n",
       "                34.293212900202\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.2932129,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -111.6646423,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1072,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Paloma Irrigation and Drainage District, Automated Control Gates Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.664642299559,\n",
       "                34.293212900202\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 23000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.2932129,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -111.6646423,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 857,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Inform the closure plan for abandoned mineral lands at Organ Pipe Cactus National Monument.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Assess Wildlife and Develop Recommendations for Hazardous Mines at Organ Pipe Cactus National Monument&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.664642299559,\n",
       "                34.293212900202\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 181000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.2932129,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -111.6646423,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1035,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Eliminate safety hazards at four Abandoned Mineral Land sites within the Tucson Mountain District at Saguaro National Park and restore to pre-existing conditions.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Mitigate 25 Mine Hazards at Saguaro National Park&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.664642299559,\n",
       "                34.293212900202\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 250000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.2932129,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -111.6646423,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 931,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Resilient Recreation Sites&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Drainage Along Colorado River Heritage Trail System&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.664642299559,\n",
       "                34.293212900202\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 89000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.2932129,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -111.6646423,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1026,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Maricopa-Stanfield Irrigation and Drainage District, Santa Rosa Canal Lateral WC Turnout Gate Replacement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.664642299559,\n",
       "                34.293212900202\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 101000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.2932129,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -111.6646423,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 839,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;&lt;Null&gt;&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Active Restoration of 25 Mine Hazards at Organ Pipe Cactus National Monument&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.664642299559,\n",
       "                34.293212900202\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 30000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.2932129,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -111.6646423,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 962,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Eradicating Invasive Species to Improve Habitat in Las Cienegas National Conservation Area in Arizona&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.664642299559,\n",
       "                34.293212900202\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 5000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.2932129,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -111.6646423,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1042,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;MSIDD Drought Resiliency Water Augmentation Program, Phase 2A Central Zone Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.664642299559,\n",
       "                34.293212900202\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 20000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.2932129,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -111.6646423,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 910,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Conduct Engineering Evaluation/Cost Analysis Sampling and Analysis Plan at Last Chance Mine, Grand Canyon National Park&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.664642299559,\n",
       "                34.293212900202\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.03,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -110.49,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 615,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bFunds will be used to complete a PIFR for a potential WFPO project within the Cibecue Wash watershed with the White Mountain Apache Tribe (WMAT) . The tribe has expressed an interest in pursuing a WFPO project to address agricultural water management&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Cibecue Wash&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -110.489999999562,\n",
       "                34.0300000003298\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 109106.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.8369944,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -109.9642664,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 83,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Indian Water Rights Settlements&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Quantification Act authorizes the design and construction of a dam and storage reservoir, pumping plant, distribution system and water treatment facilities, and settles water rights in Arizona.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{F98310BE-4562-45C6-8F56-BA67654D7A31}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;White Mountain Apache Tribe BIA Water Rights Quantification Act&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.964266399965,\n",
       "                33.8369943999756\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior and Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service and the Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 333789.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.7906469,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -109.98847236,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1410,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Address environmental and cultural harms at Fort Apache to create a master plan for re-Indigenizing the 300 acres of rivers, farmlands, grasslands, and woodlands at Fort Apache. Project will produce a shovel-ready plan, conduct six site visits, six focus&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;79566&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Ecocultural Regeneration Planning for Fort Apache and Theodore Roosevelt School National Historic Landmark (AZ)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.988472364085,\n",
       "                33.7906468962607\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 2310000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.7647,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -109.381,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: White Mountain Apache Tribe, USFS, Arizona GFD&quot;,\n",
       "          &quot;OBJECTID&quot;: 107,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;To achieve recovery and delist the Apache Trout, this project will remove 7 barriers and replace 6 culverts. Structural barriers will be removed on Flash, Squaw, Hayground, Home, Stinky, and Little Diamond creeks.  Culverts will be replaced on Paradise a&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{1c32c22e-60d7-40e1-bab5-0696d2956de6}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Apache Trout Recovery Fish Passage Infrastructure Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/apache-trout-recovery-fish-passage-infrastructure-project&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.381000000368,\n",
       "                33.7646999999012\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 2310000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.7742,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -109.3839,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: White Mountain Apache Tribe, USFS, Arizona GFD&quot;,\n",
       "          &quot;OBJECTID&quot;: 115,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;To achieve recovery and delist the Apache Trout, this project will remove 7 barriers and replace 6 culverts. Structural barriers will be removed on Flash, Squaw, Hayground, Home, Stinky, and Little Diamond creeks.  Culverts will be replaced on Paradise a&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{2eb09a09-f11c-44bd-a185-66166ceb4a33}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Apache Trout Recovery Fish Passage Infrastructure Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/apache-trout-recovery-fish-passage-infrastructure-project&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.383900000158,\n",
       "                33.7742000001864\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 2310000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.8544,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -109.4574,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: White Mountain Apache Tribe, USFS, Arizona GFD&quot;,\n",
       "          &quot;OBJECTID&quot;: 103,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;To achieve recovery and delist the Apache Trout, this project will remove 7 barriers and replace 6 culverts. Structural barriers will be removed on Flash, Squaw, Hayground, Home, Stinky, and Little Diamond creeks.  Culverts will be replaced on Paradise a&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{4bfcdeab-d0d7-4fb7-8699-2f21ffb1d047}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Apache Trout Recovery Fish Passage Infrastructure Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/apache-trout-recovery-fish-passage-infrastructure-project&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.457400000398,\n",
       "                33.8543999997568\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 2310000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.8105,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -109.4235,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: White Mountain Apache Tribe, USFS, Arizona GFD&quot;,\n",
       "          &quot;OBJECTID&quot;: 106,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;To achieve recovery and delist the Apache Trout, this project will remove 7 barriers and replace 6 culverts. Structural barriers will be removed on Flash, Squaw, Hayground, Home, Stinky, and Little Diamond creeks.  Culverts will be replaced on Paradise a&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{ba954a17-9ecb-464b-bd19-98e1d81663d8}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Apache Trout Recovery Fish Passage Infrastructure Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/apache-trout-recovery-fish-passage-infrastructure-project&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.42349999984,\n",
       "                33.8104999999681\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 2310000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.7958,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -109.6243,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: White Mountain Apache Tribe, USFS, Arizona GFD&quot;,\n",
       "          &quot;OBJECTID&quot;: 105,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;To achieve recovery and delist the Apache Trout, this project will remove 7 barriers and replace 6 culverts. Structural barriers will be removed on Flash, Squaw, Hayground, Home, Stinky, and Little Diamond creeks.  Culverts will be replaced on Paradise a&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{93552dfe-0cd6-4cf8-96bd-0e92a4e944fb}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Apache Trout Recovery Fish Passage Infrastructure Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/apache-trout-recovery-fish-passage-infrastructure-project&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.624300000278,\n",
       "                33.7958000002953\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 2310000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.7923,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -109.6399,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: White Mountain Apache Tribe, USFS, Arizona GFD&quot;,\n",
       "          &quot;OBJECTID&quot;: 104,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;To achieve recovery and delist the Apache Trout, this project will remove 7 barriers and replace 6 culverts. Structural barriers will be removed on Flash, Squaw, Hayground, Home, Stinky, and Little Diamond creeks.  Culverts will be replaced on Paradise a&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{759b5329-73f7-483e-b28e-bd74579f6314}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Apache Trout Recovery Fish Passage Infrastructure Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/apache-trout-recovery-fish-passage-infrastructure-project&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.639899999772,\n",
       "                33.7922999997488\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 2310000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.9504,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -109.7248,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: White Mountain Apache Tribe, USFS, Arizona GFD&quot;,\n",
       "          &quot;OBJECTID&quot;: 108,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;To achieve recovery and delist the Apache Trout, this project will remove 7 barriers and replace 6 culverts. Structural barriers will be removed on Flash, Squaw, Hayground, Home, Stinky, and Little Diamond creeks.  Culverts will be replaced on Paradise a&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{6e0fd10d-2d5d-499a-9634-bd9ab63b98e3}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Apache Trout Recovery Fish Passage Infrastructure Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/apache-trout-recovery-fish-passage-infrastructure-project&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.724800000056,\n",
       "                33.9503999998078\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 2310000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.9504,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -109.7248,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: White Mountain Apache Tribe, USFS, Arizona GFD&quot;,\n",
       "          &quot;OBJECTID&quot;: 111,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;To achieve recovery and delist the Apache Trout, this project will remove 7 barriers and replace 6 culverts. Structural barriers will be removed on Flash, Squaw, Hayground, Home, Stinky, and Little Diamond creeks.  Culverts will be replaced on Paradise a&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{554edfda-fab3-4cd0-bddf-9c0a9a2c2bea}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Apache Trout Recovery Fish Passage Infrastructure Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/apache-trout-recovery-fish-passage-infrastructure-project&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.724800000056,\n",
       "                33.9503999998078\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 2310000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.9444,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -109.6401,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: White Mountain Apache Tribe, USFS, Arizona GFD&quot;,\n",
       "          &quot;OBJECTID&quot;: 109,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;To achieve recovery and delist the Apache Trout, this project will remove 7 barriers and replace 6 culverts. Structural barriers will be removed on Flash, Squaw, Hayground, Home, Stinky, and Little Diamond creeks.  Culverts will be replaced on Paradise a&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{255ee856-2185-4052-90e2-62f11a391604}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Apache Trout Recovery Fish Passage Infrastructure Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/apache-trout-recovery-fish-passage-infrastructure-project&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.640099999788,\n",
       "                33.9444000003471\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 2310000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.9346,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -109.6332,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: White Mountain Apache Tribe, USFS, Arizona GFD&quot;,\n",
       "          &quot;OBJECTID&quot;: 110,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;To achieve recovery and delist the Apache Trout, this project will remove 7 barriers and replace 6 culverts. Structural barriers will be removed on Flash, Squaw, Hayground, Home, Stinky, and Little Diamond creeks.  Culverts will be replaced on Paradise a&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{17701c9e-307a-4439-870b-b8d8bb8bcf42}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Apache Trout Recovery Fish Passage Infrastructure Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/apache-trout-recovery-fish-passage-infrastructure-project&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.633199999667,\n",
       "                33.9345999999276\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 2310000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.8926,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -109.5081,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: White Mountain Apache Tribe, USFS, Arizona GFD&quot;,\n",
       "          &quot;OBJECTID&quot;: 112,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;To achieve recovery and delist the Apache Trout, this project will remove 7 barriers and replace 6 culverts. Structural barriers will be removed on Flash, Squaw, Hayground, Home, Stinky, and Little Diamond creeks.  Culverts will be replaced on Paradise a&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{997d76f8-8ab0-445f-980b-3b28bf84d4a2}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Apache Trout Recovery Fish Passage Infrastructure Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/apache-trout-recovery-fish-passage-infrastructure-project&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.508099999651,\n",
       "                33.8926000000084\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 2310000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.8858,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -109.5135,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: White Mountain Apache Tribe, USFS, Arizona GFD&quot;,\n",
       "          &quot;OBJECTID&quot;: 114,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;To achieve recovery and delist the Apache Trout, this project will remove 7 barriers and replace 6 culverts. Structural barriers will be removed on Flash, Squaw, Hayground, Home, Stinky, and Little Diamond creeks.  Culverts will be replaced on Paradise a&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{25e20ff9-3450-4c5f-b323-dbd1a727dedb}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Apache Trout Recovery Fish Passage Infrastructure Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/apache-trout-recovery-fish-passage-infrastructure-project&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.513500000097,\n",
       "                33.8858000001632\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 2310000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.8884,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -109.5138,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: White Mountain Apache Tribe, USFS, Arizona GFD&quot;,\n",
       "          &quot;OBJECTID&quot;: 113,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;To achieve recovery and delist the Apache Trout, this project will remove 7 barriers and replace 6 culverts. Structural barriers will be removed on Flash, Squaw, Hayground, Home, Stinky, and Little Diamond creeks.  Culverts will be replaced on Paradise a&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{5772b133-6c9a-4002-b5c8-597692a42c1c}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Apache Trout Recovery Fish Passage Infrastructure Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/apache-trout-recovery-fish-passage-infrastructure-project&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.513799999673,\n",
       "                33.8883999997406\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 2500000.0,\n",
       "          &quot;ImageLink&quot;: &quot;https://dwpdst.doi.gov/power/BIL_Funding/BootlegAndCooley.jpg&quot;,\n",
       "          &quot;Lat&quot;: 34.02763533,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -109.62121057,\n",
       "          &quot;Notes&quot;: &quot;$2.5M-design for all A1, Bootleg, Cooley, and Davis Dams&quot;,\n",
       "          &quot;OBJECTID&quot;: 1,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Safety of Dams, Water Sanitation, And Other Facilities&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Dam rehabilitation will address various embankment and spillway issues at the four dams resulting in improved safety to population at risk (PAR) of an estimated 700 people.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{241D4A4F-1ECB-4768-A0D6-6CB742F2F4D6}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;A-1 Dam&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.621210572743,\n",
       "                34.0276353273699\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 2500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.99357462,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -109.75858224,\n",
       "          &quot;Notes&quot;: &quot;$2.5M-design for all A1, Bootleg, Cooley, and Davis Dams&quot;,\n",
       "          &quot;OBJECTID&quot;: 26,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Safety of Dams, Water Sanitation, And Other Facilities&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Dam rehabilitation will address various embankment and spillway issues at the four dams resulting in improved safety to population at risk (PAR) of an estimated 700 people.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{497F4F1E-82E2-4FEE-8E20-A3E557818FC1}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Davis Dam&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.758582244955,\n",
       "                33.9935746184064\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 2500000.0,\n",
       "          &quot;ImageLink&quot;: &quot;https://dwpdst.doi.gov/power/BIL_Funding/BootlegAndCooley.jpg&quot;,\n",
       "          &quot;Lat&quot;: 34.076,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -109.9304,\n",
       "          &quot;Notes&quot;: &quot;$2.5M-design for all A1, Bootleg, Cooley, and Davis Dams&quot;,\n",
       "          &quot;OBJECTID&quot;: 4,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Safety of Dams, Water Sanitation, And Other Facilities&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Dam rehabilitation will address various embankment and spillway issues at the four dams resulting in improved safety to population at risk (PAR) of an estimated 700 people.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{09575548-01F0-45EC-A7BB-65AC13A0D890}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Bootleg Dam&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.930399999992,\n",
       "                34.0759999999975\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 2500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.07030532,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -109.91881063,\n",
       "          &quot;Notes&quot;: &quot;$2.5M-design for all A1, Bootleg, Cooley, and Davis Dams&quot;,\n",
       "          &quot;OBJECTID&quot;: 25,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Safety of Dams, Water Sanitation, And Other Facilities&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Dam rehabilitation will address various embankment and spillway issues at the four dams resulting in improved safety to population at risk (PAR) of an estimated 700 people.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{193C670E-5F03-4F4F-A888-D7EBBC7CA00F}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Cooley Dam&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.918810633289,\n",
       "                34.0703053162108\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 34.099517,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -106.901239,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 794,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The New Mexico Environment Department (NMED) is the process of revising the, Remedial Design documents for the treatment of groundwater contamination. NMED is currently conducting sampling groundwater in the area.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;EAGLE PICHER CAREFREE BATTERY&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -106.901239000449,\n",
       "                34.0995169998269\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 300000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 35.25386961,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -106.1731561,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 235,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Restoration and revegetation of three watersheds that are heavily impacted by historic mining and milling operations.  Removal of invasive weeds and non-native vegetation, re-contouring incised streambeds, mitigating mine tailings and planting native see&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX08NM3822&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Cooke&#x27;s Peak, Flourite Ridge &amp; New Placer&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;3&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -107.727859200059,\n",
       "                32.3876752901582\n",
       "              ],\n",
       "              [\n",
       "                -107.729203100385,\n",
       "                32.5496370996462\n",
       "              ],\n",
       "              [\n",
       "                -106.173156100299,\n",
       "                35.2538696101452\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 430740.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.7362,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -109.0332,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Gila National Forest, Apache-Sitgreaves National Forest, New Mexico Environment Department, FHWA, Desert Fish Habitat Partnership, New Mexico DGF&quot;,\n",
       "          &quot;OBJECTID&quot;: 1239,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This is an infrastructure project and will serve to fulfill the requirements of the Justice 40 initiative. Motorized Trail 63 in the Gila National Forest crosses Dry Blue Creek 8 times and NFS Road 8153A crosses Pace Creek leading to a degradation of loa&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{36453aa4-879c-4282-a803-53ed4746f873}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Gila National Forest Fish Passage Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/gila-national-forest-fish-passage-project&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;12&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -109.033200000349,\n",
       "                33.7361999997161\n",
       "              ],\n",
       "              [\n",
       "                -108.9976000001,\n",
       "                33.7634999999219\n",
       "              ],\n",
       "              [\n",
       "                -108.999000000215,\n",
       "                33.7624000002417\n",
       "              ],\n",
       "              [\n",
       "                -109.001699999989,\n",
       "                33.7602000003508\n",
       "              ],\n",
       "              [\n",
       "                -109.003799999714,\n",
       "                33.7556999998079\n",
       "              ],\n",
       "              [\n",
       "                -109.006599999946,\n",
       "                33.7534999997447\n",
       "              ],\n",
       "              [\n",
       "                -109.030699999693,\n",
       "                33.7376999999652\n",
       "              ],\n",
       "              [\n",
       "                -108.997099999609,\n",
       "                33.7640999997715\n",
       "              ],\n",
       "              [\n",
       "                -109.026399999787,\n",
       "                33.7422999996841\n",
       "              ],\n",
       "              [\n",
       "                -109.017700000414,\n",
       "                33.7490000000621\n",
       "              ],\n",
       "              [\n",
       "                -109.006999999979,\n",
       "                33.7531999998436\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 240000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.1304,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -110.1014,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: San Carlos Apache Tribe, Arizona GFD&quot;,\n",
       "          &quot;OBJECTID&quot;: 116,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Bylas Springs Complex infrastructure project is on tribal land and would refurbish degraded and broken infrastructure supporting fish habitat and connectivity at several adjacent springs. The Bylas Springs Complex provides valuable habitat for a hist&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{10dbbe56-1dc2-483e-8d5a-76afc66356af}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Bylas Springs Habitat Expansion and Barrier Removal&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/bylas-springs-habitat-expansion-and-barrier-removal&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -110.101399999762,\n",
       "                33.1303999996378\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.28125943,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -110.2982357,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1362,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Indian Water Rights Settlements&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 024|1500000|San Carlos Apac]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;San Carlos Apache Tribe (Distribution System)\\u202f\\u00a0\\u00a0&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/bipartisan-infrastructure-law-supports-580-million-investment-fulfill-indian-water&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -110.298235699816,\n",
       "                33.281259430185\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 18225000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 33.00546723,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -111.5232064,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1277,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Indian Water Rights Settlements&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 029|18225000|AZ Water Settle]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;AZ Water Settlements Act Implementation - San Carlos Irrigation Project Rehabilitation\\u202f\\u00a0\\u00a0&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/bipartisan-infrastructure-law-supports-580-million-investment-fulfill-indian-water&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.523206400169,\n",
       "                33.005467229841\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.76265312,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -111.5726791,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 891,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Central Arizona Irrigation and Drainage District, Automated Control Gate Installation - Phase 1A&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.572679100419,\n",
       "                32.762653119735\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 40000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.25041475,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -110.9239568,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 995,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Increasing Rainwater Harvesting Capacity in Low-Income Neighborhoods&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4395&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -110.923956800439,\n",
       "                32.250414750078\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 30000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 31.75480798,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -110.5836204,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 207,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Eradication of bullfrogs to improve habitat and conserve T&amp;E species.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX06AZ0722&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Las Cienegas NCA Bullfrog Eradication&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -110.583620399958,\n",
       "                31.754807979655\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Defense&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 1050000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 31.63269834,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -110.16675699,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1418,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Protect and restore groundwater essential for sustaining 43 miles of the U.S. Bureau of Land Management\\u2019s San Pedro Riparian National Conservation Area in the Fort Huachuca Sentinel Landscape. Project will coordinate hydrologic and ecological modeling&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80194&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Adaptive Management of Water Resources in the Fort Huachuca Sentinel Landscape (AZ)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -110.166756989343,\n",
       "                31.6326983370999\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 31.59,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -106.23,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1122,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Riverside Canal Concrete Lining Project (Phase IV)&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4247&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -106.230000000274,\n",
       "                31.5899999999657\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 94346.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 31.04188899,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -104.8353793,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1174,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Van Horn, Water Meters and Automation for Increased System-Wide Water Use Efficiency&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -104.835379300039,\n",
       "                31.0418889896608\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 3500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 30.75939915,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -102.55353459,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1402,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Collaborate with partners to restore riparian and grassland ecosystems in priority conservation areas of the Chihuahuan Desert in Texas and New Mexico. Project will benefit several species including the yellow-billed cuckoo, Zone-tailed hawk, and other g&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80977&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Integrated Grassland and Stream Restoration in the Chihuahuan Desert Ecosystem (NM,TX)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -102.553534593511,\n",
       "                30.7593991532937\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Department-Wide Programs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 31.92,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -104.884,\n",
       "          &quot;Notes&quot;: &quot;This project&#x27;s exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 2 wells&quot;,\n",
       "          &quot;OBJECTID&quot;: 1313,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Orphaned Well Site Plugging, Remediation, And Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 022||Guadalupe Mount]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Guadalupe Mountains National Park&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -104.884000000344,\n",
       "                31.9200000000461\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 20000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 31.773,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -106.438,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 842,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water Recycling&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Advanced Water Purification Facility&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4296&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -106.438000000409,\n",
       "                31.7729999999299\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 31.76857,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -106.235,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 941,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;El Paso County Water Improvement District No. 1, Montoya Laterals System Concrete Lining Project Phase III&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -106.23499999979,\n",
       "                31.7685700001943\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 31.656072,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -96.931933,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 512,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Tehuacana Creek FRS No. 21 is a single purpose FRS that was designed in 1963 and built by the Natural Resources Conservation Service (NRCS) in 1965 as a low hazard dam and is located approximately 2.3 miles east of Axtell and 15 miles northeast of Waco i&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Tehuacana Creek Site 21&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -96.9319330002901,\n",
       "                31.6560719998063\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.734167,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -96.273889,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 822,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The 4-acre Van Der Horst USA Corporation site is located in Terrell, Texas. A chromium and iron electroplating facility operated at the site from the 1950s until 2006. Plating operations generated spent kerosene, wastewater treatment sludge and chromium-&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;VAN DER HORST USA CORPORATION&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -96.2738890002862,\n",
       "                32.7341670001394\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.549469,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -96.417445,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 489,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Historical floods in the past 67 years since FRS No. 9 and FRS No. 10 were constructed have caused the auxiliary spillways to function on at least four occasions on FRS No. 9 and more than ten occasions on FRS 10. These FRSs were constructed as low hazar&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Lower East Fork Laterals Site 10&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -96.4174450001037,\n",
       "                32.5494689997184\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.558725,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -96.394349,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 488,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Historical floods in the past 67 years since FRS No. 9 and FRS No. 10 were constructed have caused the auxiliary spillways to function on at least four occasions on FRS No. 9 and more than ten occasions on FRS 10. These FRSs were constructed as low hazar&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Lower East Fork Laterals 9&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -96.3943489997386,\n",
       "                32.5587249999188\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.908333,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -92.252944,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 743,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The United States Environmental Protection Agency (EPA) and the Louisiana Department of Environmental Quality (LDEQ) have been evaluating implementing a new cleanup strategy at the Marion Pressure Treating Company. Superfund site (MPTC Site) located in M&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;MARION PRESSURE TREATING&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -92.2529440003559,\n",
       "                32.9083329997646\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Department-Wide Programs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.92,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -92.075,\n",
       "          &quot;Notes&quot;: &quot;This project&#x27;s exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 59 wells&quot;,\n",
       "          &quot;OBJECTID&quot;: 1367,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Orphaned Well Site Plugging, Remediation, And Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 014||Upper Ouachita ]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Upper Ouachita National Wildlife Refuge&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -92.0750000000839,\n",
       "                32.9200000001831\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Department-Wide Programs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.62,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -92.213,\n",
       "          &quot;Notes&quot;: &quot;This project&#x27;s exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 68 wells&quot;,\n",
       "          &quot;OBJECTID&quot;: 1296,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Orphaned Well Site Plugging, Remediation, And Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 026||Darbonne Nation]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Darbonne National Wildlife Refuge&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -92.2129999998191,\n",
       "                32.6200000003635\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Department-Wide Programs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.61,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -92.05,\n",
       "          &quot;Notes&quot;: &quot;This project&#x27;s exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 6 wells&quot;,\n",
       "          &quot;OBJECTID&quot;: 1280,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Orphaned Well Site Plugging, Remediation, And Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 014||Black Bayou Lak]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Black Bayou Lake National Wildlife Refuge&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -92.0499999998129,\n",
       "                32.6100000001698\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 31.91778827,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -92.63384344,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 742,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The 34-acre American Creosote Works, Inc. (Winnfield Plant) site is located in Winnfield, Louisiana. Wood treatment took place on site from 1901 to 1979. The treatment process used creosote and pentachlorophenol (PCP). After the site owner, Dickerson Lum&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;AMERICAN CREOSOTE WORKS, INC. (WINNFIELD PLANT)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -92.6338434403178,\n",
       "                31.9177882696266\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 20000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 31.31737949,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -95.66582817,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1077,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Perform Potential Responsible Party Search Report for Mariscal Mine, Big Bend National Park&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -95.6658281699892,\n",
       "                31.3173794900321\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Department-Wide Programs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 31.5,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -94.775,\n",
       "          &quot;Notes&quot;: &quot;This project&#x27;s exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 9 wells&quot;,\n",
       "          &quot;OBJECTID&quot;: 1274,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Orphaned Well Site Plugging, Remediation, And Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 022||Angelina Nation]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Angelina National Forest&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -94.774999999708,\n",
       "                31.4999999997112\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Department-Wide Programs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 31.45,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -93.765,\n",
       "          &quot;Notes&quot;: &quot;This project&#x27;s exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 2 wells&quot;,\n",
       "          &quot;OBJECTID&quot;: 1361,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Orphaned Well Site Plugging, Remediation, And Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 014||Sabine National]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Sabine National Forest&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -93.7649999997189,\n",
       "                31.4500000003232\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 947323.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 31.32728,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -92.7833252,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 894,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Central Wetlands Hydrologic Restoration, Marsh/Swamp Restoration and Planting: Design Phase&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -92.7833252002631,\n",
       "                31.3272799997053\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Department-Wide Programs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 30.46,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -94.387,\n",
       "          &quot;Notes&quot;: &quot;This project&#x27;s exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 7 wells&quot;,\n",
       "          &quot;OBJECTID&quot;: 1279,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Orphaned Well Site Plugging, Remediation, And Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 026||Big Thicket Nat]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Big Thicket National Preserve&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -94.3869999999577,\n",
       "                30.4599999997148\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 30.577516,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -97.482612,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 515,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Upper Brushy Creek FRS No. 25 is a single purpose FRS that was designed in 1972 and built by the Natural Resources Conservation Service (NRCS) in 1975 as a low hazard dam and is located on Little Mustang Creek, a tributary to South Fork Mustang Creek, ap&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Upper Brushy 25&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -97.4826119996563,\n",
       "                30.5775159997317\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 31.079809,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -97.563318,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 497,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Nolan Creek FRS No. 12 is a single purpose dam that was designed and constructed as a significant hazard dam. FRS No. 12 was constructed in 1970 on an unnamed tributary of South Nolan Creek, a tributary of Nolan Creek, 3 miles east of Nolanville, or 7 mi&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Nolan Creek Site 12&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -97.5633180003394,\n",
       "                31.079808999669\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 430000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 31.4825,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -99.4393,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1105,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending for Revegetation of Mined Lands&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Remove Five Well Pads and Restore Native Vegetation at Padre Island National Seashore&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -99.4392999996446,\n",
       "                31.4824999999166\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 400000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 31.4825,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -99.4393,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1179,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Resilient Recreation Sites&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will create an implementation plan for frontcountry park management to minimize impacts to ecological, biophysical, and cultural resources while maximizing the quality of visitor experiences at locations in the park experiencing high levels&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Visitor Access Planning to Protect Ecosystems and Enhance Visitor Experiences at Guadalupe Mountain National Park&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -99.4392999996446,\n",
       "                31.4824999999166\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 31856.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 31.4825,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -99.4393,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 940,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Edwards Aquifer Authority, Municipal and Industrial Meter Upgrades for Automation&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -99.4392999996446,\n",
       "                31.4824999999166\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 480000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 29.3695,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -100.4916,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Texas DOT, Texas DPW&quot;,\n",
       "          &quot;OBJECTID&quot;: 133,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The current crossing is prone to frequent flooding and washouts.This improved crossing will provide reliable access for many that rely upon the crossing to get into town in an under served rural community. The FM 2804 Pinto Creek crossing is in the middl&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{e8b75058-e7b6-45bf-9112-cfcbc6783719}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Pinto Creek Road Crossing Improvement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/pinto-creek-road-crossing-improvement-project&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -100.491599999988,\n",
       "                29.3694999997702\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 29.650999,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -98.277275,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 471,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Comal 4 dam serves the surrounding community of Comal County, Texas and is currently classified as a high hazard potential dam based on the risk of loss of life downstream in the event of a breach. BIL rehab funds will be used to bring the dam to NRCS an&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Comal River 4&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -98.2772750004445,\n",
       "                29.6509989999739\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 29.55074106,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -98.30725587,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1166,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Universal City, Water Meters for More Accurate Real-Time Water Usage Data Collection&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -98.3072558697085,\n",
       "                29.5507410600205\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 29.49506792,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -98.61802439,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 825,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Site is located in the City of Leon Valley, Bexar County, on the northwest side of San Antonio, Texas.\\u00a0 The site is located in a commercial and industrial area of Leon Valley. Residences are located nearby. Two City of Leon Valley public water suppl&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;BANDERA ROAD GROUND WATER PLUME&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -98.6180243896997,\n",
       "                29.495067919939\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 29.857175,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -97.511229,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 490,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Lower Plum Creek Site 28 is an existing floodwater retarding structure located approximately 9.8 miles east of Lockhart and approximately 0.6 miles north of the McMahan Community, Caldwell County, Texas. Site 28 was designed in 1962 and constructed in 19&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Lower Plum 28&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -97.5112289999435,\n",
       "                29.857174999816\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 29.957185,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -97.654271,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 502,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;BIL REHAB funds will be used to extend the service life of the dam, rehabilitate the dam to current NRCS design safety and performance criteria and provide flood damage reduction downstream.&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Plum Creek Site 21&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -97.6542709999251,\n",
       "                29.9571850000194\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 29.868903,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -97.96931,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 521,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Upper San Marcos Floodwater Retarding Structure (FRS) No. 4 was designed and constructed as a high hazard dam with both flood prevention as well as water-based recreation facilities. Due to the recent updates from the NOAA Atlas 14, the increase in proje&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Upper San Marcos Site 5&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -97.9693100002842,\n",
       "                29.8689030000781\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 29.884968,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -98.031858,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 520,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Upper San Marcos Floodwater Retarding Structure (FRS) No. 4 was designed and constructed as a high hazard dam with both flood prevention as well as water-based recreation facilities. Due to the recent updates from the NOAA Atlas 14, the increase in proje&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Upper San Marcos Site 4&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -98.0318580001931,\n",
       "                29.8849679998916\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Defense&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 722792.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 29.80938681,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -98.31210529,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1413,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Enhance partnership capacity for implementing impactful conservation in the Camp Bullis Sentinel Landscape through efforts to develop resources to improve understanding of the Edwards and Trinity aquifers that support the Sentinel Landscape, surrounding&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;79804&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Enhancing Capacity of the Camp Bullis Sentinel Landscape Partnership&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -98.3121052927174,\n",
       "                29.809386810367\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 130000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 29.7538,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -98.8373,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Texas DPW&quot;,\n",
       "          &quot;OBJECTID&quot;: 102,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The project will remove a man-made earthen dam that is in disrepair. The removal will provide restoration to the area and springs that the impoundment currently covers and speed up the opening of the State Natural Area for public use.  The area will prov&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{61237c1e-b41f-49af-8ae3-d03d7a5f1746}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Albert and Bessie Kronkosky State Natural Area Dam Removal&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/albert-and-bessie-kronkosky-state-natural-area-dam-removal&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -98.8373000001615,\n",
       "                29.7538000003511\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 29.80721,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -98.790024,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 517,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Upper Cibolo Creek 2 dam  provides flood damage reduction to Kendall County, Texas.  Now classified as a high hazard potential dam due to development downstream, BIL REhab funds will be used to bring the dam to meet current NRCS and state design safety c&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Upper Cibolo Creek 2&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -98.7900239996831,\n",
       "                29.8072099997613\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 458225.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 30.33030985,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -97.70856986,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1442,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Build an understanding of underserved landowners\\u2019 barriers to conservation opportunities, and based on findings, develop a collaborative working relationship with landowners and partners within the Monarch Butterfly and Louisiana Pine snake Working Lan&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80623&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Providing Equitable Technical Assistance to Increase Texas Landowners\\u2019 Engagement in Conservation&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;M&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -97.708569864903,\n",
       "                30.3303098529695\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 297480.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 29.69818224,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -96.33803968,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1444,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Initiate locally-led efforts to support voluntary working lands conservation to increase and improve habitat within the Monarch Butterfly and Northern Bobwhite Quail Working Lands for Wildlife geographies across a 17 county area of the Texas mid-coast. P&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;81001&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Elevating Working Land for Wildlife Grassland Conservation among Landowners in the Texas Mid-Coast&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;T&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -96.3380396817986,\n",
       "                29.6981822441883\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 29.94239942,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -95.58668911,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 824,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Jones Road Ground Water Plume site is located in the northwest portion of Harris County, Texas.\\u00a0 The source of Site contamination is the former Bell Dry Cleaners facility, which was located within the Cypress Shopping Center at 11600 Jones Road, app&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;JONES ROAD GROUND WATER PLUME&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -95.5866891096393,\n",
       "                29.9423994202752\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Department-Wide Programs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 29.97,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -92.877,\n",
       "          &quot;Notes&quot;: &quot;This project&#x27;s exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 11 wells&quot;,\n",
       "          &quot;OBJECTID&quot;: 1330,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Orphaned Well Site Plugging, Remediation, And Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 022||Lacassine Natio]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Lacassine National Wildlife Refuge&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -92.8769999999383,\n",
       "                29.9700000000018\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 28.814727,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -97.902172,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 476,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Escondido Creek Watershed FRS No. 4 was designed and constructed as a low hazard dam with a single purpose of flood prevention. FRS No. 4 does not meet current dam design and safety requirements. Breach studies indicate that approximately sixty residence&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Escondido Site 4&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -97.9021720000406,\n",
       "                28.8147270001777\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 28.830715,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -97.923212,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 475,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Escondido Creek Watershed FRS No. 12 is a single purpose FRS that was designed and\\nconstructed as a low hazard dam with a single purpose of flood prevention. FRS No. 12 does not meet current dam design and safety requirements and the current classificati&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Escondido Site 12&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -97.9232120001637,\n",
       "                28.830715000246\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 28.778474,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -97.895389,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 474,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Escondido Creek Watershed Floodwater Retarding Structure (FRS) No. 1 was designed and constructed as a low hazard dam with a single purpose of flood prevention. FRS No. 1 was designed and constructed according to low hazard criteria and is now classified&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Escondido Site 1&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -97.8953890000949,\n",
       "                28.778474000377\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 28.778474,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -97.895389,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 516,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Upper Brushy Creek Watershed Floodwater Retarding Dam No. 29 was designed and constructed as a low hazard dam with a single purpose of flood prevention. Breach studies indicate that at least one resident, 3 county roads and State Highway 95 are at risk f&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Upper Brushy Creek 29&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -97.8953890000949,\n",
       "                28.778474000377\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Park Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 29000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 29.095245,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -103.187509,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 285,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Search for evidence to determine liability for contamination by matching wastes found at the site with parties that may have contributed wastes to the site, and/or identify persons responsible for the release of hazardous wastes at the site.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;100XX08TX0322&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Mariscal Mine Potential Resp. Party Search BIBE&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -103.187508999943,\n",
       "                29.0952449998969\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 8000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 31.91066331,\n",
       "          &quot;LatLongTyp&quot;: &quot;Tribe&quot;,\n",
       "          &quot;Long&quot;: -111.8524536,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1364,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Indian Water Rights Settlements&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: &quot;[DOI - 024|8000000|So. Arizona Wat]&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;So. Arizona Water Rights Settlement - Farm Extension\\u202f\\u00a0\\u00a0&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/bipartisan-infrastructure-law-supports-580-million-investment-fulfill-indian-water&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.852453599728,\n",
       "                31.9106633102881\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Park Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 101000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.02826566,\n",
       "          &quot;LatLongTyp&quot;: &quot;Organ Pipe Cactus National Monument, AZ&quot;,\n",
       "          &quot;Long&quot;: -112.8321163,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 278,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Remove fencing and backfill 25 high hazard abandoned mineral land features at Organ Pipe Cactus National Monument to restore landscape to pre-disturbed conditions.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;100XX08AZ1222&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoration of 25 Mine Hazards at ORPI&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.83211629961,\n",
       "                32.028265659996\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Indian Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1000000.0,\n",
       "          &quot;ImageLink&quot;: &quot;https://dwpdst.doi.gov/power/BIL_Funding/CasaGrandeSubstation.jpg&quot;,\n",
       "          &quot;Lat&quot;: 32.86472761,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -111.77375325,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 73,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Tribal Irrigation and Power Systems&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;SCIP power utility provides electricity to San Carlos Indian Reservation, Gila River Indian Reservation, and to areas in Arizona outside the reservation boundaries. Substation has old equipment that needs to be replaced and relocated.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{D035631A-8636-45D8-8BE5-9307F2834117}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;San Carlos Irrigation Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -111.773753249614,\n",
       "                32.8647276116492\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.86,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -112.05,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 637,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bPinal County is interested in completing a watershed plan in the Smith Wash watershed (117,000 acres). The primary concern they hope to address is historic and repeated flood damages to rural infrastructure, crops, and homes. Pinal County will be payi&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;PIFR - Smith Wash&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -112.050000000123,\n",
       "                32.8599999998652\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 772123.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.76951,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -113.906,\n",
       "          &quot;Notes&quot;: &quot;Project is an Imperial Dam project that will rectify aging Category 2 RO&amp;M recommendation at the dam, increase efficiency of dam function, and reducing maintenance of aging infrastructure. Funding is provided for implementation.&quot;,\n",
       "          &quot;OBJECTID&quot;: 1215,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yuma Area Projects - Gila Diversion Motor&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -113.906000000012,\n",
       "                32.7695100003109\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.76951,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -113.906,\n",
       "          &quot;Notes&quot;: &quot;The West Main Canal Heading is centrally located in Yuma, Arizona, up against two major roads, a bike path, and low income residential areas. Due to the age of the system and fluctuations in flow, the feature has experienced significant backing up near t&quot;,\n",
       "          &quot;OBJECTID&quot;: 1231,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yuma Area Projects - WMC&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -113.906000000012,\n",
       "                32.7695100003109\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1044230.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.76951,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -113.906,\n",
       "          &quot;Notes&quot;: &quot;Project is an Imperial Dam project with minimal design requirements, minimal permitting requirements, and is operated to facilitate Colorado River water delivery to southern AZ.  Funding is provided for implementation.&quot;,\n",
       "          &quot;OBJECTID&quot;: 1218,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yuma Area Projects - Gila Imbeds&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -113.906000000012,\n",
       "                32.7695100003109\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 50000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.76951,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -113.906,\n",
       "          &quot;Notes&quot;: &quot;Sloughing has been an ongoing issue on the GGMC for over a decade. The O&amp;M road is a the main access to the widely used Mittry Lake area so the traffic on this road far exceeds what was expected in the design of the facility nearly 100 years ago. This pr&quot;,\n",
       "          &quot;OBJECTID&quot;: 1214,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yuma Area Projects - GGMC&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -113.906000000012,\n",
       "                32.7695100003109\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 250000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.76951,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -113.906,\n",
       "          &quot;Notes&quot;: &quot;This project will fund all or part of the replacement of\\u00a0several flumes within our water distribution system.\\u00a0A number of flumes\\u00a0of significant age\\u00a0within our system have been identified as\\u00a0requiring replacement as a result of many years of repairs&quot;,\n",
       "          &quot;OBJECTID&quot;: 1213,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yuma Area Projects - Flume Replacements&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -113.906000000012,\n",
       "                32.7695100003109\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 2262497.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.76951,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -113.906,\n",
       "          &quot;Notes&quot;: &quot;Project is an Imperial Dam project with minimal design requirements, minimal permitting requirements, and facilitates Colorado River water delivery to southern Arizona. Funding is provided for implementation.&quot;,\n",
       "          &quot;OBJECTID&quot;: 1216,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yuma Area Projects - Gila Gate&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -113.906000000012,\n",
       "                32.7695100003109\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 333000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.76951,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -113.906,\n",
       "          &quot;Notes&quot;: &quot;YMIDD serves the larger Yuma mesa area as well as wheels deliveries to a second water district, Unit B. Though Unit B is small, both YMIDD and Unit B have a large amount of water ordered but not diverted (WOND), in part from their system being manually o&quot;,\n",
       "          &quot;OBJECTID&quot;: 1232,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yuma Area Projects - YMIDD&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -113.906000000012,\n",
       "                32.7695100003109\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 887360.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.76951,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -113.906,\n",
       "          &quot;Notes&quot;: &quot;This project is on the Gila Gravity Main Canal (GGMC) which delivers Colorado River water to the greater Yuma area. It is an outstanding and aged recommendation and the wasteway is in very bad condition. Multiple parties contribute to the GGMC maintenanc&quot;,\n",
       "          &quot;OBJECTID&quot;: 1217,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Aging Infrastructure Account&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Yuma Area Projects - Gila Gravity&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -113.906000000012,\n",
       "                32.7695100003109\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior and Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service and the Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 5000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.57181032,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -114.80007148,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1394,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Restore 431 acres of native cottonwood, willow, mesquite, and wetland habitat in the floodplain of the Colorado River Delta on the Cocopah Indian Reservation and establish a Tribal youth conservation corps. Project will perform earthwork, install irrigat&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80714&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Cocopah Colorado River Limitrophe Restoration (AZ)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -114.800071478338,\n",
       "                32.5718103202001\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Land Management&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 641000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.6485,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -116.5849,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 192,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Treat vegetation to improve Hermes copper butterfly habitat. Hermes copper is a T&amp;E species. Treatments will also have a fire risk reduction benefit.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;050XX02CA4722&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Hermes Copper Habitat Enhancement Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -116.584900000137,\n",
       "                32.6485000003335\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 28300000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 32.845,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -117.01,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 937,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water Recycling&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;East County Advanced Water Purification Program Phase 2&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4296&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -117.009999999812,\n",
       "                32.844999999813\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 19.6012344,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -155.5211639,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1027,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Maui Landscape Conservation Plan:  Implementation&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -155.521163899773,\n",
       "                19.6012344002972\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 592000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 19.6012344,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -155.5211639,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1154,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Supporting Inter-Bureau Endemic Species Extinction Prevention Efforts: Vector Management for Invasive Mosquitoes&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -155.521163899773,\n",
       "                19.6012344002972\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 6000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 19.6012344,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -155.5211639,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1153,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Supporting Inter-Bureau Endemic Species Extinction Prevention Efforts: Novel Eradication Techniques for Invasive Mosquitoes at Haleakala National Park&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -155.521163899773,\n",
       "                19.6012344002972\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 6500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 19.6012344,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -155.5211639,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 945,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Endemic Species Extinction Prevention - Captive Propagation Facility Construction / Novel Mosquito Management&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -155.521163899773,\n",
       "                19.6012344002972\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 19.6012344,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -155.5211639,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1152,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Direct Federal Spending For Invasives&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Supporting Inter-Bureau Endemic Species Extinction Prevention Efforts: Novel Eradication Techniques for Invasive Mosquitoes&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -155.521163899773,\n",
       "                19.6012344002972\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Geological Survey&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 592000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 22.5272138,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -154.8486905,\n",
       "          &quot;Notes&quot;: &quot;Moved from source coordinates (-154.8486905, 22.5272138, which placed the point in the ocean) to UH Hilo campus inferred from: https://www.usgs.gov/mission-areas/ecosystems/science/bipartisan-infrastructure-law-ecosystem-restoration-activity-6&quot;,\n",
       "          &quot;OBJECTID&quot;: 253,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Hawaiian honeycreepers face an extinction crisis, largely due to impacts of avian malaria vectored by invasive mosquitoes (Culex quinquefasciatus). Multiple species of honeycreepers have gone extinct and 4 ESA-listed species are critically endangered, wi&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;080XX06HI1022&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Invasive Avian Malaria Vector of HI Bird Response&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -155.085695031253,\n",
       "                19.7000886169833\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 20.0856737,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -155.7171332,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1086,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Protecting Forests for Water Supply Sustainability in Kohala Hawaii Phase 2&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -155.717133199889,\n",
       "                20.0856737003726\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 20.0856737,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -155.718,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1085,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Protecting Forests for Water Supply Sustainability in Kohala Hawaii Phase 1&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -155.717999999578,\n",
       "                20.0856737003726\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Park Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 6000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 20.708333,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -156.0925,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 266,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The project goal is to suppress invasive mosquito populations at a landscape level through biocontrol to reduce avian malaria and prevent the extinction of several federally threatened and endangered native forest bird populations.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;100XX06HI3322&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Address impacts of Avian Malaria in Hawaii&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -156.092499999559,\n",
       "                20.7083330001126\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Defense&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 250000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 21.3041114,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -157.85644515,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1386,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Coordinate and plan conservation priorities to support capacity building and future action within the anticipated Sentinel Landscape designation in Hawaii. Project will strategically communicate with partners to establish appropriate advisory and impleme&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80961&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Leveraging Active Conservation Partnerships for Hawaiian Sentinel Landscape Planning (HI)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -157.856445153285,\n",
       "                21.3041113959629\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 6280000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 22.11006566,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -159.58125204,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1416,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Protect multiple species of honeycreeper including the &#x27;akeke&#x27;e, &#x27;akikiki, kiwikiu and &#x27;akohekohe, by employing the incompatible insect technique to suppress invasive southern house mosquitos in native forests on Kaua&#x27;i and help spread these practices on&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;79960&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Suppression of Invasive Mosquitoes to Prevent Extinction of Four Hawaiian Honeycreepers on Kaua\\u2018i and Maui (HI)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;2&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -159.581252042283,\n",
       "                22.1100656647072\n",
       "              ],\n",
       "              [\n",
       "                -156.280671343596,\n",
       "                20.8069834848184\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 15.17465,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -145.77451,\n",
       "          &quot;Notes&quot;: &quot;Manually Moved to Oahu. Coordinates supplied by NRCS put point in ocean hundreds of km SW of islands. True location of project not able to be determined from documention.&quot;,\n",
       "          &quot;OBJECTID&quot;: 658,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;A supplement to Plan-EIS will be prepared for the final phase of Plan-EIS completed in September 1993. Planning will address flooding, irrigation infrastructure needs, and marine habitat enhancements.  Flooding concerns will consider flood and sediment s&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Supplement to Kagman Watershed Plan-EIS September 1993&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -157.934154365197,\n",
       "                21.3483664671928\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 21.50219005,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -158.004226,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 300,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The goal of the project is to carryout landscape-scale nonnative, invasive mosquito control (with the goal of eradication) to prevent the extinction of Hawaii&#x27;s endemic forest birds due to avian malaria transmitted by mosquitoes.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;150XX06HI1022&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;HI Forest Bird Extinction Prevention - Activity 6&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -158.004225999952,\n",
       "                21.5021900497355\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 6500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 22.154339,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -159.614353,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 298,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project has two goals to support Hawaiian forest bird extinction prevention.  Construction of additional forest bird captive propagation facilities and landscape-level implementation of a biological control (use of Wolbachia) to reduce the mosquito&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;150XX04HI0822&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;HI Forest Bird Extinction Prevention - Activity 4&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;4&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -155.385818000393,\n",
       "                19.515787000022\n",
       "              ],\n",
       "              [\n",
       "                -156.237945999937,\n",
       "                20.7657449996768\n",
       "              ],\n",
       "              [\n",
       "                -156.308773000167,\n",
       "                20.843665000135\n",
       "              ],\n",
       "              [\n",
       "                -159.614353000379,\n",
       "                22.1543390002773\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1715583.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 20.79052347,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -156.3370985,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 447,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Implementation of the first stage of the Maui Landscape Conservation Plan to protect and recover at-risk species on Maui Nui, Hawaii. Project will prevent near-term imminent extinction of target plant species, expand horticultural expertise for propagati&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77794&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Implementing the Maui Landscape Conservation Plan to Benefit At-Risk Native Species (HI)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -156.33709849984,\n",
       "                20.7905234698778\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 1080244.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 20.79,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -156.33,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1012,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Water Recycling&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Lahaina Water Recycling Project #3: West Maui Recycled Water Expansion&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4296&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -156.329999999888,\n",
       "                20.7900000001781\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 26.349461,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -98.693576,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 501,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Site 5 was constructed under John A. Shuford in 1961. The Olmitos-Garcia Creek WS provides flood protection and recreational benefits to surrounding areas of Starr County. Rehabilitation of this dam is necessary to bring the dam into compliance with NRCS&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Olmitos &amp; Garcias Creek Site 6&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -98.6935760001146,\n",
       "                26.3494610002861\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 26.351505,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -98.686557,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 500,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Site 5 was constructed under John A. Shuford in 1963. The Olmitos-Garcia Creek WS provides flood protection and recreational benefits to surrounding areas of Starr County. Rehabilitation of this dam is necessary to bring the dam into compliance with NRCS&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Olmitos &amp; Garcias Creek Site 5&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -98.6865570001674,\n",
       "                26.3515049997298\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 26.29886997,\n",
       "          &quot;LatLongTyp&quot;: &quot;City&quot;,\n",
       "          &quot;Long&quot;: -98.16699461,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 939,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Edinburg, Water Accountability Through Efficient Response Project&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -98.1669946100788,\n",
       "                26.298869970167\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 100000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 26.13326,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -97.5182,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 983,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Harlingen Irrigation District Cameron County No.1, Adams Gardens Reservoir Improvements - Phase 2&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/news-release/4402&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -97.5182000002101,\n",
       "                26.1332600001249\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 26.13326,\n",
       "          &quot;LatLongTyp&quot;: &quot;County&quot;,\n",
       "          &quot;Long&quot;: -97.5182,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1080,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Pipeline Improvements and Laguna Atascosa National Wildlife Refuge Water Management Improvements&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -97.5182000002101,\n",
       "                26.1332600001249\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;National Park Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 430000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 27.49164098,\n",
       "          &quot;LatLongTyp&quot;: &quot;Padre Island National Seashore&quot;,\n",
       "          &quot;Long&quot;: -97.2792018,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 286,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Remove five abandoned well pads and their access roads to reclaim the landscape for the benefit of the endangered Northern Aplomado Falcon at Padre Island National Seashore.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;100XX08TX2922&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Remove and restore one well pad at PAIS&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -97.2792018004303,\n",
       "                27.4916409803138\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Defense&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 1405947.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 27.64244434,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -81.25974421,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1422,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Collaborate with partners to improve the conservation value, viability, and long-term resilience of working lands in the Avon Park Air Force Range Sentinel Landscape by providing technical, financial, and organizational support to private landowners to i&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80416&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Working Rangelands Resiliency in the Avon Park Air Force Range Sentinel Landscape (FL)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -81.2597442140527,\n",
       "                27.6424443439081\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 1500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 26.95633025,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -81.32674335,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1398,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Pilot payment for ecosystem services program to maintain and enhance habitat for the Florida panther as a critical step in expanding their range and establishing new populations as prioritized in the Florida panther recovery plan. The success of this pil&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80860&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Building Landowner Participation in the Florida Panther Recovery Efforts (FL)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -81.3267433491264,\n",
       "                26.956330251315\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 25.83194979,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -80.21028332,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 732,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Continental Cleaners\\u00a0Superfund\\u00a0site is located at 798 NW 62nd Street at the intersection of NW 62nd Street and NW 8th Avenue in the Liberty City neighborhood in Miami, Florida. The site is less than an acre in size and features a single-story, 2,40&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;CONTINENTAL CLEANERS&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.2102833203,\n",
       "                25.8319497902498\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 25.92399358,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -80.22061538,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 731,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The 4-acre Anodyne, Inc.\\u00a0Superfund\\u00a0site is located in the Sunshine State Industrial Park, an unincorporated part of Miami-Dade County, Florida near North Miami Beach. The industrial park is located in a mixed residential, commercial and industrial area&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;ANODYNE, INC.&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -80.2206153797786,\n",
       "                25.9239935796978\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 270015.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 26.00680072,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -81.41434887,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 436,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Review and refine of the boundaries of high priority proposed acquisition projects for the Florida Forever program that will increase public access to natural areas, streamline habitat management, benefit at-risk species, and expand habitat connectivity.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77561&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Florida Forever: Collaborative Land Protection Planning for Efficiency and Habitat Connectivity&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -81.4143488702306,\n",
       "                26.0068007196484\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 6332664.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 17.966691,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -67.18093073,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 433,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Restore coastal habitat and hydrological connectivity in two shore segments in Cabo Rojo to improve adaptation for sea level rise and reduce threats from coastal erosion and flooding. Project will benefit important shorebird migration stopover habitat fo&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77502&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Restoring Coastal Habitat and Resilience at Culturally Important Cabo Rojo Salt Flats (PR)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -67.1809307301636,\n",
       "                17.9666909999803\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 18.3974,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -66.9265,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 583,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;\\u200bPuerto Rico&#x27;s Irrigation Districts (Isabela, Costa Sur and Lajas Valley) were built in the early 1900s as part of the infrastructure development related to the sugar cane agricultural activities and consist of water reservoirs and a channels, mains an&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Isabela Irrigation District&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -66.9265000002154,\n",
       "                18.3974000001918\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 1500000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 18.392722,\n",
       "          &quot;LatLongTyp&quot;: &quot;Project centroid&quot;,\n",
       "          &quot;Long&quot;: -67.150944,\n",
       "          &quot;Notes&quot;: &quot;Partners involved/Community support: Caribbean Ecological Services, Protectores de Cuencas, Puerto Rico DNER, University of Puerto Rico at Mayague, Caribbean Coastal Program, Caribbean PFW&quot;,\n",
       "          &quot;OBJECTID&quot;: 138,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;National Fish Passage Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;This project will remove and by pass the dam on the Culebrinas River, opening up 302 miles of riverine habitat for depleted diadromous and catadromous species. It will significantly enhance the water quality at the nearby estuary directly benefitting the&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;{a78d8b63-7b37-4e66-b1c9-266a9d289bad}&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Culebrinas Dam Removal/Bypass&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.fws.gov/project/culebrinas-dam-removalbypass&quot;,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -67.1509440002908,\n",
       "                18.392722000155\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 18.298298,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -67.128581,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 472,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;In the early 1980s NRCS supported the PR government thru the Department of Natural and Environmental Resources (DNER) as sponsor in the construction of two Floodwater Retarding Structure (FRS) along the An\\u0303asco River Watershed, Site 3 (Dague\\u0308y Dam) and&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Daugey Lake&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -67.1285810000447,\n",
       "                18.2982979998786\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 18.296431,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -67.137219,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 456,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed Rehabilitation&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;In the early 1980s NRCS supported the PR government thru the Department of Natural and Environmental Resources (DNER) as sponsor in the construction of two Floodwater Retarding Structure (FRS) along the An\\u0303asco River Watershed, Site 3 (Dague\\u0308y Dam) and&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Ajies&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -67.1372190003909,\n",
       "                18.2964310002965\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Environmental Protection Agency&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Environmental Remediation&quot;,\n",
       "          &quot;Bureau&quot;: null,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 18.295711,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -66.286206,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 813,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Superfund Clean-Up&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Corozal Well site consists of a ground water plume with no identified source(s) of contamination, located in Barrio Palos Blancos, Corozal, a rural residential community in interior north-central Puerto Rico. The site straddles the border between the&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;COROZAL WELL&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -66.2862059996583,\n",
       "                18.2957110002579\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Clean Energy and Power&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Geological Survey&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 805892.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 18.2241917,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -66.4767151,\n",
       "          &quot;Notes&quot;: &quot;The resulting data will be used by scientists at the USGS, the University of Puerto Rico at Mayag\\u00fcez, and other groups to better inform knowledge of geologic hazards, such as earthquakes and landslides, and evaluate natural resources as well as other ap&quot;,\n",
       "          &quot;OBJECTID&quot;: 1025,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Earth Mapping Resources Initiative&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Magnetic and Radiometric Surveys of Puerto Rico&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usgs.gov/news/national-news-release/bipartisan-infrastructure-law-helps-scientists-map-geology-puerto-rico&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -66.476715099627,\n",
       "                18.2241916996166\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 5000000.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 18.2241917,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -66.4767151,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1050,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Nature-based solutions in the Cabo Rojo Salt Flats to enhance public use and foster public engagement and socio-economic development (PR)&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -66.476715099627,\n",
       "                18.2241916996166\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of Agriculture&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Natural Resource Conservation Service&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 18.3569,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -65.0178,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 676,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Watershed and Flood Prevention Operations&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;The Bordeaux Farming Community in Fentress County on St. Thomas, USVI need BIL WFPO funds to implement irrigation water quality and quantity improvements to aid the local agricultural community, and address current insufficient water supply for residents&quot;,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;West End - Bordeaux Area - St. Thomas Island&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Recommended for funding&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -65.0178000000099,\n",
       "                18.356899999657\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Office of Insular Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 297241.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 18.37320016,\n",
       "          &quot;LatLongTyp&quot;: &quot;Savana island, U.S. Virgin Islands&quot;,\n",
       "          &quot;Long&quot;: -65.07980345,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 311,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Create a habitat for endangered snake by ridding Savana island of invasive rats.&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;410XX06VI0422&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Creating capacity for invasive species eradications in the U.S. Virgin Islands and a new refuge for the endangered Virgin Islands tree boa&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -65.0798034501767,\n",
       "                18.3732001598559\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Water Infrastructure&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Bureau of Reclamation&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: null,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 18.03407389,\n",
       "          &quot;LatLongTyp&quot;: &quot;Site&quot;,\n",
       "          &quot;Long&quot;: -66.8554142,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 838,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;WaterSMART Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Accelerating Recovery and Increasing Resiliency of Coastal Wetlands in Punta Tuna Natural Reserve in Maunabo Puerto Rico&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.usbr.gov/newsroom/#/news-release/4261&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Funding Information Not Available&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -66.8554141998438,\n",
       "                18.0340738900161\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior and Department of Commerce&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service and the National Oceanic and Atmospheric Administration&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2023&quot;,\n",
       "          &quot;FundingAmo&quot;: 2109596.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 17.73278472,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -64.76846224,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1431,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Create the first conservation corridor that spans the length of St. Croix by partnering with local organizations and employing a youth green skills corps. Project will expand public access while stemming erosion along 2.11 miles of beach and will use env&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;80929&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Leveraging Public-Private Partnerships to Connect Conserved Lands of the U.S. Virgin Islands&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: &quot;Awarded-Pending&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -64.7684622407171,\n",
       "                17.7327847152104\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Office of Insular Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 250095.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: 17.73780427,\n",
       "          &quot;LatLongTyp&quot;: &quot;St. Croix, U.S. Virgin Islands&quot;,\n",
       "          &quot;Long&quot;: -64.83600435,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 313,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;1. Construction of a Recreational Pavilion\\n2. Rehabilitation of the North Beach Parking, including improving drainage\\n3. Construct a north beach trail\\n\\nSPNWR) is home to three endangered sea turtle species, one endemic endangered lizard, three endangered&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;410XX07VI0622&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Sandy Point NWR Facility Updates&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -64.836004349888,\n",
       "                17.7378042702368\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;Bureau&quot;: &quot;U.S. Fish and Wildlife Service&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 864262.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: -11.05587633,\n",
       "          &quot;LatLongTyp&quot;: null,\n",
       "          &quot;Long&quot;: -171.0784383,\n",
       "          &quot;Notes&quot;: &quot;FundingAmmount = \\&quot;TotalAmmount\\&quot; field in soruce table; ID = Unique Id (EZ Grants ID) is source table&quot;,\n",
       "          &quot;OBJECTID&quot;: 422,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;America the Beautiful Challenge Grants&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Engage community stakeholders and collaborate with conservation experts to identify opportunities and build capacity for tropical restoration and invasive species management on Swain\\u2019s Island. Project will create an operational and reforestation plan f&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;77137&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Swains Island Tropical Ecosystem Restoration and Invasive Species Management Planning (AS)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -171.078438300319,\n",
       "                -11.055876329579\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;DOI Office of the Secretary&quot;,\n",
       "          &quot;FYFunded&quot;: null,\n",
       "          &quot;FundingAmo&quot;: 864262.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: -14.271,\n",
       "          &quot;LatLongTyp&quot;: &quot;State&quot;,\n",
       "          &quot;Long&quot;: -170.132,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 1155,\n",
       "          &quot;ParentProg&quot;: null,\n",
       "          &quot;ProgramNam&quot;: &quot;Grants For States And Tribes For Voluntary Restoration&quot;,\n",
       "          &quot;ProjectDes&quot;: null,\n",
       "          &quot;ProjectID&quot;: null,\n",
       "          &quot;ProjectTit&quot;: &quot;Swains Island (AS) Tropical Ecosystem Restoration Planning for Invasive Mammal Eradication and Rainforest Realignment&quot;,\n",
       "          &quot;ProjectWeb&quot;: &quot;https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private&quot;,\n",
       "          &quot;SiteCount&quot;: null,\n",
       "          &quot;Status&quot;: &quot;Announced&quot;,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -170.13199999963,\n",
       "                -14.2710000003061\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          &quot;AgencyName&quot;: &quot;Department of the Interior&quot;,\n",
       "          &quot;AtlasCateg&quot;: &quot;Resilience and Ecosystem Restoration&quot;,\n",
       "          &quot;Bureau&quot;: &quot;Office of Insular Affairs&quot;,\n",
       "          &quot;FYFunded&quot;: &quot;2022&quot;,\n",
       "          &quot;FundingAmo&quot;: 389025.0,\n",
       "          &quot;ImageLink&quot;: null,\n",
       "          &quot;Lat&quot;: -14.33013408,\n",
       "          &quot;LatLongTyp&quot;: &quot;Leone village, American Samoa&quot;,\n",
       "          &quot;Long&quot;: -170.7800495,\n",
       "          &quot;Notes&quot;: null,\n",
       "          &quot;OBJECTID&quot;: 315,\n",
       "          &quot;ParentProg&quot;: &quot;Bipartisan Infrastructure Law&quot;,\n",
       "          &quot;ProgramNam&quot;: &quot;Ecosystem Restoration Program&quot;,\n",
       "          &quot;ProjectDes&quot;: &quot;Cleanup the second largest wetland ecosystem in Leone village and replant more than 1,000 mangrove seedlings and riparian tree species to restore its degraded areas of the mangrove rainforests. This project also includes enhancing community climate adapt&quot;,\n",
       "          &quot;ProjectID&quot;: &quot;410XX09AS0722&quot;,\n",
       "          &quot;ProjectTit&quot;: &quot;Toetu Auomanu Jemima Nafatali Loia Tagoa&#x27;I (GIS and database officer)&quot;,\n",
       "          &quot;ProjectWeb&quot;: null,\n",
       "          &quot;SiteCount&quot;: &quot;1&quot;,\n",
       "          &quot;Status&quot;: null,\n",
       "          &quot;geometry&quot;: {\n",
       "            &quot;coordinates&quot;: [\n",
       "              [\n",
       "                -170.780049500089,\n",
       "                -14.3301340799548\n",
       "              ]\n",
       "            ],\n",
       "            &quot;type&quot;: &quot;MultiPoint&quot;\n",
       "          }\n",
       "        }\n",
       "      ],\n",
       "      &quot;elevationScale&quot;: 0.01,\n",
       "      &quot;getElevation&quot;: &quot;@@=FundingAmo&quot;,\n",
       "      &quot;getFillColor&quot;: [\n",
       "        256,\n",
       "        256,\n",
       "        0,\n",
       "        140\n",
       "      ],\n",
       "      &quot;getPosition&quot;: &quot;@@=[Long, Lat]&quot;,\n",
       "      &quot;id&quot;: &quot;960eb758-8baa-4d77-9753-bb33170eb19e&quot;,\n",
       "      &quot;pickable&quot;: true,\n",
       "      &quot;radius&quot;: 10000\n",
       "    }\n",
       "  ],\n",
       "  &quot;mapProvider&quot;: &quot;carto&quot;,\n",
       "  &quot;mapStyle&quot;: &quot;https://basemaps.cartocdn.com/gl/positron-gl-style/style.json&quot;,\n",
       "  &quot;views&quot;: [\n",
       "    {\n",
       "      &quot;@@type&quot;: &quot;MapView&quot;,\n",
       "      &quot;controller&quot;: true\n",
       "    }\n",
       "  ]\n",
       "};\n",
       "    const tooltip = true;\n",
       "    const customLibraries = null;\n",
       "    const configuration = null;\n",
       "\n",
       "    const deckInstance = createDeck({\n",
       "                  container,\n",
       "      jsonInput,\n",
       "      tooltip,\n",
       "      customLibraries,\n",
       "      configuration\n",
       "    });\n",
       "\n",
       "  &lt;/script&gt;\n",
       "&lt;/html&gt;\"\n",
       "        ></iframe>\n",
       "    "
      ],
      "text/plain": [
       "{\n",
       "  \"initialViewState\": {\n",
       "    \"bearing\": 0,\n",
       "    \"latitude\": 35,\n",
       "    \"longitude\": -100,\n",
       "    \"maxZoom\": 16,\n",
       "    \"pitch\": 45,\n",
       "    \"zoom\": 4\n",
       "  },\n",
       "  \"layers\": [\n",
       "    {\n",
       "      \"@@type\": \"ColumnLayer\",\n",
       "      \"autoHighlight\": true,\n",
       "      \"data\": [\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1921647.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 13.25903352,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": 144.7044242,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 451,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Enhance 100 acres of low-value habitat to reduce hazardous wildfire fuel loads, thin acacia nurse trees, underplant native vegetation, and continue a community-backed restoration and resilience project in the village of Malesso, Guam. The project will im\",\n",
       "          \"ProjectID\": \"77922\",\n",
       "          \"ProjectTit\": \"Integrated Habitat Enhancement Initiative to Benefit Native Species and Local Communities (GU)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                144.704424200199,\n",
       "                13.2590335202125\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1726724.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 13.4383809,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": 144.7452232,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 981,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Guam's Integrated Habitat Enhancement Initiative\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                144.745223200155,\n",
       "                13.4383808999625\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Office of Insular Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 167815.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 13.58240386,\n",
       "          \"LatLongTyp\": \"Micronesia region, Guam\",\n",
       "          \"Long\": 144.7691572,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 308,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"initiate a pesticide program servicing the island\\u2019s ports of entry to mitigate the risk of coconut rhinoceros beetle (CRB) spreading through the Micronesia region\",\n",
       "          \"ProjectID\": \"410XX06GU0122\",\n",
       "          \"ProjectTit\": \"Guam Coconut Rhinoceros Beetle Pesticide Tree Injection Program\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                144.769157200221,\n",
       "                13.5824038601938\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Defense and the Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 1006283.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 13.39006738,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": 144.71632639,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1439,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Eradicate little fire ants within priority sites on Guam where treatment will support military mission, protect at-risk species, address community concerns, and protect local industry, including subsistence and small scale agriculture. Project will apply\",\n",
       "          \"ProjectID\": \"81258\",\n",
       "          \"ProjectTit\": \"Eradicating Little Fire Ants within the proposed Guahan Sentinel Landscape in Guam\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                144.716326393522,\n",
       "                13.3900673801393\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 1096740.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 13.40183988,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": 144.752712,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1388,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Re-establish connectivity of intact native habitats previously degraded by anthropogenic disturbance including fires, clearing, and off roading allowing establishment of non native plants. Project will rely on thorough delineation, mapping, and plant ide\",\n",
       "          \"ProjectID\": \"80881\",\n",
       "          \"ProjectTit\": \"Restoring Degraded Forests and Badlands on Guam\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                144.752711999233,\n",
       "                13.4018398830745\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 750000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 13.36053531,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": 144.71075455,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1435,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Collaborate with partners to utilize existing trapping technology, veterinary management techniques, and other eradication methods to remove invasive and feral species from forested ecosystems and nearby communities. Project will improve the success of o\",\n",
       "          \"ProjectID\": \"81065\",\n",
       "          \"ProjectTit\": \"Improving Ecosystem and Community Health and Food Security through Invasive Species Removal in Guam\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                144.710754545361,\n",
       "                13.3605353128814\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 587648.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 15.01421915,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": 145.63102837,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1438,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Develop Indigenous methodologies and capacity to effectively navigate the threats to biodiversity and advance restoration efforts in the Mariana Islands. Project will inform the development of a field school, internship program, and graduate fellowship r\",\n",
       "          \"ProjectID\": \"81218\",\n",
       "          \"ProjectTit\": \"Developing Conservation Professionals Grounded in Indigenous Knowledge (GU; MP)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"3\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                145.631028365067,\n",
       "                15.0142191516882\n",
       "              ],\n",
       "              [\n",
       "                144.809036477142,\n",
       "                13.4404568186108\n",
       "              ],\n",
       "              [\n",
       "                145.213360187925,\n",
       "                14.1569776662807\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Office of Insular Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 130623.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 15.4979918,\n",
       "          \"LatLongTyp\": \"Northern Mariana Islands\",\n",
       "          \"Long\": 145.6097353,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 310,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"continue the eradication of the mucuna pruriens in the Northern Mariana Islands\",\n",
       "          \"ProjectID\": \"410XX06MH0322\",\n",
       "          \"ProjectTit\": \"CNMI Mucuna Pruriens Eradication Project \\u2013 Year 2\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                145.609735299647,\n",
       "                15.4979918003337\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 245015.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 28.6306572,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -81.9322586,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 905,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Collaborative Planning to Refine Conservation Land Acquisition Project Boundaries for Florida Forever\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -81.9322586000466,\n",
       "                28.6306571997579\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 28.55196574,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -81.68441996,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 728,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The 16-acre Tower Chemical Co.\\u00a0Superfund\\u00a0site is located about 5-miles east of Clermont, Florida. From 1957 to 1980, Tower Chemical Company operated a manufacturing facility on site. The facility\\u2019s waste disposal practices left contamination on site.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"TOWER CHEMICAL CO.\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -81.6844199600799,\n",
       "                28.5519657402804\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 600000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 30.56094,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -84.84485,\n",
       "          \"Notes\": \"Partners involved/Community support: Private landowner, Golden Triangle Resource Conservation & Development Council, Panama City PFW, Florida Fish and Wildlife Conservation Commission, Florida Forestry Service, St. Johns River Water Management District\",\n",
       "          \"OBJECTID\": 1238,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"This project will remove an earthen dam located on private lands which are tributaries to the Apalachicola River that has five federally listed mussels and Gulf sturgeon, and weir dam on the Myakka River to benefit Florida manatee, and barrier on the Eco\",\n",
       "          \"ProjectID\": \"{4992bd55-bd45-40c1-841a-b931c7f57e5e}\",\n",
       "          \"ProjectTit\": \"Dam Removal and Stream Restoration in Florida\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/dam-removal-and-stream-restoration-florida\",\n",
       "          \"SiteCount\": \"3\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -84.8448499997154,\n",
       "                30.5609399997239\n",
       "              ],\n",
       "              [\n",
       "                -82.3545199997802,\n",
       "                27.18684999992\n",
       "              ],\n",
       "              [\n",
       "                -81.1683000003982,\n",
       "                28.7182999997942\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1089422.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 29.91958757,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -89.86269764,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 431,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Complete the design phase for the Central Wetlands Restoration Project to alleviate impoundment and increase freshwater and sediment input, allow for planting of native vegetation, and identify opportunities for partner restoration activities on nearly 1\",\n",
       "          \"ProjectID\": \"77485\",\n",
       "          \"ProjectTit\": \"Designing Central Wetlands Hydrologic and Habitat Restoration (LA)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -89.8626976400475,\n",
       "                29.9195875697762\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"Department-Wide Programs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 29.81,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -90.133,\n",
       "          \"Notes\": \"This project's exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 10 wells\",\n",
       "          \"OBJECTID\": 1327,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Orphaned Well Site Plugging, Remediation, And Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 029||Jean Lafitte Na]\",\n",
       "          \"ProjectTit\": \"Jean Lafitte National Historic Park\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.1330000002684,\n",
       "                29.8100000001297\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"<Null>\",\n",
       "          \"FundingAmo\": 5000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 29.8832053518637,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": 29.8832053518637,\n",
       "          \"Notes\": \"$5 million for Planning Grants awarded over multiple years\",\n",
       "          \"OBJECTID\": 1247,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Community Relocation\",\n",
       "          \"ProjectDes\": \"Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Community Driven Relocation Demonstration Project - Chitimacha Tribe of Louisiana\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -91.5248059993429,\n",
       "                29.8832053518637\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Forest Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 250000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 30.37638809,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -82.46498266,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1423,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Complete 500 acres of mechanical forest understory fuels reduction and soil stabilization along 4 miles of road as part of the U.S. Forest Service\\u2019s Osceola National Forest Watershed Restoration Action Plan. Project will restore forest health and hydro\",\n",
       "          \"ProjectID\": \"80685\",\n",
       "          \"ProjectTit\": \"Osceola National Forest Watershed Restoration (FL)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -82.4649826556222,\n",
       "                30.376388089853\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 31.5265,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -84.137,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 644,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"Flow at Radium Springs is not consistent and is highly dependent on water levels in the Floridan Aquifer. This is based on rainfall and pumping in the surrounding spring shed, which includes agricultural, municipal, and industrial wells. At the peak reco\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Radium Springs Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -84.1370000002366,\n",
       "                31.5265000001659\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 31.3442,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -84.0358,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 677,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"Frequent flooding within the Whitewater Creek watershed in Macon County, Georgia, has resulted in severe bank erosion, loss of prime farmland and damage to county roads and infrastructure.  The Whitewater Creek Watershed Plan will identify measures that\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Whitewater Creek Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -84.0357999999517,\n",
       "                31.3441999999943\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 31.2469,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -84.2445,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 530,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"Frequent flooding and channel obstructions within the Big Slough watershed in Mitchell County, Georgia, has resulted in severe bank erosion, loss of prime farmland and damage to county roads and infrastructure.  The Big Slough Watershed Plan will identif\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Big Slough Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -84.2444999996952,\n",
       "                31.2468999999681\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 31.5478,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -84.7209,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 556,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"Water demand from industry and agricultural irrigation puts stress on Floridan Aquifer and surface water levels, particularly in drought years, threatening the watershed, agricultural water supply, and aquatic and wildlife habitat in the Ichawaynochaway\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Claiborne Aquifer Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -84.7208999995702,\n",
       "                31.5478000002197\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 30.40421242,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -87.2361514,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 729,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The 18-acre American Creosote Works Inc. (Pensacola Plant)\\u00a0Superfund\\u00a0site is located on 701 J Street in Pensacola, Florida. It includes the area where a wood-treating facility operated from 1902 to 1981.\\u00a0 Several businesses are located north of the si\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"AMERICAN CREOSOTE WORKS, INC. (PENSACOLA PLANT)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -87.236151399884,\n",
       "                30.404212420245\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 30.45513276,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -87.23382522,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 730,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Escambia Wood (Pensacola)\\u00a0Superfund\\u00a0site is located at 3910 North Palafox Street in Pensacola, Florida. The Site is located in a mixed industrial and residential area, bordered on the north by former residential neighborhoods, on the west by Palafo\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"ESCAMBIA WOOD - PENSACOLA\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -87.2338252196422,\n",
       "                30.4551327600591\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 30.36910383,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -88.4955662,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 764,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Mississippi Phosphates Corporation (MPC) manufactured Diammonium Phosphate (DAP) fertilizer at its Pascagoula facility from the late 1950\\u2019s thru December 2014 when it declared bankruptcy.\\u00a0 Pursuant to a July 2015 bankruptcy settlement, two trusts\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"MISSISSIPPI PHOSPHATES CORPORATION\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -88.4955661995829,\n",
       "                30.3691038303865\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"Department-Wide Programs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 30.44,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -91.646,\n",
       "          \"Notes\": \"This project's exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 9 wells\",\n",
       "          \"OBJECTID\": 1276,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Orphaned Well Site Plugging, Remediation, And Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 014||Atchafalaya Nat]\",\n",
       "          \"ProjectTit\": \"Atchafalaya National Wildlife Refuge\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -91.6459999996375,\n",
       "                30.439999999618\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 30.5244,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -91.19587,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 528,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bFunds would be used to perform a feasibility report for a watershed project that would stabilize a ravine which is a subset of the Bayou Baton Rouge. This major drainage outfall for the watershed is a 45-feet deep ravine situated in the central Southe\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Bayou Baton Rouge\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -91.1958699995547,\n",
       "                30.5243999998069\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 31.40179,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -89.3464,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 571,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"The underserved community of Rawls Springs in Forrest County is constantly impacted by flooding after heavy rains, impacting the well being of residents and businesses. Funds will be used to explore options that would alleviate drainage issues and elimin\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Forest County\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -89.346399999891,\n",
       "                31.4017900001459\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 31.00411,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -87.53271,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 640,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"Reaffirming Feasibility of the Supplemental Watershed and Environmental Assessment for Pine Barren Creek Watershed. Funds will be used for planning, design and construction.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Pine Barren Creek Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -87.5327100004017,\n",
       "                31.0041099998074\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 5515463.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.24108844,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -90.39872905,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 423,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Improve resilience of 90,000 acres of fire-dependent habitats including piney woods, blackland prairie, and loess bluffs ecosystems through restoration, habitat management, invasive plant species control, revegetation, cost-sharing, outreach and training\",\n",
       "          \"ProjectID\": \"77148\",\n",
       "          \"ProjectTit\": \"Enhancing Fire-Dependent Plant Communities in the East Gulf Coastal Plain Habitats (AL, LA, MS)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.3987290499541,\n",
       "                32.2410884398892\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.29277662,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -90.14331921,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 763,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The 6-acre Sonford Products\\u00a0Superfund\\u00a0Site is in Flowood, Mississippi. It is bordered by railroad tracks to the west, a residential area further west, and wooded areas on the north, south, and east.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"SONFORD PRODUCTS\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.1433192102451,\n",
       "                32.2927766202012\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.61788235,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -90.0168814,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 762,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Southeastern Wood Preserving\\u00a0Superfund\\u00a0site is located in Canton, Mississippi. Several wood-treating companies conducted wood-treating operations from 1928 and 1979. The companies used coal tar, creosote and pentachlorophenol as wood preservatives.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"SOUTHEASTERN WOOD PRESERVING\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.0168813995823,\n",
       "                32.617882349653\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.51,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -90.048,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 594,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"BIL WFPO funds will be used to implement construction plans for flood mitigation and address streambank erosion. High stream velocities contribute to streambank erosion, which causes downstream impediments such as sediment and debris deposition and ultim\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Madison County - Upper Bear Creek Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.0480000004249,\n",
       "                32.5099999997696\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.6,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -90.048,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 595,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist with flooding and streambank erosion.  High stream velocities contribute to streambank erosion, which causes downstream im\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Madison County Upper Bear Creek\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.0480000004249,\n",
       "                32.6000000002564\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.627469,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -90.399636,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 460,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"The Bentonia Creek Watershed, Structure No. 7 is a floodwater retarding structure dam. The site was originally designed to accumulate and store 215 ac-ft. of sediment. The dam is 1971 feet long and 23 feet tall earthen embankment with a drainage area of\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Bentonia Creek WS STR No. 7\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.3996359998447,\n",
       "                32.6274690000203\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.4122,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -90.1985,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 578,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"Hinds County is currently having major drainage problems throughout the County (including within municipalities). Storm events occurring in Hinds County have caused tributaries to flood surrounding areas resulting in flood waters entering residences and\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Hinds County\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.1984999998465,\n",
       "                32.4121999998046\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.96643,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -90.328764,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 473,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"The Eden Creek, Structure No. Y-37D-10 site was originally designed to accumulate and store 54 ac-ft. of sediment. The dam is 550 feet long and 47 feet tall earthen embankment with a drainage area of approximately 0.4937 square miles. The principal spill\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Eden Creek WS STR Y-37D-10\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.3287640003074,\n",
       "                32.9664299999574\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.78,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -90.048,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 579,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist with flooding along Gourdvine Creek and Black Creek.  \\u200bHistoric flooding impacts have been to both agricultural land and\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Holmes County\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.0480000004249,\n",
       "                32.7800000002972\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.3899,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -88.717,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 542,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist with flooding along the Lower Tillatoba Creek.  \\u200bThe city of Charleston has severe streambank erosion issues that has be\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"City of Charleston\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -88.7169999999385,\n",
       "                32.3898999998756\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.3899,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -88.717,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 588,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist with flooding, recreation, irrigation, and habitat enhancements.  The Long Creek Dam is currently breached, which has redu\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Long Creek Reservoir\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -88.7169999999385,\n",
       "                32.3898999998756\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.3858,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -83.9825,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 529,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"Frequent flooding within the Beaver Creek watershed in Macon County, Georgia, has resulted in severe bank erosion, loss of prime farmland and damage to county roads and infrastructure.  The Beaver Creek watershed plan will identify measures that will pro\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Beaver Creek Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -83.9824999995859,\n",
       "                32.3857999997719\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1046017.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.35148172,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -84.45369666,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 437,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Prescribe burn 20,000 acres of private land and 5,000 acres of public land, identify historically underserved communities to assist with prescribed burning and wildfire mitigation, complete at least 10 stewardship management plans per year, and support a\",\n",
       "          \"ProjectID\": \"77565\",\n",
       "          \"ProjectTit\": \"Habitat Management, Wildfire Mitigation, and Engaging Communities in the Georgia Sentinel Landscape\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -84.4536966599929,\n",
       "                32.3514817197629\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 523009.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.6490936,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -83.4459686,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1161,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"The Georgia Sentinel Landscape Futures Initiative\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -83.4459685999686,\n",
       "                32.6490935999625\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.3892,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -80.6975,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 611,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"BIL WFPO funds will be used to conduct a feasility report on water quality management that would create a regional stormwater BMP plan for stormwater treatment detention while enhancing recreational opportunites and providing eductional components to the\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Battery Creek Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.6975000000881,\n",
       "                32.3892000002849\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.0255,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -76.6988,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 606,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"Neuse River Basin (Town of Oriental) - The proposed project would repair a seawall (Hodges St. Bulkhead), road, connection between watershed from town (Duck Pond) and Neuse River, alleviate recurring flooding, alleviate recurring access issues, and repai\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Neuse River Basin\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -76.6988000004031,\n",
       "                35.0255000000506\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 7145464.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.29621968,\n",
       "          \"LatLongTyp\": \"Cape Fear, NC\",\n",
       "          \"Long\": -77.97149131,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 709,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"American Rivers will restore priority habitat in the Cape Fear watershed for several migratory fish species, including American shad, river herring, striped bass, Atlantic sturgeon, and American eel. Three dams upstream of a series of U.S. Army Corps of\",\n",
       "          \"ProjectID\": \"NOAA_027\",\n",
       "          \"ProjectTit\": \"Restore habitat in the Cape Fear watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.9714913098082,\n",
       "                34.296219680102\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.401,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -79.383,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 597,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bBIL WFPO funds will be used to plan, design, and construct a system to reduce and/or prevent localized flooding within the watershed near Dillon, South Carolina.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Maple Swamp Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -79.3829999996188,\n",
       "                34.4009999999834\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.57322,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -78.97364,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 527,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"Back and Jacob Swamp Watersheds (Robeson County Drainage District 1) - The project would help restore crucial drainage by replacing failing culverts, clearing and repairing ditch banks, restoring travel ways, and removing sediment. The project falls with\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Back and Jacob Swamp Watersheds\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -78.9736400000781,\n",
       "                34.5732200003161\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.65072,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -79.0114,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 600,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"Meadow Branch Channel Watershed (Robeson County Drainage District 4) - The project would help restore crucial drainage by replacing failing culverts, clearing and repairing ditch banks, restoring travel ways, and removing sediment. The project falls with\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Meadow Branch Channel Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -79.0114000003265,\n",
       "                34.6507199997566\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.6674,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -79.1528,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 604,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"Moss Neck Channel Watershed (Robeson County Drainage District 2) - The project would help restore crucial drainage by replacing failing culverts, clearing and repairing ditch banks, restoring travel ways, and removing sediment. The project falls within t\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Moss Neck Channel Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -79.1528000003429,\n",
       "                34.6673999997216\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 1691922.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.66609881,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -77.80598301,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1408,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Establish Atlantic white cedar forest and adapted peatland plant species, including bald cypress and button bush, and accomplish hydrologic restoration in a pocosin-peatland environment at Angola Bay Game Land. Project will impact 1,383 acres of recently\",\n",
       "          \"ProjectID\": \"81233\",\n",
       "          \"ProjectTit\": \"Establishing Peatland Atlantic White Cedar Forest on Game Lands in North Carolina\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.8059830078144,\n",
       "                34.6660988057773\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.74134318,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -77.36625609,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 767,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The ABC One-Hour Cleaners Superfund Site (the Site) is located at 2127 Lejeune Boulevard in Jacksonville, Onslow County, North Carolina within the County\\u2019s commercial retail district. The one-acre Site is located approximately two miles southeast of Ca\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"ABC ONE HOUR CLEANERS\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.3662560898131,\n",
       "                34.7413431800361\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 651816.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.27445401,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -77.15797632,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 454,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Create a pipeline of tidal wetland migration pathway projects in areas served by National Estuarine Research Reserves (NERRS) in the Northeast, Mid-Atlantic and Southeast of the U.S. In cooperation with communities and local partners, project will identi\",\n",
       "          \"ProjectID\": \"78114\",\n",
       "          \"ProjectTit\": \"Wetland Migration Pathway Planning, Prioritization, and Community Engagement (FL, MA, NC, NJ, RI, SC)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.157976320163,\n",
       "                35.2744540097099\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.533,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -79.134,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 648,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200b\\u200b\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding on Sandy Island.  Recent flooding has threatened infrastructure, notably homes, businesses, and transportation rou\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Sandy Island - Georgetown County, SC\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -79.1339999996864,\n",
       "                35.5330000002914\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 309000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.54502617,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -79.40562797,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 453,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Create an interagency planning collaboration to conserve rare and culturally significant species within the greater Eastern Band of Cherokee Indians ancestral landscape in North Carolina. Project will result in data management and modelling tools, includ\",\n",
       "          \"ProjectID\": \"78088\",\n",
       "          \"ProjectTit\": \"Advnisdisgi \\u13a0\\u13db\\u13c2\\u13cd\\u13d7\\u13cd\\u13a9: Interagency Conservation Planning for Culturally Significant Species (NC)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -79.405627969636,\n",
       "                35.5450261698332\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Defense and the Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 2500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.1869233,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -78.69697784,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1434,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Complete prescribed burns, mechanical and chemical treatments, and hand cutting to improve habitat for terrestrial and aquatic species on 42,290 acres of longleaf pine habitat, and perform road crossings and culverts surveys. Project will improve upland\",\n",
       "          \"ProjectID\": \"80999\",\n",
       "          \"ProjectTit\": \"Building Resiliency of Longleaf Pine Ecosystems in Southeastern Sentinel Landscapes (FL, GA, NC, SC)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -78.696977838937,\n",
       "                35.1869233003925\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.23188782,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -80.60206258,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 769,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Ram Leather Care\\u00a0Superfund\\u00a0site is located in Charlotte, North Carolina. It includes an area where the Ram Leather Care company restored leather goods and operated a dry-cleaning facility from 1977 to 1993.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"RAM LEATHER CARE SITE\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.6020625800614,\n",
       "                35.2318878200749\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.19704785,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -81.18807919,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 766,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The 15-acre Hemphill Road TCE\\u00a0Superfund\\u00a0Site is in South Gastonia, North Carolina. It is in a mixed residential, commercial, and industrial district in the southern part of Gaston County.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"HEMPHILL ROAD TCE\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -81.1880791898673,\n",
       "                35.1970478502887\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior and Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service and the Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 4807351.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.90268583,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -80.89631736,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1390,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Use a cultural approach to ecological restoration by engaging Catawba citizens in replacing two culverts, stabilizing streambanks, converting land to native prairie, and doubling the size of canebrake on Tribal lands. Project will renew the relationship\",\n",
       "          \"ProjectID\": \"79938\",\n",
       "          \"ProjectTit\": \"Manu Tatene Utk\\u00e9ware: Improving Terrestrial and Aquatic Ecosystems on Ancestral Lands (SC)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"2\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.8963173638964,\n",
       "                34.9026858292228\n",
       "              ],\n",
       "              [\n",
       "                -81.2944957923471,\n",
       "                34.8837155426143\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 860000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.800028,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -80.576639,\n",
       "          \"Notes\": \"Partners involved/Community support: Lancaster County Roads Program, Charleston Ecological Services, Charleston PFW, USFS, South Carolina DNR\",\n",
       "          \"OBJECTID\": 1237,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"These AOP projects are located on a tributaries to Lynches River and Saluda River, which is designated critical habitat for the endangered Carolina heelsplitter.  The road crossings are not designed for aquatic organism passage and currently are signific\",\n",
       "          \"ProjectID\": \"{c670e48d-20ee-4843-80be-166ce01218f3}\",\n",
       "          \"ProjectTit\": \"Culvert Replacements for Fish Passage in South Carolina\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/culvert-replacements-fish-passage-south-carolina\",\n",
       "          \"SiteCount\": \"3\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.5766389998794,\n",
       "                34.8000279997665\n",
       "              ],\n",
       "              [\n",
       "                -82.0053499997828,\n",
       "                34.0411449999276\n",
       "              ],\n",
       "              [\n",
       "                -82.084180000149,\n",
       "                33.9824399999455\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.931,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -79.931,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 533,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bBIL WFPO funds will be used to plan, design, and construct a system to reduce and/or prevent localized flooding, especially as the area is planning for growth. Horry County is experiencing unprecedented growth accelerating the need to provide flood pr\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Brunson Springs Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -79.9310000000256,\n",
       "                33.9309999996652\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.226,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -79.128,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 572,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bBIL WFPO funds will be used to plan, design, and construct a system to reduce and/or prevent localized flooding, especially as the area is planning for growth. Horry County is experiencing unprecedented growth accelerating the need to provide flood pr\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Gapway Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -79.1280000000885,\n",
       "                34.2259999998164\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.103,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -79.071,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 536,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bBIL WFPO funds will be used to plan, design, and construct a system to reduce and/or prevent localized flooding, especially as the area is planning for growth. Horry County is experiencing unprecedented growth accelerating the need to provide flood pr\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Cartwheel Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -79.0709999998658,\n",
       "                34.1029999998087\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.916,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -78.7126,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 534,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the the Buck Creek Watershed.  Changes within the primarily agricultural watershed are a concern regarding recent flood eve\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Buck Creek - Horry County, SC\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -78.7125999998686,\n",
       "                33.9160000000232\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.906,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -78.783,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 650,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bBIL WFPO funds will be used to plan, design, and construct a system to reduce and/or prevent localized flooding, especially as the area is planning for growth. Horry County is experiencing unprecedented growth accelerating the need to provide flood pr\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Simpson Creek Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -78.7830000003012,\n",
       "                33.9060000000827\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.839,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -79.048,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 558,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bBIL WFPO funds will be used to plan, design, and construct a system to reduce and/or prevent localized flooding, especially as the area is planning for growth. Horry County is experiencing unprecedented growth accelerating the need to provide flood pr\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Crabtree Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -79.0479999997603,\n",
       "                33.8389999997869\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.694,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -78.991,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 652,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bBIL WFPO funds will be used to plan, design, and construct a system to reduce and/or prevent localized flooding, especially as the area is planning for growth. Horry County is experiencing unprecedented growth accelerating the need to provide flood pr\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Socastee Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -78.9910000004359,\n",
       "                33.6940000000574\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.694,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -78.991,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 643,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bBIL WFPO funds will be used to plan, design, and construct a system to reduce and/or prevent localized flooding, especially as the area is planning for growth. Horry County is experiencing unprecedented growth accelerating the need to provide flood pr\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Raccoon Run Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -78.9910000004359,\n",
       "                33.6940000000574\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.53,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -79.134,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 647,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bFlooding often occurs on Sandy Island, located in Georgetown County, South Carolina. The Waccamaw River is part of the Atlantic Intracoastal Waterway and during flood events it threatens the watershed infrastructure and impacts local homes and busines\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Sandy Island\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -79.1339999996864,\n",
       "                33.530000000274\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 293400.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.05128489,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -83.9475546,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1441,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Enhance and expand the conservation resources available to small and minority landowners across forestlands in Georgia that correspond to Gopher Tortoise and Northern Bobwhite Working Land for Wildlife initiative ranges. Project will increase forest mana\",\n",
       "          \"ProjectID\": \"81253\",\n",
       "          \"ProjectTit\": \"Expanding Forest Landowner Technical Assistance in Georgia\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"M\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -83.9475546007858,\n",
       "                33.0512848877408\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.41996904,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -82.02185183,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 733,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The 350-acre Peach Orchard Road PCE Groundwater Plume\\u00a0Superfund\\u00a0site is located in Augusta, Georgia. It includes an area of groundwater contamination in a City of Augusta Utilities Department well field in the southern part of Augusta. The site is loca\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PEACH ORCHARD RD PCE GROUNDWATER PLUME SITE\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -82.0218518296682,\n",
       "                33.4199690398421\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.2267,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -84.3931,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 494,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"The Mill-Canton Creek Watershed Structure No. 7 was constructed in 1962.  Since completion of the structure, the drainage area and breach zone has been urbanized.  Currently, the structure does not meet criteria for a high hazard potential dam.  Therefor\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Mill-Canton Creek 7\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -84.3931000003071,\n",
       "                34.2267000000798\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1125000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.780903,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -86.362785,\n",
       "          \"Notes\": \"Partners involved/Community support: St. Clair Transportation Department, Alabama DEM, Alabama Rivers Network, Geological Survey of Alabama, Daphne Ecological Service, Daphne PFW, NFWF\",\n",
       "          \"OBJECTID\": 1243,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"This project will further the growing efforts within St. Clair County of replacing inadequately designed road crossings with appropriately sized bottomless culverts or bridges to facilitate unimpeded aquatic organism movement.  This project will replace\",\n",
       "          \"ProjectID\": \"{f08d4454-66ff-48c1-86f4-9e13fcf5fc0e}\",\n",
       "          \"ProjectTit\": \"Trispot Darter Culvert Replacements\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/trispot-darter-culvert-replacements\",\n",
       "          \"SiteCount\": \"3\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -86.3627850000991,\n",
       "                33.7809029999079\n",
       "              ],\n",
       "              [\n",
       "                -86.3848000001906,\n",
       "                33.7345350001561\n",
       "              ],\n",
       "              [\n",
       "                -86.3539400000638,\n",
       "                33.7564539998352\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.1296,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -88.1514,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 531,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"The City of Aliceville is requesting bIL WFPO funds to conduct a feasibility report on a proposed project that would reduce the nuisance of flooding throughout the town that adversely affects commerce, homes, access, and disrupts thea bility of first rep\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Blubber Creek Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -88.1513999998727,\n",
       "                33.1296000002863\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.09711,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -90.048087,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 464,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Black Creek Watershed, Structure No. 100 site was originally designed to accumulate and store 122 ac-ft. of sediment. The dam site is located on Yazoo Creek, an upstream tributary of the Black Creek. The dam is 940 feet long and 34 feet tall earthen emba\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Black Creek WS Dam No.100\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.0480869995652,\n",
       "                33.0971100001991\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.1096,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -91.2621,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 547,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bThe Arkansas Black Mayors Association and City of Eudora, AR request assistance with conducting a PIFR, Planning, Design, and Construction for a potential watershed project for Camp Bayou Canal-Boeuf River, Caney Bayou, Grand Lake-Bayou Macon, and Tig\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"City of Eudora\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -91.2620999997771,\n",
       "                33.1095999996559\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.0634,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -91.5709,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 555,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bThe Arkansas Black Mayors Association and City of Wilmot, AR request assistance with conducting a PIFR, Planning, Design, and Construction for a potential watershed project for Camp Bayou & Overflow Creek watersheds in Ashley County, AR. Flooding from\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"City of Wilmot\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -91.5709000001637,\n",
       "                33.0634000002807\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.3556,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -91.85111,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 548,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bThe Arkansas Black Mayors Association and City of Fountain Hill, AR request assistance with conducting a PIFR for a potential watershed project for Snake River - Saline River watershed in Ashley County, AR. Flooding from heavy rainstorm events has dam\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"City of Fountain Hill\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -91.8511100000273,\n",
       "                33.3555999998213\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.91713,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -89.997123,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 458,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Ascalmore Creek Watershed, Structure No. Y-17A-1 site was originally designed to accumulate and store 762 ac-ft. of sediment. The dam is 1725 feet long and 36 feet tall earthen embankment with a drainage area of approximately 10.48 square miles. The prin\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Ascalmore Creek Str Y-17A-1\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -89.9971229998239,\n",
       "                33.9171300002959\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.907441,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -89.930314,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 513,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Tillatoba Creek Watershed FWRS Y-17B-1 site was designed and constructed as a class (a) low hazard site, meaning that failure may damage farm buildings, agricultural land, or township and county roads. The dam was planned and built with flood prevention\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Tillatoba Creek Str Y-17B-1\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -89.9303140003665,\n",
       "                33.9074410000437\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.909397,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -90.044511,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 459,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Ascalmore Creek Watershed, Structure No. Y-17A-2 site was originally designed to accumulate and store 256 ac-ft. of sediment. The dam is 985 feet long and 39 feet tall earthen embankment with a drainage area of approximately 5.99 square miles. The princi\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Ascalmore Creek Str Y-17A-2\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.0445109995569,\n",
       "                33.9093970001344\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.8832,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -91.48384,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 545,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bThe City of Dumas requests assistance to conduct a PIFR, Planning, Design, and Construction for a possible PL-566 project in four 12-digit HUC sub-watersheds located within the Canal No. 19-Canal No. 18, Headwaters Boeuf River, Canal No. 81, and Clay\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"City of Dumas\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -91.4838399998804,\n",
       "                33.8831999996486\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.999,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -90.1363,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 660,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist with flooding.  There is about 25,000 acres of cropland and two community housing development projects needing relief from\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Tillatoba Levee\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.1363000000921,\n",
       "                33.9990000003206\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.109204,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -90.068737,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 467,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Buntyn Creek Watershed FWRS Y-16A-2 was planned and built with flood prevention being the primary purpose for the structure. The dam is a 32 foot tall (maximum height) earthen embankment with a drainage area of 0.65 square miles. The permanent pool (sedi\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Buntyn Creek Str 16 A-2\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.0687369997011,\n",
       "                34.109203999866\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.109204,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -90.068737,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 468,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Buntyn Creek STR 16A-2 dam was planned and built with flood prevention being the primary purpose for the structure. Current assessment of the dam requires rehabilitation to bring the dam into compliance with NRCS and Mississippi dam safety criteria and p\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Buntyn Creek Str 16A-2\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.0687369997011,\n",
       "                34.109203999866\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.100924,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -90.063643,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 469,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"The Buntyn Creek Watershed FWRS No. Y-16A-1 was planned and built with flood prevention being the primary purpose for the structure. The dam is a 43 foot tall (maximum height) earthen embankment with a drainage area of 3.23 square miles. The permanent po\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Buntyn Creek Str Y-16A-1\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.0636429995762,\n",
       "                34.1009239999903\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.1031,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -90.1207,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 582,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist with flooding and drainage.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Hubbard creek\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.1206999997002,\n",
       "                34.1030999998987\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.025,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -90.0,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 543,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"Flooding along the Lower Tillatoba Creek has impacted the city of Charleston, created severe streambank erosion issues that has become a safety issue in minority subdivisions and areas in which children must cross every day to go to school. Funds will b\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"City of Charleston\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.0000000000483,\n",
       "                34.0249999998806\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.008764,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -90.00474,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 495,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"The North Tillatoba-Hunter Creek Watershed, Structure No. Y-17C-6B is a floodwater retarding structure dam. The site was originally designed to accumulate and store 326 ac-ft. of sediment. The dam is 1850 feet long and 35 feet tall earthen embankment wit\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"N. Tillatoba- Hunter Creek WS Y-17C-6B\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.0047400001708,\n",
       "                34.008763999805\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.182,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -89.6426,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 681,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"There is substantial streambank erosion along the Johnson Creek/Otoucalofa Creek watershed located  in the limited resource area of Yalobusha County. Funding is needed to explore best methods to stabilize the river banks to prevent future flooding.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yalobusha County\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -89.6426000001338,\n",
       "                34.1819999997188\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.4243,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -90.70645,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 589,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"Little Bee Bayou is located in Phillips County, Arkansas. Restoration work is being planned to restore the watershed that is currently impairing access to and from Lake Bayou due to rising sediment and vegetation. The plan will address flood prevention,\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Long Lake Bayou - Little Bee Bayou Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.7064500003097,\n",
       "                34.4242999997704\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.3193,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -91.84736,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 539,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bThe Arkansas Black Mayors Association and City of Altheimer, AR request assistance with conducting a PIFR, Planning, Design, and Construction for a potential watershed project for Little Bayou Meto watershed in Jefferson County, AR. Flooding from heav\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"City of Altheimer\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -91.8473599999417,\n",
       "                34.3192999996302\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.5154,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -90.76,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 587,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"Lick Creek serves the local Durham, Arkansas community and is listed as an impaired stream that threatens local water resource. Funds will be used to implement conservation practices that restore the watershed, improve water quality, and implement ag-wat\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Lick Creek - Big Creek Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.7600000000224,\n",
       "                34.5154000000201\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.04462137,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -89.68550263,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 818,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The 9-acre Smalley-Piper\\u00a0Superfund\\u00a0site is in Collierville, Tennessee.\\u00a0Commercial and industrial land uses border the site. Residential areas, including single-family homes and a mobile home park, are located \\u00bc mile southeast of the site. Groundwater\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"SMALLEY-PIPER\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -89.6855026299066,\n",
       "                35.0446213701238\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.04172756,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -89.6531072,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 819,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"Walker Machine manufactured precision fabricated metal products from the mid-1960s until about 2002. Cutting oils and chlorinated solvents (including tetrachloroethene (PCE), trichloroethene (TCE), and mineral spirits) were used in the operations. The us\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"WALKER MACHINE PRODUCTS, INC.\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -89.6531071996517,\n",
       "                35.0417275596561\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.11509354,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -89.94472776,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 817,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The .62-acre Former Custom Cleaners (FCC)\\u00a0Superfund\\u00a0site is located at 3517 Southern Avenue in Memphis, Tennessee. \\u00a0The site is bordered to the north by Southern Avenue, to the east by Minor Road, to the south by Spotswood Avenue and to the west by So\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"FORMER CUSTOM CLEANERS\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -89.9447277601544,\n",
       "                35.115093539774\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.95047,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -90.47252,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 550,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"The Arkansas Black Mayors Association's (ABMA) and city of Hughes and Jennette would like to request assistance with conducting a Preliminary Investigation and Feasibility Report (PIFR), Planning, Design, and Construction approval for the for a watershed\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"City of Hughes and Jennette\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.4725200001414,\n",
       "                34.9504700002061\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.0025,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -90.8161,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 537,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bThe Cities of Forrest City, Haynes, and Marianna collectively request assistance to conduct a PIFR, Planning, Design, and Construction for a PL-566 project in the Larkin Creek \\u2013 L\\u2019Anguille River Watershed . These cities are experiencing flooding t\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Cities of Forrest City-Haynes-Marianna\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.8160999997214,\n",
       "                35.0025000002324\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.01361,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -90.72694,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 551,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bThe City of Madison, Arkansas Black Mayors Association, and East Arkansas Enterprise Community request assistance with conducting a PIFR, Planning, Design, and Construction for a potential watershed project for L\\u2019Anguille River \\u2013 St. Francis River\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"City of Madison\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.7269399997136,\n",
       "                35.0136099996371\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.0054,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -91.2522,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 544,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bThe City of Cotton Plant requests assistance to conduct a Preliminary Investigation and Feasibility Report for a watershed project in the Buffalo Creek - Bayou DeView Watershed. The City of Cotton Plant is experiencing flooding that impacts safety, co\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"City of Cotton Plant\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -91.2522000003058,\n",
       "                35.0053999999209\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.24389154,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -91.73620849,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1118,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Resilient Recreation Sites\",\n",
       "          \"ProjectDes\": \"The project incorporates better asset management practices by reducing costs, reduce infrastructure damage during frequent flood events, and allow the natural free flowing river process to occur in accordance with the park\\u2019s enabling legislation. Impro\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Restoring the Tyler Bend Boat Launch, Buffalo National River Park\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -91.7362084898888,\n",
       "                35.2438915400181\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.18844,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -90.88955,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 569,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with sedimentation from agricultural areas, streambank erosion, and other activities has reduced the capacity of streams within the watershe\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"First Creek \\u2013 L\\u2019Anguille River Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.8895499997325,\n",
       "                35.1884400002499\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.374,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -90.2706,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 554,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"The City of Turrell requests assistance to conduct a PIFR, Planning, Design, and Construction for a possible PL-566 project in the Big Creek Watershed. The City of Turrell is experiencing flooding that impacts safety, comfort, and quality of life. Over t\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"City of Turrell\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.2705999999705,\n",
       "                35.3740000000101\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.39186085,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -88.93231754,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 816,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Velsicol Chemical Corp. (Hardeman County)\\u00a0Superfund\\u00a0site is located in Toone, Tennessee. It includes an area where Velsicol Chemical Corporation operated a landfill from 1964 to 1973.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"VELSICOL CHEMICAL CORP. (HARDEMAN COUNTY)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -88.9323175398337,\n",
       "                35.3918608496895\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.1701,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -88.5923,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 599,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"Bil WFPO funds will be used to provide flood protection for the surrounding community  of McNairy County, Tennessee. Since 1976, a watershed restoration plan has been in place to restore the watershed and provide relief to the limited resource area as fu\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"McNairy Cypress Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -88.5922999999557,\n",
       "                35.170100000348\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.01466506,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -85.28557489,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 821,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Southside Chattanooga Lead Site is located in downtown Chattanooga, Tennessee. The site consists of residential neighborhoods and non-residential communal areas (parks, schools, playgrounds, child care centers), where soils have been impacted by lead\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"SOUTHSIDE CHATTANOOGA LEAD\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -85.2855748903018,\n",
       "                35.0146650602232\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.15079,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -86.64883,\n",
       "          \"Notes\": \"Partners involved/Community support: Tennessee Wildlife Resources Agency, Tennessee DEC, USACE, Tennessee Valley Authority, The Nature Conservancy, Cookeville Ecological Services\",\n",
       "          \"OBJECTID\": 145,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"This dam ranks out at #4 of more than 1500 dams in TN. The dam is the only major barrier on the mainstem of the river that separates 804 linear miles of streams below the dam from 780 miles upstream (total free flowing miles - 1,114. There are 46 species\",\n",
       "          \"ProjectID\": \"{18eb2880-d325-4c86-82b5-811cf130aa21}\",\n",
       "          \"ProjectTit\": \"Harm's Mill Dam Removal\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/harms-mill-dam-removal\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -86.6488299997042,\n",
       "                35.1507899998057\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 520297.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.70074934,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -85.8514617,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 428,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Develop a science-based status assessment and comprehensive conservation plan for the grasslands, savannas, and other open ecosystems of the Cumberland Plateau of Kentucky, Tennessee, Alabama, and Georgia. By working collaboratively with stakeholders, th\",\n",
       "          \"ProjectID\": \"77440\",\n",
       "          \"ProjectTit\": \"Status Assessment and Conservation Planning for Cumberland Plateau Grasslands (AL, GA, KY, TN)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -85.85146169998,\n",
       "                34.7007493396548\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.7503,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -84.6025,\n",
       "          \"Notes\": \"Project Lat/Long was incorrectly listed. Longitudes was positive. Lat/Long fields updated with negative longitude and manually moved to presumed correct location.\",\n",
       "          \"OBJECTID\": 635,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A feasibility study will be conducted to explore the viability of converingt a 90-acre lake to flood control and ag water management practices for Gilmer County, GA.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Rainbow Lake Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -84.6024999996593,\n",
       "                34.7502999999146\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.70652814,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -84.68666825,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1379,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Assess and prioritize 300 road crossings in high-priority watersheds, replace 10 crossings that cause significant barriers to small fish passage, and use environmental DNA methods to sample, fill life history knowledge gaps, and inform barrier prioritiza\",\n",
       "          \"ProjectID\": \"80803\",\n",
       "          \"ProjectTit\": \"Implementing Priority Recovery Actions for the Federally Threatened Trispot Darter in Georgia\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -84.6866682511778,\n",
       "                34.7065281398012\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.309377,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -84.100751,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 510,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Located in Forsyth County, Georgia, Settingdown Dam #54 is an earthen dam built in 1954 to provide flood control to the surrounding communities within the Coosa River Watershed.  Since completion of the structure, the drainage area and breach zone has be\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Settingdown Creek 54\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -84.1007510004322,\n",
       "                34.3093770002421\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.314769,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -84.070496,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 511,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Located in Forsyth County, Georgia, Settingdown Dam #56 is an earthen dam built to provide flood protection in the Coosa River Watershed in 1954 and modified in 1985. Since completion of the structure, the drainage area nad breach zone has been urbanized\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Settingdown Creek 56\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -84.0704960003778,\n",
       "                34.3147690003028\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 290730.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.48331997,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -83.31970924,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 844,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Advnisdisgi: A Cherokee Planning Project for Conservation Across Jurisdictions\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -83.319709239637,\n",
       "                35.4833199696762\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.91803375,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -83.9272597,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 815,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Smokey Mountain Smelters\\u00a0Superfund\\u00a0site is located in Knox County, Tennessee. The site is located at 1508 Maryville Pike in Knoxville, Tennessee, four miles south of downtown Knoxville in a mixed industrial, commercial and residential area. A low-i\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"SMOKEY MOUNTAIN SMELTERS\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -83.9272597001902,\n",
       "                35.9180337498239\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 1630000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.77715003,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -82.02753627,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1401,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Improve aquatic connectivity, habitat suitability through fish barrier removal, enhance freshwater mussel restoration efforts through production facility upgrades, improve public access with targeted access improvements, and update the long-term basin-wi\",\n",
       "          \"ProjectID\": \"80969\",\n",
       "          \"ProjectTit\": \"Aquatic Connectivity and Enhancing Mussel Restoration Capacity in the Upper Tennessee River (VA)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -82.0275362654799,\n",
       "                36.7771500298914\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.754,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -83.8491,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 584,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with \\u200bflooding issues in the Fighting Creek \\u2013 Cumberland River watershed near the KayJay community. This area has had repetitive flood d\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Kayjay, Fighting Creek \\u2013 Cumberland River\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -83.8491000002311,\n",
       "                36.7540000002715\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Park Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 150000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.514839,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -84.708095,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 281,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Remedial design includes development of engineering drawings and specifications for a site cleanup. Remedial action follows design, and involves the actual construction or implementation phase of site cleanup.\",\n",
       "          \"ProjectID\": \"100XX08KY1422\",\n",
       "          \"ProjectTit\": \"Develop Laurel Branch Spoils Removal Design BISO\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -84.7080950002853,\n",
       "                36.5148389997611\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.76657,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -85.46891,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 655,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bThe city if Spencer has requested assistance for a potential watershed plan for the purpose of serving the landowners with additional measures for livestock and potable water supply. The current water supply for the population has exceeded the demand\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Spencer City Lake Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -85.4689100003941,\n",
       "                35.7665700000727\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.78476416,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -89.11710624,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 820,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Alamo Contaminated Ground Water\\u00a0Superfund\\u00a0site is located Alamo, Tennessee, about 10 miles northwest of Jackson. It includes an area of contaminated groundwater potentially resulting from various operations in the community\\u2019s downtown business di\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"ALAMO CONTAMINATED GROUND WATER\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -89.1171062399383,\n",
       "                35.784764160157\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.93144,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -89.9182,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 540,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bThe City of Blytheville requests assistance to conduct a Preliminary Investigation and Feasibility Report a project within Pemiscot Bayou Watershed and the Tyronza River Watershed. The City of Blytheville is experiencing flooding that impacts safety,\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"City of Blytheville\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -89.9181999995712,\n",
       "                35.9314399999744\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.331,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -89.89,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 570,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding and soil erosion.  The project will reshape 148 miles of eroded channel sections and establish a maximum of 3,500 acres of nat\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Floodway Soil Erosion Reduction Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -89.8899999999339,\n",
       "                36.3310000001828\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.522,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -87.474,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 663,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bOn August 21, 2021, at 2:00am in the morning, a catastrophic flash flood fell upon Humphreys County and left 21 inches of rain in a single day. River levels rose to historic heights completely inundating the city of Waverly causing 21 fatalities. Wave\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Trace Creek Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -87.4740000004419,\n",
       "                36.5219999997835\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.522,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -87.474,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 661,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in Trace Creek watershed.  Recent fatal flooding, notably catastrophic flash flood on August 21, 2021, had devastated infra\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"TN Humphreys County Trace Creek Watershed Preliminary Investigation and Feasibility Report\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -87.4740000004419,\n",
       "                36.5219999997835\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.11,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -89.72,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 590,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding and stabilization in the Lower Caney Basin.  Areas of concern relate to managing agricultural drainage in the Mississippi D\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Lower Caney Restoration Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -89.720000000247,\n",
       "                37.1100000000253\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.093,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -89.82,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 524,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding and agricultural drainage in the Mississippi Delta region. Existing multipurpose structures are in need of upgrades including\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Agriculture Water Infrastructure Improvements\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -89.8200000004327,\n",
       "                37.0929999997297\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.48232921,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -90.3435084,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 751,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Madison County Mines Site includes all of Madison County and the portion of the historical \\u201cMine LaMotte Tract\\u201d that extends northward into southern St. Francois County, Missouri. Mining operations beginning in the early 1700s and ending in the m\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"MADISON COUNTY MINES\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.3435084003069,\n",
       "                37.4823292101504\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.81019264,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -90.47227458,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 754,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Big River Mine Tailings/St. Joe Minerals Corp. Site is located in a former mining region known as the \\\"Old Lead Belt,\\u201d which is 70 miles south of St. Louis.\\u00a0This site is composed of eight large areas of mine waste in this rural region, approximate\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"BIG RIVER MINE TAILINGS/ST. JOE MINERALS CORP.\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.4722745804058,\n",
       "                37.8101926396851\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.9252389,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -90.92344482,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 761,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Washington County Lead District \\u2013 Furnace Creek Site includes soil, groundwater, surface water, mine waste, and sediment contaminated with arsenic, barium, cadmium, and lead associated with historical mining practices in southeast Missouri. The Fur\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"WASHINGTON COUNTY LEAD DISTRICT - FURNACE CREEK\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.9234448197062,\n",
       "                37.9252389003263\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.95050252,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -90.72069577,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 757,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Washington County Lead District \\u2013 Potosi Site includes soil, groundwater, surface water and sediment contaminated with arsenic, barium, cadmium and lead associated with historical mining practices in southeast Missouri. The site encompasses about 4\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"WASHINGTON COUNTY LEAD DISTRICT - POTOSI\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.7206957697495,\n",
       "                37.9505025198771\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.05596448,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -90.7829449,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 758,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Washington County Lead District \\u2013 Old Mines Site includes soil, groundwater, surface water and sediment contaminated with arsenic, barium, cadmium and lead associated with historical mining practices in southeast Missouri. The site encompasses abou\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"WASHINGTON COUNTY LEAD DISTRICT - OLD MINES\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.7829449001634,\n",
       "                38.0559644796598\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.97653176,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -87.56519231,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 737,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Jacobsville Neighborhood Soil Contamination site includes the Jacobsville neighborhood as well as 12 other neighborhoods in Evansville, Indiana. The site consists of residential soils contaminated by lead and arsenic, and it covers a 4.5-square-mile\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"JACOBSVILLE NEIGHBORHOOD SOIL CONTAMINATION\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -87.5651923103209,\n",
       "                37.976531759948\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 150000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.26920706,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -83.65348589,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 926,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": \"Remedial design includes development of engineering drawings and specifications for a site cleanup. Remedial action follows design, and involves the actual construction or implementation phase of site cleanup.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Develop Removal Design for Blair Creek Contaminated Mine Drainage at Big South Fork National River and Recreation Area\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -83.6534858903854,\n",
       "                37.2692070599049\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 150000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.26920706,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -83.65348589,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 927,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Develop Removal Design for Laurel Branch Stream Spoils at Big South Fork National River and Recreation Area\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -83.6534858903854,\n",
       "                37.2692070599049\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"Department-Wide Programs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.02,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -84.288,\n",
       "          \"Notes\": \"This project's exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 24 wells\",\n",
       "          \"OBJECTID\": 1295,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Orphaned Well Site Plugging, Remediation, And Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 031||Daniel Boone Na]\",\n",
       "          \"ProjectTit\": \"Daniel Boone National Forest\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -84.2880000001487,\n",
       "                37.020000000052\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"Department-Wide Programs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.22,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -80.994,\n",
       "          \"Notes\": \"This project's exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 1 wells\",\n",
       "          \"OBJECTID\": 1310,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Orphaned Well Site Plugging, Remediation, And Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 028||Gauley River Na]\",\n",
       "          \"ProjectTit\": \"Gauley River National Recreation Area\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.9939999999066,\n",
       "                38.2199999999258\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.04,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -81.04,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 680,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200b\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with watershed protection in the Wolf Creek watershed.  The sponsor wants to review this watershed to identify water quality issues\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Wolf Creek Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -81.0400000001178,\n",
       "                38.0400000000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.789,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -81.1895,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 626,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bThe Little Whitestick Creek Channel Modification was completed in 2007 as part of a NRCS watershed project. This area continues to be subjected to nuisance flooding of roadways and parking lots a few time a year and occasionally some local businesses\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Little Whitestick Creek\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -81.189500000355,\n",
       "                37.7889999998698\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.801,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -80.3027,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 622,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bHoward Creek watershed experienced a devastating flood in 2016 which killed 8 people in the town of White Sulphur Springs, West Virginia. There is one NRCS flood control dam and one flood control channel in the watershed. The sponsors want to look at\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Howard Creek Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.3026999997753,\n",
       "                37.8009999996482\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.0,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -80.7,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 662,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200b\\u200b\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Town of Rainelle. The town experience frequent devastating flooding from the Meadow River and it's tributar\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Town of Rainelle West Virginia\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.6999999998457,\n",
       "                38.0000000002117\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.2,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -79.96,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 598,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200b\\u200b\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Marlin Run Watershed.  \\u200bSponsor wants to take a fresh look at this watershed that has one NRCS flood cont\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Marlin Run West Virginia\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -79.9599999997291,\n",
       "                38.1999999997035\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior and Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service and the Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 757628.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.23381801,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -80.43454967,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1443,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Catalyze riparian reforestation efforts on agricultural land in the Southern Appalachian range of Eastern Hellbenders by promoting multifunctional riparian areas that increase the financial resilience of agriculture and boost ecosystem health.  Project w\",\n",
       "          \"ProjectID\": \"80032\",\n",
       "          \"ProjectTit\": \"Reforesting Aquatic Corridors of Southern Appalachia through Agroforestry (AL, GA, OH, NC, TN, WV, VA)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"M\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.4345496740364,\n",
       "                37.2338180134798\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.3035,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -81.2508,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 613,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bThe Bluewell Public Service District has two water supply dams that do not meet the current West Virginia Dam Safety criteria. The PSD would like to decommission the structures and look for alternate water supplies. These are not NRCS structures. Thes\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Bluewell PSD Dam Removals\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -81.2507999995858,\n",
       "                37.3034999998349\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.3609,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -81.1309,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 466,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Brush Creek Site 12 is an earthen embankment, flood control dam in Mercer County West Virginia that was constructed in 1965. It is a part of the Brush Creek Watershed Project, planned in March 1960 utilizing PL-566 funds, which alleviates flooding in the\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Brush Creek Site 12\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -81.1309,\n",
       "                37.3608999999123\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.37,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -81.08,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 559,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the the Daves Fork/Christian Fork Watersheds.    The watershed has 3 aged flood control structures and a flood control chan\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Daves Fork Christian Fork Watershed West Virginia\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -81.0799999998327,\n",
       "                37.3700000002956\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.4,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -81.7,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 567,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"In past years, heavy rains fell on the steep mountain slopes that surround the Elkhorn Creek Watershed, causing severe landslides and flooding in McDowell County, West Virginia. Efforts to mitigate future flooding have had the opposite effect and now pla\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Elkhorn Creek Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -81.6999999999061,\n",
       "                37.3999999998121\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 200000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.0391,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -81.6846,\n",
       "          \"Notes\": \"Partners involved/Community support: The Nature Conservancy, Town of Cedar Bluff, PFW, Virginia DWR, Canaan Valley Institute, private landowners, Southwest Virginia Community College\",\n",
       "          \"OBJECTID\": 1236,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"The Clinch River Watershed Fish Passage Restoration effort aims to remove three dams in the Clinch River Watershed of Virginia to ultimately reconnect over 41 miles of stream and restore 2 miles of instream habitat for multiple federally listed species.\",\n",
       "          \"ProjectID\": \"{b7cc74e5-c377-4e97-9bdf-84bdffefa769}\",\n",
       "          \"ProjectTit\": \"Clinch River Watershed Fish Passage Restoration\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/clinch-river-watershed-fish-passage-restoration-little-river-mill-dam-removal\",\n",
       "          \"SiteCount\": \"3\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -81.6846000004291,\n",
       "                37.0390999997302\n",
       "              ],\n",
       "              [\n",
       "                -81.7670000000575,\n",
       "                37.0889999998135\n",
       "              ],\n",
       "              [\n",
       "                -81.7545000003712,\n",
       "                37.0835999998454\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.15731023,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -80.67161032,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 768,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The 80-acre Holcomb Creosote Co. site is located in Yadkinville, North Carolina. It includes an area where Holcomb Creosote Company operated a wood-treating facility from the 1950s to 2009.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"HOLCOMB CREOSOTE CO\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.6716103200378,\n",
       "                36.157310230148\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 3267129.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.17055042,\n",
       "          \"LatLongTyp\": \"Roanoke River, NC\",\n",
       "          \"Long\": -77.2482714,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 710,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"The Nature Conservancy will replace six undersized culverts with bridges and remove two earthen barriers within the floodplain of the lower Roanoke River. Removal of these eight barriers will benefit migratory species such as blueback herring. It will al\",\n",
       "          \"ProjectID\": \"NOAA_028\",\n",
       "          \"ProjectTit\": \"Restoration within the floodplain of the lower Roanoke River\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.2482713999228,\n",
       "                36.1705504201901\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.41658084,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -78.94153284,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 770,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The GMH Electronics\\u00a0Superfund\\u00a0site, formerly known as the Halifax Road site (the \\u201cSite\\u201d), is located at 1800 Virgilina Road, three-quarters of a mile northeast of Roxboro in Person County, North Carolina. The Site includes the GMH Electronics build\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"GMH ELECTRONICS\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -78.9415328400963,\n",
       "                36.416580839828\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.847074,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -79.432661,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 470,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Cherrystone Creek 2A is a multi purpose dam that provides flood protection and water supply for Pittsylvania County residents.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Cherrystone Creek Dam No. 2A\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -79.4326610002271,\n",
       "                36.8470739998454\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3586,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -76.9811,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 525,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"The Ahoskie Creek Watershed encompasses the limited resource area of  Bertie County, and also serves Northampton and Hertford Counties.  The project would assist with restoring the original design of the watershed. Several storms have caused severe eros\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Ahoskie Creek Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -76.9810999999455,\n",
       "                36.3586000001816\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.259,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -76.9811,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 580,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"The Horse-Flat Swamp Watershed is located North of Ahoskie, NC. The project would assist with restoring the original design of the watershed when it was installed. Several storms have caused areas of severe erosion, in some instances prohibiting maintena\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Horse-Flat Swamp Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -76.9810999999455,\n",
       "                36.2590000002519\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior and Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service and the Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 1697340.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.87852362,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -76.74903828,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1427,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Engage with experts to complete 6 plans covering conservation and land management, traditional knowledge sharing, public education curriculum, business, risk management and safety training, marketing and communication, and architectural design and interp\",\n",
       "          \"ProjectID\": \"80844\",\n",
       "          \"ProjectTit\": \"Return to the River: Developing a Master Plan for Conservation and Environmental Education (VA)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -76.7490382826675,\n",
       "                37.8785236177652\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.04420792,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -70.72492436,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1396,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Support implementation of three high priority salt marsh projects to restore single channel hydrology of tidal wetlands, primarily through salt marsh ditch remediation and runnels, as well as other interventions to enhance plant communities and habitat f\",\n",
       "          \"ProjectID\": \"80763\",\n",
       "          \"ProjectTit\": \"Restoring New Hampshire Salt Marshes\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -70.724924356874,\n",
       "                43.04420792125\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 3537201.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.1339381,\n",
       "          \"LatLongTyp\": \"Durham, NH\",\n",
       "          \"Long\": -70.92850882,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 708,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"The Town of Durham will design and implement removal of the Mill Pond Dam and install a fish ladder on the Oyster Reservoir Dam to improve fish passage on the Oyster River. In addition to reopening access to habitat, removal of the Mill Pond Dam will inc\",\n",
       "          \"ProjectID\": \"NOAA_026\",\n",
       "          \"ProjectTit\": \"Improve fish passage on the Oyster River\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -70.9285088202819,\n",
       "                43.1339380997951\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2359186.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.66608031,\n",
       "          \"LatLongTyp\": \"Ipswich River Watershed Association\",\n",
       "          \"Long\": -70.84291319,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 705,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"The Ipswich River Watershed Association will restore access to 238 miles of habitat in the Ipswich and Parker River watersheds, tributaries to the Great Marsh Area of Critical Environmental Concern. They will address five dams: Ipswich Mills, Larkin Mill\",\n",
       "          \"ProjectID\": \"NOAA_023\",\n",
       "          \"ProjectTit\": \"Restore access to 238 miles of habitat in Massachusetts\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -70.8429131897944,\n",
       "                42.6660803101568\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.20871231,\n",
       "          \"LatLongTyp\": \"Braintree, MA\",\n",
       "          \"Long\": -71.01001991,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 706,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"The Town of Braintree will remove two dams in the Monatiquot River watershed. The dam removals will create immediate access to habitat for alewives and other migratory species. They will also increase community resilience by reducing the flood elevation\",\n",
       "          \"ProjectID\": \"NOAA_024\",\n",
       "          \"ProjectTit\": \"Removal of two dams in the Monatiquot River watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -71.0100199099873,\n",
       "                42.2087123098898\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.34584,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -71.61402,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 514,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Tyler Dam is currently undersized based on the current and future watershed build-out conditions and as a high hazard potential dam, no longer meets NRCS design criteria or performance standards. BIL REHAB funds will be used to excavate material within t\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Tyler Dam\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -71.6140200003655,\n",
       "                42.3458399998266\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 4900000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.3587646,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -71.7182007,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1143,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Southeastern Massachusetts Pine Barrens Landscape Conservation Initiative\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -71.7182006996964,\n",
       "                42.3587645998331\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.37913,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -71.64695,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 482,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Lester G. Ross Dam is a high hazard dam serving the town of Berlin, Massachusets and surounding community of Worcester County. BIL REHAB funds will be used to create a new non-erosive auxiliary spillway to extend the service life of the dam, rehabilitate\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Lester G. Ross Dam\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -71.6469500000797,\n",
       "                42.3791300001647\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.317697,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -71.705414,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 504,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"BIL REHAB funds will be used for new construction costs associated with the rehabilitation of the Rawson Hill Dam located in Shrewsbury, Massachusetts. The Rawson Hill Dam project will create a new non-erosive auxiliary spillway, lined with roller compac\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Rawson Hill Brook Dam\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -71.7054139999922,\n",
       "                42.3176970000389\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.13638,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -71.23703,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 457,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"The funds for the Allen Site Dam Project will be used to prepare the design for rehabilitation of the Allen Dam Site located in Walpole Massachusetts. The Allen Site Dam is a high hazard dam, the hazard classification is based on the potential for loss o\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Allen Site\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -71.2370299997741,\n",
       "                42.136379999746\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1550000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.0025,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -70.9822,\n",
       "          \"Notes\": \"Partners involved/Community support: Massachusetts Division of Ecological Restoration, Massachusetts Division of Marine Fisheries, The Nature Conservancy in Massachusetts, the Old Colony Planning Council, Town of Bridgewater MA, City of Brockton MA\",\n",
       "          \"OBJECTID\": 151,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"The High Street Dam is the most downstream barrier to migratory fish passage on the Town River in the Taunton Watershed of southeast Massachusetts, blocking otherwise open passage to Narragansett Bay and the ocean. This significant hazard dam is an aging\",\n",
       "          \"ProjectID\": \"{99c781e6-49d3-460d-977b-704be065d885}\",\n",
       "          \"ProjectTit\": \"High Street Dam Removal in the Taunton River Watershed\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/high-street-dam-removal-taunton-river-watershed\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -70.982200000123,\n",
       "                42.0025000001196\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.9943,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -71.49267,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 612,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"Funds will be used to perform a preliminary feasibility report on the Blackstone River Watershed in Manville, Rhode Island to address flooding concerns, improve water quality and wildlife habitat.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Blackstone River Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -71.4926700004353,\n",
       "                41.9942999997936\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.7464,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -71.5725,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 632,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"Funds will be used to perform a preliminary feasibility report on the Pawtuxet River Watershed in Warwick, Rhode Island to address flooding concerns, improve water quality and wildlife habitat.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Pawtuxet River Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -71.5724999999859,\n",
       "                41.7463999998639\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.718,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -72.1,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 659,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with water pollution, flooding and erosion concerns.  Sources of point and nonpoint water pollution have a detrimental effect on shellfish b\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Thames River Basin & South East Coast Basin\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -72.1000000000447,\n",
       "                41.7179999999358\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.51394,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -71.2945,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 614,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"Funds will be used to perform a preliminary feasibility report on the Bradley Brook Watershed in Middletown, Rhode Island to address flooding concerns, improve water quality and wildlife habitat.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Bradley Brook Watershed Middletown\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -71.29450000035,\n",
       "                41.5139399998613\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.5136,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -71.26885,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 631,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"Funds will be used to perform a preliminary feasibility report on the Paradise Brook and Maidford River Watershed in East Middletown, Rhode Island to address flooding concerns, improve water quality and wildlife habitat.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Paradise Brook and Maidford River Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -71.2688499998006,\n",
       "                41.513600000188\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.5755145,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -70.89572946,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 744,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The 18,000-acre New Bedford site is an urban tidal estuary with sediments which are highly contaminated with polychlorinated biphenyls (PCBs) and heavy metals. At least two manufacturers in the area used PCBs while producing electric devices from the 194\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"NEW BEDFORD\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -70.8957294599561,\n",
       "                41.5755144999172\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.7203,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -71.2825,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 630,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"Funds will be used to perform a preliminary feasibility report on the Palmer River Watershed in Warren, Rhode Island to address flooding concerns, improve water quality and wildlife habitat.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Palmer River Watershed in Warren\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -71.2825000002558,\n",
       "                41.7202999996891\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.81033,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -71.3414,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 636,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"Funds will be used to perform a preliminary feasibility report on the Runnin's River Watershed in East Providence, Rhode Island to address flooding concerns, improve water quality and wildlife habitat.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Runnin's River Watershed East Providence\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -71.3414000001864,\n",
       "                41.810330000156\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 5769706.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.81721325,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -70.66771071,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 421,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Restore the site of a former cranberry bog; expand aquatic connectivity and riparian habitat; build ecosystem resilience of pine barrens, woodlands, shrublands, and sandplain grasslands; and improve ecological function of coastal plain pondshores. Projec\",\n",
       "          \"ProjectID\": \"77075\",\n",
       "          \"ProjectTit\": \"Southeastern Massachusetts Pine Barrens Landscape Restoration and Community Engagement Initiative\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -70.6677107103273,\n",
       "                41.8172132497386\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 1002819.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.35301444,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -71.65845695,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1399,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Recover natural salt marsh hydrology degraded by legacy impacts and address non-native invasive species inhibiting natural processes that at-risk species like the saltmarsh sparrow rely on. Project will improve the resilience and landward migration of 73\",\n",
       "          \"ProjectID\": \"80890\",\n",
       "          \"ProjectTit\": \"Conserving the Hydrology and Climate Resilience of Five Priority Salt Marshes in Rhode Island\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -71.6584569526436,\n",
       "                41.3530144440504\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.3471,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -71.8308,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 561,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"Funds will be used to perform a preliminary feasibility report on the Deep Pond and School House Pond Watershed in Westerly, Rhode Island to address erosion control, water quality, and address needed habitat improvement caused by flooding.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Deep Pond and School House Pond Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -71.8308000002383,\n",
       "                41.3470999996884\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.3323,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -71.7567,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 679,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"Funds will be used to perform a preliminary feasibility report on the Winnapaug and Salt Ponds Watershed in Westerly, Rhode Island to address flooding concerns, improve water quality and wildlife habitat.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Winnapaug and Salt Ponds Watershed in Westerly\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -71.7566999999489,\n",
       "                41.3323000001595\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 2500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.87721486,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -76.95011034,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1378,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Enhance the Fort Dupont Riparian Corridor through stream and wetland reconstruction projects including the removal of fish barriers and regenerative stream design that will benefit species of greatest conservation including the eastern worm snake, northe\",\n",
       "          \"ProjectID\": \"80275\",\n",
       "          \"ProjectTit\": \"Regenerative Urban Watershed and Wetland Restoration on Fort Dupont Creek (DC)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -76.9501103432787,\n",
       "                38.8772148590739\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.9914703,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -75.5002213,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 917,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Delaware River Basin Conservation Act\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Data collection, design, consultation, and permitting for fish passage at dam no. 5 on the Brandywine Creek\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/delaware-watershed-conservation-fund-projects-funded-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -75.5002213000407,\n",
       "                38.9914703001459\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 107000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.9914703,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -75.5002213,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 876,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Delaware River Basin Conservation Act\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Building capacity for dam remove throughout the Delaware River watershed\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/delaware-watershed-conservation-fund-projects-funded-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -75.5002213000407,\n",
       "                38.9914703001459\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 300000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"FWS Building, DC\",\n",
       "          \"Long\": -77.042618,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 303,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Systematic social science monitoring of the characteristics, experiences, and spending of visitors to highly visited national wildlife refuges. This data collected from refuges with notable visitation have up-to-date visitor information on a continual ba\",\n",
       "          \"ProjectID\": \"150XX07US0222\",\n",
       "          \"ProjectTit\": \"Visitation Trends on National Wildlife Refuges\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 389025.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042618,\n",
       "          \"Notes\": \"Coordinates for Main Interior Building\",\n",
       "          \"OBJECTID\": 1360,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending (Or Other) For National Revegetation Strategy\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 028|389025|Revegetation an]\",\n",
       "          \"ProjectTit\": \"Revegetation and Seed Strategy\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Office of Insular Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 280351.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"OIA Building, DC\",\n",
       "          \"Long\": -77.042625,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 309,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"continue its campaign to detect, eradicate and implement preventative measures against this invasive species\",\n",
       "          \"ProjectID\": \"410XX06MH0222\",\n",
       "          \"ProjectTit\": \"Coconut Rhinoceros Beetle Detection, Eradication and Preventative Measures Proposal-Year 4\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426250002054,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 3520000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042618,\n",
       "          \"Notes\": \"Coordinates for Main Interior Building\",\n",
       "          \"OBJECTID\": 1365,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 026|3520000|Southern High P]\",\n",
       "          \"ProjectTit\": \"Southern High Plains Grassland Protection, Restoration and Enhancement Project\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"FWS Building, DC\",\n",
       "          \"Long\": -77.042618,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 307,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The Native Seed Collection and Production in Key Geographies will enhance seed collection and production and ecoregional collaboration to increase the availability of native seed resources for restoration, including establishing native seed collection te\",\n",
       "          \"ProjectID\": \"150XX09US0722\",\n",
       "          \"ProjectTit\": \"Native Seed Collection and Production-Eastern&SW\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1840000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"FWS Building, DC\",\n",
       "          \"Long\": -77.042618,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 306,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The Native Seed Collection and Production in Key Geographies project will enhance seed production and ecoregional collaboration to increase the availability of native seed resources for restoration, including establishing native seed collection teams to\",\n",
       "          \"ProjectID\": \"150XX08US0622\",\n",
       "          \"ProjectTit\": \"Mitigate Hazards on Mined Lands, Native Seed Funds\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 562595.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042618,\n",
       "          \"Notes\": \"Coordinates for Main Interior Building\",\n",
       "          \"OBJECTID\": 1366,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem - Sagebrush-Steppe\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 019|562595|Support critica]\",\n",
       "          \"ProjectTit\": \"Support critical capacity to build partnerships and deliver on-the-ground conservation projects\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/program/sagebrush-conservation\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 600000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"FWS Building, DC\",\n",
       "          \"Long\": -77.042618,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 304,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Maintain visitor satisfaction while ensuring adequate resource protection by improving signage at national wildlife refuges experiencing elevated visitation levels.\",\n",
       "          \"ProjectID\": \"150XX07US0322\",\n",
       "          \"ProjectTit\": \"Wayfinding Signs on National Wildlife Refuges\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 785000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894508,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1307,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 014|785000|Eradicating Inv]\",\n",
       "          \"ProjectTit\": \"Eradicating Invasive Plants to Maintain Species Habitat and Increase Channel Capacity Along the Platte River\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Office of Insular Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 23970.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"OIA Building, DC\",\n",
       "          \"Long\": -77.042625,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 312,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Facilitate the annual Nuisance and Invasive Species Awareness Week; Implementation of the USVI EDRR; and Direct eradication projects\",\n",
       "          \"ProjectID\": \"410XX06VI0522\",\n",
       "          \"ProjectTit\": \"Eradication and Response for Nuisance and Invasive Species\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426250002054,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 260000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894508,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1304,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending (Or Other) For National Revegetation Strategy\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 022|260000|Development of ]\",\n",
       "          \"ProjectTit\": \"Development of a Native Plant Facility for National Parks in Sagebrush Systems\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Office of Insular Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 555765.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"OIA Building, DC\",\n",
       "          \"Long\": -77.042625,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 314,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The OIA BIL Activity 8 program provides grant funding to restore native vegetation and mitigate environmental hazards on mined Federal and non-Federal land in American Samoa, the Commonwealth of the Northern Mariana Islands, Guam and the U.S. Virgin Isla\",\n",
       "          \"ProjectID\": \"410XX08IS0322\",\n",
       "          \"ProjectTit\": \"OIA Activity 8 funds\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426250002054,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894508,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1303,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 014|2500000|Developing the ]\",\n",
       "          \"ProjectTit\": \"Developing the Departmental Molecular-Based Early Detection Architecture to Support a National Early Detection and Rapid Response (EDRR) Framework\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 495297.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894508,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1290,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 022|495297|Comprehensive S]\",\n",
       "          \"ProjectTit\": \"Comprehensive Status Assessment  and Conservation Plan for the Grasslands, Savannas, and Other Open Ecosystems of the Cumberland Plateau\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042618,\n",
       "          \"Notes\": \"Coordinates for Main Interior Building\",\n",
       "          \"OBJECTID\": 1345,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending (Or Other) For National Revegetation Strategy\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 028|500000|Optimizing Resi]\",\n",
       "          \"ProjectTit\": \"Optimizing Resilience and Adaptation for Restored Native Seedings in Sagebrush Steppe\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 600000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894508,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1268,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 024|600000|A National Geos]\",\n",
       "          \"ProjectTit\": \"A National Geospatial Decision Tool for Science-based Restoration of Mined Lands: Revegetation and Environmental Hazards\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1852550.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042618,\n",
       "          \"Notes\": \"Coordinates for Main Interior Building\",\n",
       "          \"OBJECTID\": 1354,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 029|1852550|Preventing the ]\",\n",
       "          \"ProjectTit\": \"Preventing the Introduction and Spread of Invasive Species Through Strategic Landscape-Level Approaches\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 200000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894508,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1270,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"DOI - 024|200000|Adding Ter\",\n",
       "          \"ProjectTit\": \"Adding Terrestrial Invasive Plant Forecasting, Monitoring, and Data Visualization Capabilities to INHABIT- a Web Based Decision Support Tool - to Support a National Early Detection and Rapid Response (EDRR) Framework\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 200000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.89450778,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -77.0427023,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 5,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration\",\n",
       "          \"ProjectDes\": \"Project outcomes include private sector jobs, increasing native plant materials access, and expanding Tribal capacity to support national coordination on implementing the National Seed Strategy.\",\n",
       "          \"ProjectID\": \"{E8343CDC-6E3C-47EE-8E07-4771E9265105}\",\n",
       "          \"ProjectTit\": \"Building Direct Tribal Adaptation/Plant Ecologist Technical Assistance Capacity through Cooperative Partnerships\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427022966424,\n",
       "                38.8945077849915\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2163285.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894508,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1282,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 024|2163285|BLM Working Cap]\",\n",
       "          \"ProjectTit\": \"BLM Working Capital Fund and Seeds of Success Capacity Building\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 3339450.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894508,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1283,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending (Or Other) For National Revegetation Strategy\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 032|3339450|BLM Working Cap]\",\n",
       "          \"ProjectTit\": \"BLM Working Capital Fund and SOS/IDIQ Capacity Building\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 880000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042618,\n",
       "          \"Notes\": \"Coordinates for Main Interior Building\",\n",
       "          \"OBJECTID\": 1289,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Safety of Dams, Water Sanitation, And Other Facilities\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 020|880000|Columbia River ]\",\n",
       "          \"ProjectTit\": \"Columbia River In-lieu Treaty Fishing Sites\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-10-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 550000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042618,\n",
       "          \"Notes\": \"Coordinates for Main Interior Building\",\n",
       "          \"OBJECTID\": 1359,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Resilient Recreation Sites\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 030|550000|Restoring Wildl]\",\n",
       "          \"ProjectTit\": \"Restoring Wildlife Habitat in Campgrounds and Along Trails at 7 National Parks in WA and CA\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1840000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894508,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1339,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 028|1840000|Native Seed Col]\",\n",
       "          \"ProjectTit\": \"Native Seed Collection and Production in Key Geographies - Revegetation of Mined Lands\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 250095.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042618,\n",
       "          \"Notes\": \"Coordinates for Main Interior Building\",\n",
       "          \"OBJECTID\": 1357,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Resilient Recreation Sites\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 030|250095|Resilient Recre]\",\n",
       "          \"ProjectTit\": \"Resilient Recreation Sites on Federal Lands\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"Department-Wide Programs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 33000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042618,\n",
       "          \"Notes\": \"Coordinates for Main Interior Building\",\n",
       "          \"OBJECTID\": 1298,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Orphaned Well Site Plugging, Remediation, And Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 014|33000000|Department-Wide]\",\n",
       "          \"ProjectTit\": \"Department-Wide Programs\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Departmental Offices\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 72666667.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042618,\n",
       "          \"Notes\": \"Coordinates for Main Interior Building\",\n",
       "          \"OBJECTID\": 1299,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Department of Interior Wildfire Management - Burned Area Rehabilitation\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 034|72666667|Wildland Fire M]\",\n",
       "          \"ProjectTit\": \"Department of Interior Wildfire Management - Burned Area Rehabilitation\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/deputy-secretary-beaudreau-announces-228-million-wildfire-mitigation-and-resilience\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1944900.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042618,\n",
       "          \"Notes\": \"Coordinates for Main Interior Building\",\n",
       "          \"OBJECTID\": 1358,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 031|1944900|Restoration and]\",\n",
       "          \"ProjectTit\": \"Restoration and Vegetation Management of Multiple Historic Mined Land Repository Areas in the Western United States\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Departmental Offices\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 72666667.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042618,\n",
       "          \"Notes\": \"Coordinates for Main Interior Building\",\n",
       "          \"OBJECTID\": 1300,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Department of Interior Wildfire Management - Preparedness\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 037|72666667|Wildland Fire M]\",\n",
       "          \"ProjectTit\": \"Department of Interior Wildfire Management - Preparedness\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/deputy-secretary-beaudreau-announces-228-million-wildfire-mitigation-and-resilience\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 550000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894508,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1301,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 026|550000|Developing a Na]\",\n",
       "          \"ProjectTit\": \"Developing a National Early Detection and Rapid Response (EDRR) Information System to Support a National EDRR Framework\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 825185.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894451,\n",
       "          \"LatLongTyp\": \"BIA Building, DC\",\n",
       "          \"Long\": -77.042641,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 242,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Provide funding for Tribal projects focused on invasive species; specifically projects that will achieve EDRR, prevention and eradication.\",\n",
       "          \"ProjectID\": \"060XX06TR0422\",\n",
       "          \"ProjectTit\": \"Tribal Invasive Species Projects\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.042641000099,\n",
       "                38.8944509997477\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Departmental Offices\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 120000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042618,\n",
       "          \"Notes\": \"Coordinates for Main Interior Building\",\n",
       "          \"OBJECTID\": 1371,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Department of Interior Wildfire Management - Preparedness\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 037|120000000|Wildland Firefi]\",\n",
       "          \"ProjectTit\": \"Wildland Firefighter Salary Increases\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/deputy-secretary-beaudreau-announces-228-million-wildfire-mitigation-and-resilience\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1296785.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.89450778,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -77.0427023,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 71,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": \"This project supports tribal efforts to manage reclamation of abandoned hard rock mine lands on Tribal lands. This effort will restore habitat connectivity for aquatic species, advance habitat restoration, control invasive species, species conservation.\",\n",
       "          \"ProjectID\": \"{28BC0AB6-7EF5-4580-812B-3B209BA1A346}\",\n",
       "          \"ProjectTit\": \"Revegetation and Hazard Mitigation on Mined Lands\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427022966424,\n",
       "                38.8945077849915\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 900000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894508,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1326,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 029|900000|Invasive Specie]\",\n",
       "          \"ProjectTit\": \"Invasive Species Detection, Prevention, and Eradication\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Bureau of Reclamation\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 800000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"USBR Building, DC\",\n",
       "          \"Long\": -77.042625,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 250,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This effort is for invasive species herbicide treatment on an annual basis (about 3,500 acres annually from 2008 through 2019) and mechanical removal when necessary, there are no revegetation efforts as the intent is the keep the channel in a more wide a\",\n",
       "          \"ProjectID\": \"070XX06MU0622\",\n",
       "          \"ProjectTit\": \"Platte River Restoraton Invasive Plant Removal\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426250002054,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Bureau of Reclamation\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 150000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"USBR Building, DC\",\n",
       "          \"Long\": -77.042625,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 249,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Perform additional analysis on invasive mussel early detection samples collect additional samples. Expand eDNA analysis to more samples. We currently only analyze eDNA at sites where veligers have been previously detected.\\r\\r\\nAnalyze mussel plankton tow s\",\n",
       "          \"ProjectID\": \"070XX06MU0422\",\n",
       "          \"ProjectTit\": \"Westwide Detection of Invasive Dreissand Mussels\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426250002054,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Bureau of Reclamation\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 15000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"USBR Building, DC\",\n",
       "          \"Long\": -77.042625,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 247,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Invasive Crayfish Identification: To assist with identifying spread of invasive crayfish, crayfish trapping may be performed by the laboratory during routine site visits. Traps will be baited and deployed during routine sample collection then any collect\",\n",
       "          \"ProjectID\": \"070XX06MU0122\",\n",
       "          \"ProjectTit\": \"Detection of Invasive Crayfish in the West\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426250002054,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 800000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894451,\n",
       "          \"LatLongTyp\": \"BIA Building, DC\",\n",
       "          \"Long\": -77.042641,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 246,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The primary production goal is to double the capacity at one of the selected each tribal greenhouses, as Tribal greenhouses need funding to update and expand their facilities to increase each Tribe\\u2019s capacity to supply the growing need due to catastrop\",\n",
       "          \"ProjectID\": \"060XX09TR0222\",\n",
       "          \"ProjectTit\": \"Tribal Greenhouses\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.042641000099,\n",
       "                38.8944509997477\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 200000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894451,\n",
       "          \"LatLongTyp\": \"BIA Building, DC\",\n",
       "          \"Long\": -77.042641,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 245,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"In coordination with Activity 9 subgroup efforts, this goal of this project will be to 1) to better understand native seed and plant materials need in Indian Country through outreach to Tribes, 2) increase the availability of and access to native seed re\",\n",
       "          \"ProjectID\": \"060XX09TR0122\",\n",
       "          \"ProjectTit\": \"Building Tribal Plant Ecology Technical Capacity\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.042641000099,\n",
       "                38.8944509997477\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1296785.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894451,\n",
       "          \"LatLongTyp\": \"BIA Building, DC\",\n",
       "          \"Long\": -77.042641,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 244,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": \"A GIS-based modeling and assessment and LiDAR will be used to provide a baseline for analyzing activates and disturbances across vast landscapes. Due to its versatility and ability to integrate diverse types of information, a GIS can be a valuable tool i\",\n",
       "          \"ProjectID\": \"060XX08TR0622\",\n",
       "          \"ProjectTit\": \"Revegetation and Hazard Mitigation on Mined Lands\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.042641000099,\n",
       "                38.8944509997477\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1848205.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894508,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1329,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 022|1848205|Keetoowah River]\",\n",
       "          \"ProjectTit\": \"Keetoowah Rivercane Conservation\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1800000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"FWS Building, DC\",\n",
       "          \"Long\": -77.042618,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 301,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Using appropriations to the Infrastructure Investment and Jobs Act, the U.S. Fish and Wildlife Service (FWS), in collaboration with other DOI bureaus, anticipates providing grants to support implementation of measures to prevent the introduction or sprea\",\n",
       "          \"ProjectID\": \"150XX06MU0522\",\n",
       "          \"ProjectTit\": \"Invasive Species Prevention NOFO\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 800000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894451,\n",
       "          \"LatLongTyp\": \"BIA Building, DC\",\n",
       "          \"Long\": -77.042641,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 241,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Build Tribal capacity to manage invasive species, implement EDRR, prevention, and eradication measures.\",\n",
       "          \"ProjectID\": \"060XX06TR0322\",\n",
       "          \"ProjectTit\": \"Building Invasive Species Management Capacity\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.042641000099,\n",
       "                38.8944509997477\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 3339450.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894449,\n",
       "          \"LatLongTyp\": \"BLM Building, DC\",\n",
       "          \"Long\": -77.042606,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 240,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The BLM Working Capital Fund and SOS/IDIQ Capacity Building project will increase the availability of native seed resources for restoration by purchasing available native seed, contracting with private farmers/nurseries to grow native seed/seedlings, and\",\n",
       "          \"ProjectID\": \"050XX09US5822\",\n",
       "          \"ProjectTit\": \"BLM WCF SOS/IDIQ Capacity Building\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426059999389,\n",
       "                38.8944490001434\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 700896.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894508,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1331,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 014|700896|L\\u00ebnapeh\\u00f2kink Tr]\",\n",
       "          \"ProjectTit\": \"L\\u00ebnapeh\\u00f2kink Tribal Cultural Heritage Project: Developing a Homelands Fellowship in the Delaware River Valley, Phase I\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 2163285.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894449,\n",
       "          \"LatLongTyp\": \"BLM Building, DC\",\n",
       "          \"Long\": -77.042606,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 237,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The BLM Working Capital Fund and SOS/IDIQ Capacity Building project will increase the availability of native seed resources for restoration by purchasing available native seed, contracting with private farmers/nurseries to grow native seed/seedlings, and\",\n",
       "          \"ProjectID\": \"050XX08US5722\",\n",
       "          \"ProjectTit\": \"BLM WCF SOS/IDIQ Capacity Building\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426059999389,\n",
       "                38.8944490001434\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 6000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894508,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1332,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Colorado River Endangered Species Recovery and Conservation Programs\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 006|6000000|Lower Colorado ]\",\n",
       "          \"ProjectTit\": \"Lower Colorado River Multi-Species Conservation Program\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4374\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 212020.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894508,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1333,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"DOI - 014|212020|Maajii-aki\",\n",
       "          \"ProjectTit\": \"Maajii-akii-gikenjigewin - Starting Out in Earth Conservation\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 417205.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894449,\n",
       "          \"LatLongTyp\": \"BLM Building, DC\",\n",
       "          \"Long\": -77.042606,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 226,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The BLM Working Capital Fund and SOS/IDIQ Capacity Building project will increase the availability of native seed resources for restoration by purchasing available native seed, contracting with private farmers/nurseries to grow native seed/seedlings, and\",\n",
       "          \"ProjectID\": \"050XX07US4122\",\n",
       "          \"ProjectTit\": \"BLM WCF SOS/IDIQ Capacity Building\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426059999389,\n",
       "                38.8944490001434\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 950000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894508,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1337,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending (Or Other) For National Revegetation Strategy\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 029|950000|Mojave Desert E]\",\n",
       "          \"ProjectTit\": \"Mojave Desert Ecoregional Seed Collection and Production\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894508,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1335,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 028|1000000|Mitigate Physic]\",\n",
       "          \"ProjectTit\": \"Mitigate Physical and Environmental Hazards on Mined FWS Lands\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 800000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.89450778,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -77.0427023,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 75,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration\",\n",
       "          \"ProjectDes\": \"Invasive species \\u201ctrainers\\u201d to work with tribes in building management capacity.  The NAFWS will provide reports on tribes served after services have been provided. They are also conducted outreach to ensure tribes are aware of the opportunity.\\r\\n\",\n",
       "          \"ProjectID\": \"{F109455A-BAFA-4E66-AA9B-DF81D3DCCD11}\",\n",
       "          \"ProjectTit\": \"Supporting the Native American Fish and Wildlife Society to Build Tribal Capacity for Invasive Species Management, Including Early Detection-Rapid Response, Prevention, and Eradication\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427022966424,\n",
       "                38.8945077849915\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 800000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894508,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1320,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Colorado River Endangered Species Recovery and Conservation Programs\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 014|800000|Improved Endang]\",\n",
       "          \"ProjectTit\": \"Improved Endangered Fish Monitoring\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4374\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"FWS Building, DC\",\n",
       "          \"Long\": -77.042618,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 302,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Improve virtual trip planning experience for recreational visitors to national wildlife refuges and wetland management districts by developing more user-friendly trip planning tools on fws.gov and configure an OMB approved government survey instrument ca\",\n",
       "          \"ProjectID\": \"150XX07US0122\",\n",
       "          \"ProjectTit\": \"Virtual Recreational Trip Planning on Refuges\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 4330059.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894508,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1306,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 019|4330059|Enhancing Fire-]\",\n",
       "          \"ProjectTit\": \"Enhancing Fire-Dependent Plant Communities of the Piney Woods, Blackland Prairie, and Loess Plains of the East Gulf Coastal Plain\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 80000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"FWS Building, DC\",\n",
       "          \"Long\": -77.042618,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 299,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"America the Beautiful Challenge is a nationwide program. The vision is to streamline grant funding opportunities for new voluntary conservation and restoration projects around the United States.  Projects throughout the U.S., U.S. territories and Tribal\",\n",
       "          \"ProjectID\": \"150XX04US0922\",\n",
       "          \"ProjectTit\": \"America The Beautiful Grants\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 300000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894508,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1308,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending (Or Other) For National Revegetation Strategy\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 028|300000|Expand the Sout]\",\n",
       "          \"ProjectTit\": \"Expand the Southwest Seed Partnership for Southwestern National Parks\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 400000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042618,\n",
       "          \"Notes\": \"Coordinates for Main Interior Building\",\n",
       "          \"OBJECTID\": 1368,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending (Or Other) For National Revegetation Strategy\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 028|400000|Using eDNA to A]\",\n",
       "          \"ProjectTit\": \"Using eDNA to Assess Ecological Resilience of Restored Grasslands\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894508,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1338,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending (Or Other) For National Revegetation Strategy\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 014|2000000|Native Seed Col]\",\n",
       "          \"ProjectTit\": \"Native Seed Collection and Production in Key Geographies - National Revegetation Strategy\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Departmental Offices\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 72666667.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042618,\n",
       "          \"Notes\": \"Coordinates for Main Interior Building\",\n",
       "          \"OBJECTID\": 1369,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Wildfire Management - Fuels Management\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 035|72666667|Wildland Fire M]\",\n",
       "          \"ProjectTit\": \"Wildfire Management - Fuels Management\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/deputy-secretary-beaudreau-announces-228-million-wildfire-mitigation-and-resilience\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 551816.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042618,\n",
       "          \"Notes\": \"Coordinates for Main Interior Building\",\n",
       "          \"OBJECTID\": 1349,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 026|551816|Pathways to Res]\",\n",
       "          \"ProjectTit\": \"Pathways to Resilience: Ensuring a Future for Tidal Wetlands\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 15000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894508,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1321,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"DOI - 031|15000|Improving\",\n",
       "          \"ProjectTit\": \"Improving Identification and Detection of Invasive Species in Western Watersheds\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 200000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894508,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1322,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending (Or Other) For National Revegetation Strategy\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"DOI - 014|200000|Improving\",\n",
       "          \"ProjectTit\": \"Improving Midwest Restoration Capacity by Developing NPS and Tribal Native Seed Nodes\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 150000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894508,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1325,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"DOI - 029|150000|Increasing\",\n",
       "          \"ProjectTit\": \"Increasing Westwide Detection of Invasive Species Through Additional Environmental DNA Collection and Analysis\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 26700000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042618,\n",
       "          \"Notes\": \"Coordinates for Main Interior Building\",\n",
       "          \"OBJECTID\": 1347,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 010|26700000|Overall BIL Fun]\",\n",
       "          \"ProjectTit\": \"Overall BIL Funding\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 220000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894508,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1323,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending (Or Other) For National Revegetation Strategy\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"DOI - 014|220000|Increase N\",\n",
       "          \"ProjectTit\": \"Increase Native Seed Production for Restoration in Intermountain National Parks\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 825185.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894508,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1324,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 014|825185|Increasing the ]\",\n",
       "          \"ProjectTit\": \"Increasing the BIA Invasive Species Award Program to Support Tribal Projects Implementing Prevention, Early Detection-Rapid Response, and Eradication\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0427020001984,\n",
       "                38.8945080003333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Departmental Offices\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 10000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.894444,\n",
       "          \"LatLongTyp\": \"Multiple\",\n",
       "          \"Long\": -77.042618,\n",
       "          \"Notes\": \"Coordinates for Main Interior Building\",\n",
       "          \"OBJECTID\": 1370,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Wildfire Management - Joint Fire Science Program with Department of Agriculture\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 036|10000000|Wildland Fire M]\",\n",
       "          \"ProjectTit\": \"Wildfire Management - Joint Fire Science Program with Department of Agriculture\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/deputy-secretary-beaudreau-announces-228-million-wildfire-mitigation-and-resilience\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.0426179996344,\n",
       "                38.894443999734\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 176400.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.39449393,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -75.69374109,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1119,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Delaware River Basin Conservation Act\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Restoring upland habitats in the Blackbird Creek watershed\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/delaware-watershed-conservation-fund-projects-funded-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -75.6937410902094,\n",
       "                39.3944939299742\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.45548677,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -75.05320194,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 775,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Iceland Coin Laundry Superfund Site (Site) consists of\\u00a0the former Iceland Coin Laundry and Dry Cleaner facility (former facility), located at 1888 Delsea Drive in the City of Vineland, Cumberland County, New Jersey, and\\u00a0an\\u00a0area of contaminated gro\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"ICELAND COIN LAUNDRY AREA GW PLUME\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -75.0532019403096,\n",
       "                39.4554867703068\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.4784241,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -75.02550809,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 788,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The former Kil-Tone Company manufactured arsenic-based pesticides from the late 1910s to the late 1930s at a facility which was located at 527 East Chestnut Avenue in a mixed use area within the City of Vineland, Cumberland County, NJ.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"FORMER KIL-TONE COMPANY\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -75.0255080901309,\n",
       "                39.4784240999232\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.415281,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -74.52695,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 781,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Price Landfill site is located in the City of Pleasantville and\\u00a0Egg Harbor Township, Atlantic County, New Jersey. The 26-acre landfill\\u00a0 originally was a sand and gravel excavation operation that closed in 1968. Beginning in 1971, Price Landfill beg\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PRICE LANDFILL\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -74.5269500002178,\n",
       "                39.4152809997509\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.13318684,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -74.04341407,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 791,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The White Swan Cleaners/Sun Cleaners site is located in Wall Township, Monmouth County, New Jersey. Two former dry cleaning operations \\u2013 White Swan Cleaners and Sun Cleaners \\u2013 have been determined to be sources of area wide volatile organic compound\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"WHITE SWAN LAUNDRY AND CLEANER INC.\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -74.0434140702883,\n",
       "                40.1331868401672\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.64207711,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -73.70545568,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 800,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Peninsula Boulevard Groundwater Plume Superfund site includes the area within and around a groundwater plume, which is an area where contaminants disperse, in the Village of Hewlett, Town of Hempstead, Nassau County, New York.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PENINSULA BOULEVARD GROUNDWATER PLUME\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -73.7054556801456,\n",
       "                40.6420771101206\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.645,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -73.949,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 608,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with agricultural water management related to NYC Parks. The project would provide on-site water infrastructure to 260 food-producing com\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"NYC Parks Community Gardens Irrigation System\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -73.9490000002534,\n",
       "                40.6450000000922\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.73650016,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -73.61029636,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 802,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Old Roosevelt Field Contaminated Groundwater Area site includes an area of groundwater contamination in the Village of Garden City in central Nassau County, New York.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"OLD ROOSEVELT FIELD CONTAMINATED GW AREA\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -73.6102963596662,\n",
       "                40.73650016023\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.698484,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -74.198242,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 786,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The White Chemical Corporation (WCC) site is a 4.4-acre vacant lot located at 660 Frelinghuysen Avenue in Newark, New Jersey. Historically, the site was used to manufacture various acid chlorides and fire-retardant compounds. The WCC\\u00a0property was used f\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"WHITE CHEMICAL CORP.\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -74.1982420000352,\n",
       "                40.6984840000704\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.74871158,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -74.13078473,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 783,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Diamond Head Oil Refinery Div. Superfund site is a 30.5-acre area near the Hackensack Meadowlands in Kearny, New Jersey. The site has over 20 acres of unoccupied land, including wetland areas, a drainage ditch, a small pond, a vegetated landfill area\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"DIAMOND HEAD OIL REFINERY DIV.\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -74.1307847295564,\n",
       "                40.7487115803397\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.44267955,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -74.44042314,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 780,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Fried Industries site is a 26-acre area located in the northwest corner of East Brunswick Township near the border of the Borough of Milltown in Middlesex County, New Jersey. For 25 years, Fried Industries operated the site and manufactured floor fin\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"FRIED INDUSTRIES\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -74.4404231401741,\n",
       "                40.4426795501366\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.31618291,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -75.13577107,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 808,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Chem Fab Superfund Site\\u00a0is located on N. Broad Street in Doylestown, Bucks County, Pennsylvania. From the mid-1960s to the late 1970s, Chem Fab, Inc. operated an electroplating and metal etching facility and also stored and disposed of processing ch\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"CHEM-FAB\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -75.1357710702482,\n",
       "                40.3161829102684\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 750000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.22884417,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -74.93156318,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1107,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Delaware River Basin Conservation Act\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Removing the Spring Garden Dam on Neshaminy Creek to restore fish passage for American shad, alewife, and blueback herring\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/delaware-watershed-conservation-fund-projects-funded-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -74.9315631796262,\n",
       "                40.2288441697658\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.2498481,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -75.28395631,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 810,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"This Site is in the Borough of Lansdale and small portions of Hatfield, Towamencin, and Upper Gwynedd townships.\\u00a0The preliminary boundaries of the Site were determined based on groundwater quality data. In 1979, high levels of trichloroethene were detec\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"NORTH PENN - AREA 6\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -75.2839563097102,\n",
       "                40.2498481002391\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.43868288,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -75.61484516,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 811,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The 209-acre Crossley Farm site is located in a rural area in Hereford Township, Pennsylvania. A farm has been located on site since 1927. From the mid-1960s to the mid-1970s, the Bally Case and Cooler Company disposed of numerous drums of liquid waste a\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"CROSSLEY FARM\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -75.6148451597896,\n",
       "                40.4386828799783\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.46003257,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -75.33107876,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 809,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The 56-acre Watson Johnson Landfill site is located in Richland Township, Pennsylvania. A 32-acre landfill accepted industrial and municipal wastes on part of the site from the late 1950s until the early 1970s. Waste disposal activities contaminated soil\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"WATSON JOHNSON LANDFILL\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -75.3310787602588,\n",
       "                40.4600325697254\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 723244.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.82361934,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -74.80989963,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 446,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Bring Lenape Tribal youth back to ancestral lands, the Le\\u0308napeho\\u0300kink, within the Delaware River watershed and in portions of New York to cultivate tribal identity, cultural resilience, and provide career orienting experiences and pathways for Tribal y\",\n",
       "          \"ProjectID\": \"77787\",\n",
       "          \"ProjectTit\": \"Developing a Le\\u0308napeho\\u0300kink Cultural Heritage Homelands Fellowship Along the Delaware River (DE, PA, NJ, NY)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -74.8098996299326,\n",
       "                40.8236193399636\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 266100.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.81926018,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -75.04738123,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1106,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Delaware River Basin Conservation Act\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Removing the No Name and Cedar Grove Dams on the Pequest River\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/delaware-watershed-conservation-fund-projects-funded-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -75.0473812300694,\n",
       "                40.819260180204\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.68992983,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -75.2197937,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1108,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Delaware River Basin Conservation Act\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Removing three dams on the Bushkill Stream to restore fish passage\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/delaware-watershed-conservation-fund-projects-funded-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -75.2197937003675,\n",
       "                40.6899298300573\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 626300.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.79461447,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -75.32534408,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1117,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Delaware River Basin Conservation Act\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Restoring streambank along Bushkill Creek at the Jacobsburg Environmental Education Center\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/delaware-watershed-conservation-fund-projects-funded-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -75.3253440798767,\n",
       "                40.7946144696675\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.690536,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -75.9359,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 487,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"The resource concern is addressing the needs of aging Watershed Infrastructure.  Pennsylvania is generally taking a watershed approach to evaluating how to rehabilitate our existing infrastructure, which is why we are considering all five dams in the Lit\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Little Schuylkill PA-425 Koenigs  Dam\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -75.93589999974,\n",
       "                40.6905360001012\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.837062,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -76.004945,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 483,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"The resource concern is addressing the needs of aging Watershed Infrastructure.  Pennsylvania is generally taking a watershed approach to evaluating how to rehabilitate our existing infrastructure, which is why we are considering all five dams in the Lit\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Little Schuylkill PA-422\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -76.0049450002626,\n",
       "                40.8370619996972\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.836814,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -76.004999,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 484,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"The resource concern is addressing the needs of aging Watershed Infrastructure.  Pennsylvania is generally taking a watershed approach to evaluating how to rehabilitate our existing infrastructure, which is why we are considering all five dams in the Lit\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Little Schuylkill PA-422A Neifert Creek\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -76.004998999791,\n",
       "                40.8368139998116\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.814013,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -76.054968,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 486,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"The resource concern is addressing the needs of aging Watershed Infrastructure.  Pennsylvania is generally taking a watershed approach to evaluating how to rehabilitate our existing infrastructure, which is why we are considering all five dams in the Lit\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Little Schuylkill PA-424 Hosensock Dam\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -76.0549680003709,\n",
       "                40.8140129997993\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.804896,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -76.008376,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 485,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"The resource concern is addressing the needs of aging Watershed Infrastructure.  Pennsylvania is generally taking a watershed approach to evaluating how to rehabilitate our existing infrastructure, which is why we are considering all five dams in the Lit\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Little Schuylkill PA-423 Locust Creek Dam\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -76.0083759996077,\n",
       "                40.8048959999482\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.12077251,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -74.7706667,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 782,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The 200-acre Roebling Steel Company site, which is next to the Delaware River in Florence Township, New Jersey, was used to manufacture steel products. The Roebling Steel Company produced steel wire and cable at the site for many years before closing in\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"ROEBLING STEEL CO.\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -74.7706666998421,\n",
       "                40.1207725101561\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.0363,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -74.694,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 778,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The five-acre Kauffman & Minteer (K&M), Inc. site in Jobstown, New Jersey is the former site of an industrial transportation facility where hazardous wastewater from cleaning the inside of trucks was discharged into a drainage ditch and an unlined lagoon\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"KAUFFMAN & MINTEER, INC.\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -74.6939999998852,\n",
       "                40.0363000002335\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.05825321,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -74.92633118,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 776,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Cosden Chemical Coatings Corp. site is located in Beverly, New Jersey. \\u00a0A paint formulation and manufacturing facility operated at the 6.7-acre site from 1945 until 1989when it permanently closed. The facility produced paints for industrial applicat\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"COSDEN CHEMICAL COATINGS CORP.\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -74.9263311803074,\n",
       "                40.0582532102788\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 96800.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.08904386,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -74.89753392,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 843,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Delaware River Basin Conservation Act\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Advancing living-shoreline design and permitting along an urban Delaware River waterfront\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/delaware-watershed-conservation-fund-projects-funded-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -74.8975339195838,\n",
       "                40.0890438600623\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 90000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.95190028,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -75.16060945,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 922,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Delaware River Basin Conservation Act\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Designing a riverfront trail and greenway along the Schuylkill River to connect communities to the river\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/delaware-watershed-conservation-fund-projects-funded-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -75.1606094501248,\n",
       "                39.9519002802668\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.976667,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -75.051944,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 787,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Puchack Well Field site is located in Pennsauken, New Jersey. In the 1970s various organic and inorganic contaminants were detected in water collected from wells at the Puchack Well Field. In 1984, due largely to chromium contamination, the general u\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PUCHACK WELL FIELD\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -75.0519439997729,\n",
       "                39.9766669998113\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 199000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.89823436,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -75.26590704,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1099,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Delaware River Basin Conservation Act\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Reconnecting Hermesprota Creek to its floodplain in Conway Park for environmental and community resilience\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/delaware-watershed-conservation-fund-projects-funded-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -75.2659070401198,\n",
       "                39.8982343599209\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.89516758,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -75.26065068,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 812,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Lower Darby Creek Area (LDCA) Site is located in Darby Township and Folcroft Borough in Delaware and Philadelphia counties, Pennsylvania. The Site consists of two separate landfills, the\\u00a0Clearview and Folcroft Landfills. The Clearview Landfill is on\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"LOWER DARBY CREEK AREA\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -75.2606506802871,\n",
       "                39.8951675803033\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 900000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.8799,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -75.2852,\n",
       "          \"Notes\": \"Partners involved/Community support: Ducks Unlimited, NOAA Restoration Program, Local Government (Tinicum Township), State Government, Audubon Mid-Atlantic Chapter, Eastwick Friends and Neighbors Coalition, Friends of Heinz Refuge, L.L. Bean Outdoor Disc\",\n",
       "          \"OBJECTID\": 150,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"The U.S. Fish and Wildlife Service and Ducks Unlimited are working to restore 150 acres of Henderson Marsh at John Heinz National Wildlife Refuge. The marsh has experienced historic tidal restrictions and reduced connectivity with Darby Creek, a tributar\",\n",
       "          \"ProjectID\": \"{c3beb284-4ce7-4266-924a-23818939232a}\",\n",
       "          \"ProjectTit\": \"Henderson Marsh Reconnection Project\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/henderson-marsh-reconnection-project\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -75.2852000002717,\n",
       "                39.8798999998645\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 293700.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.93369745,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -75.40131846,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1150,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Delaware River Basin Conservation Act\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Streamlining stormwater work through the Growing Greener Communities program\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/delaware-watershed-conservation-fund-projects-funded-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -75.4013184599222,\n",
       "                39.9336974498389\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.8562009,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -75.17008239,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 779,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Matteo & Sons, Inc. Superfund site is located in West Deptford, New Jersey. In 1947, the Matteo family purchased the 82.5-acre property, which includes upland areas and adjacent mudflats between Woodbury Creek, Hessian Run, and U.S. Highway 130. The\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"MATTEO & SONS INC.\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -75.1700823896117,\n",
       "                39.856200900037\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.60069913,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -75.63538905,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 727,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Standard Chlorine of Delaware, Inc. site (also known as Metachem) is three miles northwest of Delaware City. It is approximately 65 acres in size and is west of River Road (Route 9) near the south bank of Red Lion Creek. Standard Chlorine of Delaware\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"STANDARD CHLORINE OF DELAWARE, INC.\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -75.6353890500257,\n",
       "                39.6006991297572\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.62943249,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -75.92322994,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 745,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Ordnance Products Inc. Site occupies approximately 95 acres in North East, Maryland. From 1957 to 1979, the site was occupied by a munitions\\u00a0manufacturing facility that produced, stored, and packaged grenade fuses, detonators, and related devices fo\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"ORDNANCE PRODUCTS, INC.\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -75.9232299399872,\n",
       "                39.6294324900489\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.64,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -78.2,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 675,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Warm Springs Run Watershed.  \\u200bThe watershed contains several NRCS flood control structures. The sponsor would l\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Warm Springs Run West Virginia\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -78.1999999996946,\n",
       "                39.6399999997904\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.796688,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -77.196325,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 493,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Rehabilitation of the exisiting dam to meet current criteria for a high hazard dam and to extend the service life. The dam provides flood damage reduction benefits to properties downstream.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Middle Creek PA 637 Walker Lake\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.1963249998917,\n",
       "                40.7966880000975\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.49,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -80.57,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 577,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200b\\u200b\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Harmon Creek Watershed.  The watershed has several existing NRCS flood control dams. The sponsor would like\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Harmon Creek Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.5699999998738,\n",
       "                40.4899999998079\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.87,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -80.66,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 671,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Upper Grave Creek Watershed.  The sponsor wants to take a fresh look at this watershed that has several NRCS floo\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Upper Grave Creek Watershed West Virginia\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.6600000001307,\n",
       "                39.8699999997365\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.55,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -79.85,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 670,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Upper Deckers Creek Watershed.  \\u200bThe Sponsor wants to take a fresh look at this watershed that has several NRCS flood\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Upper Deckers Creek Watershed West Virginia\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -79.8499999996147,\n",
       "                39.5499999997381\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.55,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -80.3,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 669,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Upper Buffalo Creek Watershed.  The watershed has several NRCS flood control structures. The sponsor would like to take\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Upper Buffalo Creek Watershed West Virginia\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.3000000000012,\n",
       "                39.5499999997381\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.3177,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -80.9828,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 465,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Bonds Creek Site 1, is a zoned earthfill embankment, multi-purpose (flood control & fish & wildlife development) dam in Ritchie County, West Virginia that was constructed in 1961.    Bonds Creek Site 1 is a part of the Bonds Creek Watershed Project, plan\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Bonds Creek Site 1\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.9827999998786,\n",
       "                39.3176999999761\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.94872212,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -81.76143924,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 834,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Ravenswood PCE site is located in downtown Ravenswood, West Virginia. In September 1989, perchloroethylene (PCE) contamination was detected in three of the city\\u2019s production wells at levels exceeding the federal drinking water maximum contaminant l\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"RAVENSWOOD PCE\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -81.7614392398026,\n",
       "                38.9487221199794\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.95,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -80.4,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 641,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200b\\u200b\\u200b\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Polk Creek Watershed. The sponsor would like to take a fresh look at this watershed which has several NR\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Polk Creek Watershed West Virginia\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.4000000001869,\n",
       "                38.9499999999456\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.2528,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -80.3186,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 617,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bThe City of Clarksburg and the town of Nutter Fort frequently experience flooding from Elk Creek, a tributary of the West Fork River. The city wants NRCS to determine the feasibility of flood control protection through dams, channels, or other measure\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Elk Creek Watershed Flood Control - Clarksburg\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.3185999997429,\n",
       "                39.2527999999021\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.32,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -80.5,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 645,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Salem Fork Watershed.  The sponsor wants to take a fresh look at the watershed which has several NRCS flood control\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Salem Fork Watershed West Virginia\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.5000000003726,\n",
       "                39.3200000000142\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 3190000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.48993371,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -79.63842401,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 448,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Improve aquatic habitat connectivity and fish passage at the decommissioned Albright Power Station dam on the Cheat River in West Virginia. Project will restore hydrology and habitat for species like eastern brook trout and hellbender, improve climate an\",\n",
       "          \"ProjectID\": \"77835\",\n",
       "          \"ProjectTit\": \"Increasing Aquatic Habitat Connectivity at the Albright Dam in the Cheat River Watershed (WV)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -79.6384240102514,\n",
       "                39.489933710282\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.4905,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -79.639,\n",
       "          \"Notes\": \"Partners involved/Community support: Friends of the Cheat River, American Rivers, West Virginia DNR, Ohio River Basin Fish Habitat Partnership, PFW, West Virginia DEP, Pew Charitable Trust, West Virginia Land Stewardship Corps, Preston County Commission,\",\n",
       "          \"OBJECTID\": 149,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"The Albright Power Station Dam is a low head dam that was built in 1952 on the Cheat River to feed cooling towers of the adjacent coal fired power plant. The plant was closed in 2012, leaving the dam defunct of its original purpose. The dam blocks fish p\",\n",
       "          \"ProjectID\": \"{82d06c5f-9fc4-425a-85ba-11c1d48d0ae7}\",\n",
       "          \"ProjectTit\": \"Cheat River Albright Power Station Dam Removal\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/cheat-river-albright-power-station-dam-removal\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -79.6390000001301,\n",
       "                39.4905000001711\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.435,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -78.9928,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 496,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"New Creek Site 1 is a high hazard potential dam located in Mineral County, West Virginia. Funds will be used to bring New Creek Site 1 into compliance with current NRCS and WVDEP dam design safety and engineering criteria and performance standards while\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"New Creek 1\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -78.9927999996865,\n",
       "                39.434999999686\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.4,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -79.0,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 607,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200b\\u200b\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the New Creek Watershed. \\u200bThe sponsor wants to take a fresh look at this watershed which has several NRCS flo\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"New Creek Watershed West Virginia\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -79.000000000282,\n",
       "                39.3999999998185\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.34,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -78.94,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 610,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200b\\u200b\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Patterson Creek Watershed.  Patterson Creek is a large watershed with multiple NRCS flood control structure\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Patterson Creek Watershed West Virginia\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -78.9399999998112,\n",
       "                39.3399999996793\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.53,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -78.2,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 651,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with watershed protections in the Sleepy Creek watershed. \\u200bThe project will look at water quality concerns impacting fish & wildlife\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Sleepy Creek Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -78.1999999996946,\n",
       "                39.5299999999324\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.0610185,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -77.42164901,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 829,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Hidden Lane Landfill was a 25-acre privately owned and operated disposal facility north of Virginia Route 7 between the Broad Run Farms and Countryside communities. It is immediately adjacent to the floodplain of the Potomac River.\\u00a0Starting in 1971,\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"HIDDEN LANE LANDFILL\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.4216490102807,\n",
       "                39.0610184999168\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Geological Survey\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 214286.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.947243,\n",
       "          \"LatLongTyp\": \"USGS Building, DC\",\n",
       "          \"Long\": -77.367439,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 259,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The Atlas, a key deliverable of the America the Beautiful initiative, will provide a map-based decision support tool providing science to help track the level of conservation, restoration, and stewardship for lands and waters.\",\n",
       "          \"ProjectID\": \"080XX07US0222\",\n",
       "          \"ProjectTit\": \"American Conservation and Stewardship Atlas\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.3674390003624,\n",
       "                38.9472429998823\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Geological Survey\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 550000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.947243,\n",
       "          \"LatLongTyp\": \"USGS Building, DC\",\n",
       "          \"Long\": -77.367439,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 256,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Develop National EDRR Activity Information System. This will be both a researcher, manager and decision-maker support network, a communications hub and community of practice. It will create an online tool serving as the central repository for collecting\",\n",
       "          \"ProjectID\": \"080XX06US0922\",\n",
       "          \"ProjectTit\": \"Developing National EDRR Information System\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.3674390003624,\n",
       "                38.9472429998823\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Geological Survey\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 200000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.947243,\n",
       "          \"LatLongTyp\": \"USGS Building, DC\",\n",
       "          \"Long\": -77.367439,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 254,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The USGS Invasive Species Habitat Tool (INHABIT) is a novel, web-based Decision Support Tool built with R Shiny to display spatial predictions and tabular summaries of habitat suitability from Species Distribution Models for invasive plants across the co\",\n",
       "          \"ProjectID\": \"080XX06US0122\",\n",
       "          \"ProjectTit\": \"INHABIT Enhancements for Terrestrial Plant EDRR\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.3674390003624,\n",
       "                38.9472429998823\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Geological Survey\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 2500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.947243,\n",
       "          \"LatLongTyp\": \"USGS Building, DC\",\n",
       "          \"Long\": -77.367439,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 258,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Provide architecture for DOI and other federal, state, tribal and local resource management agencies through the development, implementation and operation of an eDNA based species-detection and assessment framework to support early detection, rapid respo\",\n",
       "          \"ProjectID\": \"080XX06US1322\",\n",
       "          \"ProjectTit\": \"Developing eDNA based EDRR Framework Architecture\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.3674390003624,\n",
       "                38.9472429998823\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Geological Survey\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 750000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.947243,\n",
       "          \"LatLongTyp\": \"USGS Building, DC\",\n",
       "          \"Long\": -77.367439,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 257,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"National Horizon Scan of terrestrial and aquatic plants, including imported aquatic plants hitchhikers; National Horizon Scan of invertebrate taxa; National Transportation horizon scans for terrestrial species. Each Horizon Scan follows a standardized wo\",\n",
       "          \"ProjectID\": \"080XX06US1222\",\n",
       "          \"ProjectTit\": \"National EDRR Horizon Scans and HotSpot Analyses\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.3674390003624,\n",
       "                38.9472429998823\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Geological Survey\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.947243,\n",
       "          \"LatLongTyp\": \"USGS Building, DC\",\n",
       "          \"Long\": -77.367439,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 260,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The Sustainable Recreation Data Initiative will build on successes of the National Digital Trails Project with the objective of facilitating the DOI\\u2019s vision to promote accessibility of outdoor recreational opportunities on public lands. This will be a\",\n",
       "          \"ProjectID\": \"080XX07US0822\",\n",
       "          \"ProjectTit\": \"Sustainable Recreation Data Initiative\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.3674390003624,\n",
       "                38.9472429998823\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Geological Survey\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 476190.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.947243,\n",
       "          \"LatLongTyp\": \"USGS Building, DC\",\n",
       "          \"Long\": -77.367439,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 261,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The Atlas, a key deliverable of the America the Beautiful initiative, will provide a map-based decision support tool providing science to help track the level of conservation, restoration, and stewardship for lands and waters.\",\n",
       "          \"ProjectID\": \"080XX08US0622\",\n",
       "          \"ProjectTit\": \"American Conservation and Stewardship Atlas\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.3674390003624,\n",
       "                38.9472429998823\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Geological Survey\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 400000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.947243,\n",
       "          \"LatLongTyp\": \"USGS Building, DC\",\n",
       "          \"Long\": -77.367439,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 263,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This research will develop, test, and establish protocols for using pollinator environmental DNA (eDNA) to assess the success of grassland restoration and to improve understanding of the functioning and ecological resilience of America\\u2019s grasslands. Th\",\n",
       "          \"ProjectID\": \"080XX09MU0422\",\n",
       "          \"ProjectTit\": \"Pollinator eDNA and Grassland Restoration Success\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.3674390003624,\n",
       "                38.9472429998823\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Geological Survey\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.947243,\n",
       "          \"LatLongTyp\": \"USGS Building, DC\",\n",
       "          \"Long\": -77.367439,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 264,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The goal is to evaluate how natural and management factors affect the recovery of post-fire seedings in sagebrush steppe, focusing on informing key decisions such as treatment prioritization, seed selection, and resumption of post-fire grazing.  We will\",\n",
       "          \"ProjectID\": \"080XX09MU0722\",\n",
       "          \"ProjectTit\": \"Optimizing Native Seeding in Sagebrush Restoration\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.3674390003624,\n",
       "                38.9472429998823\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Geological Survey\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 333333.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.947243,\n",
       "          \"LatLongTyp\": \"USGS Building, DC\",\n",
       "          \"Long\": -77.367439,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 265,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The Atlas, a key deliverable of the America the Beautiful initiative, will provide a map-based decision support tool providing science to help track the level of conservation, restoration, and stewardship for lands and waters.\",\n",
       "          \"ProjectID\": \"080XX09US0322\",\n",
       "          \"ProjectTit\": \"American Conservation and Stewardship Atlas\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.3674390003624,\n",
       "                38.9472429998823\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Geological Survey\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 476190.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.947243,\n",
       "          \"LatLongTyp\": \"USGS Building, DC\",\n",
       "          \"Long\": -77.367439,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 255,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The Atlas, a key deliverable of the America the Beautiful initiative, will provide a map-based decision support tool providing science to help track the level of conservation, restoration, and stewardship for lands and waters.\",\n",
       "          \"ProjectID\": \"080XX06US0522\",\n",
       "          \"ProjectTit\": \"American Conservation and Stewardship Atlas\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.3674390003624,\n",
       "                38.9472429998823\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1150000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.64055,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -79.0599,\n",
       "          \"Notes\": \"Partners involved/Community support: Trout Unlimited, private landowners, Natural Resources Conservation Service (in three states), Farm Service Agency, USFS, PFW, West Virginia DNR, Maryland DNR, West Virginia DEP, Garrett County Roads (MD), West Virgin\",\n",
       "          \"OBJECTID\": 1241,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"The Potomac Headwaters Fish Passage Restoration Project is a watershed scale project to reconnect over 195 miles of habitat for brook trout, American eel, and other aquatic species in the Potomac Headwaters of the Chesapeake Bay across the states of Mary\",\n",
       "          \"ProjectID\": \"{3414cdc7-c120-424c-acc6-5411870d3d6a}\",\n",
       "          \"ProjectTit\": \"Potomac Headwaters Fish Passage Restoration\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/potomac-headwaters-fish-passage-restoration\",\n",
       "          \"SiteCount\": \"8\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -79.0599000002953,\n",
       "                39.6405499997096\n",
       "              ],\n",
       "              [\n",
       "                -79.1115500003,\n",
       "                39.5628600002595\n",
       "              ],\n",
       "              [\n",
       "                -79.5933620003172,\n",
       "                38.677453000206\n",
       "              ],\n",
       "              [\n",
       "                -79.5546699997582,\n",
       "                38.6482449997912\n",
       "              ],\n",
       "              [\n",
       "                -79.6151609996003,\n",
       "                38.6516689997898\n",
       "              ],\n",
       "              [\n",
       "                -79.3729870001696,\n",
       "                38.8323120001639\n",
       "              ],\n",
       "              [\n",
       "                -79.2704810003785,\n",
       "                38.6695079996754\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.8863,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -79.1262,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 499,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"North and South Mill Creek 4 is a zoned earthfill embankment, single purpose flood control dam in Grant County, West Virginia that was constructed in 1980.  It is a part of the North and South Mill Creek Subwatershed of the Potomac River Watershed Projec\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"North and South Mill Creek Site 4\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -79.1261999999396,\n",
       "                38.8863000001955\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.9003,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -79.1154,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 498,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"North and South Mill Creek 3 is a zoned earthfill embankment, single purpose flood control dam in Grant County, West Virginia that was constructed in 1982.  It is a part of the North and South Mill Creek Subwatershed of the Potomac River Watershed Projec\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"North and South Mill Creek Site 3\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -79.1153999999447,\n",
       "                38.9002999999941\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.7,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -79.15,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 654,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200b\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the South Fork River Watershed.  The South Fork River Watershed is a large watershed with multiple NRCS flood cont\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"South Fork River Watershed West Virginia\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -79.1500000001114,\n",
       "                38.6999999998246\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.4043,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -80.5699,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 461,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Big Ditch Run Site 1 is a zoned earthfill embankment, multi-purpose (flood control and recreation) dam located in Webster County, West Virginia that was constructed in 1968.  Webster County is a limited resource area.  Site 1 is a part of the Big Ditch S\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Big Ditch Run Site 1\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.5699000003147,\n",
       "                38.4043000003167\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.4043,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -80.5699,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 462,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Big Ditch Run Site 1 is an earthen embankment dam located in Webster County, West Virginia - a limited resource area. Site 1 is the only flood control structure in the watershed and of Gauley River Watershed tributary of Big Ditch Run. Site 1 provides fl\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Big Ditch Run Site 1\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.5699000003147,\n",
       "                38.4043000003167\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.8,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -80.6,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 646,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Saltlick Creek Watershed. The sponsors want to take a fresh look at this watershed which has existing flood contr\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Saltlick Creek Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.59999999966,\n",
       "                38.8000000000294\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.7646,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -80.6006,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 506,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"The Saltlick Creek Sites 4,6, 7, 8, & 9 are earthen embankments located in the designated limited resource area of Braxton County, West Virginia and currently considered high hazard potential dams. The Sites provide protection to approximately 1497 resid\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Saltlick Creek 6\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.6005999997096,\n",
       "                38.7646000002735\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.7468,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -80.5956,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 507,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"The Saltlick Creek Sites 4,6, 7, 8, & 9 are earthen embankments located in the designated limited resource area of Braxton County, West Virginia and currently considered high hazard potential dams. The Sites provide protection to approximately 1497 resid\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Saltlick Creek 7\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.5956000001944,\n",
       "                38.7468000000159\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.7329,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -80.5817,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 508,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"The Saltlick Creek Sites 4,6, 7, 8, & 9 are earthen embankments located in the designated limited resource area of Braxton County, West Virginia and currently considered high hazard potential dams. The Sites provide protection to approximately 1497 resid\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Saltlick Creek 8\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.5817000003923,\n",
       "                38.7329000003017\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.7323,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -80.5949,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 509,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"The Saltlick Creek Sites 4,6, 7, 8, & 9 are earthen embankments located in the designated limited resource area of Braxton County, West Virginia and currently considered high hazard potential dams. The Sites provide protection to approximately 1497 resid\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Saltlick Creek 9\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.5948999996873,\n",
       "                38.7323000002736\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.7564,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -80.6321,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 505,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"The Saltlick Creek Sites 4,6, 7, 8, & 9 are earthen embankments located in the designated limited resource area of Braxton County, West Virginia and currently considered high hazard potential dams. The Sites provide protection to approximately 1497 resid\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Saltlick Creek 4\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.632100000069,\n",
       "                38.7564000000526\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2900000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.6425285,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -80.6138382,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 848,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Albright Dam Removal on the Cheat River Watershed in WV\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.6138381998621,\n",
       "                38.6425285002225\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 167000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.6425285,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -80.6138382,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1036,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": \"This project will mitigate three abandoned mine hazards at New River Gorge National Park and Preserve.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Mitigate 3 Abandoned Mine Hazards at New River Gorge National Park and Preserve\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.6138381998621,\n",
       "                38.6425285002225\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.78,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -81.66,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 603,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Mill Creek Watershed.  \\u200bThe watershed contains several NRCS flood control structures. The sponsor would like to take\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Mill Creek Watershed West Virginia\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -81.6600000001912,\n",
       "                38.7799999999356\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.6109,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -81.5808,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 503,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Pocatalico River Site 28, is a zoned earthfill embankment, multi-purpose (flood control, stream flow regulation, & municipal and industrial water supply) dam located in Jackson County, West Virginia that was constructed in 1987.    Site 28 is a part of t\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Pocatalico River Site 28\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -81.5807999999291,\n",
       "                38.6109000000337\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.226071,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -82.175945,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 491,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Funding for construction High hazard flood control structure originally designed as significant. Structure past it's 50 year service life. Proposed measures include elevating the top of dam and armoring aux spillway. Primarily protects ag land and residn\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Margaret Creek 1\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -82.1759450003948,\n",
       "                39.2260709996566\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.302724,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -82.184189,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 492,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Funding for construction High hazard flood control structure originally designed as significant. Structure past it's 50 year service life. Proposed measures include elevating the top of dam and armoring aux spillway. Primarily protects ag land and reside\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Margaret Creek 6\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -82.1841889996572,\n",
       "                39.3027240002543\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.42720276,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -86.42934415,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 738,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Pike and Mulberry Streets PCE plume site is located in Martinsville, Indiana. There are several possible sources of contamination, including Master Wear, a commercial and institutional dry cleaning and laundry operation formerly operating at 28 N. Ma\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIKE AND MULBERRY STREETS PCE PLUME\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -86.4293441502282,\n",
       "                39.4272027596958\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Defense\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 500585.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.93980749,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -86.4817948,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1428,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Enhance local volunteer collaboration and partnership for improved land management and invasive plant control to benefit the ecosystem and two federally listed bat species by working with private landowners adjacent to Southern Indiana Sentinel Landscape\",\n",
       "          \"ProjectID\": \"80869\",\n",
       "          \"ProjectTit\": \"Working Lands Invasive Species Management in the Southern Indiana Sentinel Landscape (IN)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -86.4817947970861,\n",
       "                38.9398074939662\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.3803,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -88.3658,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 634,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bThis area of interest is the upper 3,200 acres of the Johnson Creek watershed which is part of the HUC 12 Pond Creek-Little Wabash watershed. Johnson Creek flows through the town of Fairfield, IL. and is prone to flooding causing inundation issues thr\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Pond Creek - Little Wabash Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -88.3657999996384,\n",
       "                38.3803000000275\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.55130215,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -90.48485105,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 753,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Valley Park TCE Superfund Site is located in the eastern portion of the city of Valley Park, approximately 15 miles southwest of the city of St. Louis, in St. Louis County, Missouri. The Site is north of the Meramec River and lies within the river fl\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"VALLEY PARK TCE\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.484851050079,\n",
       "                38.5513021501353\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.26102655,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -90.53854855,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 759,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Southwest Jefferson County Mining Site includes all of Jefferson County, Missouri, excluding the Herculaneum Site. Jefferson County is located on the northern portion of an area known as the Old Lead Belt where mining began in the early 1700s. Mine w\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"SOUTHWEST JEFFERSON COUNTY MINING\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.5385485495681,\n",
       "                38.2610265503118\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.60056774,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -91.21311411,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 756,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Riverfront Site is contaminated with industrial chemicals, primarily chlorinated volatile organics. In 1986, the Missouri Department of Natural Resources (MoDNR) began testing public supply wells in the state for volatile organic compounds (VOCs) and\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"RIVERFRONT\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -91.2131141100543,\n",
       "                38.6005677403005\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 109500.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.5279,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -87.346,\n",
       "          \"Notes\": \"Partners involved/Community support: Indiana DNR\",\n",
       "          \"OBJECTID\": 137,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"This project will remove the low head dam on Otter Creek in Vigo County, Indiana.  This 9ft tall, 215 ft wide dam, is a priority basin for Indiana Department of Natural Resources, with a rich history fish surveys that date back to David Star Jordan (1885\",\n",
       "          \"ProjectID\": \"{0dcbd54d-a349-439b-ba00-d3ecc460412a}\",\n",
       "          \"ProjectTit\": \"Markle Dam Removal on Otter Creek\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/markle-dam-removal-otter-creek-improved-safety-socially-vulnerable-indiana-community\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -87.345999999737,\n",
       "                39.5278999998712\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 325000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.5748,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -85.6602,\n",
       "          \"Notes\": \"Partners involved/Community support: Indiana DNR\",\n",
       "          \"OBJECTID\": 135,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"This project will remove the Charles Mill Dam, a 350 ft wide, 10 ft tall dam in the Mississinewa River at Marion, Indiana. This dam removal will open up the Mississinewa watershed above a USACE flood control dam and reconnect 965 miles of stream.  This i\",\n",
       "          \"ProjectID\": \"{dc78bc37-bae7-4e86-8826-efc85eae0455}\",\n",
       "          \"ProjectTit\": \"Charles Mill Dam Removal\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/charles-mill-dam-removal-improved-safety-socially-vulnerable-indiana-community\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -85.6601999995511,\n",
       "                40.5748000002013\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.80162,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -86.1987,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 633,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"The funding request is for restoration of wetlands along the White River in the City of Indianapolis between Riverside Park and Southwestway Park. Both of the parks and White River provide recreation benefits to the citizens for Marion County and adjacen\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Pleasant Run - White River Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -86.1986999996214,\n",
       "                39.8016200002707\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.83232918,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -86.12310367,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 739,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Keystone Corridor Ground Water Contamination site is in Indianapolis, Indiana. The site consists of the Fall Creek well field and potential sources of the groundwater contamination. The groundwater has been affected by an approximately 4,500 foot lon\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"KEYSTONE CORRIDOR GROUND WATER CONTAMINATION\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -86.1231036701733,\n",
       "                39.8323291798606\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.698358,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -82.658106,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 518,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Funding for planning of a High hazard flood control structure originally designed as significant. Structure past it's 50 year service life. Primarily protects ag land and residents near Lancaster, OH.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Upper Hocking 3\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -82.6581060003914,\n",
       "                39.6983579999175\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.698358,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -82.658106,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 519,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Located in Fairfield County, Ohio, Upper Hocking 3 dam is past it\\u2019s 50-year service live. The dam serves the surrounding agricultural community and residents near Lancaster, Ohio. Funds for this project will be used by NRCS and the Hunter\\u2019s Run Conse\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Upper Hocking 3\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -82.6581060003914,\n",
       "                39.6983579999175\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.71583,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -82.21055,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 672,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200b\\u200b\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with watershed protections in the Upper Rush Creek watershed. Water quality of concern due to mine drainage contaminants.  There\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Upper Rush Creek\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -82.210549999686,\n",
       "                39.7158299997348\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.58254608,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -83.17056781,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 803,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Little Scioto River Superfund site is located west of the city of Marion in Marion County, Ohio. The site is comprised of two separate Operable Units, or OUs. OU 1 consists of an 8.5-mile stretch of Little Scioto River and OU 2 is the location of the\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"LITTLE SCIOTO RIVER\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -83.1705678100303,\n",
       "                40.5825460798144\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.10379189,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -83.20747753,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 750,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Detroit Steel Corp. McLouth Steel Gibraltar Plant is at 28000 W. Jefferson Ave., Gibraltar, Michigan, west of the Canadian National North American rail line. Catch basins there receive wastewater from adjacent landfills.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"DSC MCLOUTH STEEL GIBRALTAR PLANT\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -83.2074775297094,\n",
       "                42.1037918896974\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 800000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.1097,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -84.2456,\n",
       "          \"Notes\": \"Partners involved/Community support: River Raisin Watershed Council\",\n",
       "          \"OBJECTID\": 134,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"This project will remove the Brooklyn Dam, in Brooklyn, Michigan, in the upper River Raisin watershed. The Brooklyn Hydroelectric Dam is one of the many dams within the River Raisin watershed. This structure is classified by State of Michigan as High Haz\",\n",
       "          \"ProjectID\": \"{65b9a83b-049e-4255-896f-f5ec68d2e6c1}\",\n",
       "          \"ProjectTit\": \"Brooklyn Dam Removal\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/brooklyn-dam-removal-removing-high-hazard-dam-southeast-michigan\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -84.2456000002353,\n",
       "                42.109699999887\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Forest Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 1500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.38400263,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -88.10512254,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1409,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Build on landscape-scale habitat restoration at the U.S. Forest Service\\u2019s Midewin National Tallgrass Prairie in Illinois by removing invasive trees and shrubs on a 1,321-acre tract in the Grant Creek Priority Watershed Area which shares a mile-long bor\",\n",
       "          \"ProjectID\": \"79564\",\n",
       "          \"ProjectTit\": \"Grassland Habitat Expansion and Restoration across Midewin National Tallgrass Prairie in Illinois.\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -88.1051225397146,\n",
       "                41.3840026348482\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.34059036,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -89.08415702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 735,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Matthiessen and Hegeler Zinc Co. site is located in LaSalle, Ill., with a portion of an off-site residential area being investigated in adjacent Peru, Ill. The Matthiessen and Hegeler Zinc Co. operated a zinc smelter on the industrial portion of the\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"MATTHIESSEN AND HEGELER ZINC COMPANY\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -89.0841570198704,\n",
       "                41.3405903599082\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.2307464,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -89.07445204,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 736,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"This Superfund site consists of an approximately 7.5-square-mile area in southeastern portion of the city of Rockford. Ground water investigations performed by the Illinois Environmental Protection Agency between 1981 and 1988 showed that many private an\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"SOUTHEAST ROCKFORD GROUND WATER CONTAMINATION\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -89.0744520401557,\n",
       "                42.2307463997828\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.41111941,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -84.61665556,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 747,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"Velsicol Chemical Corp. (formerly Michigan Chemical Corp.) produced various chemical compounds and products at its 54-acre main plant site in St. Louis, Mich., from 1936 to 1978. Products included the fire retardant polybrominated biphenyl (PBB) and the\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"VELSICOL CHEMICAL CORP. (MICHIGAN)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -84.6166555602783,\n",
       "                43.4111194098202\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Forest Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 784472.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.43885635,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -84.77499427,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1385,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Conduct on-the-ground conservation activities, such as invasive species removal and preparation for prescribed burns in each of Michigan's three National Forests with Youthwork AmeriCorps members and volunteers. Project will lead to wide-ranging restorat\",\n",
       "          \"ProjectID\": \"80415\",\n",
       "          \"ProjectTit\": \"Engage the Next Generation of Ecosystem Stewards through Restoration of Michigan's National Forests\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -84.7749942732421,\n",
       "                43.4388563546357\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.48150594,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -82.89445313,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 749,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Ten-Mile Drain\\u00a0in St. Clair Shores, Michigan, includes an underground storm sewer utility heavily contaminated with\\u00a0polychlorinated biphenyls (PCBs). A historical PCB release is believed to have migrated from a commercial parking lot onto adjacent\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"TEN-MILE DRAIN\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -82.894453129834,\n",
       "                42.4815059402945\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 855650.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.0158,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -83.6952,\n",
       "          \"Notes\": \"Partners involved/Community support: Genessee County Parks, Michigan DNR\",\n",
       "          \"OBJECTID\": 136,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"This project is part of the Flint River Restoration, a long-term effort focused on the revitalization of the riverfront in downtown Flint, Michigan.  Riverfront revitalization will enhance community connectivity, restore natural ecosystem functions, impr\",\n",
       "          \"ProjectID\": \"{8b1d3b6b-0991-4451-895d-f0f5674b048e}\",\n",
       "          \"ProjectTit\": \"Hamilton Dam Removal\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/hamilton-dam-removal-removing-high-hazard-dam-flint-mi\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -83.69519999963,\n",
       "                43.0158000003117\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.17956543,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -78.68849069,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 801,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Eighteen Mile Creek Superfund site is in Niagara County, New York. The creek flows north for approximately 15 miles and discharges to Lake Ontario in Olcott, New York. Immediately north of the New York State Barge Canal are the East and West branches\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"EIGHTEENMILE CREEK\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -78.6884906899816,\n",
       "                43.1795654298408\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.22290583,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -78.02904908,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 796,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The five-acre Diaz Chemical Corporation site is located in Holley, New York. The area includes the Diaz Chemical facility and parts of the surrounding residential neighborhood.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"DIAZ CHEMICAL\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -78.0290490802789,\n",
       "                43.2229058300089\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.789,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -77.514,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 621,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bThe Hamlet of Honeoye, in the Town of Richmond, is the merging point for Mill Creek and Honeoye Creek (Honeoye Lake outlet channel). This area is relatively flat serving as the settling point for fast moving, unchecked storm waters. The uncontrolled s\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Honeoye Creek Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.5139999995526,\n",
       "                42.7890000002704\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"Department-Wide Programs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.28,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -81.567,\n",
       "          \"Notes\": \"This project's exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 3 wells\",\n",
       "          \"OBJECTID\": 1294,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Orphaned Well Site Plugging, Remediation, And Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 028||Cuyahoga Valley]\",\n",
       "          \"ProjectTit\": \"Cuyahoga Valley National Park\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -81.5669999996861,\n",
       "                41.2799999999306\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2510000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.8738899,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -77.7996063,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1076,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Pennsylvania Priority Grassland Project\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.7996062997021,\n",
       "                40.8738899001254\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 20000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.8738899,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -77.7996063,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 928,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": \"Evaluate site conditions to determine if further action is warranted under the CERCLA process.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Develop Site Condition Assessment for Ice Pond Run, Friendship Hill National Historic Site\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.7996062997021,\n",
       "                40.8738899001254\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 2860000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.87414159,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -77.79926007,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 430,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Increase priority grassland habitats for at-risk bird species in targeted geographies across Pennsylvania. By enhancing capacity to manage and restore grassland habitat, project will increase species population resiliency through native habitat planting,\",\n",
       "          \"ProjectID\": \"77481\",\n",
       "          \"ProjectTit\": \"Targeted Grassland Habitat Restoration and Management in Priority Pennsylvania Landscapes\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -77.799260070127,\n",
       "                40.8741415902455\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"Department-Wide Programs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.65,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -79.007,\n",
       "          \"Notes\": \"This project's exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 18 wells\",\n",
       "          \"OBJECTID\": 1273,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Orphaned Well Site Plugging, Remediation, And Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 022||Allegheny Natio]\",\n",
       "          \"ProjectTit\": \"Allegheny National Forest\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -79.0069999999626,\n",
       "                41.6499999998991\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.132724,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -76.82938296,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 797,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Facet Enterprises, Inc. site is located in Elmira Heights, New York. Bendix Corporation, which manufactured various products including bicycle parts, automobile engine components, and small arms during World War II owned the Facet Enterprises, Inc. s\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"FACET ENTERPRISES, INC.\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -76.829382960282,\n",
       "                42.1327240000105\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.08952538,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -76.0522148,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 798,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Vestal Water Supply Well 1-1 Superfund site is in Vestal, New York and sits on the southern bank of the Susquehanna River. The drinking water well (Well 1-1) was one of three production wells in the Vestal Town Water District 1. This well provided dr\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"VESTAL WATER SUPPLY WELL 1-1\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -76.0522147996707,\n",
       "                42.0895253802208\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 635500.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.06431503,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -75.4173496,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1171,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Delaware River Basin Conservation Act\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Using nature-based solutions to improve passage for aquatic organisms in the Upper Delaware River watershed\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/delaware-watershed-conservation-fund-projects-funded-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -75.4173496004465,\n",
       "                42.0643150301376\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 1406062.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.39733734,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -76.20965735,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1404,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Use an existing project pipeline to advance replacement of 36 crossings in a cost-effective manner with timber deck bridges which have no footprint in the stream channel and allow for organism passage. Project will replace culverts to restore connectivit\",\n",
       "          \"ProjectID\": \"81067\",\n",
       "          \"ProjectTit\": \"Re-Establishing Aquatic Connectivity on State Game Lands (PA)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -76.2096573524088,\n",
       "                41.3973373359679\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.93065814,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -74.70034719,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 790,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"T\\ufeffhe Mansfield Trail Dump site is in Byram Township, Sussex County, New Jersey. From the 1950s through the early 1970s, various parties used the site as a dump area for septic and industrial waste. The site is made up of wooded, undeveloped properties\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"MANSFIELD TRAIL DUMP\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -74.7003471902556,\n",
       "                40.9306581400472\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.45882187,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -73.71460626,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 799,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"Located in Kent, New York, the Arsenic Mine site includes a historic mine known as Pine Pond Mine, Silver Mine, and Brown\\u2019s Serpentine Mine. There are two former entry shafts and a northern mine shaft on private property. A southern mine shaft lies in\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"ARSENIC MINE\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -73.7146062600911,\n",
       "                41.4588218697792\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.315,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -74.491,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 628,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bOver the last several years, tremendous investment has been made by federal, State and local entities to construct and maintain drainage and flood control measures in this 16,000 acre organic soil region. These measures are essential to economically v\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Middle Wallkill River - Lower Pochuk Creek Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -74.491000000164,\n",
       "                41.3150000003176\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.90188881,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -74.51192738,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 784,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Rockaway Borough Wellfield site is located in Rockaway Borough, New Jersey. The site covers a two-square-mile area and includes three municipal water supply wells, which are located in a glacial aquifer designated by EPA as the sole source aquifer fo\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"ROCKAWAY BOROUGH WELL FIELD\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -74.5119273802966,\n",
       "                40.9018888102792\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.88537487,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -74.5406747,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 785,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Dover Municipal Well 4 site is located in Dover, New Jersey. Drilled in 1962, Dover Municipal Well No. 4 (DMW-4) began pumping in June 1965, and was one of the town's primary water supply wells. The Dover Municipal Well No. 4 site is located in the T\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"DOVER MUNICIPAL WELL 4\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -74.5406747000804,\n",
       "                40.8853748702908\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.87864666,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -74.26938221,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 777,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Unimatic Manufacturing Corporation site is in an industrial and residential area of Fairfield, New Jersey, at 25 Sherwood Lane, Block 2301 and Lot 8. The site includes three properties: General Hose Products to the east, National Precision Tools Co.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"UNIMATIC MANUFACTURING CORPORATION\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -74.2693822095669,\n",
       "                40.8786466601435\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.87250338,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -74.10268349,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 789,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Garfield Groundwater Contamination site is located in Garfield, New Jersey. The site consists of the E.C. Electroplating (ECE) property and a chromium groundwater plume that extends a half-mile west from the ECE property to the Passaic River. Site in\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"GARFIELD GROUND WATER CONTAMINATION\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -74.1026834898031,\n",
       "                40.8725033800508\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.18579081,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -73.11970147,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 725,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The 34-acre Raymark Industries, Inc. site is located at 75 East Main Street in Stratford, Connecticut.  Raymark Industries, Inc. (Raymark) was a manufacturer of automotive brakes, clutch parts, and other friction components, primarily for the automotive\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"RAYMARK INDUSTRIES, INC.\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -73.1197014700307,\n",
       "                41.1857908099004\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.382,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -72.862,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 653,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with water pollution, flooding and erosion concerns.  Sources of point and nonpoint water pollution have a detrimental effect on shellfish b\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"South Central Coast Basin\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -72.8620000001842,\n",
       "                41.3820000002699\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.47646997,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -72.679793,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 726,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Durham Meadows site is located in the Town of Durham, Middlesex County, Connecticut and includes an area of groundwater contamination generally centered on Main Street. \\u00a0The Site includes historic Main Street in Durham center and contains industrial\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"DURHAM MEADOWS\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -72.6797929998156,\n",
       "                41.4764699696665\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.815,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -72.71,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 557,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with water pollution, flooding and erosion concerns.  Sources of point and nonpoint water pollution have a detrimental effect on shellfish b\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Connecticut River Basin\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -72.7100000001894,\n",
       "                41.8150000002768\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 15000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.55490317,\n",
       "          \"LatLongTyp\": \"Naugatuck Valley Council of Governments\",\n",
       "          \"Long\": -73.04225784,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 701,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"The Naugatuck Valley Council of Governments will remove the Kinneytown Dam Facility on the Naugatuck River. The project will open 29 miles for blueback herring, American shad, and alewife on the mainstem river, and an additional 28 miles of tributaries f\",\n",
       "          \"ProjectID\": \"NOAA_019\",\n",
       "          \"ProjectTit\": \"Kinneytown Dam Facility removal\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -73.0422578396425,\n",
       "                41.5549031700473\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.61216124,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -73.78127997,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 795,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Hopewell Precision site is located in Hopewell Junction in the Town of East Fishkill, Dutchess County, New York. Hopewell Precision, Inc. has operated at either 15 or 19 Ryan Drive since the early 1970's manufacturing sheet metal parts and assemblies\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"HOPEWELL PRECISION\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -73.7812799696734,\n",
       "                41.6121612397665\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.698,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -73.343,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 581,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with water pollution, flooding and erosion concerns.  Sources of point and nonpoint water pollution have a detrimental effect on shellfish b\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Housatonic River and Southwest Coast Basin\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -73.3430000004396,\n",
       "                41.6979999999259\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.03086,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -72.75561,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 576,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bThe Town of Southwick is requesting assistance to address flooding during large storm events around Congamond Lake in Hampden County, MA. The two outlets of the lake have issues with sedimentation that can not be addressed with maintenance. In additio\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Great Brook Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -72.7556100004132,\n",
       "                42.0308600000516\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 3500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.36166543,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -72.96061542,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1380,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Restore floodplains benches, riparian forests, and aquatic connectivity within three river basins in the Appalachian Highlands in Massachusetts. Project will improve habitat and corridors from the southern Berkshires to the Connecticut River Valley, enha\",\n",
       "          \"ProjectID\": \"80833\",\n",
       "          \"ProjectTit\": \"Aquatic Connectivity for Imperiled Species in the Appalachian Corridor of Massachusetts\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -72.9606154189376,\n",
       "                42.3616654263755\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.173,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -76.116,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 605,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200b\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Mud Creek watershed.  Primary flooding concerns are in residential areas, including major road closures during\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Mud Creek-Town of Cicero\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -76.115999999813,\n",
       "                43.1730000001175\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.367519,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -72.727024,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 479,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Jewel Brook Site 2 was constructed in 1969 to provide flood protection for Ludlow, Vermont.  BIL Rehab funds will be used to bring the dam into compliance and extend the service life of the structure.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Jewel Brook 2\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -72.7270240000882,\n",
       "                43.3675190000399\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.392494,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -72.713138,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 480,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Jewel Brook Site 3 was constructed in 1970 to provide flood protection for Ludlow, Vermont.  BIL Rehab funds will be used to bring the dam into compliance and extend the service life of the structure.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Jewel Brook 3\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -72.7131379996314,\n",
       "                43.3924940002095\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.38084,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -72.723027,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 481,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Jewel Brook Site 5 was constructed in 1972 to provide flood protection for Ludlow, Vermont.  BIL Rehab funds will be used to bring the dam into compliance and extend the service life of the structure.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Jewel Brook 5\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -72.7230270001304,\n",
       "                43.3808400000181\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.362337,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -72.722884,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 478,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Jewel Brook Site 1 was constructed in 1966 to provide flood protection for Ludlow, Vermont.  BIL Rehab funds will be used to bring the dam into compliance and extend the service life of the structure.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Jewel Brook 1\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -72.7228840000153,\n",
       "                43.3623369999538\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.92919104,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -72.28236756,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 831,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Ely Copper Mine Superfund Site\\u00a0is an abandoned copper mine located in Vershire, Orange County, Vermont, and encompasses approximately 350 acres where historic mining activities took place, including about 30 acres of waste material containing an est\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"ELY COPPER MINE\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -72.2823675598973,\n",
       "                43.9291910399842\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 1000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.0737629,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -72.6640017,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1382,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Produce a long-term conservation plan that supports, maintains, and enhances an ecologically functional and connected landscape with sustainable production of natural resources and recreational opportunities. Project will launch a strategic planning proc\",\n",
       "          \"ProjectID\": \"81116\",\n",
       "          \"ProjectTit\": \"Vermont Conservation Strategy Initiative (VT)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -72.6640017022856,\n",
       "                44.0737629015306\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.45036918,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -73.12244895,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 830,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Commerce Street Plume site is located at an industrial park in Williston, Vermont. The property formerly leased by Mitec Systems Corp. (Mitec), one of the known plume contributors, occupies 1 acre at 96 Commerce Street and currently includes one 6,00\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"COMMERCE STREET PLUME\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -73.1224489502592,\n",
       "                44.4503691799325\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.3587,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -72.96474,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 623,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bBIL WFPO funds will be used conduct a feasibility report into a proposed project that would preserve an historic dam and maintain a large impoundment that provides recreation and other benefits to the Town of Richmond and Huntington, Vermont.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Johns Brook Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -72.964740000327,\n",
       "                44.3587000001571\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.3765,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -72.4958,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 616,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bFunds will be used to rehabilitate an existing historical mill dam which currently impounds a 72-acre pond. This pond is important for recreation, wildlife, and fish habitat; plus it is a huge economic draw for Town of Calais. There are approximately\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Curtis Pond\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -72.4958000004402,\n",
       "                44.3765000000454\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 4784222.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.27686027,\n",
       "          \"LatLongTyp\": \"Trout Unlimited, MI\",\n",
       "          \"Long\": -84.38924511,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 707,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"Trout Unlimited will remove or replace eight fish passage barriers to open 55 miles of spawning, rearing, and refuge habitat on high-quality cold water streams in the Great Lakes region. The projects are expected to benefit native Great Lakes species lik\",\n",
       "          \"ProjectID\": \"NOAA_025\",\n",
       "          \"ProjectTit\": \"Remove or replace eight fish passage barriers in Michigan and Wisconsin\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -84.389245110234,\n",
       "                44.2768602702599\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 5000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.4830856,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -84.6214066,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1097,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Reclaiming Resilience in Streams: Part 1 (MI)\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -84.6214065997973,\n",
       "                43.4830855997127\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 1904400.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.65391111,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -90.4989799,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1419,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Conduct implementation-focused research to fill gaps in understanding of climate and non-climate stressors on manoomin (wild rice) to support tribal, state, and local government manoomin management strategies. Project will strengthen relationships betwee\",\n",
       "          \"ProjectID\": \"80251\",\n",
       "          \"ProjectTit\": \"Intergovernmental Collaboration for Manoomin (Wild Rice) Stewardship in Wisconsin\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -90.498979899293,\n",
       "                45.6539111092908\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 250000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.97412174,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -89.88810808,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1315,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"This project implements actions in Lac du Flambeau\\u2019s Tribal Climate Resiliency Plan (TCRP) or better known as Waaswaaganing Gaagige Bimaadiziwin Gaawin Geqaabi Naniizanasinoon. In the plan 20 species were assessed for climate vulnerability through a cl\",\n",
       "          \"ProjectID\": \"[DOI - 014|250000|Implementation ]\",\n",
       "          \"ProjectTit\": \"Implementation Actions on Treaty Resources and Other Animal Species\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -89.8881080796736,\n",
       "                45.9741217399732\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 42465.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.9696725,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -89.8920991,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 43,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration\",\n",
       "          \"ProjectDes\": \"Develop capacity to prevent invasive species invasions on Trust lands.\",\n",
       "          \"ProjectID\": \"{56269854-81B8-432E-B978-9980F1DDC5EB}\",\n",
       "          \"ProjectTit\": \"Invasive Species Prevention\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -89.8920991004448,\n",
       "                45.9696724997147\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 250000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.96970837,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -89.8921069,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 37,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"This project will implement at least 10 climate adaptation actions from the Tribe's Climate Resiliency Plan and promote co-stewardship between local agencies and Tribes.\",\n",
       "          \"ProjectID\": \"{A25F5D90-D37E-4C23-B548-B1EA181D489B}\",\n",
       "          \"ProjectTit\": \"Implementation Actions on Treaty Resources and Other Animal Species\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -89.8921068996181,\n",
       "                45.9697083688011\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 212079.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.57009139,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -88.83743591,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1317,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The Forest County Potawatomi Community proposes a Tribal Climate Resilience project that will help the Tribe implement sustainability and climate change resilience in the Tribal community, specifically by establishing the Tribe\\u2019s Sustainability and Res\",\n",
       "          \"ProjectID\": \"DOI - 024|212079|Implementi\",\n",
       "          \"ProjectTit\": \"Implementing Sustainability & Climate Change Resilience - Forest County Potawatomi Community\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -88.8374359101682,\n",
       "                45.5700913901363\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 212079.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.57190837,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -88.90290655,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 78,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The Tribal Climate Resilience project will help the Tribe implement sustainability and climate change resilience in the Tribal community, specifically by establishing the Tribe\\u2019s Sustainability and Resilience Program.\",\n",
       "          \"ProjectID\": \"{52506636-F404-48D8-8542-0FB46810F363}\",\n",
       "          \"ProjectTit\": \"Tribal Climate Resilience Implementation Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -88.9029065501079,\n",
       "                45.5719083736423\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 3600000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.02100571,\n",
       "          \"LatLongTyp\": \"Grand Traverse Band of Ottawa and Chippewa Indians\",\n",
       "          \"Long\": -85.60477204,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 690,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Tribal Priority Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"The Grand Traverse Band of Ottawa and Chippewa Indians will replace 12 road stream crossings with fish passage infrastructure. They will also investigate fish passage alternatives for two hydropower dams: Tower Dam and Kleber Dam. Funding will support hi\",\n",
       "          \"ProjectID\": \"NOAA_008\",\n",
       "          \"ProjectTit\": \"Replacement of 12 road stream crossings with fish passage infrastructure\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -85.6047720402959,\n",
       "                45.0210057097921\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.31413397,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -85.26193877,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 748,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Charlevoix Municipal Well site is located in Charlevoix, Michigan. Operations at a public school as well as several industrial and commercial facilities may have contaminated soil and groundwater with hazardous chemicals. Groundwater contamination im\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"CHARLEVOIX MUNICIPAL WELL\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -85.2619387697874,\n",
       "                45.3141339702175\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 85000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.4524756,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -84.6032488,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 31,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration\",\n",
       "          \"ProjectDes\": \"Build capacity for early detection/rapid response to invasive species invasions\",\n",
       "          \"ProjectID\": \"{7E581170-ABD4-40C2-AC14-C271120A920C}\",\n",
       "          \"ProjectTit\": \"Expanded Invasive Species Management, Early Detection and Rapid Response and Invasive Plant Disposal Alternatives\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -84.6032488002458,\n",
       "                46.4524755999544\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 5503400.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.31833376,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -89.37499969,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 438,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Remove 27 stream barriers located in fourteen Michigan counties to restore aquatic organism passage for at-risk species including Eastern Massasauga Rattlesnake, Pickerel Frog, and Flutedshell and Elkhorn freshwater mussels. By partnering with local orga\",\n",
       "          \"ProjectID\": \"77578\",\n",
       "          \"ProjectTit\": \"Reclaiming Resilience and Removing Barriers to Aquatic Organism Passage in Michigan Streams\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -89.3749996896426,\n",
       "                46.3183337598431\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 165577.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.52368,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -91.2009,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 923,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Resilient Recreation Sites\",\n",
       "          \"ProjectDes\": \"Funding will complete compliance and design for a network of mainland trails created to enhance health/fitness opportunities for Red Cliff tribal members and expand trail experiences for Apostle Islands visitors.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Designing the Apostle Islands National Lakeshore trail network (ADA and tribal land connections)\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -91.2009000001054,\n",
       "                46.5236799997261\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 232153.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.963776,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -89.6848121,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 42,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration\",\n",
       "          \"ProjectDes\": \"Build capacity for early detection/rapid response to invasive species invasions\",\n",
       "          \"ProjectID\": \"{742568E9-C114-4AD2-8D51-D8E62C40C80E}\",\n",
       "          \"ProjectTit\": \"Invasive Species Early Detection Plan\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -89.6848121003376,\n",
       "                47.9637760002884\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.134514,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -67.98994,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 523,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Rehabilitation of existing flood control struture as well as adding the required infrastructure to provide irrigation water to the surrounding crop ground\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Violette Brook Dam\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -67.9899400003124,\n",
       "                47.1345139998454\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior and Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service and the Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 1663142.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.87832095,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -68.88775635,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1412,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Create a portfolio of high priority river restoration projects that address top habitat needs, while producing safer and cost-effective infrastructure using a robust public-private consortium to support the success of developing this program in a region\",\n",
       "          \"ProjectID\": \"79771\",\n",
       "          \"ProjectTit\": \"Prioritizing River Restoration in the Wolastoq-St.John Watershed (ME)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -68.8877563475467,\n",
       "                46.8783209546399\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior and Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service and the Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 4999388.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.41159461,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -68.6486499,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1437,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Conduct habitat assessments of moose, wood turtles, vernal pools, fish passage for eastern brook trout and Atlantic salmon, plus restore riparian habitat and aquatic connectivity through the replacement of five stream crossings. Project will address goal\",\n",
       "          \"ProjectID\": \"81192\",\n",
       "          \"ProjectTit\": \"Prioritizing Habitat Restoration and Aquatic Connectivity in the Penobscot River Watershed (ME)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"5\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -68.6486498953853,\n",
       "                45.411594606569\n",
       "              ],\n",
       "              [\n",
       "                -68.7118879676207,\n",
       "                45.0995928803086\n",
       "              ],\n",
       "              [\n",
       "                -68.135173965944,\n",
       "                45.2701181024889\n",
       "              ],\n",
       "              [\n",
       "                -68.787555257688,\n",
       "                46.173759385775\n",
       "              ],\n",
       "              [\n",
       "                -69.1082526984111,\n",
       "                45.376567914964\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 5000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.7463837,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -69.0169067,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 992,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Improving Fish Passage at Milltown and Woodland Dams on the International St. Croix River, Maine\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -69.0169067002617,\n",
       "                45.746383699791\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 6600000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.15894353,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -67.40237106,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 420,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Expand aquatic connectivity for river herring and other at-risk species and enhance watershed health and local economic vitality in the St. Croix River and the Bay of Fundy. The project will significantly improve fish passage in historic spawning habitat\",\n",
       "          \"ProjectID\": \"77070\",\n",
       "          \"ProjectTit\": \"Improving Connectivity for Sea-Run Fish at Milltown and Woodland Dams on the St. Croix River (ME)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -67.402371060373,\n",
       "                45.1589435300149\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2979896.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.99704646,\n",
       "          \"LatLongTyp\": \"Penobscot Indian Nation\",\n",
       "          \"Long\": -68.62971625,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 688,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Tribal Priority Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"The Penobscot Indian Nation will eliminate five culvert and dam barriers within the East Branch of the Penobscot River. This work will benefit Endangered Species Act-listed Atlantic salmon and other migratory fish species. The project will also build tri\",\n",
       "          \"ProjectID\": \"NOAA_006\",\n",
       "          \"ProjectTit\": \"Removal of five culvet and dam barriers\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -68.6297162496689,\n",
       "                44.9970464603103\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 14826500.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.30335591,\n",
       "          \"LatLongTyp\": \"Maine Dept of Marine Resources\",\n",
       "          \"Long\": -69.7681145,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 704,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"The Maine Department of Marine Resources will design and implement a fish lift at Woodland Dam on the St. Croix River, providing access to 600 miles for all migratory fish and 60,000 acres of habitat for alewife. By benefitting species like alewife, Amer\",\n",
       "          \"ProjectID\": \"NOAA_022\",\n",
       "          \"ProjectTit\": \"Implement fish lift on the St. Croix River\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -69.7681144995795,\n",
       "                44.3033559102058\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 350000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.0328,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -70.104,\n",
       "          \"Notes\": \"Partners involved/Community support: Atlantic Salmon Federation, Maine Department of Marine Resources, NFWF, Town of Lisbon Maine, Town of Sabattus Maine, NOAA\",\n",
       "          \"OBJECTID\": 1242,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"This project will remove two dams, the Upper Town Dam and the Mill Remnant Dam, from the Sabattus River, a tributary to the Androscoggin River in Maine. Both dams will be removed, and the river banks will be restored and revegetated. Removal of these two\",\n",
       "          \"ProjectID\": \"{03fb3fe1-2a71-42ae-ae50-bf85413f4242}\",\n",
       "          \"ProjectTit\": \"Sabattus River Restoration: Removal of Upper Town Dam and Mill Remnant Dam\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/sabattus-river-restoration-removal-upper-town-dam-and-mill-remnant-dam\",\n",
       "          \"SiteCount\": \"2\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -70.1040000002547,\n",
       "                44.0328000000258\n",
       "              ],\n",
       "              [\n",
       "                -70.1077999996706,\n",
       "                44.120499999799\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Park Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.369,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -68.2102,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 268,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project will include three components: (1) plug ditches in the wetland to improve natural water flow, (2) install culverts and boardwalk to improve recreation value of trails and reduce flooding, and (3) plant native plants appropriate for future cl\",\n",
       "          \"ProjectID\": \"100XX07ME3022\",\n",
       "          \"ProjectTit\": \"Restoration to improve trail use in ACAD\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -68.210199999934,\n",
       "                44.3690000002194\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.34627994,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -68.80717176,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 746,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Callahan Mining Corp site is located about 1,000 feet east-southeast of Harborside Village in Brooksville, Hancock County, Maine. Zinc-copper sulfide ore deposits at the Site were discovered in 1880.  The mine operated from the late 1800s until its c\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"CALLAHAN MINING CORP\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -68.8071717595642,\n",
       "                44.3462799396809\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.66433,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -68.3585,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1111,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Resilient Recreation Sites\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Restoration efforts to improve recreation use of trails in Great Meadow wetland, Acadia National Park\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -68.3585000000719,\n",
       "                44.6643299999412\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 7554797.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.65398915,\n",
       "          \"LatLongTyp\": \"Downeast Salmon Federation, ME\",\n",
       "          \"Long\": -67.72716437,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 703,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"The Atlantic Salmon Federation will address fish passage barriers in the Penobscot River watershed to support the largest run of Atlantic salmon (a NOAA Species in the Spotlight) in the United States. They will completely remove two dams and install fish\",\n",
       "          \"ProjectID\": \"NOAA_021\",\n",
       "          \"ProjectTit\": \"Peneobscot River watershed improval for fish passage\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -67.727164369634,\n",
       "                44.6539891501422\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2006693.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.95875677,\n",
       "          \"LatLongTyp\": \"Pleasant Point Reservation\",\n",
       "          \"Long\": -67.0418591,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 689,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Tribal Priority Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"The Passamaquoddy Tribe (Pleasant Point Reservation) will identify preferred approaches to enhance fish passage across the Grand Falls and Woodland Dams. The project will strengthen tribal engagement in restoration decision-making alongside state and fed\",\n",
       "          \"ProjectID\": \"NOAA_007\",\n",
       "          \"ProjectTit\": \"Enhance fish passage across the Grand Falls and Woodland Dams\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -67.0418590995832,\n",
       "                44.958756769746\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"<Null>\",\n",
       "          \"FundingAmo\": 5000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.0020092771287,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": 45.0020092771287,\n",
       "          \"Notes\": \"$5 million for Planning Grants awarded over multiple years\",\n",
       "          \"OBJECTID\": 1255,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Community Relocation\",\n",
       "          \"ProjectDes\": \"Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Community Driven Relocation Demonstration Project - Passamaquoddy Indian Tribe\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -67.1002994127183,\n",
       "                45.0020092771287\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.78328,\n",
       "          \"LatLongTyp\": \"Point\",\n",
       "          \"Long\": -101.322613,\n",
       "          \"Notes\": \"County: Bottineau;API #: 33-009-02017\",\n",
       "          \"OBJECTID\": 836,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Orphaned Well Site Plugging, Remediation, and Restoration program\",\n",
       "          \"ProjectDes\": \"Orphaned oil and gas wells are polluting backyards, recreation areas, and community spaces across the country. Methane leaking from many of these unplugged wells is a serious safety hazard and is a significant cause of climate change, being more than 25\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Rice ET AL 1H\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -101.322612999965,\n",
       "                48.7832799999783\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.783465,\n",
       "          \"LatLongTyp\": \"Point\",\n",
       "          \"Long\": -101.330547,\n",
       "          \"Notes\": \"County: Bottineau; API#: 33-009-01981\",\n",
       "          \"OBJECTID\": 835,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Orphaned Well Site Plugging, Remediation, and Restoration program\",\n",
       "          \"ProjectDes\": \"Orphaned oil and gas wells are polluting backyards, recreation areas, and community spaces across the country. Methane leaking from many of these unplugged wells is a serious safety hazard and is a significant cause of climate change, being more than 25\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Rice Trust 1\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -101.330546999606,\n",
       "                48.7834649998991\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.93527,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -113.3427,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 657,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist with agricultural water management related to St. Mary Canal. The canal is a deteriorated state resulting in reduced flow\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"St. Mary Canal Modernization Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -113.342699999688,\n",
       "                48.9352699997265\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1421072.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.76070668,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -113.19041347,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 38,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"Actions in this project include a culturally informed approach to water management, co-management of landscapes, sharing Indigenous knowledge and data, and building the adaptation workforce through agricultural producers and Climate Warrior Interns.\",\n",
       "          \"ProjectID\": \"{B3EC2658-64C3-4D1A-AAC1-1921D98ACC92}\",\n",
       "          \"ProjectTit\": \"Implementation of the Blackfeet Climate Change Adaptation Plan\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -113.190413471253,\n",
       "                48.7607066765326\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 9779000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.7606966,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -113.1903952,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 3,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Indian Water Rights Settlements\",\n",
       "          \"ProjectDes\": \"This project will plan, design and construct facilities to supply domestic water and support irrigation-including developing new water infrastructure on the Blackfeet Reservation.\",\n",
       "          \"ProjectID\": \"{42F0D40C-40D4-41C4-B007-5F67687404F7}\",\n",
       "          \"ProjectTit\": \"Blackfeet BIA Water Rights Settlement Act\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -113.190395200419,\n",
       "                48.7606966000953\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2314610.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.96558732,\n",
       "          \"LatLongTyp\": \"Enole Dam, WA\",\n",
       "          \"Long\": -119.5016022,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 714,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"Trout Unlimited will conduct a planning and feasibility assessment for the removal of Enloe Dam on Similkameen River, a tributary of the Columbia River. The dam has blocked fish passage for 100 years. Its removal would open access to cold water habitat,\",\n",
       "          \"ProjectID\": \"NOAA_032\",\n",
       "          \"ProjectTit\": \"Feasibility assessment for the removal of Enloe Dam\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.501602200141,\n",
       "                48.9655873197932\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 456206.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.89803962,\n",
       "          \"LatLongTyp\": \"Nooksack Tribe\",\n",
       "          \"Long\": -122.354103,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 692,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Tribal Priority Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"The Nooksack Tribe will work collaboratively with the Lummi Tribe, the City of Bellingham, and the Washington Department of Fish and Wildlife to develop a plan for city-owned passage barriers that both addresses infrastructure needs and meets fisheries g\",\n",
       "          \"ProjectID\": \"NOAA_010\",\n",
       "          \"ProjectTit\": \"Plan development for city-owned passage barriers\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.354102999751,\n",
       "                48.8980396200147\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1332278.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 65.34199596,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -147.7879929,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 225,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"a) Improve access to the outdoors, including ADA/ABA enhancements and removing barriers at recreation sites and facilities, to improve access for people with disabilities; b) Enhance tribal ability to access outdoor activities important to tribal subsist\",\n",
       "          \"ProjectID\": \"050XX07MU5222\",\n",
       "          \"ProjectTit\": \"Increase Recreational Access on BLM Lands\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"16\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.781649600205,\n",
       "                34.5468646599871\n",
       "              ],\n",
       "              [\n",
       "                -107.065171299905,\n",
       "                37.5409100903371\n",
       "              ],\n",
       "              [\n",
       "                -119.692767799699,\n",
       "                39.0420420400052\n",
       "              ],\n",
       "              [\n",
       "                -124.172111400237,\n",
       "                40.1701423496842\n",
       "              ],\n",
       "              [\n",
       "                -115.739486600118,\n",
       "                40.7491698702759\n",
       "              ],\n",
       "              [\n",
       "                -109.177199299895,\n",
       "                40.89938876974\n",
       "              ],\n",
       "              [\n",
       "                -124.150449400323,\n",
       "                41.0521008796972\n",
       "              ],\n",
       "              [\n",
       "                -112.611123399582,\n",
       "                42.3724302001031\n",
       "              ],\n",
       "              [\n",
       "                -123.154778899944,\n",
       "                42.4164223197797\n",
       "              ],\n",
       "              [\n",
       "                -108.882348800075,\n",
       "                42.8352067301328\n",
       "              ],\n",
       "              [\n",
       "                -106.529655699939,\n",
       "                44.3521002401868\n",
       "              ],\n",
       "              [\n",
       "                -103.48293340016,\n",
       "                44.4101857300768\n",
       "              ],\n",
       "              [\n",
       "                -105.3787555001,\n",
       "                44.6363382299442\n",
       "              ],\n",
       "              [\n",
       "                -108.021183400226,\n",
       "                44.7846192900293\n",
       "              ],\n",
       "              [\n",
       "                -108.733505000289,\n",
       "                45.6441522299814\n",
       "              ],\n",
       "              [\n",
       "                -147.787992900108,\n",
       "                65.3419959600067\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 651250.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 65.88051887,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -149.7166034,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 224,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"a.\\tCommunity assistance to promote close-to home recreation near and far from BLM managed public lands (assistance for urban/rural, underserved/nature deprived communities)\\r\\r\\nb.\\tCampground modernization, recreation access facilities, visitor experiences\",\n",
       "          \"ProjectID\": \"050XX07MU4822\",\n",
       "          \"ProjectTit\": \"BLM Investments to Adapt Recreation Sites\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"8\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -104.243838900143,\n",
       "                33.6300237896728\n",
       "              ],\n",
       "              [\n",
       "                -111.996567800087,\n",
       "                38.7168291000712\n",
       "              ],\n",
       "              [\n",
       "                -110.689678700404,\n",
       "                39.3240463600959\n",
       "              ],\n",
       "              [\n",
       "                -120.042724200167,\n",
       "                40.0599527502172\n",
       "              ],\n",
       "              [\n",
       "                -112.160308600284,\n",
       "                40.2181954898418\n",
       "              ],\n",
       "              [\n",
       "                -109.185688499704,\n",
       "                40.8974213500269\n",
       "              ],\n",
       "              [\n",
       "                -114.15109710031,\n",
       "                42.6097934396982\n",
       "              ],\n",
       "              [\n",
       "                -149.716603400121,\n",
       "                65.880518869937\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 589762.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 59.40390396,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -135.88442127,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 44,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"This project will allow restoration implementation and follow-up monitoring for Phase 3, to protect the buildings of the Jilkaat Kwaan Heritage Center Campus. The project is funded in part through Tribal Climate Resilence (TCR) annual appropriations.\",\n",
       "          \"ProjectID\": \"{774A8DF5-25A3-4956-924F-26FE47F4DAF0}\",\n",
       "          \"ProjectTit\": \"Jilkaat Kwaan Heritage Center Bank Stabilization Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -135.884421266271,\n",
       "                59.4039039643402\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 296537.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 59.39893274,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -135.8904115,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1328,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The Tribe will implement immediate Protect-In-Place measures that will also provide support for the long-term health of salmon runs by creating naturally-derived bank erosion protection structures that also provide salmon habitat. Our village is located\",\n",
       "          \"ProjectID\": \"[DOI - 031|296537|Jilkaat Kwaan H]\",\n",
       "          \"ProjectTit\": \"Jilkaat Kwaan Heritage Center Bank Stabilization Project - Chilkat Indian Village (Klukwan)\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -135.890411500284,\n",
       "                59.398932740214\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1410000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 60.5470463,\n",
       "          \"LatLongTyp\": \"Copper River Watershed Project\",\n",
       "          \"Long\": -145.7585833,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 696,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"Copper River Watershed Project will remove two culverts and design seven additional culvert removals in Copper River delta. This flood-prone area has seen multiple 100-year flood events in recent years. Removing the culverts will reduce the risk of struc\",\n",
       "          \"ProjectID\": \"NOAA_014\",\n",
       "          \"ProjectTit\": \"Culvert removal in Copper River delta\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -145.758583299956,\n",
       "                60.5470462998025\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2872614.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 60.54455582,\n",
       "          \"LatLongTyp\": \"Eyak Corporation, Cordova\",\n",
       "          \"Long\": -145.7588376,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 685,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Tribal Priority Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"The Eyak Corporation will build capacity for planning and implementing fish passage and connection restoration projects in partnership with the U.S. Fish and Wildlife Service and the Copper River Watershed Project. The work will support salmon species of\",\n",
       "          \"ProjectID\": \"NOAA_003\",\n",
       "          \"ProjectTit\": \"Build capacity for planning and implementing fish passage and connection restoration projects\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -145.758837600436,\n",
       "                60.544555819897\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 960000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 60.12459833,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -149.4099783,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 911,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": \"As site conditions were discovered to be unstable with elevated levels of arsenic, and likely to deteriorate if interim action is not taken, onsite work will be performed to stabilize and remove the immediate threats. Note: this is intended for the porti\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Conduct Time Critical Removal Action at Glass-Heifner Mine Site at Kenai Fjords National Park\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -149.409978300089,\n",
       "                60.1245983299518\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1614106.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 61.04521,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -151.18027,\n",
       "          \"Notes\": \"Partners involved/Community support: Tyonek Tribal Conservation District, Tyonek Native Corporation, Alaska DFG, NRCS\",\n",
       "          \"OBJECTID\": 173,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"Tyonek Creek is one of the largest and most important salmon streams near the village of Tyonek, Alaska. The Tyonek Native Corporation owns and maintains the road and is the primary partner. The project will replace an undersized culvert with a channel s\",\n",
       "          \"ProjectID\": \"{d516636b-e4cb-4dbd-8508-efc65adf19dc}\",\n",
       "          \"ProjectTit\": \"Tyonek Creek Culvert Replacement for the Benefit of Subsistence Resources\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/tyonek-creek-culvert-replacement-benefit-subsistence-resources\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -151.180270000093,\n",
       "                61.0452099997928\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 969100.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 61.20661608,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -149.8845013,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 874,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Bristol Bay National Wetlands Inventory\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -149.884501299823,\n",
       "                61.2066160801621\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Park Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 88000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 61.217,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -149.886,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 287,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"COLLECTION, PRODUCTION: This funding would build Alaska's bank of regional and site-specific native seed for local restoration projects. Project outcomes include creating private sector jobs, increasing plant materials, and expanding agency botanical cap\",\n",
       "          \"ProjectID\": \"100XX09AK0722\",\n",
       "          \"ProjectTit\": \"Increase native seed bank to support AK parks\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -149.885999999635,\n",
       "                61.2170000000789\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1804800.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 61.58140169,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -149.43942331,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 52,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"This project is designed to implement a comprehensive outreach and community-based program to reduce the risks from the climate-driven increase of Paralytic Shellfish Poisoning in the Alaska marine ecosystem.\",\n",
       "          \"ProjectID\": \"{42CF2DED-4F15-4486-931F-0C18E23660D6}\",\n",
       "          \"ProjectTit\": \"Paralytic Shellfish Poisoning Risk Management\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -149.439423307218,\n",
       "                61.5814016891228\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1804800.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 61.59904266,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -149.2186811,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1348,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"Every year in Alaska people are sickened and can die from toxicity caused by harmful algal blooms. This project is designed to implement a comprehensive outreach and community-based program to reduce the risks from the climate-driven increase of PSP in t\",\n",
       "          \"ProjectID\": \"[DOI - 029|1804800|Paralytic Shell]\",\n",
       "          \"ProjectTit\": \"Paralytic Shellfish Poisoning Risk Management\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -149.218681100037,\n",
       "                61.5990426599892\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1558006.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 61.74043301,\n",
       "          \"LatLongTyp\": \"Chickaloon Native Village\",\n",
       "          \"Long\": -148.9195606,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 683,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Tribal Priority Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"Chickaloon Native Village will remove fish passage barriers within traditional ancestral lands and develop a Fish Passage Working Group for the Matanuska-Susitna Borough. They will also increase the knowledge and capacity of tribal staff members to overs\",\n",
       "          \"ProjectID\": \"NOAA_001\",\n",
       "          \"ProjectTit\": \"Removal of fish passage barriers in the Matanuska-Susitna Borough\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -148.919560600449,\n",
       "                61.7404330098373\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1318604.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 61.59437,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -145.22308,\n",
       "          \"Notes\": \"Partners involved/Community support: Chugach Native Corporation, State of Alaska, BLM, NRCS, NMFS, Copper River Watershed Project, The Denali Commission\",\n",
       "          \"OBJECTID\": 172,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"This project will remove an undersized, double barrel culvert on the Little Tonsina River in the Valdez-Cordova Borough.  This project is currently the highest priority barrier removal project for the Service in Alaska because of the 70.4 miles of relati\",\n",
       "          \"ProjectID\": \"{5326aac2-2f54-4ca9-8caa-c79b700273cc}\",\n",
       "          \"ProjectTit\": \"Little Tonsina River Bridge Installation\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/little-tonsina-river-bridge-installation\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -145.223079999723,\n",
       "                61.594370000104\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 230000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 61.45758553,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -145.4740877,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 186,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Replace an undersized culvert and reestablish upstream connectivity for juvenile and adult salmonids to improve infrastructure security and increase the resistance, resilience, and adaptability to climate change.\",\n",
       "          \"ProjectID\": \"050XX02AK3522\",\n",
       "          \"ProjectTit\": \"Little Tonsina Aquatic Organism Passage\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -145.474087700179,\n",
       "                61.4575855298861\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 63.87616,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -143.213,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1207,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": \"Placer mined stream restoration - this is a \\\"Healthy Lands Focal Area\\\".  Design and construction of stream restoration.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yukon-Tanana Uplands Ecoregion Restoration\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -143.213000000206,\n",
       "                63.8761600000416\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 185000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 67.09149795,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -149.9636089,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 227,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The project is focused on restoring and increasing bird habitat in mineral materials mining areas (sand and gravel)\",\n",
       "          \"ProjectID\": \"050XX08AK3122\",\n",
       "          \"ProjectTit\": \"Dalton Corridor Rapor Survey\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -149.963608900273,\n",
       "                67.0914979501472\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"<Null>\",\n",
       "          \"FundingAmo\": 5000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 66.5673021024043,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": 66.5673021024043,\n",
       "          \"Notes\": \"$5 million for Planning Grants awarded over multiple years\",\n",
       "          \"OBJECTID\": 1250,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Community Relocation\",\n",
       "          \"ProjectDes\": \"Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Community Driven Relocation Demonstration Project - Native Village of Fort Yukon\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -145.251327774462,\n",
       "                66.5673021024043\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"<Null>\",\n",
       "          \"FundingAmo\": 5000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 65.6986002077134,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": 65.6986002077134,\n",
       "          \"Notes\": \"$5 million for Planning Grants awarded over multiple years\",\n",
       "          \"OBJECTID\": 1249,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Community Relocation\",\n",
       "          \"ProjectDes\": \"Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Community Driven Relocation Demonstration Project - Huslia Village\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -156.399726563895,\n",
       "                65.6986002077134\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"<Null>\",\n",
       "          \"FundingAmo\": 5000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 69.7574986735746,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": 69.7574986735746,\n",
       "          \"Notes\": \"$5 million for Planning Grants awarded over multiple years\",\n",
       "          \"OBJECTID\": 1253,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Community Relocation\",\n",
       "          \"ProjectDes\": \"Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Community Driven Relocation Demonstration Project - Native Villiage of Point Lay\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -163.051130769247,\n",
       "                69.7574986735746\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 66.255556,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -166.072222,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 649,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist a community of 498 people with adequate safe drinking water. The project may address flood damage reduction and mitigation\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Shishmaref Community Flood Protection and Water Supply\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -166.072221999573,\n",
       "                66.2555559999708\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 83736.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 64.5432991939811,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -163.029224774325,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1258,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience\",\n",
       "          \"ProjectDes\": \"Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.\",\n",
       "          \"ProjectID\": \"{77BCF125-9368-496B-9D82-0A54E0C310CB}\",\n",
       "          \"ProjectTit\": \"Relocation, Managed Retreat, and Protect-in-Place Coordinator - Chinik Eskimo Community\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -163.029224774325,\n",
       "                64.5432991939811\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 64.544722,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -163.0275,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 575,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bA preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist a community of 175 people with flood damage reduction and mitigation measures. The project may involve the removal of d\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Golovin Community Flood Protection\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -163.027499999996,\n",
       "                64.5447220000588\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 62.684722,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -164.645278,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 526,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist a community of 756 people with flood damage reduction and mitigation measures. The project may involve the removal of damageable property ou\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Alakanuk Community Flood Protection\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -164.645278000207,\n",
       "                62.684721999818\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 63.035833,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -163.560278,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 585,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist a community of 462 people with flood damage reduction and mitigation measures. The project may involve the removal of dama\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Kotlik Community Flood Protection\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -163.560278000303,\n",
       "                63.0358330001811\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 148432.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 63.46829454,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -162.1190154,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1350,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The Native Village of Saint Michael, Alaska is among one of the most vulnerable to climate change impacts in the entire United States. Increasingly severe natural hazards threaten critical community infrastructure and jeopardize the health, safety, and p\",\n",
       "          \"ProjectID\": \"[DOI - 022|148432|Native Village ]\",\n",
       "          \"ProjectTit\": \"Permafrost Risk Assessment  - Native Village of Saint Michael\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -162.119015399687,\n",
       "                63.4682945399883\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 148432.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 63.47809946,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -162.03922399,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 55,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"This project will engage science and engineering consultants to complete a permafrost vulnerability assessment to forecast what infrastructure will be impacted, when, and support in developing solutions to mitigate threats.\",\n",
       "          \"ProjectID\": \"{D8DC382F-05B5-45EF-983C-AB55F436B599}\",\n",
       "          \"ProjectTit\": \"Permafrost Risk Assessment\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -162.039223989066,\n",
       "                63.478099462371\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 143151.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 64.333899524894,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -161.153924819103,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1264,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience\",\n",
       "          \"ProjectDes\": \"Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.\",\n",
       "          \"ProjectID\": \"{77BCF125-9368-496B-9D82-0A54E0C310CB}\",\n",
       "          \"ProjectTit\": \"Relocation, Managed Retreat, and Protect-in-Place Coordinator - Native Village of Shaktoolik\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -161.153924819103,\n",
       "                64.333899524894\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 146493.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 63.87609426,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -160.7920443,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1334,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The community of Unalakleet, Alaska, is planning a managed retreat from the current site on the shoreline of Norton Sound to a nearby hillside area in response to recent flooding and erosion caused by sea-level rise. The most recent statewide threat asse\",\n",
       "          \"ProjectID\": \"[DOI - 022|146493|Native Village ]\",\n",
       "          \"ProjectTit\": \"Managed Retreat Housing Prototype Planning - Native Village of Unalakleet\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -160.79204430013,\n",
       "                63.8760942600785\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 290440.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 63.87309963,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -160.78812446,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 45,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The Village will collaborate with the National Renewable Energy Lab's Cold Climate Housing Research Center. As the community plans its managed retreat, this project will provide housing designs for their platted subdivision.\",\n",
       "          \"ProjectID\": \"{CE52F017-63D8-4A34-96B4-65A4DE25846E}\",\n",
       "          \"ProjectTit\": \"Managed Retreat Housing Prototype Planning\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -160.788124458269,\n",
       "                63.8730996304822\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 88000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 64.4993744,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -152.6947327,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 996,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending (Or Other) For National Revegetation Strategy\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Increasing the Alaskan Native Seed Bank for Restoration in National Parks\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -152.694732700188,\n",
       "                64.4993744001363\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 20000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 64.4993744,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -152.6947327,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 856,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": \"Perform site assessments to determine physical safety hazards and treatment of four culturally significant abandoned mine sites at Denali National Park.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Assess Mine Hazards at Alpha Ridge Mine in Denali National Park\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -152.694732700188,\n",
       "                64.4993744001363\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 185000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 64.4993744,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -152.6947327,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1032,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Minerals Materials Sites - Wildlife Surveys\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -152.694732700188,\n",
       "                64.4993744001363\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 339872.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 59.78510013,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -154.876355,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 441,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Create sustainable community-led environmental monitoring capacity for six rural Indigenous communities in the Lake Iliamna region to assist with climate resilience and adaptation planning efforts. Project will partner with Indigenous Sentinels Network t\",\n",
       "          \"ProjectID\": \"77635\",\n",
       "          \"ProjectTit\": \"Building Capacity for Indigenous Community-Led Environmental Monitoring in Southwest Alaska\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -154.876354999836,\n",
       "                59.7851001298101\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 329370.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 59.30792873,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -155.8725733,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1013,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Lake Iliamna Indigenous Guardians\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -155.872573300061,\n",
       "                59.3079287299872\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1025356.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 59.33491471,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -157.3428724,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 435,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Map millions of acres of ecologically, economically, and culturally important wetlands in Bristol Bay, Alaska to improve region-wide prioritization and management for sockeye salmon and salmon habitat. Project is Tribally led and will help fill a critica\",\n",
       "          \"ProjectID\": \"77545\",\n",
       "          \"ProjectTit\": \"Advancing Wetlands Mapping for Improved Regional Habitat Management in Bristol Bay (AK)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -157.342872399829,\n",
       "                59.3349147100822\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 150000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 59.8722996451391,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -163.165821323515,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1262,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience\",\n",
       "          \"ProjectDes\": \"Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.\",\n",
       "          \"ProjectID\": \"{77BCF125-9368-496B-9D82-0A54E0C310CB}\",\n",
       "          \"ProjectTit\": \"Relocation, Managed Retreat, and Protect-in-Place Coordinator - Native Village of Kwigillingok\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -163.165821323515,\n",
       "                59.8722996451391\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 59.872222,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -163.166111,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 586,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist a community of 380 people with flood damage reduction and mitigation measures. The project may involve the removal of dama\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Kwigillingok Community Flood Protection\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -163.166110999652,\n",
       "                59.8722219999103\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 245056.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 59.93307796,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -164.0373051,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1269,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"This project will engage science and engineering consultants to complete a long-term erosion and flood assessment to forecast what infrastructure will be impacted, when, and support us in developing solutions to mitigate the threats. This project will fo\",\n",
       "          \"ProjectID\": \"[DOI - 014|245056|Adaption Plan: ]\",\n",
       "          \"ProjectTit\": \"Adaption Plan: Riverine Erosion and Flood Assessment - Native Village of Kipnuk\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -164.037305099705,\n",
       "                59.93307795999\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 245056.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 59.9401995,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -164.08332125,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 72,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"This project will engage science and engineering consultants to complete a long-term erosion and flood assessment to forecast what infrastructure will be impacted, when, and support developing solutions to mitigate threats.\",\n",
       "          \"ProjectID\": \"{5D123645-2CB7-4A67-8A65-5C429CE78D37}\",\n",
       "          \"ProjectTit\": \"Riverine Erosion Risk Assessment\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -164.08332125432,\n",
       "                59.9401994988792\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 2998343.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 60.15999945,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -164.26582137,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 7,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The community of Chefornak is facing severe impacts from permafrost degradation, erosion, and flooding. Thanks in part to past BIA TRP funding, we have planned and designed a subdivision site at a safe location. We will relocate and replace infrastructur\",\n",
       "          \"ProjectID\": \"{FA8E0738-FC2A-48B6-AE75-DB2080A501CA}\",\n",
       "          \"ProjectTit\": \"Managed Retreat Subdivision Construction and Home Relocation\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -164.265821367779,\n",
       "                60.1599994482389\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 149708.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 60.1599994482389,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -164.265821367779,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1267,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience\",\n",
       "          \"ProjectDes\": \"The Village of Chefornak is a federally-recognized tribe/Alaska Native village. The Tribe will develop adaptation planning to address erosion, melting, permafrost, increasinglly violent storms, flooding, reduced stability of buildings, roads, and infrast\",\n",
       "          \"ProjectID\": \"{77BCF125-9368-496B-9D82-0A54E0C310CB}\",\n",
       "          \"ProjectTit\": \"Relocation, Managed Retreat, and Protect-in-Place Coordinator - Village of Chefornak\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -164.265821367779,\n",
       "                60.1599994482389\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 260019.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 60.15180453,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -164.2534328,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1352,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"This project will engage science and engineering consultants to complete a permafrost vulnerability assessment to forecast what infrastructure will be impacted, when, and support us in developing solutions to mitigate the threats. This project will form\",\n",
       "          \"ProjectID\": \"[DOI - 022|260019|Village of Chef]\",\n",
       "          \"ProjectTit\": \"Permafrost Risk Assessment and Tank Farm Design\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -164.253432799612,\n",
       "                60.1518045301782\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 180982.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 60.34004286,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -162.6658243,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1351,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The Native Village of Tuntutuliak proposes to develop a permafrost vulnerability assessment to predict the future impacts of permafrost melt in the community and recommend solutions. This project will involve a desktop study of existing geological and ge\",\n",
       "          \"ProjectID\": \"[DOI - 022|180982|Native Village ]\",\n",
       "          \"ProjectTit\": \"Permafrost Risk Assessment and Hazard Mitigation Plan\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -162.665824299604,\n",
       "                60.3400428599761\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 60.342778,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -162.672778,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 667,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bA preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist a community of 469 people with flood damage reduction and mitigation measures. The project may involve the removal of d\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Tuntutuliak Community Flood Protection\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -162.672778000115,\n",
       "                60.3427780000439\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 168452.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 60.14164959,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -163.37322146,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 53,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"This project will engage science and engineering consultants to complete a permafrost vulnerability assessment to forecast what infrastructure will be impacted, when, and support the Native Village of Kipnuk in developing solutions to mitigate threats.\",\n",
       "          \"ProjectID\": \"{ADE789E1-6019-485E-8698-AED48232D7A2}\",\n",
       "          \"ProjectTit\": \"Permafrost risk assessment\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -164.08332125432,\n",
       "                59.9401994988792\n",
       "              ],\n",
       "              [\n",
       "                -162.663121668664,\n",
       "                60.3430996748763\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 180982.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 60.14164959,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -163.37322146,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 54,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The Native Village of Tuntutuliak will hire  an engineering contractor to develop a permafrost vulnerability assessment to  predict the future impacts of permafrost melt in the community and recommend solutions.\",\n",
       "          \"ProjectID\": \"{03D17A68-AC59-4EE0-AD23-D4BA47EBD5C1}\",\n",
       "          \"ProjectTit\": \"Permafrost risk assessment\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -164.08332125432,\n",
       "                59.9401994988792\n",
       "              ],\n",
       "              [\n",
       "                -162.663121668664,\n",
       "                60.3430996748763\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"<Null>\",\n",
       "          \"FundingAmo\": 25000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 60.6966997499138,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": 60.6966997499138,\n",
       "          \"Notes\": \"$25 million total, payments awarded over multiple years\",\n",
       "          \"OBJECTID\": 1251,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Community Relocation\",\n",
       "          \"ProjectDes\": \"Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Community Driven Relocation Demonstration Project - Native Villiage of Napakiak\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -161.951921972763,\n",
       "                60.6966997499138\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2217314.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 60.89574178,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -162.4586567,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1355,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The Native Village of Nunapitchuk is a federally-recognized tribe located in Nunapitchuk, AK, a community which has experienced increasingly severe flooding, riverine erosion, and permafrost degradation caused by climate change. Erosion has advanced the\",\n",
       "          \"ProjectID\": \"[DOI - 022|83239|Native Village ]\",\n",
       "          \"ProjectTit\": \"Public Safety Building Construction for Managed Retreat\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -162.458656699971,\n",
       "                60.8957417798215\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 2217314.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 60.89689965,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -162.45942204,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 59,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"This project will assist the Tribe in completing construction of the new public safety building by the fall of 2023, and support project management, design, and phase I of construction. The project is funded in part through TCR annual appropriations.\",\n",
       "          \"ProjectID\": \"{C961F3FD-E5E1-4B38-8229-9861879C03B1}\",\n",
       "          \"ProjectTit\": \"Public Safety Building Construction for Managed Retreat\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -162.45942204483,\n",
       "                60.896899650719\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 150000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 60.91219984487,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -161.213922188408,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1261,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience\",\n",
       "          \"ProjectDes\": \"Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.\",\n",
       "          \"ProjectID\": \"{77BCF125-9368-496B-9D82-0A54E0C310CB}\",\n",
       "          \"ProjectTit\": \"Relocation, Managed Retreat, and Protect-in-Place Coordinator - Native Village of Akiak\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -161.213922188408,\n",
       "                60.91219984487\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior and Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service and the Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 1206976.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 61.74171755,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -161.52224891,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1432,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Create the First Indigenous Sovereign Habitat Tribal Conservation District - Mountains to Sea \\u2013 Alaska that will achieve co-management between the 38-Tribe Bering Sea-Interior Tribal Commission and federal agencies to improve management of ancestral ho\",\n",
       "          \"ProjectID\": \"80931\",\n",
       "          \"ProjectTit\": \"Developing an Ancestral Homelands Tribal Conservation District in the Bering Sea-Interior (AK)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -161.522248905997,\n",
       "                61.7417175549944\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"<Null>\",\n",
       "          \"FundingAmo\": 25000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 60.9424993073918,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": 60.9424993073918,\n",
       "          \"Notes\": \"$25 million total, payments awarded over multiple years\",\n",
       "          \"OBJECTID\": 1254,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Community Relocation\",\n",
       "          \"ProjectDes\": \"Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Community Driven Relocation Demonstration Project - Newtok Village\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -164.641921815254,\n",
       "                60.9424993073918\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 149064.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 60.9424993073918,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -164.641921815254,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1263,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience\",\n",
       "          \"ProjectDes\": \"Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.\",\n",
       "          \"ProjectID\": \"{77BCF125-9368-496B-9D82-0A54E0C310CB}\",\n",
       "          \"ProjectTit\": \"Relocation, Managed Retreat, and Protect-in-Place Coordinator - Native Village of Newtok\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -164.641921815254,\n",
       "                60.9424993073918\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 60.580556,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -165.259444,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 668,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist a community of 411 people with flood damage reduction and mitigation measures. The project may involve the removal of dama\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Tununak Community Flood Protection\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -165.259444000364,\n",
       "                60.5805560000812\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"<Null>\",\n",
       "          \"FundingAmo\": 5000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 56.0019003197684,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": 56.0019003197684,\n",
       "          \"Notes\": \"$5 million for Planning Grants awarded over multiple years\",\n",
       "          \"OBJECTID\": 1252,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Community Relocation\",\n",
       "          \"ProjectDes\": \"Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Community Driven Relocation Demonstration Project - Native Villiage of Nelson Lagoon\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -161.202819488502,\n",
       "                56.0019003197684\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 425920.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 58.30081846,\n",
       "          \"LatLongTyp\": \"Sealaska Corporation\",\n",
       "          \"Long\": -134.4073466,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 684,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Tribal Priority Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"Sealaska Corporation will assess and prioritize stream-crossing barriers on Prince of Wales Island and will create designs for 10 individual barrier projects. The island is one of the most productive areas for salmon in Southeast Alaska, supporting coho,\",\n",
       "          \"ProjectID\": \"NOAA_002\",\n",
       "          \"ProjectTit\": \"Assessment and prioritization of stream-crossing barriers on Prince of Wales Island\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -134.407346600116,\n",
       "                58.3008184599228\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1964655.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 58.30190421,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -134.41972049,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 77,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The Tribe will launch a Regional Community Greenhouse Program to build upon the existing Tlingit & Haida Taay Hi\\u0301t Greenhouse in Juneau, the Tlingit & Haida Climate Change Adaptation Plan, and Tlingit & HaidamClimate Change Action Plan.\",\n",
       "          \"ProjectID\": \"{A9482A44-7138-43D9-AB3D-B251E84BF396}\",\n",
       "          \"ProjectTit\": \"Tlingit & Haida Regional Community Greenhouse Program\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -134.419720489812,\n",
       "                58.3019042107798\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 600000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 58.41153,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -135.76587,\n",
       "          \"Notes\": \"Partners involved/Community support: City of Gustavus, Southeast Alaska Watershed Council, USFWS, NPS\",\n",
       "          \"OBJECTID\": 171,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"This is the final project to fully reconnect the Mountain View and Crane Flats Creek drainages by replacing a perched/undersized culvert with a timber bridge on Harry Hall Creek at Grandpa's Farm Road in Gustavus, AK. This project will complement the sig\",\n",
       "          \"ProjectID\": \"{c0f91857-7531-45f8-a67f-4498c80fed98}\",\n",
       "          \"ProjectTit\": \"Gustavus Alaska Landscape Scale Waterhsed Restoration\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/gustavus-alaska-landscape-scale-watershed-restoration\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -135.765869999948,\n",
       "                58.4115300002298\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1232068.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.38971869,\n",
       "          \"LatLongTyp\": \"Skagit River System Cooperative\",\n",
       "          \"Long\": -122.5004517,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 695,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Tribal Priority Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"The Skagit River System Cooperative will reopen access to habitat that has been blocked by undersized or improperly installed culverts. Work will focus on three sites of interest to the Swinomish Indian Tribal Community and Sauk-Suiattle Tribes: Martin S\",\n",
       "          \"ProjectID\": \"NOAA_013\",\n",
       "          \"ProjectTit\": \"Reopen access at three sites in Washington\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.50045170009,\n",
       "                48.3897186897578\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 63292.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.39030564,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -122.50171511,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 58,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"Here, we propose a project designed to increase both access to, and yield of, huckleberries in an area of traditional gathering. By building new trails and enhancing existing ones, we hope to get more Community members, especially children and elders, in\",\n",
       "          \"ProjectID\": \"{335FA8A7-2AA1-491C-A00C-71E38222C9D5}\",\n",
       "          \"ProjectTit\": \"Saving sw\\u00c9\\u2122d\\u00c3\\u00a1\\u00ca\\u201d\\u00cf\\u2021: Preserving Huckleberry Access and Culture in an Era of Climate Change\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.501715113163,\n",
       "                48.3903056380288\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 9733975.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.08001122,\n",
       "          \"LatLongTyp\": \"Tulalip Reservation, WA\",\n",
       "          \"Long\": -122.269907,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 716,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"The Tulalip Tribes will plan and construct 16 barrier removal projects in the Snohomish River watershed. These projects will remove or replace culverts with structures designed to withstand climate change. They will restore connectivity to more than 32 m\",\n",
       "          \"ProjectID\": \"NOAA_034\",\n",
       "          \"ProjectTit\": \"16 barrier removal projects in the Snohomish River watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.269907000171,\n",
       "                48.080011220059\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.12040111,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -123.4372061,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 998,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Irrigation Efficiency and Improvement Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.437206100033,\n",
       "                48.1204011097614\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.0493,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -123.928,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 936,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Dungeness Reservoir Irrigation Conveyance Improvement Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.927999999741,\n",
       "                48.0493000002122\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 149923.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.0255055643926,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -122.996315101967,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1259,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience\",\n",
       "          \"ProjectDes\": \"Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.\",\n",
       "          \"ProjectID\": \"{77BCF125-9368-496B-9D82-0A54E0C310CB}\",\n",
       "          \"ProjectTit\": \"Relocation, Managed Retreat, and Protect-in-Place Coordinator - Jamestown S'Klallam Tribe\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.996315101967,\n",
       "                48.0255055643926\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1109796.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.02550556,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -122.9963151,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 9,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The Tribe will purchase a commercially available mobile resilience hub and a support vehicle to enhance the resilience of existing Tribal health, emergency management, and community centers.\",\n",
       "          \"ProjectID\": \"{FB39CECF-7CAD-4D80-A3F8-049DBD6201AE}\",\n",
       "          \"ProjectTit\": \"Climate Adaptation Strategies Implementation\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.996315101967,\n",
       "                48.0255055643926\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1109796.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.02484523,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -122.9959869,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1288,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"Dramatic changes to the Earth\\u2019s (s\\u010dt\\u0259\\u0301\\u014bx\\u02b7\\u0259n) atmosphere are resulting in loss of treaty protected natural resources, loss of economic opportunities, threatening Tribal facilities, and threatening the health of Tribal Citizens and the community. T\",\n",
       "          \"ProjectID\": \"[DOI - 022|1109796|Climate Adaptat]\",\n",
       "          \"ProjectTit\": \"Climate Adaptation Strategies Implementation - Jamestown S'Klallam Tribe\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.995986899783,\n",
       "                48.0248452297619\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1747490.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.05470565,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -122.25851499,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 40,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"This project aims to implement key elements of the Tribe's climate adaptation strategy by achieving their goal of resource protection and restoration. The Tribe will implement a means in accounting for ecosystem services on the landscape.\",\n",
       "          \"ProjectID\": \"{89DA572F-7146-4489-A436-67588017E6BB}\",\n",
       "          \"ProjectTit\": \"Implementing Tulalip Natural Capital Climate Adaptation\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.258514988845,\n",
       "                48.0547056481052\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1747490.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.05469831,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -122.2588586,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1319,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"This project is designed to support building capacity within the Tulalip Tribal government to account for and track the impacts of various land use action proposals on ecosystem services and natural capital assets. This project supports The Tulalip Tribe\",\n",
       "          \"ProjectID\": \"[DOI - 022|1747490|Tulalip Tribes ]\",\n",
       "          \"ProjectTit\": \"Implementing Tulalip Natural Capital Climate Adaptation\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.258858599831,\n",
       "                48.0546983099738\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1194224.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.85208678,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -122.5694102,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1356,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"This project will relocate three families to newly constructed homes on other Reservation lots away from the shoreline. The project will demolish the three houses located on the high-risk properties and will restore the shoreline vegetation. The Tribe wi\",\n",
       "          \"ProjectID\": \"[DOI - 022|1194224|Port Gamble S'k]\",\n",
       "          \"ProjectTit\": \"Relocation of High-Risk Shoreline Residents\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.569410200037,\n",
       "                47.8520867798703\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 2137650.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.8522056,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -122.56931499,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 60,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"This project proposes to relocate the three families to newly constructed homes on other reservation lots away from the shoreline. The project is funded in part through TCR annual appropriations.\",\n",
       "          \"ProjectID\": \"{DFE6414A-A9D0-46C6-97B2-AABA884D6318}\",\n",
       "          \"ProjectTit\": \"Relocation of High-Risk Shoreline Residents\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.569314990295,\n",
       "                47.8522056029521\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 150000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.8522056029521,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -122.569314990295,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1265,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience\",\n",
       "          \"ProjectDes\": \"Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.\",\n",
       "          \"ProjectID\": \"{77BCF125-9368-496B-9D82-0A54E0C310CB}\",\n",
       "          \"ProjectTit\": \"Relocation, Managed Retreat, and Protect-in-Place Coordinator - Port Gamble S'klallam Tribe\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.569314990295,\n",
       "                47.8522056029521\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 7071627.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.74117692,\n",
       "          \"LatLongTyp\": \"Hoh tribe, WA\",\n",
       "          \"Long\": -124.4144435,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 715,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"Trout Unlimited will replace eight fish passage barriers as part of the Coldwater Connection Campaign, a partnership to reconnect 125 miles of high quality salmon and steelhead streams in Washington\\u2019s coastal areas. The project will open more than 7 mi\",\n",
       "          \"ProjectID\": \"NOAA_033\",\n",
       "          \"ProjectTit\": \"Replace eight fish passage barriers in Washington\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -124.414443499564,\n",
       "                47.7411769198181\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Forest Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 870713.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.96718591,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -124.24388489,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1426,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Work with Olympic National Forest, Washington Department of Natural Resources, and the Quileute Tribe to develop fourteen miles of road storage and decommissioning project plans along with decommissioning implementation off 4.2 miles of National Forest r\",\n",
       "          \"ProjectID\": \"80840\",\n",
       "          \"ProjectTit\": \"Reducing Flood Risk in Olympic National Forest (WA)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -124.243884888806,\n",
       "                47.9671859096746\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 551000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.06375,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -124.16155,\n",
       "          \"Notes\": \"Partners involved/Community support: Wild Salmon Center, Coast Salmon Foundation, Trout Unlimited, Clallam County, Washington DFW, Quileute Tribe\",\n",
       "          \"OBJECTID\": 1246,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"This project will replace three undersized culvert fish barriers: one culvert on Wisen Creek and two culverts on Wisen Branch Creek. The overall goal is to replace the three undersized culverts with fish passable structures to increase the quantity and q\",\n",
       "          \"ProjectID\": \"{c76f3a1c-4b21-4553-9526-a5eddfb7f2b4}\",\n",
       "          \"ProjectTit\": \"Wisen Creek Fish Passage Restoration\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/wisen-creek-fish-passage-restoration-removal-3-fish-passage-barriers-olympic-peninsula\",\n",
       "          \"SiteCount\": \"3\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -124.161549999968,\n",
       "                48.0637499998189\n",
       "              ],\n",
       "              [\n",
       "                -124.161200000164,\n",
       "                48.0645300002812\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 992000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.07698,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -124.20478,\n",
       "          \"Notes\": \"Partners involved/Community support: Wild Salmon Center, Coast Salmon Foundation, Trout Unlimited, Clallam County, Washington DFW, Quileute Tribe\",\n",
       "          \"OBJECTID\": 86,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"This project will correct two fish passage barriers on a Clallam County owned road within the Sol-Duc watershed on the Olympic Coast. Anton Creek and Cedar Creek cross at mileposts 1.74 and 1.78 of the Bear Creek Road and block nearly 5 miles of field ve\",\n",
       "          \"ProjectID\": \"{7fe472fc-8b4d-480a-ba9c-1aaee5fb5d4a}\",\n",
       "          \"ProjectTit\": \"Anton & Cedar Creek Fish Passage Restoration\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/anton-cedar-creek-fish-passage-restoration\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -124.204780000085,\n",
       "                48.076979999707\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 992000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.077289,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -124.203995,\n",
       "          \"Notes\": \"Partners involved/Community support: Wild Salmon Center, Coast Salmon Foundation, Trout Unlimited, Clallam County, Washington DFW, Quileute Tribe\",\n",
       "          \"OBJECTID\": 87,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"This project will correct two fish passage barriers on a Clallam County owned road within the Sol-Duc watershed on the Olympic Coast. Anton Creek and Cedar Creek cross at mileposts 1.74 and 1.78 of the Bear Creek Road and block nearly 5 miles of field ve\",\n",
       "          \"ProjectID\": \"{b507d675-7959-4ce4-8d33-4192ab1cdd20}\",\n",
       "          \"ProjectTit\": \"Anton & Cedar Creek Fish Passage Restoration\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/anton-cedar-creek-fish-passage-restoration\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -124.203995000087,\n",
       "                48.0772890002297\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"<Null>\",\n",
       "          \"FundingAmo\": 25000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.3473053874914,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": 47.3473053874914,\n",
       "          \"Notes\": \"$25 million total, payments awarded over multiple years\",\n",
       "          \"OBJECTID\": 1256,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Community Relocation\",\n",
       "          \"ProjectDes\": \"Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Community Driven Relocation Demonstration Project - Quinault Indian Nation\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -124.293215136015,\n",
       "                47.3473053874914\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 150000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.3473053874914,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -124.293215136015,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1266,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience\",\n",
       "          \"ProjectDes\": \"Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.\",\n",
       "          \"ProjectID\": \"{77BCF125-9368-496B-9D82-0A54E0C310CB}\",\n",
       "          \"ProjectTit\": \"Relocation, Managed Retreat, and Protect-in-Place Coordinator - Quinault Indian Nation\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -124.293215136015,\n",
       "                47.3473053874914\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 10396280.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.41631664,\n",
       "          \"LatLongTyp\": \"Quinault Reservation\",\n",
       "          \"Long\": -124.1788184,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 717,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"The Wild Salmon Center will design, permit, and remove nine culverts as part of the Coldwater Connection Campaign. The culvert removals will improve access for migratory salmon and improve the durability of public infrastructure. The project was develope\",\n",
       "          \"ProjectID\": \"NOAA_035\",\n",
       "          \"ProjectTit\": \"Removal of nine culverts in Washington\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -124.178818400014,\n",
       "                47.4163166403022\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 75900.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.9801,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -123.56473,\n",
       "          \"Notes\": \"Partners involved/Community support: Chehalis Basin Fisheries Task Force, Grays Harbor Stream Team, Grays Harbor County, Salmon Recovery Funding Board\",\n",
       "          \"OBJECTID\": 97,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"The project is to remove a 33% passable fish passage barrier on Schafer Boom Road In Grays Harbor, WA. It will be replaced with a structure that is fully passable to fish and other aquatic species in Camp Creek. A correction for a second barrier 0.13 mil\",\n",
       "          \"ProjectID\": \"{03a41972-6338-437a-9562-dbdb4e2af8ac}\",\n",
       "          \"ProjectTit\": \"Schaffer Boom Road Camp Creek Fish Passage Barrier Removal\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/schafer-boom-road-camp-creek-fish-passage-barrier-corrections\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.564729999925,\n",
       "                46.9800999998927\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1231350.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.98528687,\n",
       "          \"LatLongTyp\": \"Hoquiam, WA\",\n",
       "          \"Long\": -123.8920404,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 713,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"The City of Hoquiam will assess the feasibility of removing the West Fork of the Hoquiam River Dam. The project will also involve installing and testing groundwater wells as an alternative water source for the city. If found feasible, the effort would op\",\n",
       "          \"ProjectID\": \"NOAA_031\",\n",
       "          \"ProjectTit\": \"Feasibility assessment for the removal of the West Fork of the Hoquiam River Dam\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.89204040029,\n",
       "                46.985286869933\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.62350307,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -122.9316288,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 832,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Hamilton/Labree Roads Groundwater Contamination site is located about two miles southwest of Chehalis, Washington. The site is contaminated with PCE. PCE is also called PERC, perchloroethylene, or tetrachloroethene. It\\u2019s a chemical used for dry cle\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"HAMILTON/LABREE ROADS GW CONTAMINATION\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.931628799967,\n",
       "                46.6235030697903\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2577880.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.15397408,\n",
       "          \"LatLongTyp\": \"Cowlitz Indian Tribe\",\n",
       "          \"Long\": -122.9345916,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 694,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Tribal Priority Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"The Cowlitz Indian Tribe will remove Kwoneesum Dam on Wildboy Creek, a tributary to the West Fork Washougal River in the Columbia River watershed. Removal of the 55-foot tall, 425-foot long rock fill embankment dam will restore access to 6.5 miles of hig\",\n",
       "          \"ProjectID\": \"NOAA_012\",\n",
       "          \"ProjectTit\": \"Kwoneesum Dam removal\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.93459160008,\n",
       "                46.1539740798047\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 99800.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.3939,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -123.5622,\n",
       "          \"Notes\": \"Partners involved/Community support: Washington DFW, Cowlitz Indian Tribe, Columbia Land Trust, local organizations, Chinook Indian Nation, private landowners, and Wahkiakum and Pacific County commissioners\",\n",
       "          \"OBJECTID\": 98,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"The Cowlitz Indian Tribe proposes to remove the derelict water intake infrastructure previously operated to support the Grays River State Fish Hatchery, owned by Washington Department of Fish and Wildlife (WDFW) and located in Pacific County, Washington.\",\n",
       "          \"ProjectID\": \"{d59a556a-77fa-4a07-9f32-b65455d4e7d4}\",\n",
       "          \"ProjectTit\": \"West Fork Grays River Fish Passage Project\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/west-fork-grays-river-fish-passage-project\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.56220000003,\n",
       "                46.3938999998318\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 60.46462,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -151.07334,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 305,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The Service will mitigate physical safety and environmental hazards at mined FWS lands.  Actions will include assessment of physical safety hazards, mitigation of safety hazards, and assessment of environmental contamination.   Risks to employee, visitor\",\n",
       "          \"ProjectID\": \"150XX08MU0422\",\n",
       "          \"ProjectTit\": \"Mitigate Hazards on Mined Lands\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"5\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.965019999775,\n",
       "                32.6914700002101\n",
       "              ],\n",
       "              [\n",
       "                -114.180030000353,\n",
       "                33.2308099996882\n",
       "              ],\n",
       "              [\n",
       "                -98.6236900004162,\n",
       "                34.7106500002244\n",
       "              ],\n",
       "              [\n",
       "                -115.358579999685,\n",
       "                36.438440000292\n",
       "              ],\n",
       "              [\n",
       "                -151.073339999649,\n",
       "                60.4646200002109\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 3815138.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.99125787,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -124.0276939,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 426,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Restore populations of Oregon Coast coho salmon by re-establishing floodplain connection and improve natural watershed processes on over 180 acres of tidal wetland in the Siuslaw River Estuary on the Oregon Coast. Project will implement recently complete\",\n",
       "          \"ProjectID\": \"77381\",\n",
       "          \"ProjectTit\": \"Tidal Wetland Restoration to Improve Oregon Coast Coho Salmon Habitat in the Siuslaw River Estuary\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -124.027693899892,\n",
       "                43.9912578698412\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 70000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.93865,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -122.848,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 960,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Eradicating Invasive Plants to Support Prairie Restoration in Four Areas of Critical Environmental Concern in Oregon\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.848000000251,\n",
       "                43.938650000264\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 80000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.8362608,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -123.6645197,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 199,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Design 3 culvert replacements to improve passage to spawning and rearing habitat for Coho Salmon, steelhead, Cutthroat trout, and lamprey\",\n",
       "          \"ProjectID\": \"050XX02OR2022\",\n",
       "          \"ProjectTit\": \"Smith River Fish Passage\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.664519700011,\n",
       "                43.8362607998272\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 70000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.6899,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -123.0378,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 221,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Prairie restoration in four ACECs: Dorena, McGowan, Garoutte, and Twin Prairie. This project builds on and allows us to maintain and enhance the gains made from previous work accomplished at these sites. The goals of this project are to restore high qual\",\n",
       "          \"ProjectID\": \"050XX06OR1522\",\n",
       "          \"ProjectTit\": \"Prairie Restoration in 4 Oregon ACECs\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.037799999779,\n",
       "                43.6898999999861\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 20000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.856,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -122.7617,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 196,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Decommissioning of a road and application of native seed to revegetate the site.\",\n",
       "          \"ProjectID\": \"050XX02OR0222\",\n",
       "          \"ProjectTit\": \"Lost Creek road decommissioning and revegetation\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.761699999851,\n",
       "                43.8559999999718\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 40000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.19692459,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -123.436872,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 197,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Replace failing culvert and improve aquatic organism passage in the Upper Long Tom watershed for cutthroat and lamprey to improve infrastructure security and increase the resistance, resilience, and adaptability to climate change.\",\n",
       "          \"ProjectID\": \"050XX02OR0922\",\n",
       "          \"ProjectTit\": \"Michaels Creek Culver and Aquatic Organism Passage\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.436872000409,\n",
       "                44.1969245898633\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 25000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.1383,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -123.296,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 220,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Removal of invasive weeds improves the persistence of listed species\",\n",
       "          \"ProjectID\": \"050XX06OR0322\",\n",
       "          \"ProjectTit\": \"West Eugene Wetlands Integrated Pest Management\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.295999999574,\n",
       "                44.1382999999481\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 95000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.22821052,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -123.4706222,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 200,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The project has three overall goals: 1)  Replacing a failing County Road culvert to improve infrastructure and ESA Listed coho salmon access to critical habitat; 2) Decommissioning an obsolete BLM road that was constructed in middle of valley bottom betw\",\n",
       "          \"ProjectID\": \"050XX02OR2322\",\n",
       "          \"ProjectTit\": \"Swartz Creek Coho Salmon Habitat Restoration\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.470622199707,\n",
       "                44.2282105197344\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 15000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.42469279,\n",
       "          \"LatLongTyp\": \"Kellogg Creek, OR\",\n",
       "          \"Long\": -122.6121873,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 711,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"American Rivers will design, permit, and begin construction activities for the removal of Kellogg Creek Dam. The dam currently blocks access to 15 miles of high quality habitat in Kellogg Creek, a tributary of the Willamette River. Removing the dam will\",\n",
       "          \"ProjectID\": \"NOAA_029\",\n",
       "          \"ProjectTit\": \"Removal of Kellogg Creek Dam\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.61218730013,\n",
       "                45.424692790084\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 504645.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.92152923,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -123.5952754,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 203,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Obtain aquatic organism passage designs for 16 priority culverts within the Mid Coast watersheds, Oregon. Considering the programmatic permitting and NEPA, culverts with engineering designs would quickly become shovel ready projects and field office prio\",\n",
       "          \"ProjectID\": \"050XX02OR4322\",\n",
       "          \"ProjectTit\": \"Mid Coast Aquatic Organism Passage Surveys\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.595275400158,\n",
       "                44.9215292300814\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 150000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.561733,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -123.881786,\n",
       "          \"Notes\": \"Partners involved/Community support: Tillamook County, ODFW, OWEB, NOAA, USFWS, Trout Unlimited, Tillamook Estuary Partnership\",\n",
       "          \"OBJECTID\": 89,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"This project is part of the Salmon SuperHwy strategic effort to restore 95% historic habitat connectivity for 5 species of anadromous ESA-listed salmonids and Pacific lamprey while reducing flooding and improving public safety in the flood-prone coastal\",\n",
       "          \"ProjectID\": \"{36234df2-df3d-4a83-9516-f257dc06f90e}\",\n",
       "          \"ProjectTit\": \"Illingsworth Creek Culvert Removal\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/illingsworth-creek-fish-passage-improvement\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.881786000168,\n",
       "                45.5617330002427\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.52072,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -123.8156162,\n",
       "          \"Notes\": \"Partners involved/Community support: Tillamook County, Oregon DFW, Oregon Water Enhancement Board, NOAA, USFWS, Trout Unlimited, Tillamook Estuary Partnership\",\n",
       "          \"OBJECTID\": 95,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"This project is part of the Salmon SuperHwy strategic Fish Passage partnership in the TIllamook and Nestucca Basins of coastal Oregon (priority #51, Barrier ID 591). The Myrtle Creek fish passage restoration project is located on Tillamook County owned K\",\n",
       "          \"ProjectID\": \"{3a47851f-0d23-468f-981f-40570855b7d1}\",\n",
       "          \"ProjectTit\": \"Myrtle Creek Culvert Removal\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/myrtle-creek-fish-passage-improvement\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.815616199646,\n",
       "                45.52072000002\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.4565,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -123.64949,\n",
       "          \"Notes\": \"Partners involved/Community support: Tillamook County, Oregon DFW, Oregon Water Enhancement Board, NOAA, USFWS, USFS, Trout Unlimited, Tillamook Creamery\",\n",
       "          \"OBJECTID\": 96,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"This project is part of the Salmon SuperHwy strategic effort to restore 95% historic habitat connectivity for 5 species of anadromous ESA-listed salmonids and Pacific lamprey while reducing flooding and improving public safety in the flood-prone coastal\",\n",
       "          \"ProjectID\": \"{18936bef-f580-4d6f-a516-6762dfb9cbee}\",\n",
       "          \"ProjectTit\": \"Samson Creek Culvert Replacement\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/samson-creek-fish-passage-improvement\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.649489999569,\n",
       "                45.4564999996981\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 3625109.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.52953458,\n",
       "          \"LatLongTyp\": \"Wild Salmon Center, OR\",\n",
       "          \"Long\": -122.680983,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 712,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"Wild Salmon Center will implement nine fish passage projects in four Oregon coastal watersheds. The effort will remove and replace aging culverts, dams, tide gates, and other infrastructure to reopen and reconnect habitat for Southern Oregon/Northern Cal\",\n",
       "          \"ProjectID\": \"NOAA_030\",\n",
       "          \"ProjectTit\": \"Nine fish passage projects in Oregon\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.680983000195,\n",
       "                45.5295345801764\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.6266,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -121.5967,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 566,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"Modernizing the East Fork Irrigation District (EFID) infrastructure will conserve water, reduce energy use, improve reliability, increase public safety, and enhance fish and wildlife habitat in the Hood River watershed. Funds will go towards design of hi\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"East Fork Irrigation District Irrigation Modernization\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.596699999619,\n",
       "                45.6266000001131\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 880000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.70876498,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -121.6612316,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 13,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Safety of Dams, Water Sanitation, And Other Facilities\",\n",
       "          \"ProjectDes\": \"Columbia River fishing sites are critical to supporting traditional fishing for  the Yakima, Umatilla, and Warm Springs Indian Tribes. This project will upgrade critical water and sanitation needs, and ensure safe drinking water.\",\n",
       "          \"ProjectID\": \"{CC17E500-3786-4591-83A4-B9CAEAFFF971}\",\n",
       "          \"ProjectTit\": \"Columbia In-Lieu Treaty Fishing Cooks Site\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.661231600049,\n",
       "                45.7087649802264\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 6156417.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.85137961,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -121.1600874,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 443,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Restore the relationship between the land, water, and people of the Columbia River Gorge by conserving ecologically and culturally important terrestrial and aquatic pathways. Project will implement seven habitat restoration projects on 1,540 acres, funct\",\n",
       "          \"ProjectID\": \"77657\",\n",
       "          \"ProjectTit\": \"Healing Land: Landscape Scale Reconnection of Culturally and Ecologically Important Pathways (WA)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.160087399672,\n",
       "                45.8513796099096\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.62293758,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -121.534576,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1064,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Oanna & Yasui Sublateral Efficiency Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.534576000032,\n",
       "                45.6229375801599\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.06225712,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -118.3409377,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1182,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Walla Walla, Municipal Master Smart Metering Project of Water System Districts/Zones\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -118.340937700337,\n",
       "                46.0622571202036\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1600000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.06171223,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -118.3378635,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 853,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Aquifer Storage and Recovery\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -118.337863500145,\n",
       "                46.0617122301202\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior and Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service and the Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 1999390.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.70089815,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -117.16297372,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1411,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Strengthen the Tribally-led Camas to Condors collaborative by completing a range study, nesting territory surveys, release and feeding site selection, and hosting stakeholder workshops. Project will explore ecological employment, education, workforce tra\",\n",
       "          \"ProjectID\": \"79670\",\n",
       "          \"ProjectTit\": \"Camas to Condors: Biocultural Restoration Planning for Ananasocum (ID, MT, OR, WA)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.162973722371,\n",
       "                45.7008981459726\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 3304858.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.66556113,\n",
       "          \"LatLongTyp\": \"\\u00a0Confederated Tribes of the Umatilla Indian Reservation\",\n",
       "          \"Long\": -118.6858961,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 691,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Tribal Priority Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"The Confederated Tribes of the Umatilla Indian Reservation will remove or remediate barriers to fish migration in three watersheds: Umatilla, Walla Walla, and Grande Ronde. Projects within the Walla Walla and Umatilla watersheds are classified as imminen\",\n",
       "          \"ProjectID\": \"NOAA_009\",\n",
       "          \"ProjectTit\": \"Remove or remidate barriers to fish migration in three watersheds in Oregon\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -118.685896100042,\n",
       "                45.6655611301361\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 60000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.59189,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -118.737,\n",
       "          \"Notes\": \"Rehabilitate 2800 linear feet of the main canal by relining with Geo-Foam lining for 40% and new concrete panels for 60% of the project.  Will also install drainage system for 60% of the project as groundwater is causing the deterioration of the lining.\",\n",
       "          \"OBJECTID\": 1165,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Umatilla\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -118.736999999812,\n",
       "                45.5918900001528\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 4885710.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.34060242,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -117.2442417,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1183,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Wallowa Lake Dam Rehabilitation and Wallowa River Restoration Project\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.244241700112,\n",
       "                45.3406024199183\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 198000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.93643778,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -119.3720322,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 201,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The project will repair and/or reconstruct approximately 18 miles of riparian fencing to control unauthorized livestock grazing.\",\n",
       "          \"ProjectID\": \"050XX02OR3222\",\n",
       "          \"ProjectTit\": \"North Fork John Day Riparian Fence Maintenance\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.372032200339,\n",
       "                44.9364377801016\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 115563.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.5644989,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -119.5329971,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 359,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This funding will be used to hire 1 GS 9/11 staff member in 2022. Continued funding for FY22 position and one new position in 2023 to work directly with local governments (Soil & Water Conservation Districts) to enroll landowners in priority habitats in\",\n",
       "          \"ProjectID\": \"SAGE20220044\",\n",
       "          \"ProjectTit\": \"Partnerships Coordinator\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.532997100307,\n",
       "                44.5644988999786\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 115563.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.165398467,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -120.489585847,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 395,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"1 new position in FY23. This funding will be used to hire GS 9/11 staff member to work directly with local governments (Soil & Water Conservation Districts) to enroll landowners in priority habitats in existing Candidate Conservation Agreements.\",\n",
       "          \"ProjectID\": \"SAGE20230080\",\n",
       "          \"ProjectTit\": \"Partnerships Coordinator\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.489585847176,\n",
       "                44.1653984668131\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 33499.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.167873752,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -120.362190686,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 398,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This funding will be used to hire 1 GS 9/11 staff member in 2022. Continued funding for FY22 position and one new position in 2023 to work directly with local governments (Soil & Water Conservation Districts) to enroll landowners in priority habitats in\",\n",
       "          \"ProjectID\": \"SAGE20230083\",\n",
       "          \"ProjectTit\": \"Partnerships Coordinator\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.362190685745,\n",
       "                44.1678737521473\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 133665.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.165398467,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -120.66099804,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 409,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Support rangewide spatial mapping work, including scaling down conservation design to local levels.\",\n",
       "          \"ProjectID\": \"SAGE20230094\",\n",
       "          \"ProjectTit\": \"Spatial Ecologist\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.660998039812,\n",
       "                44.1653984668131\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.1501,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -121.3303,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 666,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"The Tumalo Irrigation District Modernization Project will modernize up to 1.9 miles of Tumalo Irrigation District\\u2019s canals and 66.9 miles of laterals to improve water conservation, water delivery reliability, and public safety.  The project will occur\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Tumalo Irrigation District Irrigation Modernization Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.330300000044,\n",
       "                44.1500999997929\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 28668.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.05692082,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -121.3050335,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 855,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Arnold Irrigation District, River Diversion Gate Automation and Flow Measurement\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.305033500171,\n",
       "                44.056920819819\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 120039.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.0597,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -121.0,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 323,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Habitat restoration (juniper removal) on FWS Candidate Conservation Agreement with Assurances-enrolled state lands.\",\n",
       "          \"ProjectID\": \"SAGE20220008\",\n",
       "          \"ProjectTit\": \"Barbwire Juniper Removal Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.000000000125,\n",
       "                44.059700000288\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 120039.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.0596590580001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -121.000248601,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 372,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Habitat restoration (juniper removal) on FWS Candidate Conservation Agreement with Assurances-enrolled state lands.\",\n",
       "          \"ProjectID\": \"SAGE20230057\",\n",
       "          \"ProjectTit\": \"Barbwire Juniper Removal Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.000248600795,\n",
       "                44.0596590579761\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 25000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.9366608,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -120.5551682,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 961,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Eradicating Invasive Plants Using Integrated Pest Management to Conserve the West Eugene Wetlands in Western Oregon\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.555168199807,\n",
       "                43.9366607998534\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 70000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.9366608,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -120.5551682,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1199,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"West Extension Irrigation District, Canal Automation and Monitoring Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.555168199807,\n",
       "                43.9366607998534\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2787679.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.9366608,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -120.5551682,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1008,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Klamath Siskiyou Oak Network Upper Rogue Oak Initiative\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.555168199807,\n",
       "                43.9366607998534\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 120039.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.94,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -120.5551682,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1346,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem - Sagebrush-Steppe\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 019|120039|Oregon Departme]\",\n",
       "          \"ProjectTit\": \"Oregon Department of State Lands Barbwire Juniper Removal Project\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/press-release/2022-11/president-bidens-bipartisan-infrastructure-law-provides-10-million-sagebrush\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.555168199807,\n",
       "                43.940000000276\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 250000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.7588997,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -118.6050034,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 320,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Through the framework of six Programmatic CCAAs established with USFWS in 2015, private landowners engage in voluntary sage-brush conservation actions throughout Southeastern Oregon.\",\n",
       "          \"ProjectID\": \"SAGE20220005\",\n",
       "          \"ProjectTit\": \"Oregon Candidate Conservation Agreement with Assurances Initiative to Protect and Enhance Sagebrush Ecosystems on Private Lands\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -118.605003399798,\n",
       "                43.758899700015\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 250000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.7588908920001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -118.605229069,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 394,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Through the framework of six Programmatic CCAAs established with USFWS in 2015, private landowners engage in voluntary sage-brush conservation actions throughout Southeastern Oregon.\",\n",
       "          \"ProjectID\": \"SAGE20230079\",\n",
       "          \"ProjectTit\": \"Oregon Candidate Conservation Agreement with Assurances Initiative to Protect and Enhance Sagebrush Ecosystems on Private Lands\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -118.605229069174,\n",
       "                43.7588908917143\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.795,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -117.0639,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 609,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"In recent years, the Owyhee Irrigation District has faced droughts that limit water supply to irrigators. The design and age of the District's conveyance system no longer meets its obligations. To address these concerns, funds will be used to implement a\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Owyhee Irrigation District Infrastructure Modernization Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.063900000227,\n",
       "                43.7949999997141\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 119200.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.4216995,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -117.7149963,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 322,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Habitat restoration (juniper and invasive annual grass control) via the Baker and Vale Local Implementation Teams (LITs) across multiple land ownerships.\",\n",
       "          \"ProjectID\": \"SAGE20220007\",\n",
       "          \"ProjectTit\": \"Southeastern Oregon Collaboration to Address Primary Threats to Sagebrush Landscapes.\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.714996299568,\n",
       "                44.4216995001856\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 119200.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.4217129300001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -117.715336492,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 408,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Habitat restoration (juniper and invasive annual grass control) via the Baker and Vale Local Implementation Teams (LITs) across multiple land ownerships.\",\n",
       "          \"ProjectID\": \"SAGE20230093\",\n",
       "          \"ProjectTit\": \"Southeastern Oregon Collaboration to Address Primary Threats to Sagebrush Landscapes.\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.715336491566,\n",
       "                44.4217129298129\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.50983902,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -116.0460179,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 889,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Cascade, Real-Time Water Metering for Increased Efficiency\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.046017899864,\n",
       "                44.5098390200215\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 138518.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.5503998,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -114.6589966,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 358,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"1 GS 12 employee to support existing BLM liaison position, providing a key leadership role in leading sage grouse conservation (post-fire restoration, invasive species control, and Land Use Plan amendments) for IFWO.\",\n",
       "          \"ProjectID\": \"SAGE20220043\",\n",
       "          \"ProjectTit\": \"Partnerships Coordinator\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.658996600182,\n",
       "                44.5503997999846\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 115563.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.5504392710001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -114.659421094,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 396,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"GS 11 position, located in Salmon, Idaho, to work in coordination with other established liaison positions across southern Idaho to implement sage grouse conservation.\",\n",
       "          \"ProjectID\": \"SAGE20230081\",\n",
       "          \"ProjectTit\": \"Partnerships Coordinator\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.65942109368,\n",
       "                44.550439270913\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 240000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.39,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -114.6593552,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1314,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem - Sagebrush-Steppe\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 014|240000|Idaho's Cheatgr]\",\n",
       "          \"ProjectTit\": \"Idaho's Cheatgrass Challenge; Implementing a State-wide Strategy for Invasive Annual Grasses\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/program/sagebrush-conservation\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.659355199559,\n",
       "                44.3899999998969\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 74185.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.3890915,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -114.6593552,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1187,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Water District 63, Real-Time Monitoring Implementation Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.659355199559,\n",
       "                44.389091500052\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1050000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.3890915,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -114.6593552,\n",
       "          \"Notes\": \"replace current water storage and distribution system. This investment is critical to address widespread deficiencies and deteriorated infrastructure that resulted in an emergency order from EPA on the water system in 2018.\\u00a0\",\n",
       "          \"OBJECTID\": 1343,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Safety of Dams, Water Sanitation, And Other Facilities\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 020|1050000|Nez Perce North]\",\n",
       "          \"ProjectTit\": \"Nez Perce Northern Idaho Water System\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-10-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.659355199559,\n",
       "                44.389091500052\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.3890915,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -114.6593552,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1088,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Pumping Plant Elimination and Canal Abandonment Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4247\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.659355199559,\n",
       "                44.389091500052\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.3890915,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -114.6593552,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1074,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Parks and Lewisville Irrigation Company, SCADA Installation Project - Phase I\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.659355199559,\n",
       "                44.389091500052\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 415606.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.3890915,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -114.6593552,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1136,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Snake River Plain Aquifer Wells Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.659355199559,\n",
       "                44.389091500052\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 5000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.3890915,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -114.6593552,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 948,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Enterprize Canal Company Conveyance Improvement and Aquifer Recharge Facility\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.659355199559,\n",
       "                44.389091500052\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 31500.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.3890915,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -114.6593552,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 967,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Farmers Friend Irrigation Company, Headgate Automation - Phase I\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.659355199559,\n",
       "                44.389091500052\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 43583.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.3890915,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -114.6593552,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 969,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Fremont-Madison Irrigation District, Main Water Control Structures and Flow Measurement Station\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.659355199559,\n",
       "                44.389091500052\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.3890915,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -114.6593552,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 991,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Idaho Irrigation District, Headgate Automation and Irrigation Flow Measurement Projects\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.659355199559,\n",
       "                44.389091500052\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 23890.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.3890915,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -114.6593552,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1000,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Island Ward Canal Company, Automated Headgate Installation Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.659355199559,\n",
       "                44.389091500052\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 51500.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.3890915,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -114.6593552,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1058,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"North Fremont Canal Systems Inc, Canal Lining Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.659355199559,\n",
       "                44.389091500052\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 3000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.57,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -116.56,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1045,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water Recycling\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Nampa Recycled Water Program\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4296\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.560000000324,\n",
       "                43.570000000323\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 43790.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.60221224,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -116.2160538,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 873,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Boise Project Board of Control, Automation of Arena Canal and Arena Lake Drain\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.216053799823,\n",
       "                43.6022122401333\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 4208805.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.61730601,\n",
       "          \"LatLongTyp\": \"Species Conservation Office, ID\",\n",
       "          \"Long\": -116.2015114,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 702,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"The Idaho Office of Species Conservation will improve fish passage in the Upper Snake River. It will address four culverts at Poison Creek, Kinnikinic Creek, George Creek, and Big Cedar Creek. Improving access to these tributaries will provide important\",\n",
       "          \"ProjectID\": \"NOAA_020\",\n",
       "          \"ProjectTit\": \"Fish passage improval in the Upper Snake River\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.201511400388,\n",
       "                43.6173060098039\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.8,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -113.5,\n",
       "          \"Notes\": \"Project Lat/Long was incorrectly listed. Longitudes was positive. Lat/Long fields updated with negative longitude and manually moved to presumed correct location.\",\n",
       "          \"OBJECTID\": 602,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with \\u200birrigation infrastructure modernization.  Canal lining, amongst others practices, will be evaluated to benefit aquifers, streams, an\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Middle Big Lost\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -113.499999999672,\n",
       "                43.8000000001293\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 156852.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.792716974,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -112.711374496,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 414,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project is delivering integrated habitat restoration treatments (e.g., fuel breaks, revegetation, riparian enhancement) in two priority sagebrush  landscapes in Idaho, with an emphasis on re-establishing functional sagebrush habitat for Greater sage\",\n",
       "          \"ProjectID\": \"SAGE20230099\",\n",
       "          \"ProjectTit\": \"Upper Snake Sagebrush Steppe Enhancement\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.711374495958,\n",
       "                43.7927169739529\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 183148.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.7927017,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -112.7109985,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 317,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project will increase the pace and scale of ongoing conifer removal partnerships in two key mixed-jurisdiction sagebrush landscapes in southern Idaho; and, will promote consistent delivery of conifer treatments across time and space (and land owners\",\n",
       "          \"ProjectID\": \"SAGE20220002\",\n",
       "          \"ProjectTit\": \"Upper Snake Sagebrush Steppe Enhancement\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.710998499808,\n",
       "                43.7927016997754\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.9,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -112.2,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 568,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with aquifer recharge, surface water quantity, and fish and wildlife habitat enhancement.  \\u200bManaged recharge will be evaluated for the Eas\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"ESPA Recharge\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.199999999952,\n",
       "                43.9000000002327\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 30000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.3007,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -111.92,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 954,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Eradicating Invasive Plants to Maintain Wilderness Character in Montana\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.920000000151,\n",
       "                45.3006999999708\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 30000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.32033111,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -112.1930275,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 219,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project would work to maintain and restore the wilderness characteristics that exist in these areas but are slowly disappearing due to invasion by noxious weeds.\",\n",
       "          \"ProjectID\": \"050XX06MT0622\",\n",
       "          \"ProjectTit\": \"Dillon FO Invasive Plant Treatments\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.193027500398,\n",
       "                45.320331109863\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 437185.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.2168999,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -113.0019989,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 331,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Remove 4,000 acres of invasive conifers in CSAs/GOAs.  Restore 350 acres of mesic habitat including Smith Springs.  Treat 1,500 of invasive annual grasses ion mixed jurisdiction lands, including Red Rock Lakes NWR.\",\n",
       "          \"ProjectID\": \"SAGE20220016\",\n",
       "          \"ProjectTit\": \"SW Montana Sage Steppe Resiliency Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -113.001998900269,\n",
       "                45.2168998998749\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 468508.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.2169428080001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -113.002201725,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 412,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Remove 4,000 acres of invasive conifers in core sagebrush and growth opportunity areas. Restore 350 acres of mesic habitat including Smith Springs, near Wisdom, MT. Treat 1,500 of invasive annual grasses on mixed jurisdiction lands, including Red Rock La\",\n",
       "          \"ProjectID\": \"SAGE20230097\",\n",
       "          \"ProjectTit\": \"SW Montana Sage Steppe Resiliency Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -113.002201724589,\n",
       "                45.2169428078328\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 492000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.3228989,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -113.939003,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 365,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project will step down and accelerate Idaho's state-led \\\"Cheatgrass Challenge\\\" and empower regional partnerships to actively manage invasive annual grasses and wildfire threats in sagebrush core habitat in strategic geographies within the state. Thi\",\n",
       "          \"ProjectID\": \"SAGE20220050\",\n",
       "          \"ProjectTit\": \"Addressing Invasive Annual Grass in Sage-Grouse Core Areas in Idaho\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -113.93900300042,\n",
       "                45.3228989001782\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 328000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.322941427,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -113.939426709,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 368,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project steps down and accelerates Idaho's state-led \\\"Cheatgrass Challenge\\\" and empowers regional partnerships to actively manage invasive annual grasses and wildfire threats in sagebrush core habitat in strategic geographies within the state. This\",\n",
       "          \"ProjectID\": \"SAGE20230053\",\n",
       "          \"ProjectTit\": \"Addressing Invasive Annual Grass in Sage-Grouse Core Areas in Idaho\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -113.93942670879,\n",
       "                45.3229414267981\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 19791492.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.82233816,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -116.108553,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 432,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Enable a collaboration among two Federally recognized Tribes, an irrigation district, and the State of Oregon to complete rehabilitation of the Wallowa Dam to balance rural community resilience and economic benefit with improved aquatic habitat connectiv\",\n",
       "          \"ProjectID\": \"77494\",\n",
       "          \"ProjectTit\": \"Restoring Sockeye Salmon Habitat Connectivity at the Wallowa Dam (OR)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.108552999966,\n",
       "                45.8223381602146\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 250000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.8993611,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -112.509,\n",
       "          \"Notes\": \"Partners involved/Community support: Montana FWP, Trout Unlimited, Blackfoot Challenge, USFS, Trout Unlimited, Lewis & Clark County, USFWS, Montana Fish, Wildlife & Parks, private landowner\",\n",
       "          \"OBJECTID\": 1240,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"This proposed project improves connectivity for native trout in Montana by creating fish passage at three diversions and one culvert within climate resilient priority watersheds for bull trout and arctic grayling. All projects are scheduled to be done by\",\n",
       "          \"ProjectID\": \"{af1fa370-1c87-44ef-8601-d6c3b5dc3ddc}\",\n",
       "          \"ProjectTit\": \"Increasing Bull Trout and Arctic Grayling Fish Passage in Montana\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/increasing-bull-trout-and-arctic-grayling-fish-passage-montana\",\n",
       "          \"SiteCount\": \"4\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.509000000356,\n",
       "                46.8993611001558\n",
       "              ],\n",
       "              [\n",
       "                -113.020459999806,\n",
       "                47.0295000001359\n",
       "              ],\n",
       "              [\n",
       "                -113.41199999958,\n",
       "                45.6952300001849\n",
       "              ],\n",
       "              [\n",
       "                -112.12199999979,\n",
       "                44.7047599997567\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 4972308.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.28915594,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -112.33267338,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1417,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Coordinate with independent livestock producers and local landowner-led groups to expand the use of proven and locally-designed non-lethal carnivore conflict prevention techniques. Project will contribute a critical component of a larger strategy, securi\",\n",
       "          \"ProjectID\": \"80001\",\n",
       "          \"ProjectTit\": \"Landowner-led Carnivore Conflict Reduction in Western Montana\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.332673379023,\n",
       "                46.2891559414198\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 230000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.1005,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -114.289,\n",
       "          \"Notes\": \"Partners involved/Community support: Clark Fork Coalition, Bitterroot National Forest, Montana FWP, Montana DNRC, Trout Unlimited, Uinta CCD, WNTI, Open Rivers Fund, Wyoming GFD, Wyoming Wildlife and Natural Resource Trust, Wyoming DEQ\",\n",
       "          \"OBJECTID\": 1244,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"The project's goal is to maximize connectivity for fish passage within the watershed for native ESA listed bull trout and state priority westslope cutthroat in a priority area for the State of Montana to allow migratory access to upper elevation cold wat\",\n",
       "          \"ProjectID\": \"{e7d03b83-a074-441c-ad5e-24fdd90efd93}\",\n",
       "          \"ProjectTit\": \"Upper Clark Fork Fish Passage for Bull Trout and Westslope Cutthroat\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/upper-clark-fork-fish-passage-bull-trout-and-westslope-cutthroat\",\n",
       "          \"SiteCount\": \"4\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.289000000248,\n",
       "                46.1005000001396\n",
       "              ],\n",
       "              [\n",
       "                -113.039000000172,\n",
       "                46.1539999997702\n",
       "              ],\n",
       "              [\n",
       "                -113.185999999753,\n",
       "                46.1481000000886\n",
       "              ],\n",
       "              [\n",
       "                -113.215200000372,\n",
       "                46.1638999997269\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 908523.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.65,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -112.79,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 868,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Blackfeet Conservation in the Ninnaastakoo (Chief Mountain) Area: Planning for large landscape connectivity and cultural use\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.79000000024,\n",
       "                46.65000000006\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1421072.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.65,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -112.79,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1293,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The Blackfeet Tribe, Blackfeet Environmental Office (BEO) is responsible for planning for the increasing impacts of climate change across the Blackfeet Nation, home of the Blackfeet people, the largest Native American Tribe in Montana. BEO hopes to share\",\n",
       "          \"ProjectID\": \"[DOI - 026|1421072|Culture as Clim]\",\n",
       "          \"ProjectTit\": \"Culture as Climate Adaptation: Implementation of the Blackfeet Climate Change Adaptation Plan\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.79000000024,\n",
       "                46.65000000006\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 9779000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.65,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -112.79,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1281,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Indian Water Rights Settlements\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 024|9779000|Blackfeet Water]\",\n",
       "          \"ProjectTit\": \"Blackfeet Water Rights Settlement\\u202f\\u00a0\\u00a0\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/bipartisan-infrastructure-law-supports-580-million-investment-fulfill-indian-water\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.79000000024,\n",
       "                46.65000000006\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.48242413,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -112.2533267,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 765,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The 53-square-mile Upper Tenmile Creek Mining Area site is located in Lewis and Clark County, just southwest of Helena, Montana. The site includes about 150 active and abandoned mines in the historic Rimini Mining District. Mining for gold, lead, copper\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"UPPER TENMILE CREEK MINING AREA\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.253326700045,\n",
       "                46.4824241298001\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.647575,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -111.727867,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 620,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"BIL WFPO funding will be used to implement ag-water management methods to build towards climate resiliency. Funds are needed to modernize the Helena Valley Irrigation District water delivery system.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Helena Valley Irrigation District\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.727867000372,\n",
       "                46.6475749998536\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.86193088,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -113.9845969,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 997,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Invasive grass species detection, prevention, and treatment planning for the benefit of USFS (Region 1) and neighboring lands, with a focus on ventenata\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -113.984596900139,\n",
       "                46.8619308800279\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.868189,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -113.996389,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 629,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"BIL WFPO funding will be used to implement ag-water management methods to build towards climate resiliency. Funds are needed to modernize the Missoula Conservation District Irrigation District water delivery system.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Missoula Conservation District\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -113.996389000432,\n",
       "                46.8681889997746\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 6700000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.2662139,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -116.687339,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1344,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Indian Water Rights Settlements\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 024|6700000|Nez Perce Water]\",\n",
       "          \"ProjectTit\": \"Nez Perce Water Rights Settlement Operations, Maintenance & Replacement\\u202f\\u00a0\\u00a0\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/bipartisan-infrastructure-law-supports-580-million-investment-fulfill-indian-water\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.687338999981,\n",
       "                46.2662139000133\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1050000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.39639626,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -116.804199,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 50,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Indian Water Rights Settlements\",\n",
       "          \"ProjectDes\": \"Completion of the project will ensure EPA Drinking Water compliance requirements, provides firefighting demand for water, and provides safe drinking water to an estimated 240 residents; including an elementary school, and a day care facility.\",\n",
       "          \"ProjectID\": \"{C083FEC8-96CD-4D03-A84D-14B08846D79B}\",\n",
       "          \"ProjectTit\": \"Northern Idaho Water System\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.804199000034,\n",
       "                46.3963962600896\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 242946.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.40490612,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -116.80491366,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 10,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The Nez Perce Tribe will produce a comprehensive and actionable adaptation plan that addresses current needs and builds upon ongoing management efforts, the most current climate projections, provide wins for the climate and the economy.\",\n",
       "          \"ProjectID\": \"{B6939465-543A-4CA7-B9B1-7E85324F2181}\",\n",
       "          \"ProjectTit\": \"Climate Change Adaptation Plan\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.804913661047,\n",
       "                46.4049061230382\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior and Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service and the Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 2500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.21141908,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -118.60406185,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1376,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Create instream diversity through installation of over 160 engineered large wood structures and conserve a 400 acre floodplain on the Touchet River using the Tribe's River Vision restoration philosophy as a guide. Project will create instream fish habita\",\n",
       "          \"ProjectID\": \"80193\",\n",
       "          \"ProjectTit\": \"T\\u00fau\\u0161i W\\u00e1na Floodplain, River, and Salmon Habitat Restoration (OR)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -118.604061847701,\n",
       "                46.211419076414\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.19,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -119.158,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 837,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"2022 Canal Lining and Water Conservation Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4247\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.157999999597,\n",
       "                46.1900000001569\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 93786.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.2461582610001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -119.561987235,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 407,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Approximately 300 acres of invasive species (cheatgrass and Russian thistle) treatment and 100 acres of revegetation to restore native habitats, increase fire resiliency, and protect sage-obligate species at the Dept. of Energy Hanford Site in Washington\",\n",
       "          \"ProjectID\": \"SAGE20230092\",\n",
       "          \"ProjectTit\": \"Shrub-Steppe Restoration for Fire and Climate Resilience on Hanford Reach National Monument\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.561987234712,\n",
       "                46.2461582607684\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 75000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.21075367,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -119.1688218,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 909,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Columbia Irrigation District, Canal #2 MidCanal Automated Check Structure\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.168821799907,\n",
       "                46.2107536702266\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 3626635.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.24402995,\n",
       "          \"LatLongTyp\": \"Bateman Island, WA\",\n",
       "          \"Long\": -119.2265455,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 718,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"The Yakama Nation will remove the Bateman Island Causeway, located at the confluence of the Yakima and Columbia Rivers. It will complete hydraulic modeling at the Prosser Dam on the Yakima River. These efforts will improve spawning and rearing habitat fo\",\n",
       "          \"ProjectID\": \"NOAA_036\",\n",
       "          \"ProjectTit\": \"Removal of the Bateman Island Causeway\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.22654549999,\n",
       "                46.2440299497646\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2422750.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.25102191,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -120.1974705,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 986,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Healing Land: Climate Resilience in Yakama Nation Lands\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.197470500004,\n",
       "                46.2510219102927\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1179073.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.27902436,\n",
       "          \"LatLongTyp\": \"Yakama Indian Reservation\",\n",
       "          \"Long\": -120.9013786,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 693,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Tribal Priority Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"The Yakama Nation will remove barriers on the Snake Creek to address a \\u201cmortality hotspot\\u201d for Endangered Species Act-listed Middle Columbia River steelhead in the Yakima River watershed. Two dams will be removed, opening six miles of habitat. They w\",\n",
       "          \"ProjectID\": \"NOAA_011\",\n",
       "          \"ProjectTit\": \"Remove barriers on the Snake Creek\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.901378600388,\n",
       "                46.2790243599293\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 3740000.0,\n",
       "          \"ImageLink\": \"https://dwpdst.doi.gov/power/BIL_Funding/WapatoDiversion.jpg\",\n",
       "          \"Lat\": 46.52436254,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -120.47835539,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 81,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Irrigation and Power Systems\",\n",
       "          \"ProjectDes\": \"The Wapato Irrigation Project provides irrigation water to over 135,500 acres with an estimated direct harvest benefit of $560 million.\",\n",
       "          \"ProjectID\": \"{1BFE2A54-0A71-4006-8890-1B572EA99624}\",\n",
       "          \"ProjectTit\": \"Wapato Irrigation Project - Wapato Diversion Dam on the Yakima River\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.478355385276,\n",
       "                46.5243625430369\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1660000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.45706,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -120.738,\n",
       "          \"Notes\": \"Installation of Aqualastic lining for 55,773 linear feet of the YTID Main Canal as a interim measure until a project can be developed, approved, funded, and constructed to replace or upgrade the 111-year-old Main Canal. Funding is provided for implementa\",\n",
       "          \"OBJECTID\": 1206,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yakima\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.738000000016,\n",
       "                46.4570600000472\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 400000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.6286944,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -121.1334583,\n",
       "          \"Notes\": \"Partners involved/Community support: Yakima County, Yakima Basin Integrated Plan, BOR, USFWS\",\n",
       "          \"OBJECTID\": 88,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"Constructs a fish passage and enhanced spillway at Tieton Dam to alllow fish access to the SF Tieton River from Rimrock Reservoir, allowing more flexibility in management of the Yakima Basin Project as a whole, especially for the release of cool-water pu\",\n",
       "          \"ProjectID\": \"{b1d30c5b-a379-4015-abc3-982326fb74a1}\",\n",
       "          \"ProjectTit\": \"Fish Ladder and Spillway Addition on Tieton Dam\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/south-fork-tieton-bridge-fish-passage-improvement\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.133458300142,\n",
       "                46.6286944000046\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.99525873,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -120.5501615,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1139,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"South Branch Piping\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.550161499758,\n",
       "                46.9952587298441\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 150000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.93443491,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -120.5257036,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 206,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The project has three primary goals: 1) improve access to high quality fishing on BLM lands; 2) restore currently-degraded riparian gallery habitat including invasive species removal and native tree and shrub plantings; and 3) develop off-channel pool ar\",\n",
       "          \"ProjectID\": \"050XX02WA2922\",\n",
       "          \"ProjectTit\": \"Ringer Road Riparian Restoration\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.525703600422,\n",
       "                46.9344349098673\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Forest Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 810039.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.10680836,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -121.49221835,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1414,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Lead collaborative efforts to improve native vegetation for Tribal harvest, ungulate forage, pollinator habitat, and improve terrestrial and hydrologic connectivity that restores hillslope hydrology and prevents sediment input to at-risk salmon headwater\",\n",
       "          \"ProjectID\": \"79838\",\n",
       "          \"ProjectTit\": \"Enhancing First Foods and Habitat Connectivity and Resilience in Mt. Baker-Snoqualmie National Forest (WA)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.492218352091,\n",
       "                47.1068083565216\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 5000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.3747749,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -120.4328003,\n",
       "          \"Notes\": \"The purpose of the Cle Elum Pool Raise Project is to increase the reservoir\\u2019s capacity an additional 14.600 acre-feet to be managed for instream flows for fish; additional funds for shoreline protection will provide mitigation for the pool raise.\",\n",
       "          \"OBJECTID\": 900,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water & Groundwater Storage, And Conveyance\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Cle Elum Pool Raise (Yakima)\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/bil/docs/spendplan-2022/Reclamation-BIL-Spend-Plan-Storage-Addendum-09-30-2022.pdf\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.432800299964,\n",
       "                47.3747748997663\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 87500.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.3747749,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -120.4328003,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1181,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Walla Walla Basin Water Management Decision Support Tool Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.432800299964,\n",
       "                47.3747748997663\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.3747749,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -120.4328003,\n",
       "          \"Notes\": \"Replacing approximately 1,500 linear feet of the West Canal (Stations 849+40 to 864+40) to mitigate adverse seepage and protect the homes downstream of the section.  The mitigation would include drain system with pumps to reduce groundwater infiltration.\",\n",
       "          \"OBJECTID\": 908,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Columbia Basin\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.432800299964,\n",
       "                47.3747748997663\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 30758.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.3747749,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -120.4328003,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1096,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Quincy Columbia Basin Irrigation District, Automation of W38 Lateral Turnout of the West Canal\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.432800299964,\n",
       "                47.3747748997663\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 1000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.39880697,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -120.41886945,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1425,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Collaborate with Washington\\u2019s 29 federally recognized Tribes and two Tribes with off-reservation treaty rights to develop an adaptive framework to mitigate outdoor recreation impacts on ecosystems, Tribal treaty rights, and other interests across state\",\n",
       "          \"ProjectID\": \"80808\",\n",
       "          \"ProjectTit\": \"Partnering with Tribes to Sustainably Manage Recreation on Washington State Public Lands (WA)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.418869453812,\n",
       "                47.3988069683643\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 115563.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.2732024470001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -119.830308184,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 399,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Work with landowners and partner organizations on the development and implementation of CCAAs, invasives and fire projects on identified high-priority areas in Washington.\",\n",
       "          \"ProjectID\": \"SAGE20230084\",\n",
       "          \"ProjectTit\": \"Partnerships Coordinator (ES)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.830308183605,\n",
       "                47.2732024469477\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.0475,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -118.9486,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 565,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with agricultural water management and watershed protection in the Odessa Aquifer area.  There is a federal, state, and private partnersh\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"East Columbia Basin Irrigation District - Odessa Groundwater Replacement Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -118.948600000245,\n",
       "                47.0475000002688\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 175000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.4319992,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -117.5960007,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 355,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The Washington shrub steppe Restoration and Resiliency Initiative is a collaborative effort dedicated to achieving long-term shrub steppe conservation in eastern Washington, recognizing and acknowledging the shared benefit to people. A spatial decision s\",\n",
       "          \"ProjectID\": \"SAGE20220040\",\n",
       "          \"ProjectTit\": \"Washington Shrub-steppe Restoration and Resiliency Initiative: Defining Shared Spatial Priorities\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.596000699556,\n",
       "                47.4319991997555\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 5445750.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.48,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -117.575,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 896,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water Recycling\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Cheney Purple Pipe Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4296\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.574999999828,\n",
       "                47.4800000002851\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior and Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service and the Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 614329.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.97123177,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -117.33195168,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1436,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Develop an analysis to support long-term efforts of restoring habitat for the return of Chinook salmon to its historical home. Project will establish four monitoring programs enabling the Tribe and its partners to identify lands on the Reservation and in\",\n",
       "          \"ProjectID\": \"81183\",\n",
       "          \"ProjectTit\": \"Salmon Restoration Planning in the Hangman Watershed (ID; WA)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.331951683606,\n",
       "                47.9712317693821\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 199530.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.8865061,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -117.98821421,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 82,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The project will develop a climate adaptation plan to build drought and climate change resiliency within two culturally significant watersheds on the Spokane Reservation. This project is funded in part through TCR's annual appropriations.\",\n",
       "          \"ProjectID\": \"{6092402D-A9B1-441E-BDC6-9596F2B96D13}\",\n",
       "          \"ProjectTit\": \"Wetland Enhancements and Beaver Reestablishment to Protect Instream Flows in Blue and Sand Creeks\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.98821421301,\n",
       "                47.886506104572\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 28637.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.94847143,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -118.2968359,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1302,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The Spokane Tribe of Indians (STI) strives to sustainably manage our natural resources, which support tribal recreational, cultural, subsistence and economic activities. However, the impacts of climate change continue to make that effort more challenging\",\n",
       "          \"ProjectID\": \"[DOI - 022|28637|Spokane Tribe o]\",\n",
       "          \"ProjectTit\": \"Developing a Plan to Protect and Enhance Instream Flows in Blue and Sand Creeks\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -118.29683589961,\n",
       "                47.9484714301095\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 209100.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.5683871100001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -119.486336371,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 374,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Partner with the Washington Department of Fish and Wildlife to support their Pygmy Rabbit Recovery program. Propagate and release rabbits (listed as endangered under the ESA and by the state) , assist landowners with habitat restoration, and enroll up to\",\n",
       "          \"ProjectID\": \"SAGE20230059\",\n",
       "          \"ProjectTit\": \"Columbia Basin Pygmy Rabbit Recovery\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.486336371238,\n",
       "                47.5683871097814\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.7382520580001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -119.654449401,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 400,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Large-scale mesic habitat restoration within a sage grouse Priority Area for Conservation.\",\n",
       "          \"ProjectID\": \"SAGE20230085\",\n",
       "          \"ProjectTit\": \"Post-Fire Restoration of Stream and Riparian Habitat Condition on East Foster Creek Douglas County, Washington\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.65444940128,\n",
       "                47.7382520578175\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 31515.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.6465988,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -119.8690033,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 327,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project will restore a section of Smith Draw in northern Douglas County, Washington to improve system function, water table level, and capacity for the system to support riparian and wet meadow habitat. Wet meadow habitat is a very important compone\",\n",
       "          \"ProjectID\": \"SAGE20220012\",\n",
       "          \"ProjectTit\": \"Process-Based Stream Restoration in Smith Draw\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.86900330042,\n",
       "                47.6465988001849\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 183323.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.4612007,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -120.098999,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 328,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"In 2021 TNC received USFWS RIF to support Phase 1 post-fire restoration tasks to conduct weed control and native grass seeding. Phase 2 will include weed control, native tree/shrub planting, and a BDA project.\",\n",
       "          \"ProjectID\": \"SAGE20220013\",\n",
       "          \"ProjectTit\": \"Moses Coulee Post-Fire Sage-Steppe Restoration: Phase II\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.098999000343,\n",
       "                47.4612006999725\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 87007.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.4283108,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -120.324926,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 895,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Chelan County, Yaksum Water Company Pipeline Replacement Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.324926000374,\n",
       "                47.428310800293\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior and Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service and the Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 2997338.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.76771803,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -120.72634994,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1392,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Remove a 0.55 mile-long segment of State Route 207 from the Nason Creek floodway, reconnect 13 acres of side channel and floodplain habitat, protect 0.6 miles of oxbow rearing habitat, and restore more natural stream hydraulics and habitat complexity wit\",\n",
       "          \"ProjectID\": \"80476\",\n",
       "          \"ProjectTit\": \"Salmon Habitat Restoration in the Nason Creek Floodplain of the Upper Columbia Basin (WA)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.726349936844,\n",
       "                47.7677180300029\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 186000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.9049988,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -119.5940018,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 326,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project will support Chelan Douglas Land Trust staff time and costs of transactions involved in purchasing three agricultural land easements to protect 10,000 acres of sage grouse habitat on Badger Mountain in Douglas County, Washington.\",\n",
       "          \"ProjectID\": \"SAGE20220011\",\n",
       "          \"ProjectTit\": \"Easement Support for Sage Grouse Habitat Protection\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.594001799948,\n",
       "                47.9049988002169\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 600000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.494528,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -119.527053,\n",
       "          \"Notes\": \"Partners involved/Community support: Trout Unlimited, Colville Confederated Tribes, Washington State Fish Barrier Board, USFWS, Washington DOT\",\n",
       "          \"OBJECTID\": 92,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"Johnson Creek is a tributary of the Okanogan river near Riverside, Washington. This tributary is important to the overall recovery goals in the Okanogan Basin and is identified as one of few lower Okanogan River tributaries that provide cold water refuge\",\n",
       "          \"ProjectID\": \"{e207e66b-9680-486c-bfff-f7cb4e1900a2}\",\n",
       "          \"ProjectTit\": \"Johnson Creek Culvert Replacement\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/johnson-creek-fish-passage-improvement\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.527053000174,\n",
       "                48.4945279997524\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 600000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.50066,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -119.50893,\n",
       "          \"Notes\": \"Partners involved/Community support: Trout Unlimited, Colville Confederated Tribes, Washington State Fish Barrier Board, USFWS, Washington DOT\",\n",
       "          \"OBJECTID\": 91,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"Johnson Creek is a tributary of the Okanogan river near Riverside, Washington. This tributary is important to the overall recovery goals in the Okanogan Basin and is identified as one of few lower Okanogan River tributaries that provide cold water refuge\",\n",
       "          \"ProjectID\": \"{07f2daa1-645e-43b2-883b-5887a5d19ca4}\",\n",
       "          \"ProjectTit\": \"Johnson Creek Culvert Replacement\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/johnson-creek-fish-passage-improvement\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.50892999956,\n",
       "                48.5006600001032\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 600000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.5168,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -119.509628,\n",
       "          \"Notes\": \"Partners involved/Community support: Trout Unlimited, Colville Confederated Tribes, Washington State Fish Barrier Board, USFWS, Washington DOT\",\n",
       "          \"OBJECTID\": 93,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"Johnson Creek is a tributary of the Okanogan river near Riverside, Washington. This tributary is important to the overall recovery goals in the Okanogan Basin and is identified as one of few lower Okanogan River tributaries that provide cold water refuge\",\n",
       "          \"ProjectID\": \"{c92841e9-e49f-4d30-b454-129846fc70ba}\",\n",
       "          \"ProjectTit\": \"Johnson Creek Culvert Replacement\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/johnson-creek-fish-passage-improvement\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.506305999954,\n",
       "                48.5011049998254\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 600000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.500686,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -119.511794,\n",
       "          \"Notes\": \"Partners involved/Community support: Trout Unlimited, Colville Confederated Tribes, Washington State Fish Barrier Board, USFWS, Washington DOT\",\n",
       "          \"OBJECTID\": 90,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"Johnson Creek is a tributary of the Okanogan river near Riverside, Washington. This tributary is important to the overall recovery goals in the Okanogan Basin and is identified as one of few lower Okanogan River tributaries that provide cold water refuge\",\n",
       "          \"ProjectID\": \"{d5700249-92eb-423a-a1e2-2159a1a6215b}\",\n",
       "          \"ProjectTit\": \"Johnson Creek Culvert Replacement\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/johnson-creek-fish-passage-improvement\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.504798999708,\n",
       "                48.5020970001241\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 250000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.49425601,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -115.97617109,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1403,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Convert an unused, functional bridge along Interstate 90 between the Coeur d'Alene and St. Joe National Forests in Idaho, into a wildlife crossing structure by installing 2 miles of fencing and 10 one-way gates. Project is a cost-effective, community-led\",\n",
       "          \"ProjectID\": \"81032\",\n",
       "          \"ProjectTit\": \"Repurposing Osborn, Idaho Overpass for Wildlife Connectivity (ID)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.976171091865,\n",
       "                47.4942560062364\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1000000.0,\n",
       "          \"ImageLink\": \"https://dwpdst.doi.gov/power/BIL_Funding/MissionValley_KerrSub.jpg\",\n",
       "          \"Lat\": 47.67824353,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -114.24628434,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 46,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Irrigation and Power Systems\",\n",
       "          \"ProjectDes\": \"This utility provides electrical service to approximately 23,000 customers, through 20 substations and 2,450 miles of power lines within the Flathead Indian Reservation and is is the largest source of power to the Mission Valley Power system.\",\n",
       "          \"ProjectID\": \"{80789936-581F-4B27-B604-DC3F6DAFCAA9}\",\n",
       "          \"ProjectTit\": \"Mission Valley Power (MVP)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.246284335937,\n",
       "                47.6782435260887\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 156937000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.59638779,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -114.1140719,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1291,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Indian Water Rights Settlements\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 029|156937000|Confederated Sa]\",\n",
       "          \"ProjectTit\": \"Confederated Salish Kootenai Tribes - Montana Water Rights Protection Act\\u202f\\u00a0\\u00a0\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/bipartisan-infrastructure-law-supports-580-million-investment-fulfill-indian-water\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.114071900404,\n",
       "                47.5963877902589\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 800000.0,\n",
       "          \"ImageLink\": \"https://dwpdst.doi.gov/power/BIL_Funding/Flathead_Greenhouse.png\",\n",
       "          \"Lat\": 47.602957,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -114.1195251,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 80,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration\",\n",
       "          \"ProjectDes\": \"The Updating and Expanding Tribal Greenhouse Facilities to Increase Native Plant Capacity project will double the capacity at selected tribal greenhouses, as Tribal greenhouses need funding to update and expand their facilities to increase each Tribe\\u2019s\",\n",
       "          \"ProjectID\": \"{AD2C3A98-898F-4C9B-AD7B-95A422E5EED7}\",\n",
       "          \"ProjectTit\": \"Updating and Expanding Tribal Greenhouse Facilities to Increase Native Plant Capacity\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.11952509998,\n",
       "                47.6029569998506\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 997585.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.602957,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -114.1195251,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 47,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Indian Water Rights Settlements\",\n",
       "          \"ProjectDes\": \"This settlements will improve the water efficiency of the Federal Flathead Indian Irrigation Project, restoring and protecting Tribal resources, and constructing and maintaining community water distribution and wastewater facilities.\",\n",
       "          \"ProjectID\": \"{1D489E88-7E4A-4229-9263-12E979FB6915}\",\n",
       "          \"ProjectTit\": \"Montana BIA Water Rights Protection Act\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.11952509998,\n",
       "                47.6029569998506\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior and Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service and the Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 3499936.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.64451024,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -113.83718573,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1400,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Develop Landscape Conservation Design collaborative strategies for 16 landscape features and invasive plant risk assessments, restore whitebark pine, and engage with the community to develop and monitor collaborative actions. Project will return the Trib\",\n",
       "          \"ProjectID\": \"80947\",\n",
       "          \"ProjectTit\": \"Bio-Cultural Restoration within the Crown of the Continent (MT)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -113.837185728177,\n",
       "                48.6445102429662\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 937491.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.65914332,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -112.8722683,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 449,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Formulate a conservation plan for stewardship of Crown of the Continent cultural and ecological resources within the Blackfeet Nation Ninnaastakoo boundary by creating community-based environmental assessments and working collaboratively with transnation\",\n",
       "          \"ProjectID\": \"77870\",\n",
       "          \"ProjectTit\": \"Blackfeet Ecological and Cultural Stewardship in the Ninnaastakoo (Chief Mountain) Area (MT)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.872268299661,\n",
       "                48.6591433200945\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 999436.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.53930711,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -108.78171244,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 34,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"This project will improve the resilience of rangelands to ongoing and projected climate change on Fort Belknap lands. The Tribe will implement rangeland water improvements from their recent Agricultural Resource Management Plan from 2018.\",\n",
       "          \"ProjectID\": \"{D92E1B49-F4A3-42F5-AC90-ED9BB43D84FC}\",\n",
       "          \"ProjectTit\": \"Fort Belknap Indian Community Rangeland Water Improvement Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -108.781712439631,\n",
       "                48.5393071078472\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 309218.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.3745995,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -107.8499985,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 332,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Deliver grazing systems on five ranches covering 54,713 acres.  CCAAs on an additional three ranches cover 23,128 acres.  Restoration of 1,500 acres of marginal cropland to native vegetation and restoration of mesic habitat on 300 acres or approx. 2 mile\",\n",
       "          \"ProjectID\": \"SAGE20220017\",\n",
       "          \"ProjectTit\": \"Maintaining Sagebrush Cores in Montana's Northern Great Plains\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -107.849998500222,\n",
       "                48.374599499795\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 431504.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.3745623450001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -107.849613835,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 391,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Deliver grazing systems on five ranches covering 54,713 acres.  CCAAs on an additional three ranches cover 23,128 acres.  Restoration of 1,500 acres of marginal cropland to native vegetation and restoration of mesic habitat on 300 acres or approx. 2 mile\",\n",
       "          \"ProjectID\": \"SAGE20230076\",\n",
       "          \"ProjectTit\": \"Maintaining Sagebrush Cores in MT's Northern Great Plains\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -107.849613835329,\n",
       "                48.3745623448615\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 574000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.25919,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -107.913,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1235,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": \"Restoration and revegetation of holding ponds from historic mining operations in the Zortman and Landusky mines.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Zortman and Landusky Mine Site Restoration\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -107.913000000229,\n",
       "                48.2591900002231\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 4831178.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.16470102,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -108.6152721,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1116,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Restoring Plains Bison and Landscape Connectivity on Tribal Lands: An Inter-Tribal Buffalo Programs Initiative for Long-term Ecological Resiliency\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -108.615272099597,\n",
       "                48.1647010201846\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 119682.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.8613014,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -107.4560013,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 354,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project will use a multi-agency/partner collaboration to pilot a large-scale assessment of an emerging grazing strategy designed to mimic pre-colonial grazing patterns by bison. The goal is to determine the value of these grazing strategies for enha\",\n",
       "          \"ProjectID\": \"SAGE20220039\",\n",
       "          \"ProjectTit\": \"Assessing traditional and emerging grazing strategies for creating a mosaic of diverse habitat patches for sagebrush associated birds\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -107.456001300024,\n",
       "                47.8613014001224\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 100318.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.8612927550001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -107.456020325,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 371,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project will use a multi-agency/partner collaboration to pilot a large-scale assessment of an emerging grazing strategy designed to mimic pre-colonial grazing patterns by bison. The goal is to determine the value of these grazing strategies for enha\",\n",
       "          \"ProjectID\": \"SAGE20230056\",\n",
       "          \"ProjectTit\": \"Assessing traditional and emerging grazing strategies for creating a mosaic of diverse habitat patches for sagebrush associated birds\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -107.456020325443,\n",
       "                47.8612927549279\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 15000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.0334854,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -109.6451187,\n",
       "          \"Notes\": \"$15 million for the Fort Peck Reservation \\u2013 Dry Prairie Rural Water System in Montana to support substantial completion of the project.\",\n",
       "          \"OBJECTID\": 968,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Rural Water Projects\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Fort Peck Reservation \\u2013 Dry Prairie Rural Water System\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-delivers-728-million-historic-investments-address-western\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.645118700431,\n",
       "                47.0334854002763\n",
       "              ],\n",
       "              [\n",
       "                -105.695344000001,\n",
       "                48.2164999998783\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 77560000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.0334854,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -109.6451187,\n",
       "          \"Notes\": \"Core pipeline construction on segments 7 and 8, continued construction progress of a water treatment plant, as well as construction for segments associated with Havre, Chester and Shelby Hub service areas.\",\n",
       "          \"OBJECTID\": 1123,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Rural Water Projects\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Rocky Boys / North Central Montana Rural Water System\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-delivers-728-million-historic-investments-address-western\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.645118700431,\n",
       "                47.0334854002763\n",
       "              ],\n",
       "              [\n",
       "                -110.416834999956,\n",
       "                48.3461299998444\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.54884562,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -111.5392061,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1043,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Muddy Creek Restoration and Resilience Project Phase I\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.539206099659,\n",
       "                47.5488456202472\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 24675.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.0334854,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -109.6451187,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1082,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Pondera County Canal and Reservoir Company, Flowmeter Upgrades for Automation\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.645118700431,\n",
       "                47.0334854002763\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 3000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.0334854,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -109.6451187,\n",
       "          \"Notes\": \"Funding would provide the authorized but not yet appropriated Federal cost-share for finishing the Dry Redwater Regional Water System Feasibility Study.\",\n",
       "          \"OBJECTID\": 935,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water & Groundwater Storage, And Conveyance\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Dry Redwater Regional Water System Feasibility Study\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/bil/docs/spendplan-2022/Reclamation-BIL-Spend-Plan-Storage-Addendum-09-30-2022.pdf\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.645118700431,\n",
       "                47.0334854002763\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2941926.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.33242,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -111.495,\n",
       "          \"Notes\": \"Rehabilitation of the Crow Creek Pumping Plant with Toston Irrigation District. Funding is provided for implementation.\",\n",
       "          \"OBJECTID\": 885,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Canyon Ferry Unit - P/S\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.495000000036,\n",
       "                46.3324200001475\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 37000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.2212,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -108.8842,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1044,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Rural Water Projects\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Musselshell-Judith Rural Water System\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4152\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -108.884199999704,\n",
       "                46.2211999997885\n",
       "              ],\n",
       "              [\n",
       "                -109.645118700431,\n",
       "                47.0334854002763\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 97977.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.7864155250001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -108.68024891,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 369,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Candidate Conservation Agreement with Assurances (CCAA) on 48,897 acres,1,500 acres of annual grass treatments, 1,000 acres of conifer removal and 400 acres or two miles of mesic habitat restoration.\",\n",
       "          \"ProjectID\": \"SAGE20230054\",\n",
       "          \"ProjectTit\": \"Addressing Threats to Sagebrush in Montana's Musselshell Plains\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -108.680248909574,\n",
       "                46.7864155249578\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 120263.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.7863998,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -108.6800003,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 333,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"CCAA on 48,897 acres, 1,500 acres of annual grass treatments, 1,000 acres of conifer removal and 400 acres or two miles of mesic habitat restoration.\",\n",
       "          \"ProjectID\": \"SAGE20220018\",\n",
       "          \"ProjectTit\": \"Addressing Threats to Sagebrush in Montana's Musselshell Plains\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -108.680000299921,\n",
       "                46.7863998000679\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.543481,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -105.703631,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 624,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"Bil WFPO funds will be used to perform a feasibility study on a proposed watershed project that would rehabilitate and modernize the Kinsey Irrigation District water delivery system located in the Cabin Creek Watershed near West Yellowstone, Montana.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Kinsey Irrigation District\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.70363099982,\n",
       "                46.5434809996975\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.447222,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -105.772953,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 638,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"BIL WFPO funding will be used to implement ag-water management methods to build towards climate resiliency. Funds are needed to modernize the Tongue & Yellowstone River Irrigation District delivery system.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Tongue & Yellowstone River Irrigation District\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.772953000352,\n",
       "                46.4472220002113\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 2499976.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.91577234,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -102.50299034,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1395,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Assemble collective insights, resources, and efforts of conservation, agriculture, and industry partners to enhance, restore, and sustain native grasslands in North Dakota. Project will protect approximately 18,000 acres of native grasslands by providing\",\n",
       "          \"ProjectID\": \"80750\",\n",
       "          \"ProjectTit\": \"The Meadowlark Initiative: Advancing Grassland Conservation on Private Lands in North Dakota\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -102.502990343264,\n",
       "                46.9157723362616\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.74019,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -103.395,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1191,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Watford City, Watford City Advanced Metering Infrastructure - Phase I\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -103.395000000265,\n",
       "                47.7401899999198\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1250000.0,\n",
       "          \"ImageLink\": \"https://dwpdst.doi.gov/power/BIL_Funding/FortPeckPumpingPlants.jpg\",\n",
       "          \"Lat\": 48.0327387,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -106.12988022,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 35,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Irrigation and Power Systems\",\n",
       "          \"ProjectDes\": \"The Fort Peck Irrigation Project provides irrigation water to nearly 19,000 acres from pump facilities from the Missouri River.\",\n",
       "          \"ProjectID\": \"{81100F4C-A2E3-4A93-B5E1-569D06155CAD}\",\n",
       "          \"ProjectTit\": \"Fort Peck Irrigation Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -106.129880216034,\n",
       "                48.0327387026326\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.034872,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -106.003553,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 619,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"BIL WFPO funding will be used to implement ag-water management methods to build towards climate resiliency. Funds are needed to modernize the Wolf Point Irrigation Project water delivery system.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Fort Peck Tribes - Wolf Point Irrigation Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -106.003552999661,\n",
       "                48.0348719997301\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.034872,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -106.003553,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 639,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"BIL WFPO funding will be used to implement ag-water management methods to build towards climate resiliency. Funds are needed to modernize the Wyota Irrigation Project water delivery system.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Wyota Irrigation Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -106.003552999661,\n",
       "                48.0348719997301\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior and Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service and the Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 4999583.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.30245699,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -105.30292509,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1397,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Enhance grassland habitat conservation value within the 17,000 acre Fort Peck Cultural Buffalo Ranch in northeast Montana. Project will utilize herd health and range ecological assessments to identify and implement appropriate habitat improvement, workfo\",\n",
       "          \"ProjectID\": \"80845\",\n",
       "          \"ProjectTit\": \"Northern Plains Bison Range Conservation Improvements with the Fort Peck Buffalo Program (MT)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.302925089452,\n",
       "                48.3024569907102\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 4985221.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.36316902,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -105.5386951,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 450,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Advance ecosystem resiliency of lands allocated for bison restoration through the unique collaboration of Blackfeet, Rocky Boy, Fort Belknap, and Fort Peck Native American communities in Montana. Project will enhance ecosystem function on 57,000 acres by\",\n",
       "          \"ProjectID\": \"77876\",\n",
       "          \"ProjectTit\": \"Intertribal Approach to Restoring Plains Bison and Landscape Connectivity on Tribal Lands (MT)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.538695099833,\n",
       "                48.3631690202728\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 70000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.435433448,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -106.559144803,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 401,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Japanese brome infestations are present within sagebrush core and growth areas of the Charles M. Russell NWR. Herbicidal treatment sites will be paired with untreated Japanese brome invaded sagebrush areas and sagebrush areas with native dominated unders\",\n",
       "          \"ProjectID\": \"SAGE20230086\",\n",
       "          \"ProjectTit\": \"Pre and post treatment impacts of Japanese brome treatment on pollinators in sagebrush rangeland\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -106.559144802671,\n",
       "                48.4354334481264\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 443555.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.65998809,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -91.95146789,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 427,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Conduct five workshops with stakeholders to: identify and prioritize the challenges for large-scale moose habitat restoration in northeastern Minnesota, develop strategies to address these challenges, identify three habitat priority areas of 10,000 to 50\",\n",
       "          \"ProjectID\": \"77414\",\n",
       "          \"ProjectTit\": \"Large-Scale Moose Habitat Restoration Planning in Northeastern Minnesota\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -91.9514678899205,\n",
       "                47.659988090038\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 260751.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.54758347,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -91.93801936,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 442,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Build a young adult Indigenous Conservation Crew (Maajii-akii-gikenjigewin crew) to support existing and future on-the-ground management plans on Fond du Lac Reservation. Project will conduct 34 monitoring studies and restore 100 acres through locally le\",\n",
       "          \"ProjectID\": \"77648\",\n",
       "          \"ProjectTit\": \"Maajii-akii-gikenjigewin: Launching an Indigenous Young Adult Conservation Crew (MI, MN, WI)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -91.938019360024,\n",
       "                47.5475834699263\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 247686.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.05320944,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -95.20708324,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1305,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"This project will improve the ability of Midwest tribes to assess changes in mercury levels in fish and other culturally important species as well as ambient water concentrations with a focused effort on subsistence use of various fish species. The proje\",\n",
       "          \"ProjectID\": \"[DOI - 022|247686|Red Lake Band o]\",\n",
       "          \"ProjectTit\": \"Development of Long-Term Mercury Monitoring Program Plan for Climate Adaptation\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -95.2070832400933,\n",
       "                48.0532094402516\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 247686.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 47.87630826,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -95.0169087,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 27,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"This project will improve the ability of Midwest Tribes to assess changes in mercury levels in fish and other culturally important species, as well as ambient water concentrations with a focused effort on subsistence use of various fish species.\",\n",
       "          \"ProjectID\": \"{15E1E413-70C6-4D71-909B-8C3595986D5C}\",\n",
       "          \"ProjectTit\": \"Development of Long Term Mercury Monitoring for Climate Adaptation\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -95.0169087023808,\n",
       "                47.8763082607455\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 402205.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.316597,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -94.3087616,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 904,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Collaborative planning to identify and overcome challenges facing large-scale moose habitat restoration in northeastern Minnesota\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -94.3087616003932,\n",
       "                46.3165970000358\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.67205539,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -95.66581799,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1372,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Replace two undersized culverts with properly sized channel flow span bridges in the upper Otter Tail River. Project will reconnect 20 miles of critical spawning habitat for Red River lake sturgeon, Walleye, and other native fish species to an additional\",\n",
       "          \"ProjectID\": \"79503\",\n",
       "          \"ProjectTit\": \"Restoring Connectivity for Lake Sturgeon on the Upper Otter Tail River (MN)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -95.6658179947719,\n",
       "                46.6720553899398\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 51000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 46.931,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -98.7087,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 972,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Rural Water Projects\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Garrison-Diversion Unit of the Pick-Sloan Missouri Basin Program\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4152\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -98.7087000003054,\n",
       "                46.9309999997195\n",
       "              ],\n",
       "              [\n",
       "                -100.46931459981,\n",
       "                47.4463042998108\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.79013174,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -92.42861449,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 833,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Penta Wood Products site is in the unincorporated town of Daniels in Burnett County, Wisconsin. An inactive wood treatment facility is located on an 80-acre parcel of the 120-acre property. The facility operated from 1953 to 1992 and used a chemical\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PENTA WOOD PRODUCTS\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -92.428614490408,\n",
       "                45.7901317399168\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Park Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 200000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.9936406,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -101.257554,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 292,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"ECOREGIONAL COLLABORATION, COLLECTION: The goal is to create two seed collection sites with plant propagation capacity within the Midwest Region of NPS that could be expanded with partner organizations. Project outcomes include creating private sector jo\",\n",
       "          \"ProjectID\": \"100XX09MU2022\",\n",
       "          \"ProjectTit\": \"Develop NPS and Tribal Native seed nodes in MWR\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"6\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -103.747999999815,\n",
       "                42.4206000002008\n",
       "              ],\n",
       "              [\n",
       "                -102.575167000225,\n",
       "                43.0203619999617\n",
       "              ],\n",
       "              [\n",
       "                -100.662031400319,\n",
       "                43.3057506001596\n",
       "              ],\n",
       "              [\n",
       "                -103.49763999995,\n",
       "                43.5684599000099\n",
       "              ],\n",
       "              [\n",
       "                -86.0466000000674,\n",
       "                44.8734000003108\n",
       "              ],\n",
       "              [\n",
       "                -101.257554000428,\n",
       "                44.9936406001896\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 75500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.54095,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -96.885843,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1019,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Rural Water Projects\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Lewis & Clark Rural Water System\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4152\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -96.8858429996672,\n",
       "                43.5409499999661\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior and Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service and the Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 2343301.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.09279114,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -99.58513259,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1389,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Stabilize shoreline of Lake Sharpe; establish trees, shrubs, vines and other culturally important riparian plants; build an island and a peninsula; restore wetland habitats; establish a walking trail and cultural interpretive natural area; and protect tw\",\n",
       "          \"ProjectID\": \"79569\",\n",
       "          \"ProjectTit\": \"Shoreline Stabilization and Ecosystem Recovery of Lake Sharpe (SD)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -99.5851325855135,\n",
       "                44.0927911362066\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 195055.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.0511074,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -99.61190935,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 28,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The Tribe will develop a Drought Vulnerability Assessment and Drought Adaptation Plan for the Lower Brule Sioux Tribe (LBST). This project will assist the LBST in answering the following research question: How is the LBST vulnerable to drought?\",\n",
       "          \"ProjectID\": \"{DE400BEE-408A-403D-95FB-67F9C1744695}\",\n",
       "          \"ProjectTit\": \"Drought Vulnerability Assessment and Drought Adaptation Plan - Lower Brule Sioux Tribe\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -99.6119093546018,\n",
       "                44.0511074004267\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 200000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.67763,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -103.452,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 946,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Resilient Recreation Sites\",\n",
       "          \"ProjectDes\": \"This project would create additional recreational opportunities and relieve crowding by restoring up 5,556 acres of recently acquired land that is currently closed to visitation. Visitation at Wind Cave is heavily congested in and around the Visitor Cent\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Enhance recreation resilience at the historic Casey Property, Wind Cave National Park\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -103.451999999589,\n",
       "                43.6776299999515\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 102564.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.3615080110001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -105.592591311,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 402,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This funding will be used to hire 1 GS 5/7 term position based in Northeastern Wyoming, to support projects in Sage Core Areas in Northeastern Wyoming.\",\n",
       "          \"ProjectID\": \"SAGE20230087\",\n",
       "          \"ProjectTit\": \"Project implementation support\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.592591311155,\n",
       "                44.3615080107745\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 102564.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.3614998,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -105.5930023,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 361,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This funding will be used to hire 1 GS 5/7 term position based in Northeastern Wyoming, to support projects in Sage Core Areas in Northeastern Wyoming.\",\n",
       "          \"ProjectID\": \"SAGE20220046\",\n",
       "          \"ProjectTit\": \"Project implementation support\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.593002300279,\n",
       "                44.3614997996866\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.33232374,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -103.6687282,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 814,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The 360-acre Gilt Edge Mine site is located about 6.5 miles east of Lead, South Dakota. The primary mine disturbance area encompasses a former open pit and a cyanide heap-leach gold mine, as well as prior mine exploration activities from various companie\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"GILT EDGE MINE\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -103.668728199908,\n",
       "                44.3323237401021\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 99452.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.90579,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -103.508,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 865,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Belle Fourche Irrigation District, Sorenson 1.9 Lateral Buried Pipeline Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -103.507999999729,\n",
       "                44.9057900000851\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.8829002,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -106.987999,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 366,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The purpose of this agreement is to utilize the resources of Sheridan County Weed and Pest (SCWP) along with participating Weed and Pest District of Johnson and Campbell Counties to implement control measures for invasive species (primarily winter annual\",\n",
       "          \"ProjectID\": \"SAGE20220051\",\n",
       "          \"ProjectTit\": \"Sheridan, Johnson and Campbell County Invasive Species Treatment\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -106.987999000258,\n",
       "                44.8829001997407\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.89081828,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -108.5920338,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 916,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"D52 Lateral Piping and Shoshone River Sediment Reduction Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -108.592033799803,\n",
       "                44.8908182797231\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": \"https://dwpdst.doi.gov/power/BIL_Funding/WillowCreek.jpg\",\n",
       "          \"Lat\": 45.1617,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -107.5946,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 84,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Safety of Dams, Water Sanitation, And Other Facilities\",\n",
       "          \"ProjectDes\": \"Dam rehabilitation will address concerns related to the embankment, spillway and outlet works resulting in improved safety to an estimated population at risk (PAR) of more than 2,600 people and improved operability.\",\n",
       "          \"ProjectID\": \"{ACA1BECC-B141-466C-BAB5-941AA8F17741}\",\n",
       "          \"ProjectTit\": \"Willow Creek Dam\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -107.594599999947,\n",
       "                45.1617000003057\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 20000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.58126014,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -107.4519346,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1292,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Indian Water Rights Settlements\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 028|20000000|Crow Tribe Wate]\",\n",
       "          \"ProjectTit\": \"Crow Tribe Water Rights Settlement\\u202f\\u00a0\\u00a0\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/bipartisan-infrastructure-law-supports-580-million-investment-fulfill-indian-water\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -107.451934599783,\n",
       "                45.5812601401546\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 813750.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.7628866,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -107.2164948,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 455,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Develop decision support tools to identify invasive treatment locations within U.S. Forest Service Region 1 where early detection and rapid response has the greatest potential for success. Project will facilitate surveillance of 1.2 million acres of shru\",\n",
       "          \"ProjectID\": \"78141\",\n",
       "          \"ProjectTit\": \"Invasive Grass Detection, Prevention, and Treatment Planning in Eastern Montana\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -107.216494800219,\n",
       "                45.7628865999548\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.77,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -108.56,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1067,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Owl Creek Irrigation District Water Delivery and Efficiency Improvement Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4247\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -108.55999999984,\n",
       "                43.7699999999134\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.72341593,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -111.1113651,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1098,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Reconnecting Canyon Creek\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.111365100202,\n",
       "                43.7234159303081\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 250000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.120806434,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -107.747150438,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 417,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project will restore more than 10,000 acres of wet meadow/riparian habitat on largely private rangelands to increase species diversity and drought resilience in core sagebrush habitat in Wyoming using a variety of techniques ranging from off-stream\",\n",
       "          \"ProjectID\": \"SAGE20230102\",\n",
       "          \"ProjectTit\": \"Wyoming Collaborative Sage-Steppe Mesic Habitat Restoration\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -107.74715043814,\n",
       "                43.1208064336791\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 250000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.1208,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -107.7470016,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 336,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project will restore more than 10,000 acres of wet meadow/riparian habitat on largely private rangelands to increase species diversity and drought resilience in core sagebrush habitat in Wyoming using a variety of techniques ranging from off-stream\",\n",
       "          \"ProjectID\": \"SAGE20220021\",\n",
       "          \"ProjectTit\": \"Wyoming Collaborative Sage-Steppe Mesic Habitat Restoration\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -107.747001599874,\n",
       "                43.1208000000191\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.999649,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -107.5514755,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1051,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"New Fork River Gas Wells River Restoration and Fish Habitat Improvement\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -107.551475499773,\n",
       "                42.999648999875\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.999649,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -107.5514755,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 912,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Connecting Wyoming\\u2019s Wildlife Habitats\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -107.551475499773,\n",
       "                42.999648999875\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.999649,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -107.5514755,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1100,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Resilient Recreation Sites\",\n",
       "          \"ProjectDes\": \"Currently, the Wyoming Area Office cannot ascertain whether GPRA weed management goals are being met as there in not a comprehensive survey of noxious weed infestation of Reclamation surface lands. The goal of this project is to accurately and comprehens\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Recreation Lands Weed Inventory\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -107.551475499773,\n",
       "                42.999648999875\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 750000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.1368424830001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -107.197834032,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 418,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project is a partnership between the Service, the State of Wyoming, Eastern Shoshone and Northern Arapaho Tribes, USDA agencies, local governments and other partners to control invasive annual grass and defend approximately 100,000 acres of high-qua\",\n",
       "          \"ProjectID\": \"SAGE20230103\",\n",
       "          \"ProjectTit\": \"Wyoming Invasive Annual Grass Management Collaborative\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -107.197834032143,\n",
       "                43.1368424832457\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 750000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.1367989,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -107.197998,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 337,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project is a partnership between the Service, the State of Wyoming, Eastern Shoshone and Northern Arapaho Tribes, USDA agencies, local governments and other partners to control invasive annual grass and defend approximately 100,000 acres of high-qua\",\n",
       "          \"ProjectID\": \"SAGE20220022\",\n",
       "          \"ProjectTit\": \"Wyoming Invasive Annual Grass Management Collaborative\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -107.197997999835,\n",
       "                43.1367989002535\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 644760.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.00630653,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -108.88231143,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 39,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The project will improve resiliency by utilizing previous Eastern Shoshone Tribal Climate Adaptation Planning, the Wind River Indian Reservation BIA Wildfire Management, the Drought Contingency, and Regional and State Hazard Mitigation Plans.\",\n",
       "          \"ProjectID\": \"{AE43E269-B58C-41EF-8B88-DE0A37227699}\",\n",
       "          \"ProjectTit\": \"Implementing A Sustainable Eastern Shoshone Tribal Climate Change Resilience Project for a Climate Change, Weather Ready and Resilient Community\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -108.882311425668,\n",
       "                43.0063065320595\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 764000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.00630653,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -108.88231143,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 76,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The Tribe will implement a pilot project identified in their 2016 climate adaptation plan related to the Dry Creek Rancheria-owned vineyard properties. The project is funded in part through TCR annual appropriations.\",\n",
       "          \"ProjectID\": \"{FA191263-467D-4D23-9EB7-690EA45CE767}\",\n",
       "          \"ProjectTit\": \"The project will improve resiliency by utilizing previous Tribal Climate Adaptation Planning, the Wind River Indian Reservation BIA Wildfire Management, the Drought Contingency, and Regional and State Hazard Mitigation Plans.\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -108.882311425668,\n",
       "                43.0063065320595\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 644760.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.00526463,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -108.882512,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1316,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The project\\u2019s technical objectives will involve being Climate Change Ready and improve resiliency by utilizing previous Eastern Shoshone Tribal Climate Adaptation Planning, the Wind River Indian Reservation (WRIR) BIA wildfire management plan, and the\",\n",
       "          \"ProjectID\": \"[DOI - 022|644760|Eastern Shoshon]\",\n",
       "          \"ProjectTit\": \"Implementing A Sustainable Eastern Shoshone Tribal Climate Change Resilience Project for a climate Change, Weather Ready and Resilient Community\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -108.882511999708,\n",
       "                43.0052646296899\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 764000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.02519968,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -108.7704193,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1318,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The Northern Arapaho tribe on the remote and vulnerable Wind River Reservation (WRIR) has experienced increasingly frequent extreme weather since 2010, with 17 different identified all-hazard events occurring, including floods and droughts. A marked incr\",\n",
       "          \"ProjectID\": \"[DOI - 022|764000|Northern Arapah]\",\n",
       "          \"ProjectTit\": \"Implementing the Sustainable Northern Arapaho Tribal Climate Change Resilience Project for a Climate Change, Weather Ready and Resilient Community\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -108.770419299579,\n",
       "                43.0251996799756\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior and Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service and the Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 619519.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.02080057,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -109.14322517,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1421,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Provide Tribal leaders with the community support they need to develop a strategic plan and take action to advance shared goals. Project will plan a series of community meetings and field trips, designed to build community engagement to develop a plan th\",\n",
       "          \"ProjectID\": \"80309\",\n",
       "          \"ProjectTit\": \"Reconnecting the Eastern Shoshone and Northern Arapaho Tribes to Cultural and Ecological Values (WY)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.143225174851,\n",
       "                43.0208005739113\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1111111.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.40702756,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -109.9629451,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 445,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Convert fences posing a threat to ungulate migration in Wyoming by removing, replacing and/or modifying fences to wildlife-friendly standards. Project will work with landowners and federal land managers and utilize existing partnerships to prioritize and\",\n",
       "          \"ProjectID\": \"77732\",\n",
       "          \"ProjectTit\": \"Connecting Wyoming\\u2019s Habitats for Migratory Species through Wildlife-Friendly Fences\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.962945100353,\n",
       "                42.4070275601375\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 60000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.8021,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -111.3475,\n",
       "          \"Notes\": \"Partners involved/Community support: USFS, Caribou County, Upper Blackfoot Confluence Committee\",\n",
       "          \"OBJECTID\": 94,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"This project will replace an undersized and perched pipe culvert on Mill Creek, a tributary to Blackfoot Reservoir, with a natural bottom box culvert resulting in spawing habitat access for adfluvial Yellowstone cutthroat trout.  The project will provide\",\n",
       "          \"ProjectID\": \"{707d0321-3cb7-4fc9-93d8-6ab541725a9f}\",\n",
       "          \"ProjectTit\": \"Mill Creek Culvert Removal\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/mill-creek-fish-passage\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.355684999675,\n",
       "                42.8077549996708\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1390000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.98708,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -111.264,\n",
       "          \"Notes\": \"Partners involved/Community support: Trout Unlimited, City of Evanston, Uinta CCD, Open Rivers Fund, Wyoming GFD, Wyoming Wildlife and Natural Resource Trust, WNTI, WY DEQ, NRCS, East Fork Hilliard Canal Company, Utah DWR, USFS, Utah's Watershed Restorat\",\n",
       "          \"OBJECTID\": 162,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"The Upper Bear River straddles the border between Wyoming and Utah and has been a long-term refuge for native Bear River Cutthroat, which are unique to the watershed. However, the area is also one of the oldest agricultural districts in these states and\",\n",
       "          \"ProjectID\": \"{fca4f7ea-90e2-494d-9243-8b6636acc0d2}\",\n",
       "          \"ProjectTit\": \"Upper Bear River Fish Passage for Native Bear River Cutthroat\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/upper-bear-river-fish-passage-native-bear-river-cutthroat\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.263999999795,\n",
       "                41.9870799997287\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 40000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.67431033,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -111.2810352,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 204,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The project will repair and/or reconstruct approximately 27 miles of riparian fencing as part of a larger effort to restore degraded streams critical to Bonneville cutthroat trout.\",\n",
       "          \"ProjectID\": \"050XX02UT1022\",\n",
       "          \"ProjectTit\": \"Rich County Riparian Grazing Exclosure\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.281035199889,\n",
       "                41.674310329843\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1390000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.280362,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -110.974285,\n",
       "          \"Notes\": \"Partners involved/Community support: Trout Unlimited, City of Evanston, Uinta CCD, Open Rivers Fund, Wyoming GFD, Wyoming Wildlife and Natural Resource Trust, WNTI, WY DEQ, NRCS, East Fork Hilliard Canal Company, Utah DWR, USFS, Utah's Watershed Restorat\",\n",
       "          \"OBJECTID\": 160,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"The Upper Bear River straddles the border between Wyoming and Utah and has been a long-term refuge for native Bear River Cutthroat, which are unique to the watershed. However, the area is also one of the oldest agricultural districts in these states and\",\n",
       "          \"ProjectID\": \"{872b01cf-98f8-4b25-aca1-6195590ebaee}\",\n",
       "          \"ProjectTit\": \"Upper Bear River Fish Passage for Native Bear River Cutthroat\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/upper-bear-river-fish-passage-native-bear-river-cutthroat\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -110.974284999572,\n",
       "                41.2803619998981\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1390000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.90332,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -110.815,\n",
       "          \"Notes\": \"Partners involved/Community support: Trout Unlimited, City of Evanston, Uinta CCD, Open Rivers Fund, Wyoming GFD, Wyoming Wildlife and Natural Resource Trust, WNTI, WY DEQ, NRCS, East Fork Hilliard Canal Company, Utah DWR, USFS, Utah's Watershed Restorat\",\n",
       "          \"OBJECTID\": 161,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"The Upper Bear River straddles the border between Wyoming and Utah and has been a long-term refuge for native Bear River Cutthroat, which are unique to the watershed. However, the area is also one of the oldest agricultural districts in these states and\",\n",
       "          \"ProjectID\": \"{15b4b9db-67bc-42d7-b8e6-7e03b4f0a07c}\",\n",
       "          \"ProjectTit\": \"Upper Bear River Fish Passage for Native Bear River Cutthroat\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/upper-bear-river-fish-passage-native-bear-river-cutthroat\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -110.81500000039,\n",
       "                40.9033200001113\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1390000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.152515,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -110.879726,\n",
       "          \"Notes\": \"Partners involved/Community support: Trout Unlimited, City of Evanston, Uinta CCD, Open Rivers Fund, Wyoming GFD, Wyoming Wildlife and Natural Resource Trust, WNTI, WY DEQ, NRCS, East Fork Hilliard Canal Company, Utah DWR, USFS, Utah's Watershed Restorat\",\n",
       "          \"OBJECTID\": 159,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"The Upper Bear River straddles the border between Wyoming and Utah and has been a long-term refuge for native Bear River Cutthroat, which are unique to the watershed. However, the area is also one of the oldest agricultural districts in these states and\",\n",
       "          \"ProjectID\": \"{69250c6b-76e8-402b-8d52-50e9a837dd8c}\",\n",
       "          \"ProjectTit\": \"Upper Bear River Fish Passage for Native Bear River Cutthroat\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/upper-bear-river-fish-passage-native-bear-river-cutthroat\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -110.879725999841,\n",
       "                41.1525150002661\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 3000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.0879,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -104.353,\n",
       "          \"Notes\": \"Major repairs on the FT. Laramie canal. Funding is provided for a planning study.\",\n",
       "          \"OBJECTID\": 1060,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"North Platte\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -104.353000000445,\n",
       "                42.0878999998214\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 3000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.0879,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -104.353,\n",
       "          \"Notes\": \"Major repairs on the FT. Laramie canal. Funding is provided for a planning study.\",\n",
       "          \"OBJECTID\": 1061,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"North Platte - FT. Laramie canal\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -104.353000000445,\n",
       "                42.0878999998214\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 5000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 51.5806067,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -112.16435604,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1440,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Enhance, prioritize, restore, and conserve habitats that improve landscape permeability and connectivity, directly contribute to overall ecosystem resiliency and biodiversity, plus provide economic benefits to rural communities. Project will advance exis\",\n",
       "          \"ProjectID\": \"81231\",\n",
       "          \"ProjectTit\": \"Improving Migration Corridor Connectivity Across Western States (WY)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -104.842228596551,\n",
       "                41.1687281631504\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.7562,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -103.7222,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 574,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding and irrigation in the Gering Valley Watershed. The 50+ year-old project has 10 dams and a system of drains that need some upgr\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Gering Valley Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -103.722200000377,\n",
       "                41.7562000001146\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 21100000.0,\n",
       "          \"ImageLink\": \"https://dwpdst.doi.gov/power/BIL_Funding/Oglala2.jpg\",\n",
       "          \"Lat\": 43.17843568,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -102.7393677,\n",
       "          \"Notes\": \"$21.1M-construction\",\n",
       "          \"OBJECTID\": 51,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Safety of Dams, Water Sanitation, And Other Facilities\",\n",
       "          \"ProjectDes\": \"Dam rehabilitation will restore water storage (currently under no storage order) for a variety of beneficial uses, return the spillway and outlet works to operational status, and improve safety to Population at Risk (PAR) of estimated 296 people.\",\n",
       "          \"ProjectID\": \"{4E6B4882-6EB4-45C8-8D52-2B83649C6633}\",\n",
       "          \"ProjectTit\": \"Oglala Dam\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -102.739367701914,\n",
       "                43.1784356762319\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": \"https://dwpdst.doi.gov/power/BIL_Funding/Allen.jpg\",\n",
       "          \"Lat\": 43.33330717,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -102.03880985,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 2,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Safety of Dams, Water Sanitation, And Other Facilities\",\n",
       "          \"ProjectDes\": \"Dam rehabilitation will address safety concerns with the existing embankment and spillway, allowing for continued safe operation of the dam and improved safety to population at risk (PAR) of estimated 50 people.\",\n",
       "          \"ProjectID\": \"{6831AF5C-5571-4A7B-9267-1372BFE4C781}\",\n",
       "          \"ProjectTit\": \"Allen Dam\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -102.038809845925,\n",
       "                43.3333071680584\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1681224.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.19283598,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -100.6381292,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1363,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The Rosebud Sioux Tribe seeks to develop a Sicangu Climate Center to assert tribal sovereignty over water, lands and resources, protect tribal life, property and resources from climate change, and better manage and integrate existing tribal programs and\",\n",
       "          \"ProjectID\": \"[DOI - 022|1681224|Rosebud Sioux T]\",\n",
       "          \"ProjectTit\": \"Sicangu Climate Center\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -100.638129199715,\n",
       "                43.1928359797328\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 519938.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.19283598,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -100.6381292,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1005,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Keya Wakpala Woicageyapi Restoration\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -100.638129199715,\n",
       "                43.1928359797328\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1681224.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.2583072,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -100.82260955,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 74,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The Tribe will develop a Sicangu Climate Center to assert tribal sovereignty over water, lands and resources, protect Tribal life, property and resources from climate change, and better manage and integrate existing Tribal programs and activities.\",\n",
       "          \"ProjectID\": \"{D116B773-E73E-43C5-8B28-CF167519CC5F}\",\n",
       "          \"ProjectTit\": \"Sicangu Climate Center\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -100.822609550404,\n",
       "                43.258307202114\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 552612.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.33311164,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -100.1791854,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 419,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Design Phase I of the Keya Wakpala Woicageyapi wetlands restoration project and connect the broader Sicangu community to restoration and conservation efforts in a culturally aligned and meaningful way. Project will produce a community-driven wetlands tra\",\n",
       "          \"ProjectID\": \"76995\",\n",
       "          \"ProjectTit\": \"Keya Wakpala Woicageyapi Wetlands Restoration and Nature-Based Community Engagement (SD)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -100.179185399884,\n",
       "                43.333111639687\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Forest Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 1377212.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.9861088,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -101.61122472,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1375,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Provide technical assistance, training, and networking to Tribal Nations for the purpose of developing Tribal co-stewardship agreements with the United States Forest Service that restore the health of federal grasslands through Indigenous natural resourc\",\n",
       "          \"ProjectID\": \"79839\",\n",
       "          \"ProjectTit\": \"Promoting Tribal Co-Stewardship for Grasslands Health (CO, KS, ND, NE, SD)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -101.611224721695,\n",
       "                42.9861088031552\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 450000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.54499,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -101.119,\n",
       "          \"Notes\": \"Ainsworth Main Canal Concrete Slab replacement and Tarring of Joints. Funding is provided for implementation.\",\n",
       "          \"OBJECTID\": 847,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Ainsworth Unit - P/S\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -101.118999999775,\n",
       "                42.544989999912\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.636,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -100.36,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 618,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"The Evergreen Creek Watershed project is in Cherry County, Nebraska. The primary purpose of the project is for Watershed Protection. The project would address resources concerns throughout Evergreen Creek in association with high and excessive water flow\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Evergreen Creek Watershed - Cherry County Watershed D\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -100.359999999884,\n",
       "                42.6359999997807\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.6735,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -96.2159,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 560,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding and watershed protection in Davis Creek watershed. Watershed protection looks to address excessive sedimentation and incisi\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Davis Creek Watershed (Terry Schumacher, Land & Water Prog. Coordinator)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -96.2158999998515,\n",
       "                41.6734999997405\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.40368323,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -94.99580478,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 734,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The PCE Former Dry Cleaner Site is located in Atlantic, Cass County, Iowa. The site is a former dry cleaning facility located at\\u00a01205 E. 7th Street and operated during the 1960s.\\u00a0In 1974, the Iowa Department of Transportation (IDOT) leased the site as\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PCE FORMER DRY CLEANER\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -94.9958047799387,\n",
       "                41.4036832298775\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.082,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -96.1225,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 535,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with watershed protection. The potential watershed project would include measures to provide stream grade and bank stabilization. These meas\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Buffalo Creek Watershed-Platte River\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -96.1225000002116,\n",
       "                41.0820000001702\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.859594,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -97.580614,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 774,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The PCE Southeast Contamination Site is located in York, York County, Nebraska. The site was previously identified as two separate sites: the York PCE Site and the Southeast York Groundwater Site.\\u00a0Tetrachloroethene (PCE)\\u00a0and other volatile organic comp\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PCE SOUTHEAST CONTAMINATION\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -97.5806140002247,\n",
       "                40.8595939999621\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.88910169,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -98.41767017,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 773,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"In October 1999, volatile organic compounds (VOCs) were detected in a Grand Island municipal water supply well during routine monitoring. Subsequent investigations identified two VOC groundwater plumes with different sources. A southern plume emanates fr\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PARKVIEW WELL\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -98.417670170137,\n",
       "                40.8891016901177\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 4000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.5271492,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -99.8108444,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1149,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Strategic Implementation of Habitat Restoration in the Central Great Plains\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -99.8108444004073,\n",
       "                41.527149199824\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 4900000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.93504534,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -100.5604471,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 424,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Implement a voluntary, incentive-based program to promote vibrant grasslands and ranching communities, increase climate resilience and improve habitat connectivity in the Sandhills to benefit at-risk species like the greater prairie-chicken. By engaging\",\n",
       "          \"ProjectID\": \"77153\",\n",
       "          \"ProjectTit\": \"Prairie, Stream, and Wetland Restoration in the Sandhills Landscape of the Central Great Plains (NE)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -100.560447099857,\n",
       "                41.9350453400219\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.159,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -101.0,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 564,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with agricultural water management related to irrigation districts within the Twin Platte Natural Resources District. The potential water\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"East Clear Creek Watershed-North Platte River\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -100.999999999815,\n",
       "                41.1589999999152\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.5,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -101.6,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 656,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with agricultural water management related to Spring Creek watershed. \\u200bIrrigators in one of the most densely irrigated regions of Nebra\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Spring Creek Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -101.600000000031,\n",
       "                40.5000000000936\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.53033928,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -98.19941297,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 771,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Hastings Ground Water Contamination Site is located in and around Hastings, Nebraska. The site was placed on the National Priorities List in 1986. The Site consists of 7 Subsites with 21 operable units (OUs). Contamination from a vapor degreasing ope\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"HASTINGS GROUND WATER CONTAMINATION\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -98.1994129698313,\n",
       "                40.5303392798011\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.56403081,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -98.41501595,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 772,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The former Garvey Elevators, Inc. (Garvey) grain storage facility is currently owned and operated by Ag Processing, Inc. (AGP), and is located at 2315 West Highway 6 in Hastings, Nebraska. Soil and groundwater beneath the facility are contaminated with c\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"GARVEY ELEVATOR\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -98.4150159503064,\n",
       "                40.5640308099323\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.67,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -96.142,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 532,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding and watershed protection in Brownell Creek watershed. The project would provide the District a watershed-based plan, pri\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Brownell Creek Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -96.1419999995786,\n",
       "                40.6699999999997\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.63,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -96.012,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 678,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Wilson Creek Watershed.  The project would provide the District a watershed-based plan, prioritizing projects tha\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Wilson Creek Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -96.0119999996067,\n",
       "                40.6300000000695\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.63,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -96.245,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 682,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Ziegler Creek Watershed.  The project would provide the District a watershed-based plan, prioritizing projects th\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Ziegler Creek Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -96.2450000000125,\n",
       "                40.6300000000695\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.0,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -95.31,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 593,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding along the Lower Missouri River.  This is a multi-state effort to develop systemic approach to identify problem areas and desig\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Lower Missouri River Resiliency \\u2013 DNR 3\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -95.309999999938,\n",
       "                39.9999999999781\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.42,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -95.28,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 592,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding along the Lower Missouri River.  This is a multi-state effort to develop systemic approach to identify problem areas and desig\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Lower Missouri River Resiliency \\u2013 DNR 2\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -95.2800000001518,\n",
       "                39.4200000001662\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 4730000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.34513217,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -95.17459861,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1393,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Reconstruct and manage an estimated 28,000 acres of state wildlife action plan-prioritized tallgrass prairie in Missouri and Iowa through multi-jurisdictional partnerships. Project will collaborate with Tribes, landowners, and other organizations to cons\",\n",
       "          \"ProjectID\": \"80521\",\n",
       "          \"ProjectTit\": \"Conserving, Enhancing, and Connecting Core Areas of Tallgrass Prairie Ecosystem (IA, MO)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"4\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -95.174598613419,\n",
       "                40.345132165608\n",
       "              ],\n",
       "              [\n",
       "                -93.3261475593073,\n",
       "                38.5368791351174\n",
       "              ],\n",
       "              [\n",
       "                -94.3631649385404,\n",
       "                37.0089011306012\n",
       "              ],\n",
       "              [\n",
       "                -94.2448346416074,\n",
       "                37.4826571803359\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.6,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -92.192,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 591,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200b\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding along the Lower Missouri River.  This is a multi-state effort to develop systemic approach to identify problem areas and\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Lower Missouri River Resiliency \\u2013 DNR 1\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -92.1919999998789,\n",
       "                38.6000000002877\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 14000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.39327,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -98.2094,\n",
       "          \"Notes\": \"Replacement of the concrete spillway at Glen Elder Dam. Funding is provided for planning, design, and a portion of implementation.\",\n",
       "          \"OBJECTID\": 975,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Glen Elder Unit - P/S\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -98.2093999998839,\n",
       "                39.3932699998976\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 83100.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.73596832,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -103.5370242,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1021,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Lincoln County, Improving Water Efficiency Through Smart Water Meters\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -103.537024200046,\n",
       "                38.73596832004\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.24900859,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -104.6101224,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 724,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"While Pueblo has a long industrial past, the Superfund site focuses on the impact from one historic smelter. The historic Colorado Smelter was a silver and lead smelter that operated in the Eilers and Bessemer neighborhoods from 1883 to 1908. The Colorad\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"COLORADO SMELTER\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -104.61012240009,\n",
       "                38.2490085899268\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 5112626.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.82511516,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -106.3535321,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 444,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Prioritize five major watershed areas of Colorado for strengthened ecosystem and community resilience through habitat and ecosystem restoration, enhanced habitat connectivity, increased recreational access, and local community and workforce engagement. P\",\n",
       "          \"ProjectID\": \"77714\",\n",
       "          \"ProjectTit\": \"Stakeholder Driven Watershed Health and Resilience Partnerships in Colorado\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -106.353532099658,\n",
       "                38.8251151599294\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.80348833,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -104.700465,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 907,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Colorado Springs Utilities, High Efficiency Toilets for Affordable Housing\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -104.70046499983,\n",
       "                38.8034883298041\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Forest Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.96810242,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -105.36628776,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1405,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Restore the natural river channel and re-establish approximately 45 miles of aquatic species passage and spawning habitat on the South Platte River, part of the Pike-San Isabel National Forests by removing an obsolete diversion dam and accumulated sedime\",\n",
       "          \"ProjectID\": \"81119\",\n",
       "          \"ProjectTit\": \"Lake George Aquatic Connectivity and River Restoration (CO)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.366287758017,\n",
       "                38.9681024248504\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 85000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.9985466,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -105.5478134,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 957,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Eradicating Invasive Plants to restore Dolores River Desert Riparian Systems in Colorado\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.547813399717,\n",
       "                38.9985465997279\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 4000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.9985466,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -105.5478134,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 906,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Colorado Department of Agriculture, Conservation Services Division Watershed Health Partnership Proposal\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.547813399717,\n",
       "                38.9985465997279\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 6400000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.9985466,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -105.5478134,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 978,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Colorado River Endangered Species Recovery and Conservation Programs\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Grand Valley Irrigation Company Fish Screen Installation\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4374\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.547813399717,\n",
       "                38.9985465997279\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 60000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.9985466,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -105.5478134,\n",
       "          \"Notes\": \"The project will provide safe, long-term water supply to an estimated 50,000 people in 40 rural communities along the Arkansas River. Replaces current groundwater sources contaminated with radionuclides and helps communities comply with EPA drinking wate\",\n",
       "          \"OBJECTID\": 854,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water & Groundwater Storage, And Conveyance\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Arkansas Valley Conduit\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/bil/docs/spendplan-2022/Reclamation-BIL-Spend-Plan-Storage-Addendum-09-30-2022.pdf\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.547813399717,\n",
       "                38.9985465997279\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.9985466,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -105.5478134,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 930,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Dolores Water Conservation District, Full-Service Acres Meter Upgrades\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.547813399717,\n",
       "                38.9985465997279\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 25000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.9985466,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -105.5478134,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 953,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Eradicating Invasive Plants to Improve Riparian Habitats in McElmo Creek and Yellow Jacket Creek in Colorado\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.547813399717,\n",
       "                38.9985465997279\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 210000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.9985466,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -105.5478134,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1167,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": \"Low tech restoration project to be implemented in high alpine mountainous areas of the Upper Arkansas and Upper Animas River watersheds.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Upper Arkansas and Upper Animas Watersheds Project\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.547813399717,\n",
       "                38.9985465997279\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 62400.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.9985466,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -105.5478134,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1092,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Purgatoire River Water Conservancy District, Water Control Gates for Water Efficiency\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.547813399717,\n",
       "                38.9985465997279\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 585000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.9985466,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -105.5478134,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 919,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"DDWC Storage and Efficiency Improvements\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.547813399717,\n",
       "                38.9985465997279\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 33500.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.22731985,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -104.8870222,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1016,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Larkspur, Improving Water Efficiency Through Smart Water Meters\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -104.887022199759,\n",
       "                39.2273198500266\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 84325.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.22184032,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -105.2663512,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 918,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Dave Miller Mutual Ditch Company, Ditch Piping Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.266351199552,\n",
       "                40.2218403201727\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.2916,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -105.049,\n",
       "          \"Notes\": \"Project Lat/Long was incorrectly listed. Longitudes was positive. Lat/Long fields updated with negative longitude and manually moved to presumed correct location.\",\n",
       "          \"OBJECTID\": 625,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bRe-construction of the Little Thompson Reservoir aka Hillsborough Reservoir to increase water availability and quantity. The project will entail rebuilding the 1903 dam to current standards. The water decree from the Big Thompson River is still in eff\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - La Plate River Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.048999999617,\n",
       "                40.2916000001821\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.42,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -104.709,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 893,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Central Colorado Water Conservancy District, Northeast Colorado Augmentation Automation Efficiency Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -104.709000000244,\n",
       "                40.4200000001035\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.42,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -104.709,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 979,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Greeley AMI Meter Installation Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4247\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -104.709000000244,\n",
       "                40.4200000001035\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.06069121,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -105.5081811,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 721,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Captain Jack Mill site is located at the headwaters of upper Left Hand Creek, about 1.5 miles south of Ward, in Boulder County, Colorado. The site is in a narrow valley known as California Gulch. Mining for gold and silver in the region began in 1860\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"CAPTAIN JACK MILL\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.508181100211,\n",
       "                40.0606912099518\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 113548.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.7437282870001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -105.009159059,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 370,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Climate change may substantially alter big sagebrush plant communities, including potential ecological transformations to novel or less productive plan communities within the current sagebrush biome. This project will use an ecological simulation model t\",\n",
       "          \"ProjectID\": \"SAGE20230055\",\n",
       "          \"ProjectTit\": \"Assessing the future sagebrush core habitats: impacts of climate & climate uncertainty, wildfire and invasive species\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.0091590592,\n",
       "                39.7437282869822\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 110000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.7436981,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -105.0090027,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 349,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Climate change may substantially alter big sagebrush plant communities, including potential ecological transformations to novel or less productive plan communities within the current sagebrush biome. This project will use an ecological simulation model t\",\n",
       "          \"ProjectID\": \"SAGE20220034\",\n",
       "          \"ProjectTit\": \"Assessing the future sagebrush core habitats: impacts of climate & climate uncertainty, wildfire and invasive species\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.009002700238,\n",
       "                39.7436981002103\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.7430683210001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -104.987014741,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 390,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project seeks to put science into practice, helping land managers scale-up conservation delivery to address the largest threat to the sagebrush biome: invasive annual grasses. Centered around the proactive \\u201cDefend the Core and Grow the Core\\u201d con\",\n",
       "          \"ProjectID\": \"SAGE20230075\",\n",
       "          \"ProjectTit\": \"Invasive Annual Grass Tech Transfer Partnership: Empowering Land Managers to Defend and Grow Sagebrush Cores\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -104.987014741233,\n",
       "                39.7430683207194\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 200000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.7430992,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -104.9869995,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 348,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project seeks to put science into practice, helping land managers scale-up conservation delivery to address the largest threat to the sagebrush biome: invasive annual grasses. Centered around the proactive \\u201cDefend the Core and Grow the Core\\u201d con\",\n",
       "          \"ProjectID\": \"SAGE20220033\",\n",
       "          \"ProjectTit\": \"Invasive Annual Grass Tech Transfer Partnership: Empowering Land Managers to Defend and Grow Sagebrush Cores\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -104.986999500416,\n",
       "                39.7430991998802\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 150000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.7326012,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -104.9869995,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 351,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The Conservation Efforts Database is a web-based data portal to collect information from federal and non-federal partners on management actions that benefit sagebrush ecosystems and sagebrush-dependent wildlife habitats. This project leverages the existi\",\n",
       "          \"ProjectID\": \"SAGE20220036\",\n",
       "          \"ProjectTit\": \"Evaluating the effectiveness of conservation actions directed for greater sage-grouse using hierarchical models and the Conservation Efforts Database\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -104.986999500416,\n",
       "                39.7326011996679\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 150000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.732640028,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -104.987358064,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 381,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The Conservation Efforts Database is a web-based data portal to collect information from federal and non-federal partners on management actions that benefit sagebrush ecosystems and sagebrush-dependent wildlife habitats. This project leverages the existi\",\n",
       "          \"ProjectID\": \"SAGE20230066\",\n",
       "          \"ProjectTit\": \"Evaluating the effectiveness of conservation actions directed for greater sage-grouse using hierarchical models and the Conservation Efforts Database\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -104.98735806386,\n",
       "                39.7326400281375\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 99995.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.7252133370001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -104.988539199,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 382,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project  will lead to a more healthy ecosystem on which the rural community lives by specifically understanding and planning for the effects of climate change .\",\n",
       "          \"ProjectID\": \"SAGE20230067\",\n",
       "          \"ProjectTit\": \"Geospatial analyses, species modeling, and interactive web application development to support sagebrush biome assessment and inform conservation delivery\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -104.988539199338,\n",
       "                39.7252133366954\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.7256872200001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -105.008255703,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 405,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project will identify biome-wide costs needed to address the invasive annual grass threat  with a Defend and Grow the Core approach. Economic comparisons of allocation scenarios that vary based on site conditions and ecological outcomes will define\",\n",
       "          \"ProjectID\": \"SAGE20230090\",\n",
       "          \"ProjectTit\": \"Sagebrush Biome Invasive Annual Grass Economic Assessment\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.00825570257,\n",
       "                39.7256872197318\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 115000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.7332993,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -105.0090027,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 356,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project will leverage the power of the Land Treatment Exploration Tool and monitoring data from landscape-scale restoration projects on private and public lands to act as a \\u201cone stop shop\\u201d for restoration planning. The enhanced tool will provide\",\n",
       "          \"ProjectID\": \"SAGE20220041\",\n",
       "          \"ProjectTit\": \"Planning for Conservation Delivery Success: Linking Biome-wide Sagebrush Conservation Design to Local Treatment Planning by Leveraging Landscape Restoration Outcomes\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.009002700238,\n",
       "                39.7332992998132\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 75000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.7528,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -104.987999,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 353,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project will directly link the sagebrush conservation design to greater sage-grouse populations. The research will provide the scientific evidence to link management actions applied under the sagebrush conservation design to the greater sage-grouse\",\n",
       "          \"ProjectID\": \"SAGE20220038\",\n",
       "          \"ProjectTit\": \"Understanding greater sage-grouse population trends from the lens of the WAFWA Conservation Design Strategy: implications for management of impacted, core, and growth opportunity areas within the sagebrush biome\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -104.987999000137,\n",
       "                39.7527999996954\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 75000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.7528351650001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -104.987529726,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 413,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project will directly link the sagebrush conservation design to greater sage-grouse populations. The research will provide the scientific evidence to link management actions applied under the sagebrush conservation design to the greater sage-grouse\",\n",
       "          \"ProjectID\": \"SAGE20230098\",\n",
       "          \"ProjectTit\": \"Understanding greater sage-grouse population trends from the lens of the WAFWA Conservation Design Strategy: implications for management of impacted, core, and growth opportunity areas within the sagebrush biome\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -104.987529725623,\n",
       "                39.7528351647129\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 150000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.7535019,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -105.0090027,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 350,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project will enhance the Sagebrush CD by incorporating landscape-scale connectivity among core sagebrush areas. Connectivity will be defined using genetics from target species and cross-referenced with analyzed ungulate migration corridors. The conn\",\n",
       "          \"ProjectID\": \"SAGE20220035\",\n",
       "          \"ProjectTit\": \"Incorporating Connectivity and Wildland Fire Risk into the WAFWA Sagebrush Conservation Design\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.009002700238,\n",
       "                39.7535019001864\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 25950.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.764801,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -105.0080032,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 363,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The CED will be the tool for USFWS programs to enter in their information on BIL projects. This funding supports modifications to the system to allow for BIL tracking and reporting.\",\n",
       "          \"ProjectID\": \"SAGE20220048\",\n",
       "          \"ProjectTit\": \"Conservation Efforts Database (CED) upgrades\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.008003199619,\n",
       "                39.7648009999277\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 13399.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.7648283250001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -105.008144788,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 377,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The CED will be the tool for USFWS programs to enter in their information on BIL projects. This funding supports modifications to the system to allow for BIL tracking and reporting.\",\n",
       "          \"ProjectID\": \"SAGE20230062\",\n",
       "          \"ProjectTit\": \"Conservation Efforts Database (CED) upgrades\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.008144787582,\n",
       "                39.7648283249406\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 50000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.7644005,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -104.987999,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 362,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Partnership with the Intermountian West Joint Venture to support communications on BIL project opportunities & outcomes.\",\n",
       "          \"ProjectID\": \"SAGE20220047\",\n",
       "          \"ProjectTit\": \"Communications Support\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -104.987999000137,\n",
       "                39.7644004999764\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 50000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.7644324670001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -104.987888746,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 375,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Partnership with the Intermountian West Joint Venture to support communications on BIL project opportunities & outcomes.\",\n",
       "          \"ProjectID\": \"SAGE20230060\",\n",
       "          \"ProjectTit\": \"Communications Support\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -104.987888746309,\n",
       "                39.7644324668081\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.78188675,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -104.9918368,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1039,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Modernization of the Maybell Irrigation District's Diversion from the Yampa River in Colorado\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -104.991836799762,\n",
       "                39.7818867501272\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 5000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.69720458,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -104.8090656,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1057,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"North Campus Radial Collector Well - Drought Resilience Initiative\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -104.809065599903,\n",
       "                39.697204579801\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Park Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 220000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.70095749,\n",
       "          \"LatLongTyp\": \"NPS Intermountain Regional Office, CO\",\n",
       "          \"Long\": -105.1427669,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 294,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Increase in-house supplies of genetically-appropriate native seeds to support grassland, sagebrush, and southwestern desert rehabilitation, restoration, and climate adaptation in NPS Intermountain Region parks. Project outcomes include creating private s\",\n",
       "          \"ProjectID\": \"100XX09MU2322\",\n",
       "          \"ProjectTit\": \"Increase native seed production for IMR parks\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.142766899965,\n",
       "                39.70095749003\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 230926.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.6511993,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -108.2559967,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 329,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Aerial application of herbicide to treat cheatgrass on approximately 7,125 acres of privately owned sagebrush habitat on working ranchlands in NW CO. This project will complement ongoing, partner-driven work in this strategic landscape to benefit Greater\",\n",
       "          \"ProjectID\": \"SAGE20220014\",\n",
       "          \"ProjectTit\": \"Restoration of Native Sagebrush Habitats from Cheatgrass Invasion in Northwestern Colorado (Phase 1)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -108.255996700339,\n",
       "                40.6511993001082\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 230926.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.6511543140001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -108.256107976,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 403,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Aerial application of herbicide to treat cheatgrass on approximately 7,125 acres of privately owned sagebrush habitat on working ranchlands in NW CO. This project will complement ongoing, partner-driven work in this strategic landscape to benefit Greater\",\n",
       "          \"ProjectID\": \"SAGE20230088\",\n",
       "          \"ProjectTit\": \"Restoration of Native Sagebrush Habitats from Cheatgrass Invasion in Northwestern Colorado (Phase 1)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -108.256107975551,\n",
       "                40.6511543142086\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 25000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.33078,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -111.168,\n",
       "          \"Notes\": \"Install a new intake structure at Deer Creek Dam for additional flow control redundancy and flexibility. Funding is provided for planning, design, and subsequently, a portion of implementation.\",\n",
       "          \"OBJECTID\": 1087,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Provo River\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.16799999994,\n",
       "                40.3307799996979\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 232398.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.8794119460001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -111.180377977,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 416,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project will advance mesic habitat restoration within larger watershed scale habitat restoration projects in Utah to increase climate and drought resiliency.\",\n",
       "          \"ProjectID\": \"SAGE20230101\",\n",
       "          \"ProjectTit\": \"Utah: Climate Resilience Projects for Mesic Habitat Restoration and Enhancements\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.18037797697,\n",
       "                39.8794119462493\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 475453.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.8793983,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -111.1800003,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 334,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The primary purpose of this funding request is to support upland habitat restoration in Utah. Removing conifers is an effective restoration tool in these systems and is necessary for defending and growing the core sagebrush habitats in Utah.\",\n",
       "          \"ProjectID\": \"SAGE20220019\",\n",
       "          \"ProjectTit\": \"Utah: Climate Resilience Projects for Mesic Habitat Restoration and Enhancements\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.180000300072,\n",
       "                39.8793983003037\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 14000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.12479,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -109.519,\n",
       "          \"Notes\": \"Finish piping the 12-mile long Steinaker Service Canal. Funding is provided for planning, design, and subsequently, a portion of implementation.\",\n",
       "          \"OBJECTID\": 1177,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Vernal Unit - C/U\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.519000000103,\n",
       "                40.1247900001152\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.0,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -110.0,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 563,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bA preliminary investigation feasibility report (PIFR), plan, and design will be prepared to determine if WFPO can be used to assist with agricultural water management.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Duchesne Water Conservancy District\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -110.000000000358,\n",
       "                39.9999999999781\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.0,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -110.0,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 562,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"BIL WFPO funds will support construction efforts to address agricultural water management concerns.  Project details provide water conservation and canal stabilizations.  Water conservation includes irrigation efficiencies through reduced seepage and eva\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Duchesne County WCD\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -110.000000000358,\n",
       "                39.9999999999781\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.7014,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -110.8655,\n",
       "          \"Notes\": \"Partners involved/Community support: Town of Helper, Trout Unlimited, Utah DNR, Utah DWQ, Utah Office of Outdoor Recreation, Utah Natural History Museum, Carbon County, Utah Coal Country Task Force, Ross Gigliotti Enterprises, USU Price, local individual\",\n",
       "          \"OBJECTID\": 154,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"The proposed Gigliotti Dam removal is the last of 6 dam removals within the town of Helper, Utah and is highly supported by the town and owner to be completed by the end of 2023. The dam is a private, concrete dam that has been no longer needed for water\",\n",
       "          \"ProjectID\": \"{3761eb43-ce49-4c7b-afba-eb47c935539f}\",\n",
       "          \"ProjectTit\": \"Gigliotti Diversion Dam Removal on the Price River\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/gigliotti-diversion-dam-removal-price-river\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -110.865499999626,\n",
       "                39.7013999998257\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 5000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.3237877,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -111.6782074,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 933,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Draper Irrigation Company Reuse Pump Station Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.678207400237,\n",
       "                39.3237877002544\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.3237877,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -111.6782074,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1073,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Paris Creek Hydropower Decommissioning and Instream Flow Restoration\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.678207400237,\n",
       "                39.3237877002544\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2800000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.3237877,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -111.6782074,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1168,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Colorado River Endangered Species Recovery and Conservation Programs\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Upper Colorado River Endangered Fish Recovery Program\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4374\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.678207400237,\n",
       "                39.3237877002544\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.3237877,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -111.6782074,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1190,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Resilient Recreation Sites\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Watershed Restoration and Recreation Connectivity Design Across Multiple Landowners, East Zion National Park\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.678207400237,\n",
       "                39.3237877002544\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 3754393.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.3237877,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -111.6782074,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1193,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"WBWCD AV Watkins & Siphon Replacement and South Delivery Conduit Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.678207400237,\n",
       "                39.3237877002544\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.3237877,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -111.6782074,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1198,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"West Corinne Water Company Culinary Well and Booster Pump Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.678207400237,\n",
       "                39.3237877002544\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 99597.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.3237877,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -111.6782074,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1204,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Wilson Irrigation Company, Canal System Automation Project - Phase 1\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.678207400237,\n",
       "                39.3237877002544\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 3200000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.3237877,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -111.6782074,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 877,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Building Drought Resilience Through Increased Groundwater Production Capacity and Aquifer Storage and Recovery\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.678207400237,\n",
       "                39.3237877002544\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 5000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.3237877,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -111.6782074,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 974,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"GHID Anderson Water Treatment Plant and Well No. 18 Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.678207400237,\n",
       "                39.3237877002544\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.3237877,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -111.6782074,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 863,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Bear River Canal Company, Automated Diversion Gate System\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.678207400237,\n",
       "                39.3237877002544\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 50000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.3237877,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -111.6782074,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 949,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Eradicating Invasive and Noxious Plants in Riparian and Upland Habitats in Iron and Beaver Counties in Utah\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.678207400237,\n",
       "                39.3237877002544\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 5300000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.0183,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -108.466,\n",
       "          \"Notes\": \"Line approximately 1-mile of the Government Highline Canal in an urbanized reach and replace a cross-drainage undershot. Funding is provided for implementation.\",\n",
       "          \"OBJECTID\": 977,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Grand Valley\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -108.466000000151,\n",
       "                39.0183000003273\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 42000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.0183,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -108.466,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 963,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Eradicating Tamarisk to Improve Riparian Habitats in Western Colorado\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -108.466000000151,\n",
       "                39.0183000003273\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Park Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 200000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.16513,\n",
       "          \"LatLongTyp\": \"Upper Colorado Basin\",\n",
       "          \"Long\": -109.023,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 293,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"PRODUCTION: Increase seed production and storage of native 'workhorse' species to support grassland, sagebrush, and southwestern desert rehabilitation and restoration for parks in and adjacent to the Upper Colorado Basin. Project outcomes include creatin\",\n",
       "          \"ProjectID\": \"100XX09MU2122\",\n",
       "          \"ProjectTit\": \"Increase native seed production for Upper CO basin\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.023000000404,\n",
       "                39.1651300003257\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 42000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.1984565,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -108.9129546,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 214,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Tamarisk removal along riparian corridors.\",\n",
       "          \"ProjectID\": \"050XX06CO1122\",\n",
       "          \"ProjectTit\": \"Riparian Habitat Improvement in Western Colorado\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -108.912954600333,\n",
       "                39.1984564997446\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 398139.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.7238007,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -107.0039978,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 330,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project further long-term sagebrush efforts with strategic collaborative conservation action. Funding will support delivery of tangible outcomes involving wet meadow restoration, prioritized cheatgrass treatments, and sagebrush restoration within th\",\n",
       "          \"ProjectID\": \"SAGE20220015\",\n",
       "          \"ProjectTit\": \"Gunnison Basin Cheatgrass Implementation Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -107.003997799636,\n",
       "                38.7238007001285\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 395337.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.7237645160001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -107.003666569,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 383,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project will deliver multiple treatments, including wet meadow restoration (150 acres), prioritized cheatgrass treatments (1000 acres) and other sagebrush restoration outcomes within the Gunnison Basin of Colorado. These deliverables will benefit fe\",\n",
       "          \"ProjectID\": \"SAGE20230068\",\n",
       "          \"ProjectTit\": \"Gunnison Basin Cheatgrass Implementation Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -107.003666569231,\n",
       "                38.7237645157921\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 188726.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.6179019420001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -107.126105997,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 384,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The project aims to develop priority conservation action maps for Gunnison sage-grouse based on species abundance, habitat features, predicted future risk (e.g., invasive grasses, pinyon-juniper encroachment, development, wildfire), and other relevant da\",\n",
       "          \"ProjectID\": \"SAGE20230069\",\n",
       "          \"ProjectTit\": \"Gunnison Sage-grouse Prioritizing Restoration of Sagebrush Ecosystems Tool (PReSET)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -107.126105997429,\n",
       "                38.6179019416817\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 85000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.23519021,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -108.8813235,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 213,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Watershed level restoration with the focus of removing invasive vegetation such as tamarisk in important desert riparian systems.\",\n",
       "          \"ProjectID\": \"050XX06CO0522\",\n",
       "          \"ProjectTit\": \"Dolores River Restoration\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -108.881323499841,\n",
       "                38.2351902102447\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Forest Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 802934.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.4904953,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -110.04460147,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1430,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Inventory and prioritize opportunities for aquatic connectivity on U.S. Forest Service lands in Regions 3, 4, 5, 8, and 9, to maximize reconnection, restoration, and enhancement of aquatic habitat. Project will expand knowledge of aquatic fragmentation o\",\n",
       "          \"ProjectID\": \"80900\",\n",
       "          \"ProjectTit\": \"Assessing and Prioritizing Aquatic Connectivity on United States Forest Service Lands\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -110.044601468301,\n",
       "                38.4904952977003\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"Department-Wide Programs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.56,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -109.549,\n",
       "          \"Notes\": \"This project's exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 14 wells\",\n",
       "          \"OBJECTID\": 1336,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Orphaned Well Site Plugging, Remediation, And Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 031||Moab Field Offi]\",\n",
       "          \"ProjectTit\": \"Moab Field Office BLM Lands\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.548999999889,\n",
       "                38.5600000001883\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 50000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.53424185,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -112.6740307,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 222,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Noxious weed eradication across the landscape and within important riparian and upland habitats.\",\n",
       "          \"ProjectID\": \"050XX06UT1322\",\n",
       "          \"ProjectTit\": \"Iron and Beaver Counties Noxious Weed Eradication\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.674030699554,\n",
       "                38.5342418499932\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 50000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.8189011,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -116.6429977,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 345,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The Service and Nevada Department of Wildlife, with other state partners, have a statewide Programmatic Candidate Conservation Agreement with Assurances (CCAA) planned for completion in FY22. Funding will be used to support the implementation of this pro\",\n",
       "          \"ProjectID\": \"SAGE20220030\",\n",
       "          \"ProjectTit\": \"Reducing Threats to Nevada Sage-grouse Populations through a Programmatic Candidate Conservation Agreement with Assurances\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.642997700315,\n",
       "                38.8189010998167\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.35405208,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -120.7864194,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 720,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Argonaut Mine site (site) is an historic hard rock gold mine that operated from the 1850s to 1942. The Argonaut Mining Company processed ore and disposed of tailings in a portion of\\u00a0the northwest side of present-day Jackson, Calif. As a result of ye\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"ARGONAUT MINE\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.786419400442,\n",
       "                38.3540520798626\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 24115808.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.47,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -121.35,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 984,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water Recycling\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Harvest Water Program\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4296\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.350000000326,\n",
       "                38.4699999996875\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.70642768,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -120.8292742,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1084,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Post Caldor Fire Watershed Restoration for Securing Water Supply for the Grizzly Flats Community\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.829274200316,\n",
       "                38.7064276798232\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.56755629,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -121.5026599,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1140,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"South Sutter Water District, Main Diversion Modernization Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.502659900033,\n",
       "                38.5675562902263\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.56755629,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -121.5026599,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 886,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Carmichael Water District, Turf Removal Incentive Program\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.502659900033,\n",
       "                38.5675562902263\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 79516.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.56755629,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -121.5026599,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 973,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Georgetown Divide Public Utility District, Concrete Lining of Upper Canal Water Delivery System\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.502659900033,\n",
       "                38.5675562902263\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.8687,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -119.126,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 673,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with agricultural water management related Walker River Irrigation District.  The Walker River has a high sediment load, which is causing\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Walker River Irrigation District - East Walker Diversions\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.125999999645,\n",
       "                38.8687000002093\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 35000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.02064,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -119.189,\n",
       "          \"Notes\": \"Line Canal for approximately 3.5 miles using geomembrane and concrete and modify two check structures. Submitted as Infrastructure Request. Funding is provided for implementation.\",\n",
       "          \"OBJECTID\": 1052,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Newlands Project\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.189000000364,\n",
       "                39.020640000313\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 206229.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.10178395,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -119.9378689,\n",
       "          \"Notes\": \"Most AIS infestations occur within and around the marinas on Lake Tahoe. This investment will fund a feasibility study to determine the potential for redesign at marinas around the lake to help reduce potential AIS infestation.\",\n",
       "          \"OBJECTID\": 1015,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Lake Tahoe\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Lake Tahoe Marina Redesign Feasibility Study\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/program/lake-tahoe-aquatic-invasive-species\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.937868900194,\n",
       "                39.101783949682\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 64635.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.10178395,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -119.9378689,\n",
       "          \"Notes\": \"The resident and visitor population of Lake Tahoe is diverse and includes a significant number of people who are part of the Latinx community. Public education is critical when it comes to preventing the introduction of AIS into the region, but many educ\",\n",
       "          \"OBJECTID\": 867,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Lake Tahoe\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Bilingual AIS Education and Outreach\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/program/lake-tahoe-aquatic-invasive-species\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.937868900194,\n",
       "                39.101783949682\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1550000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.10178395,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -119.9378689,\n",
       "          \"Notes\": \"The Taylor and Tallac creeks and marshes are infested with approximately 17 acres of the invasive aquatic weed Eurasian watermilfoil. This investment will fund the installation of benthic barriers that smother invasive aquatic plants and prevent photosyn\",\n",
       "          \"OBJECTID\": 1157,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Lake Tahoe\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Taylor-Tallac AIS Control Project\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/program/lake-tahoe-aquatic-invasive-species\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.937868900194,\n",
       "                39.101783949682\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 681724.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.10178395,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -119.9378689,\n",
       "          \"Notes\": \"For Washoe Environmental Protection Department (WEPD) staff to fully engage on planning, monitoring and control of AIS from a Washoe Tribe perspective. \\nFor WEPD staff to build more effective working relationships with environmental partners working in L\",\n",
       "          \"OBJECTID\": 1186,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Lake Tahoe\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Washoe Tribe Priorities\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/program/lake-tahoe-aquatic-invasive-species\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.937868900194,\n",
       "                39.101783949682\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.10178395,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -119.9378689,\n",
       "          \"Notes\": \"The Lake Tahoe Watercraft Inspection Program is one of the most successful programs in the country, with no new invasions discovered since program inception in 2008. Currently, inspections occur at three off-ramp, temporary inspection stations along corr\",\n",
       "          \"OBJECTID\": 1078,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Lake Tahoe\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Permanent Watercraft Inspection Stations\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/program/lake-tahoe-aquatic-invasive-species\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.937868900194,\n",
       "                39.101783949682\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.4856,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -118.9227,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 664,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with agricultural water management related \\u200bThe Truckee Carson Irrigation District. This infrastructure is aging, which is why the dist\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Truckee Carson Irrigation District - V Line Ditch\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -118.922700000348,\n",
       "                39.4856000001403\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.47205744,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -118.7792801,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1162,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Truckee-Carson Irrigation District, Upgrade to Satellite Relay for Near Real-Time Data Acquisition\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -118.779280099788,\n",
       "                39.4720574402852\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior and Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service and the Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 1496613.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.11264502,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -118.96493765,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1407,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Protect, enhance, and reconnect aquatic, wetland, and riparian habitats to prepare for the reintroduction of Lahontan cutthroat trout to Walker Lake while increasing tribal sovereignty. Project will develop and implement a beaver management plan, map and\",\n",
       "          \"ProjectID\": \"81194\",\n",
       "          \"ProjectTit\": \"Building a Healthier Riparian Corridor to Support Lahontan Cutthroat Trout Reintroduction (NV)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -118.964937648639,\n",
       "                39.1126450152014\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.9454,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -118.8011,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 674,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bA preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with agricultural water management related to Walker River Paiute Tribe irrigation system. Field evaluation completed in 2011 showed loca\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Walker River Paiute Reservation Irrigation System Restoration and Improvement\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -118.801100000173,\n",
       "                38.9454000000392\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1747500.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.3564339,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -116.6553879,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1132,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Septic System Conversion Incentive Program\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.655387899822,\n",
       "                39.3564338998386\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 200000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.36,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -116.6553879,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1353,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem - Sagebrush-Steppe\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 019|200000|Pinyon-Juniper ]\",\n",
       "          \"ProjectTit\": \"Pinyon-Juniper Removal on Fortynine Mountain for Greater Sage-Grouse\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/program/sagebrush-conservation\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.655387899822,\n",
       "                39.3599999997563\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 405000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.36,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -116.6553879,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1284,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem - Sagebrush-Steppe\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 014|405000|Bothwick Habita]\",\n",
       "          \"ProjectTit\": \"Bothwick Habitat Restoration\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/program/sagebrush-conservation\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.655387899822,\n",
       "                39.3599999997563\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.492022467,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -116.79763093,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 397,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This funding will be used to hire 1 GS 9/11 Sagebrush Coordinator, who will focus on conservation delivery of sagebrush BIL funding with a focus on developing tribal partnerships.\",\n",
       "          \"ProjectID\": \"SAGE20230082\",\n",
       "          \"ProjectTit\": \"Partnerships Coordinator\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.797630930105,\n",
       "                39.4920224671398\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 130000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.4695015,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -116.8880005,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 360,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This funding will be used to hire 1 GS 12 Sagebrush Coordinator, who will focus on conservation delivery through completion and implementation of CCAA with NDOW, and other public/private landowners.\",\n",
       "          \"ProjectID\": \"SAGE20220045\",\n",
       "          \"ProjectTit\": \"Sagebrush Coordinator\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.888000499965,\n",
       "                39.4695014997522\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 50000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.5984001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -116.8809967,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 357,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Mining activities are increasing within sagebrush ecosystems and likely have adverse effects on wildlife species occupying imperiled habitats, yet the impacts of mining on sagebrush obligate species have not been quantified. A pilot study will be initiat\",\n",
       "          \"ProjectID\": \"SAGE20220042\",\n",
       "          \"ProjectTit\": \"Impacts of mining exploration and development on sagebrush ecosystems and wildlife: a pilot study\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.880996700411,\n",
       "                39.5984001002843\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 50000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.598406647,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -116.88136873,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 387,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Mining activities are increasing within sagebrush ecosystems and likely have adverse effects on wildlife species occupying imperiled habitats, yet the impacts of mining on sagebrush obligate species have not been quantified. A pilot study will be initiat\",\n",
       "          \"ProjectID\": \"SAGE20230072\",\n",
       "          \"ProjectTit\": \"Impacts of mining exploration and development on sagebrush ecosystems and wildlife: a pilot study\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.881368729601,\n",
       "                39.5984066469206\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 252500.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.597457761,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -116.703762025,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 380,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Conifer removal is a key tool for restoring and conserving sagebrush ecosystems and greater sage-grouse populations. Yet, there are still gaps on the response of sagebrush obligate songbirds and pinyon jays to conifer treatments. By monitoring songbird r\",\n",
       "          \"ProjectID\": \"SAGE20230065\",\n",
       "          \"ProjectTit\": \"Effect of conifer treatments and landscape management on sagebrush obligate songbirds and Pinyon Jays in the Great Basin.\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.703762025158,\n",
       "                39.5974577609707\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.5974998,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -116.7040024,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 352,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Conifer removal is a key tool for restoring and conserving sagebrush ecosystems and greater sage-grouse populations. Yet, there are still gaps on the response of sagebrush obligate songbirds and pinyon jays to conifer treatments. By monitoring songbird r\",\n",
       "          \"ProjectID\": \"SAGE20220037\",\n",
       "          \"ProjectTit\": \"Effect of conifer treatments and landscape management on sagebrush obligate songbirds and Pinyon Jays in the Great Basin.\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.704002399955,\n",
       "                39.5974997996864\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 262790.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.6798857470001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -116.810914607,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 389,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Plant seeds that are adapted to hot and dry climates are necessary for successful restoration efforts in the Great Basin and Nevada. This project will increase the availability of native seeds and plant material from ecotypes adapted to dry conditions fo\",\n",
       "          \"ProjectID\": \"SAGE20230074\",\n",
       "          \"ProjectTit\": \"Increasing the availability of dry ecotype native seeds and plant materials for the Great Basin (Nevada Seed Strategy Actions 1.3.5, 2.2.2, 2.2.3, and 2.2.4)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.810914606571,\n",
       "                39.6798857467442\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 51166.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.9510994,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -117.1139984,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 344,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The Reese River is a tributary of the Humboldt River but in recent years has dwindled into a chain of shallow pools before it reaches the Humboldt River. A pipeline and troughs will be installed to provide water for livestock and wildlife in this sagebru\",\n",
       "          \"ProjectID\": \"SAGE20220029\",\n",
       "          \"ProjectTit\": \"Home Ranch Water Distribution - Phase II\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.113998400429,\n",
       "                39.9510993998182\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 96154.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.8318537,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -119.3579527,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 41,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration\",\n",
       "          \"ProjectDes\": \"Prevent invasive mussels from becoming established in Pyramid Lake, NV\",\n",
       "          \"ProjectID\": \"{D83EEE8E-3E1D-4781-BE38-D3A0D9DA0D52}\",\n",
       "          \"ProjectTit\": \"Increase Capacity: Watercraft Inspections and Decontaminations, Public Outreach and Education\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.357952700075,\n",
       "                39.8318537002903\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 8292215.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.7896,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -119.3491,\n",
       "          \"Notes\": \"Partners involved/Community support: Pyramid Lake Paiute Tribe, BOR, Nevada DOW, local and regional recreational angling community\",\n",
       "          \"OBJECTID\": 174,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"Numana Dam is a Pyramid Lake Paiute Tribe Agricultural diversion structure located 8 miles above Marble Bluff Dam. It severely restricts migration of endangered Cui-ui and threatened Lahontan Cutthroat Trout (LCT) from Pyramid Lake to historic spawning h\",\n",
       "          \"ProjectID\": \"{20cc2710-2170-4963-802e-7d663386830f}\",\n",
       "          \"ProjectTit\": \"Numana Dam Fish Passage Project\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/numana-dam-fish-passage-project\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.349099999681,\n",
       "                39.7896000000682\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 249458.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.55909302,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -119.773693,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1287,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"This project will help to complete a Climate Adaptation Plan, which will quantify and assess the impacts of climate on the ecosystem and community/infrastructure needs, on the Summit Lake Reservation and the surrounding watershed. The Summit Lake Paiute\",\n",
       "          \"ProjectID\": \"[DOI - 022|249458|Summit Lake Pai]\",\n",
       "          \"ProjectTit\": \"Climate Adaptation Planning for Ecosystems and Community\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.773693000091,\n",
       "                39.5590930201561\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 443684.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.55909302,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -119.773693,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 947,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Ensuring Resilient Cultural and Riparian Connectivity Within the Summit Lake Paiute Tribe Reservation\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.773693000091,\n",
       "                39.5590930201561\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 249458.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.5409053,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -119.76581302,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 8,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The Summit Lake Paiute Tribe will partner with the University of Nevada, Reno and McBain Associates to fill knowledge gaps, project future climate scenarios, collect data and develop a Climate Adaptation Plan.\",\n",
       "          \"ProjectID\": \"{0B345A3B-86A3-4567-A9DC-267B9D02EDE2}\",\n",
       "          \"ProjectTit\": \"Climate Adaptation Planning for Ecosystems and Community\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.765813017046,\n",
       "                39.5409052962923\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Park Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 550000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 48.8995,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -121.2923,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 269,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This multi-park restoration project at 7 parks in WA and CA will restore highly sensitive habitats threatened by unstable trails and over-capacity campgrounds and include public education on sustainable stewardship of recreation sites. By restoring habit\",\n",
       "          \"ProjectID\": \"100XX07MU3122\",\n",
       "          \"ProjectTit\": \"Restoring wildlife habitat in 7 parks in WA and CA\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"7\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.238900000328,\n",
       "                32.6709000000389\n",
       "              ],\n",
       "              [\n",
       "                -119.574999999949,\n",
       "                34.0488000001315\n",
       "              ],\n",
       "              [\n",
       "                -121.146100000081,\n",
       "                36.4921999997565\n",
       "              ],\n",
       "              [\n",
       "                -122.529700000426,\n",
       "                37.8480999998451\n",
       "              ],\n",
       "              [\n",
       "                -122.536799999666,\n",
       "                37.8536999996607\n",
       "              ],\n",
       "              [\n",
       "                -123.546399999622,\n",
       "                47.8952999998633\n",
       "              ],\n",
       "              [\n",
       "                -121.292299999596,\n",
       "                48.899500000014\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 503786.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.381855843,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -117.136448126,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 388,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Partnering with the Nevada Department of Wildlife, this project focuses on climate resilience of the sagebrush ecosystem at four sites across northern Nevada. This includes pinyon-juniper removal, protective fencing, seeding with native forbs and grasses\",\n",
       "          \"ProjectID\": \"SAGE20230073\",\n",
       "          \"ProjectTit\": \"Improving Climate Resilience of Sagebrush Ecosystem Communities in the Great Basin (BIL)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.136448125829,\n",
       "                40.3818558433394\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 887832.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.3819008,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -117.1360016,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 367,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Partnering with the Nevada Department of Wildlife, this project focuses on climate resilience of the sagebrush ecosystem at four sites across northern Nevada. This includes pinyon-juniper removal, protective fencing, seeding with native forbs and grasses\",\n",
       "          \"ProjectID\": \"SAGE20220052\",\n",
       "          \"ProjectTit\": \"Improving Climate Resilience of Sagebrush Ecosystem Communities in the Great Basin\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.136001600251,\n",
       "                40.3819008002198\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 7660.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.9090004,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -116.2789993,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 343,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Along the slopes of the Monitor Range in central Nevada, pinyon-juniper woodlands have expanded into sagebrush rangelands along the valley floor. This encroachment is depleting understory vegetation and dewatering the landscape. We plan to thin the trees\",\n",
       "          \"ProjectID\": \"SAGE20220028\",\n",
       "          \"ProjectTit\": \"Kelly Creek Conifer Thinning - Phase I\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.278999299754,\n",
       "                39.9090003999576\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1944900.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.52391996,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -112.1947788,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 234,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Restoration and vegetation management of mined land repositories containing waste rock and tailings on BLM-managed land and surrounding associated watershed areas.\",\n",
       "          \"ProjectID\": \"050XX08MU5522\",\n",
       "          \"ProjectTit\": \"Restoration of Mined Land Repositories\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"15\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -113.209649000312,\n",
       "                34.6382007402722\n",
       "              ],\n",
       "              [\n",
       "                -107.197511500125,\n",
       "                35.2683005001266\n",
       "              ],\n",
       "              [\n",
       "                -107.827567500204,\n",
       "                35.3310933498838\n",
       "              ],\n",
       "              [\n",
       "                -117.621879700434,\n",
       "                35.3522843403408\n",
       "              ],\n",
       "              [\n",
       "                -117.665366899895,\n",
       "                35.3697159099248\n",
       "              ],\n",
       "              [\n",
       "                -107.8207141999,\n",
       "                35.3731098997722\n",
       "              ],\n",
       "              [\n",
       "                -117.408770499782,\n",
       "                35.8906278897051\n",
       "              ],\n",
       "              [\n",
       "                -107.335192199981,\n",
       "                38.0209944902859\n",
       "              ],\n",
       "              [\n",
       "                -120.89276979978,\n",
       "                38.2373678998004\n",
       "              ],\n",
       "              [\n",
       "                -122.449575400175,\n",
       "                39.0787833700843\n",
       "              ],\n",
       "              [\n",
       "                -122.449296999692,\n",
       "                39.0824401700527\n",
       "              ],\n",
       "              [\n",
       "                -107.921280599551,\n",
       "                39.523328210155\n",
       "              ],\n",
       "              [\n",
       "                -120.816233599882,\n",
       "                44.3237984198252\n",
       "              ],\n",
       "              [\n",
       "                -117.483899499568,\n",
       "                44.9150222201934\n",
       "              ],\n",
       "              [\n",
       "                -112.19477880018,\n",
       "                45.5239199602037\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.42218538,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -112.3857359,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 828,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Jacobs Smelter site is located in the Rush Valley, Tooele County, Utah near the town of Stockton and about five miles south of Tooele, Utah. The site covers about eight square miles and includes the town of Stockton. The risks posed by the site deriv\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"JACOBS SMELTER\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.385735899862,\n",
       "                40.4221853798587\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 461271.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.7963982,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -112.6750031,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 335,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The primary purpose of this funding request is to support upland habitat restoration in Utah. Removing conifers is an effective restoration tool in these systems and is necessary for defending and growing the core sagebrush habitats in Utah.\",\n",
       "          \"ProjectID\": \"SAGE20220020\",\n",
       "          \"ProjectTit\": \"Utah: Conifer Treatment Projects for Upland Habitat Restoration and Enhancements\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.675003099798,\n",
       "                40.796398199826\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 250000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.796365542,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -112.674518602,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 415,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project will support upland habitat restoration in Utah. Removing conifers is an effective restoration tool in these systems and is necessary for defending and growing the core sagebrush habitats in Utah.\",\n",
       "          \"ProjectID\": \"SAGE20230100\",\n",
       "          \"ProjectTit\": \"Utah: Climate Conifer Treatment Projects for Upland Habitat Restoration and Enhancements\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.674518602432,\n",
       "                40.7963655421147\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 4991383.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.59401084,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -111.91466385,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1415,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Revitalize the Jordan River and adjacent habitats along the south shorelands of the Great Salt Lake through floodplain and wetland restoration, native and invasive species management, and community engagement. Project will facilitate engagement of over 2\",\n",
       "          \"ProjectID\": \"79886\",\n",
       "          \"ProjectTit\": \"Community-Driven Riparian and Wetland Restoration in the Jordan River (UT)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.914663852853,\n",
       "                40.5940108448732\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.75364059,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -111.9170608,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 932,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Draper Irrigation Co. (WaterPro), Culinary Smart-Metering Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.917060799678,\n",
       "                40.7536405899513\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 70000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.75364059,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -111.9170608,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 943,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Emigration Improvement District, Residential Water Meter Upgrade\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.917060799678,\n",
       "                40.7536405899513\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.88768888,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -111.9043419,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 827,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The 450-acre Bountiful/Woods Cross 5th S. PCE Plume site is in southern Davis County, Utah, about 10 miles north of Salt Lake City.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"BOUNTIFUL/WOODS CROSS 5TH S. PCE PLUME\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.90434190032,\n",
       "                40.8876888800275\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.13867853,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -112.0676174,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 902,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Clinton City Well and Water Storage Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.067617400149,\n",
       "                41.1386785298043\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.13,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -112.028,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 884,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Canal Enclosure and Solar Energy Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4247\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.0280000001,\n",
       "                41.1299999997845\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.02690232,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -111.9497398,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 982,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Haights Creek Irrigation Company, Haights Creek Irrigation Company Piping Project - Phase 8\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.94973980022,\n",
       "                41.0269023201432\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.11,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -111.912,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1170,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Upper Willard Canal Lining Project (Phase 8)\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4247\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.912000000388,\n",
       "                41.1099999998381\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 14300000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.108,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -111.91,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1159,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water Recycling\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Tertiary Treatment Facility in Central Weber\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4296\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.910000000222,\n",
       "                41.1080000001026\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.17033101,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -111.9779573,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1185,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Washington Terrace City, Automatic Metering Infrastructure Installation Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.977957299938,\n",
       "                41.1703310097031\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.22322547,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -112.1271363,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1196,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Weber River Ecological Resiliency Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.127136299785,\n",
       "                41.2232254701952\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1547700.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.2993075,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -111.8148819,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1020,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Liberty Pipeline Company Drought Resiliency Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.814881899838,\n",
       "                41.2993075002337\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 23000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.26982,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -111.913,\n",
       "          \"Notes\": \"Install a parallel pipeline next to the Davis Aqueduct for maintenance redundancy. Funding is provided for planning, design, and subsequently, a portion of implementation.\",\n",
       "          \"OBJECTID\": 1195,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Weber Basin\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.912999999572,\n",
       "                41.2698200001971\n",
       "              ],\n",
       "              [\n",
       "                -113.082000000135,\n",
       "                41.5210100000711\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 220000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.9870409310001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -114.953448694,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 392,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project will enhance vegetation communities in the sagebrush ecosystem  and protect/restore wetlands and mesic habitats. Activities to be funded under this proposal include removing and replacing older fencing and replacing with wildlife friendly fe\",\n",
       "          \"ProjectID\": \"SAGE20230077\",\n",
       "          \"ProjectTit\": \"Northeastern Nevada Sagebrush Ecosystem Enhancement Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.95344869358,\n",
       "                40.9870409310186\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 38050.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.854599,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -115.4000015,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 342,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The Reno Fish and Wildlife Office Partners for Fish and Wildlife Program will work with the Cottonwood Ranch in Elko County, Nevada to improve meadows in the floodplain of Cottonwood Creek to benefit both wildlife and livestock. Three phases are targeted\",\n",
       "          \"ProjectID\": \"SAGE20220027\",\n",
       "          \"ProjectTit\": \"Fourmile Creek Wet Meadow Enhancement Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.400001499793,\n",
       "                40.8545990000473\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 175000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.3245760190001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -115.39278408,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 393,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The Reno Fish and Wildlife Office Partners for Fish and Wildlife Program will work with the Cottonwood Ranch in Elko County, Nevada to improve meadows in the floodplain of Cottonwood Creek to benefit both wildlife and livestock. Three phases are targeted\",\n",
       "          \"ProjectID\": \"SAGE20230078\",\n",
       "          \"ProjectTit\": \"O'Neil Basin Meadow Enhancement Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.392784079966,\n",
       "                41.3245760187555\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 20000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.3443985,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -114.598999,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 347,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project is located at a small spring found on private property in Elko County, Nevada.  The outflow of the spring is impounded into a pond  where it continues downstream through a diversion pipe on the east side of the pond to the water right owner\",\n",
       "          \"ProjectID\": \"SAGE20220032\",\n",
       "          \"ProjectTit\": \"Clover Valley Speckled Dace Habitat Enhancement Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.59899900001,\n",
       "                41.3443984998497\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 25000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.5791016,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -116.5439987,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 346,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The Reno Fish and Wildlife Office Partners for Fish and Wildlife Program will work with the Cottonwood Ranch in Elko County, Nevada to improve meadows in the floodplain of Cottonwood Creek to benefit both wildlife and livestock. Three phases are targeted\",\n",
       "          \"ProjectID\": \"SAGE20220031\",\n",
       "          \"ProjectTit\": \"Cottonwood Ranch Meadow Enhancement Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.543998700037,\n",
       "                41.5791015997582\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 91162.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.7131996,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -115.4329987,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 340,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Projects funded under this project will enhance vegetation communities in the sagebrush ecosystem and protect mesic habitats on a privately owned ranch in Nevada. Project activities include installing fuel breaks strategically along dirt roads in two are\",\n",
       "          \"ProjectID\": \"SAGE20220025\",\n",
       "          \"ProjectTit\": \"Humboldt Ranch Sagebrush and Riparian Enhancement Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.432998699779,\n",
       "                41.7131996001028\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 80000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.94210395,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -113.0482967,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 205,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Reconstruct Pilot Pond to provide a refuge population of least chub, provide water for livestock, and habitat for wildlife.\",\n",
       "          \"ProjectID\": \"050XX02UT1922\",\n",
       "          \"ProjectTit\": \"Pilot Pond Reconstruction\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -113.048296700082,\n",
       "                41.942103950141\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.73428768,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -111.8351732,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1023,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Lower Logan River Trapper Park River Restoration Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.835173199986,\n",
       "                41.7342876796723\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.79744082,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -111.819619,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 990,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Hyde Park City\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.819619000199,\n",
       "                41.7974408200113\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 144000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.4603004,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -114.1660004,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 316,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project will deliver integrated habitat restoration treatments (e.g., fuel breaks, revegetation, riparian enhancement) in two priority sagebrush landscapes in Idaho, with an emphasis on re-establishing functional sagebrush habitat for Greater sage-g\",\n",
       "          \"ProjectID\": \"SAGE20220001\",\n",
       "          \"ProjectTit\": \"Idaho Conifer Treatments; Increasing the Pace and Scale of Regional Landscape Strategies\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.166000399707,\n",
       "                42.4603004001385\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 96000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.4602616060001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -114.166372431,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 385,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project increases the pace and scale of ongoing conifer removal partnerships in two key mixed-jurisdiction sagebrush  landscapes in southern Idaho and promotes consistent delivery of conifer treatments across time and space (and land ownership) in t\",\n",
       "          \"ProjectID\": \"SAGE20230070\",\n",
       "          \"ProjectTit\": \"Idaho Conifer Treatments; Increasing the Pace and Scale of Regional Landscape Strategies\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.166372430693,\n",
       "                42.4602616060263\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 71971.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.6177869,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -113.6767816,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1034,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Minidoka Irrigation District, Minidoka Irrigation District's Piping of Lateral 24\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -113.676781599729,\n",
       "                42.6177868998804\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.5,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -112.2,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 642,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding, irrigation infrastructure, and water quality concerns.  \\u200bFlooding damage results from surface runoff entering the canal sys\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Portneuf-Marsh Valley\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.199999999952,\n",
       "                42.4999999998613\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.5,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -111.7,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 573,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding, irrigation infrastructure, and water quality concerns.  \\u200bFlooding damage results from surface runoff entering the canal sys\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Gentile Valley\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.699999999922,\n",
       "                42.4999999998613\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.89726791,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -112.4541652,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 861,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Battle Creek Ecological Restoration at Sowo Gahni\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.454165199581,\n",
       "                42.8972679098646\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 52131.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.982399,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -112.3820038,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 318,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project is a multi-faceted restoration effort to reconnect upland and riparian habitats and function in in core sagebrush areas in three priority landscapes within Idaho, including in the Bear Lake watershed, a crucial water resource for the larger\",\n",
       "          \"ProjectID\": \"SAGE20220003\",\n",
       "          \"ProjectTit\": \"Southeast Idaho Sagebrush Steppe Enhancement\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.382003799607,\n",
       "                42.9823990001048\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1085584.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.02715058,\n",
       "          \"LatLongTyp\": \"Shoshone-Bannock Tribes\",\n",
       "          \"Long\": -112.4337278,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 687,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Tribal Priority Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"The Shoshone-Bannock Tribes of the Fort Hall Reservation will restore fish passage and habitat connectivity in the Yankee Fork watershed, supporting three Endangered Species Act-listed species: Snake River spring/summer-run Chinook salmon, Snake River st\",\n",
       "          \"ProjectID\": \"NOAA_005\",\n",
       "          \"ProjectTit\": \"Restoration of fish passage and habitat connectivity in the Yankee Fork watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.43372780013,\n",
       "                43.0271505802334\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 4200000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.85429,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -113.637,\n",
       "          \"Notes\": \"Refurbish\\u00a0and modernization of the following\\u00a0features\\u00a0of the Falls ID pumping plant\\u00a0below American Falls Dam: electrical\\u00a0components, motors, pumps, valves, overhead crane, arc flash safety system, cooling system, flow meters on all pumps discharge,\",\n",
       "          \"OBJECTID\": 1033,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Minidoka\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -113.637000000223,\n",
       "                42.8542899998489\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 53000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.09395068,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -115.3411615,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 216,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Blair Fire Noxious Weed Inventory\\r\\r\\nA total of 5,500 acres would be inventoried for noxious weeds on the (B1LL) Blair Fire. Treatment would be implemented through an end-product service contract.\",\n",
       "          \"ProjectID\": \"050XX06ID1422\",\n",
       "          \"ProjectTit\": \"Blair Fire Invasive Plant Treatments\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.341161500137,\n",
       "                43.0939506800179\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.33070064,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -114.3197011,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 870,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Board of Control Diversion 45 Stabilization and Fish Passage Remediation\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.319701100079,\n",
       "                43.330700640055\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 53000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.35396,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -115.469,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 924,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Detecting and Eradicating Invasive Plants That Remain After Blair Fire Rehabilitation in Idaho\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.468999999924,\n",
       "                43.3539600002552\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 85000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.35396,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -115.469,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 952,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Eradicating Invasive Plants Remaining After Pony Fire Burned Area Rehabilitation in Idaho\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.468999999924,\n",
       "                43.3539600002552\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 8300000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.4511,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -116.241,\n",
       "          \"Notes\": \"Lining of 6-miles of the New York Canal through a highly urbanized/commercial area of the Boise Bench with a geocomposite membrane and capped with steel reinforced concrete. Funding is provided for a planning study and design, and subsequent funding for\",\n",
       "          \"OBJECTID\": 871,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Boise - Arrowrock Division\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.240999999992,\n",
       "                43.451100000054\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.4511,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -116.241,\n",
       "          \"Notes\": \"Removal and replacement of two large concrete siphons. Project consist of 4,000 feet of C-West 11.0 siphon which is 39\\\" diameter and 3,062 feet of Conway Gulch 4.4 siphon which is 54\\\" diameter. Will replace with HDPE or comparable PVC. Funding is provide\",\n",
       "          \"OBJECTID\": 872,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Boise - Payette Division\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.240999999992,\n",
       "                43.451100000054\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 85000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.14891563,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -115.4290418,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 218,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"A total of 9,041 acres would be treated with a selective herbicide to control invasive annual plants on former ESR drill seedings.  Treatment would be implemented through an end-product service contract.\",\n",
       "          \"ProjectID\": \"050XX06ID2122\",\n",
       "          \"ProjectTit\": \"Pony Fire Invasive Weed Treatments\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.429041799717,\n",
       "                43.1489156301674\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 120000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.6842003,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -116.2910004,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 364,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project will deliver dedicated technical and financial capacity to implement on-the-ground treatments to promote the resilience and persistence of mesic habitats in strategic geographies in Idaho using low-tech/high-efficacy (and high transferabilit\",\n",
       "          \"ProjectID\": \"SAGE20220049\",\n",
       "          \"ProjectTit\": \"Idaho Mesic Rangeland Resources Enhancement; A Statewide Strategy to Increase the Pace and Scale of Delivery\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.291000400284,\n",
       "                42.6842002997967\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 80000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.684199225,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -116.290500927,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 386,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project is delivering dedicated technical and financial capacity to implement on-the-ground treatments to promote the resilience and persistence of mesic habitats in strategic geographies in Idaho using low-tech/high-efficacy (and high transferabili\",\n",
       "          \"ProjectID\": \"SAGE20230071\",\n",
       "          \"ProjectTit\": \"Idaho Mesic Rangeland Resources Enhancement; A Statewide Strategy to Increase the Pace and Scale of Delivery\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.290500927105,\n",
       "                42.684199224742\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 75000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.58142,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -116.17,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 951,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Eradicating Invasive Plants Remaining After Burned Area Rehabilitation in Western Idaho\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.170000000408,\n",
       "                42.5814200000784\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Park Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 260000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 45.649192,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -113.646049,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 295,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Ecoregional Collaboration, Collection, Production: Native plant materials will be produced for a network of parks with sagebrush systems, which are at-risk and under-supported vegetation types across millions of acres in the Western US. Project outcomes\",\n",
       "          \"ProjectID\": \"100XX09MU2522\",\n",
       "          \"ProjectTit\": \"Develop native plant capacity for sagebrush parks\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"6\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.186902999812,\n",
       "                38.9151350000744\n",
       "              ],\n",
       "              [\n",
       "                -113.706126000038,\n",
       "                42.0724949999256\n",
       "              ],\n",
       "              [\n",
       "                -114.946516000172,\n",
       "                42.7937329998893\n",
       "              ],\n",
       "              [\n",
       "                -113.506083999833,\n",
       "                43.4050420000851\n",
       "              ],\n",
       "              [\n",
       "                -120.239075000411,\n",
       "                44.6345680000762\n",
       "              ],\n",
       "              [\n",
       "                -113.646048999574,\n",
       "                45.6491919998534\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 56142.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.0564995,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -117.6490021,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 324,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Habitat restoration and native plant revegetation on tribal-owned wildlife management area.\",\n",
       "          \"ProjectID\": \"SAGE20220009\",\n",
       "          \"ProjectTit\": \"Burns-Paiute Tribe Jonsboro Upland Native Plant Restoration\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.649002099921,\n",
       "                43.0564995001866\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 75000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.2876,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -116.7817,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 217,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Continuation of previous ESR project and on-going shrub restoration project.\",\n",
       "          \"ProjectID\": \"050XX06ID1722\",\n",
       "          \"ProjectTit\": \"Owyhee FO Invasive Weeds Eradication\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.781700000244,\n",
       "                43.2876000000969\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 360000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.0806007,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -119.0230026,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 321,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project will protect and restore mesic habitats within and connecting southeast Oregon's Trout Creek and Pueblo Mountains.\",\n",
       "          \"ProjectID\": \"SAGE20220006\",\n",
       "          \"ProjectTit\": \"Assessing, Protecting, and Restoring Mesic Habitats in the Pueblo and Trout Creek Mountains\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.023002599834,\n",
       "                43.0806007001885\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 57000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.14488298,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -118.226364232,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 411,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project will generate species and community data for bumble bees throughout the high desert in Southeast Oregon where historical community baselines have not been established and contemporary species occurrence data is sparse. Species of wild, unman\",\n",
       "          \"ProjectID\": \"SAGE20230096\",\n",
       "          \"ProjectTit\": \"Survey of Bombus (Hymenoptera: Apidae) and DNA barcoding of sagebrush biome wild bees in Southeast Oregon.\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -118.226364231584,\n",
       "                43.1448829803221\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 114000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.7910995,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -120.5390015,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 325,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Final phase of juniper control on priority habitats on Hart Mountain NWR.\",\n",
       "          \"ProjectID\": \"SAGE20220010\",\n",
       "          \"ProjectTit\": \"Completing Removal of Encroaching Juniper from the Lower Guano Creek Area on Hart Mountain National Wildlife Refuge\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.539001499913,\n",
       "                42.7910995003127\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 143858.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.7910631390001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -120.53882282,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 376,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Final phase of juniper control on priority habitats on Hart Mountain NWR.\",\n",
       "          \"ProjectID\": \"SAGE20230061\",\n",
       "          \"ProjectTit\": \"Completing Removal of Encroaching Juniper from the Lower Guano Creek Area on Hart Mountain National Wildlife Refuge\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.538822819614,\n",
       "                42.7910631392903\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.91176,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -121.44872,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 665,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bTulelake Irrigation District (TIO) is in need of modernizing their system to meet multiple public benefits. Their irrigation system was constructed over a span of a few decades in the early to mid-1900s as development of the Klamath Reclamation Projec\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Tulelake Irrigation District\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.448720000046,\n",
       "                41.9117599999153\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.803299,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -119.6849976,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 339,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project will enhance vegetation communities in the sagebrush ecosystem  and protect/restore wetlands and mesic habitats. Activities to be funded under this proposal include removing and replacing older fencing and replacing with wildlife friendly fe\",\n",
       "          \"ProjectID\": \"SAGE20220024\",\n",
       "          \"ProjectTit\": \"Vya Conservation District Sagebrush and Wet Meadow Enhancements Phase I\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.684997599765,\n",
       "                41.8032990000519\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 41000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.8283306920001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -119.231449772,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 379,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project develops site-specific reclamation plans for approximately 17 springs and associated spring brooks and meadows in areas of Sheldon National Wildlife Refuge that have had juniper removal efforts completed since 2014. The prescriptions defined\",\n",
       "          \"ProjectID\": \"SAGE20230064\",\n",
       "          \"ProjectTit\": \"Developing Spring Reclamation Plans for Developed and Altered Springs and Associated Spring Brooks and Meadows in Completed Juniper Control Areas on Sheldon National Wildlife Refuge\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.231449772334,\n",
       "                41.8283306916716\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 450000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.88609261,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -118.0267576,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 195,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The project will repair and/or reconstruct approximately 40 miles of riparian fencing as part of a larger effort to restore degrade streams critical to the Lahontan cutthroat trout.\",\n",
       "          \"ProjectID\": \"050XX02NV4222\",\n",
       "          \"ProjectTit\": \"Habitat Improvement for Lahontan Cutthroat Trout\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -118.026757599882,\n",
       "                41.8860926100084\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 70000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.5159988,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -117.7399979,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 338,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The project will protect and restore two large, degraded springs (Tule and Slide Springs) within the Summit Lake Paiute Tribe Reservation. Spring ecosystems are vulnerable to overgrazing by domestic and wild ungulates, and fencing springs and associated\",\n",
       "          \"ProjectID\": \"SAGE20220023\",\n",
       "          \"ProjectTit\": \"Summit Lake Sagebrush Spring(s) into Action\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.739997899739,\n",
       "                41.5159988001539\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 472092.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.53556892,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -119.0485005,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 429,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Complete feasibility and design for fish passage and riparian restoration projects to improve the connectivity of the lake and its sole perennial creek within the Summit Lake Paiute Tribe Reservation. Project will build on the existing Lahontan cutthroat\",\n",
       "          \"ProjectID\": \"77451\",\n",
       "          \"ProjectTit\": \"Designing Habitat Connectivity and Ensuring Resilience for Lahontan Cutthroat Trout (NV)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.048500500334,\n",
       "                41.5355689197761\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 20000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.4794998,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -118.8359985,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 319,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Theis project will develop site-specific reclamation plans for approximately 17 springs and associated spring brooks and meadows in areas of Sheldon National Wildlife Refuge that have had juniper removal efforts completed since 2014. The prescriptions de\",\n",
       "          \"ProjectID\": \"SAGE20220004\",\n",
       "          \"ProjectTit\": \"Developing Spring Reclamation Plans for Developed and Altered Springs and Associated Spring Brooks and Meadows in Completed Juniper Control Areas on Sheldon National Wildlife Refuge\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -118.835998499729,\n",
       "                41.4794998000791\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 25000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.438941846,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -118.297777246,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 406,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The Reno Fish and Wildlife Office Partners for Fish and Wildlife Program will work with the Cottonwood Ranch in Elko County, Nevada to improve meadows in the floodplain of Cottonwood Creek to benefit both wildlife and livestock. Three phases are targeted\",\n",
       "          \"ProjectID\": \"SAGE20230091\",\n",
       "          \"ProjectTit\": \"Santa Rosa Paradise Priority Landscape Restoration Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -118.297777245993,\n",
       "                41.438941845936\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 212832.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.9625015,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -119.6740036,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 341,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Spring ecosystems are vulnerable to overgrazing by domestic and wild ungulates, and fencing springs and associated wet meadows can facilitate recovery. Protection fencing will be installed at eight spring sites on private and public lands, totaling 110 a\",\n",
       "          \"ProjectID\": \"SAGE20220026\",\n",
       "          \"ProjectTit\": \"Spring and Mesic Habitat Protections for Greater Sage-grouse and Mule Deer in NW Nevada\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.674003599601,\n",
       "                40.9625014997821\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 198786.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.962541586,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -119.67351303,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 410,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Spring ecosystems are vulnerable to overgrazing by domestic and wild ungulates, and fencing springs and associated wet meadows can facilitate recovery. Protection fencing will be installed at eight spring sites on private and public lands, totaling 110 a\",\n",
       "          \"ProjectID\": \"SAGE20230095\",\n",
       "          \"ProjectTit\": \"Spring and Mesic Habitat Protections for Greater Sage-grouse and Mule Deer in NW Nevada\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.673513029625,\n",
       "                40.9625415856671\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.0285,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -123.813,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 188,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Thin forest to improve forest resilience to wildfire and insects. The project will provide employment to the Hoopa Indian tribe.\",\n",
       "          \"ProjectID\": \"050XX02CA2722\",\n",
       "          \"ProjectTit\": \"Lacks Creek Forest Health Good Neighbor Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.813000000112,\n",
       "                41.028499999828\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 119986.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.5265092,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -124.0384069,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 85,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration\",\n",
       "          \"ProjectDes\": \"Eradicate invasive species from Tribal lands\",\n",
       "          \"ProjectID\": \"{0B8EFA48-5BCF-4105-B20F-C5D060253B25}\",\n",
       "          \"ProjectTit\": \"Yurok Tribe Wildlife Program Invasive Species Removal: Feral Cattle Removal on Yurok stainable, Long-Term Feral Cattle Management Practices\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -124.038406899848,\n",
       "                41.5265091999371\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"<Null>\",\n",
       "          \"FundingAmo\": 5000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.5265050888045,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": 41.5265050888045,\n",
       "          \"Notes\": \"$5 million for Planning Grants awarded over multiple years\",\n",
       "          \"OBJECTID\": 1257,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Community Relocation\",\n",
       "          \"ProjectDes\": \"Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Community Driven Relocation Demonstration Project - Yurok Tribe\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -124.038413963302,\n",
       "                41.5265050888045\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior and Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service and the Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 1000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.51142631,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -124.02739949,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1406,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Improve wetland habitat and reduce flooding impacts in the Lower Klamath River Basin by rectifying aquatic barrier infrastructure and planting native plants and shrubs for at-risk and Tribal trust species, including coho salmon. Project will replace two\",\n",
       "          \"ProjectID\": \"81188\",\n",
       "          \"ProjectTit\": \"Expanding Coho Habitat and Increasing Resiliency on Tribal Lands in Lower Klamath River Basin (CA)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -124.027399487838,\n",
       "                41.5114263134261\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 118816.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.58504416,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -123.1041976,\n",
       "          \"Notes\": \"Funds will be used to maintain beaver dam analogue (BDA) sites within the McGarvey Creek watershed, and implement new, innovative restoration techniques in upper McGarvey Creek. Funds will also be used to assess restoration effectiveness of BDAs and othe\",\n",
       "          \"OBJECTID\": 1030,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"McGarvey Creek Restoration and Effectiveness Monitoring\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 861000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.58504416,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -123.1041976,\n",
       "          \"Notes\": \"Funding for this project will be used to connect one acre of slow, cold-water refugia rearing habitat to one acre of floodplain habitat constructed in an earlier phase of this project. When complete, this project will result in a total two acres of new h\",\n",
       "          \"OBJECTID\": 1151,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Sugar Creek Coho Salmon Refugia Project\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 591798.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.58504416,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -123.1041976,\n",
       "          \"Notes\": \"Funding for this project will help improve conditions for native fish and other aquatic species. Using a helicopter, this project will add 120 pieces of large wood to 2-1/2 miles of West Fork Beaver Creek in Siskiyou County, on privately owned land. Thes\",\n",
       "          \"OBJECTID\": 864,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Beaver Creek Helicopter Wood Loading Project\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 51581.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.58504416,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -123.1041976,\n",
       "          \"Notes\": \"Funding will be used for riparian stewardship actions within lower Terwer Creek to improve habitat. Native trees and shrubs will be planted in key locations and vegetation will be monitored for survival and plant success within a two-mile reach of lower\",\n",
       "          \"OBJECTID\": 1160,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Terwer Creek Riparian Habitat Enhancement\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 81340.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.58504416,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -123.1041976,\n",
       "          \"Notes\": \"Funding for this project will be used to install 5,000 native tree and shrub species to further bolster the native woody plant assemblage in riparian and floodplain, remove invasive plant species, including scotch broom and Himalaya berry from within the\",\n",
       "          \"OBJECTID\": 1041,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Monitoring and Maintenance of Native Plant Installations on Mill Creek and Supply Creek\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1619434.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.58504416,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -123.1041976,\n",
       "          \"Notes\": \"Funding for the construction of the Weitchpec Fisheries Research Center, located on the Yurok Reservation in Weitchpec, CA. This building and site would consist of eight office spaces, a conference room, a laboratory, boat/equipment storage, work areas f\",\n",
       "          \"OBJECTID\": 1197,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Weitchpec Fisheries Research Center\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 194503.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.58504416,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -123.1041976,\n",
       "          \"Notes\": \"Funding will be used to restore fish passage over a diversion structure by creating a 200-foot-long roughened channel ramp by increasing stream bed slope from 2.1% to 3.6% below the diversion to meet the sill elevation at the diversion. The existing wate\",\n",
       "          \"OBJECTID\": 1137,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Soctish Creek Fish Passage implementation\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 202396.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.58504416,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -123.1041976,\n",
       "          \"Notes\": \"Funding for this project will be used develop an implementation plan for process-based restoration strategies to at locations along the 4,800 linear feet of channel in Shackleford Creek, located in the Scott River sub-basin. These strategies will include\",\n",
       "          \"OBJECTID\": 1133,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Shackleford Creek Habitat Restoration\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 393823.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.58504416,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -123.1041976,\n",
       "          \"Notes\": \"Funding will be used for improving stream and riparian habitats in the Yurok Tribe Blue Creek Sanctuary. Wood jams and other habitat structures will be constructed and installed. Off-channel and wetland habitats will be enhanced. Riparian treatments will\",\n",
       "          \"OBJECTID\": 869,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Blue Creek Sanctuary habitat improvement and bridge crossing replacement project\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 735465.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.58504416,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -123.1041976,\n",
       "          \"Notes\": \"Funding will be used, in part, to fund removal of over 330,000 cubic yards of mining tailings to address intense disturbances to the Trinity River and valley caused by historical gold mining. During the period of upslope hydraulic mining in the late 19th\",\n",
       "          \"OBJECTID\": 1065,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Oregon Gulch Project on Mainstem Trinity River\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 626621.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.58504416,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -123.1041976,\n",
       "          \"Notes\": \"Funds will be to complete design plans for approximately 1.75 miles of tributary habitat that will focus on improving instream habitat, increasing off-channel rearing habitat, enhancing thermal refugia, and reconnecting historic floodplains along these t\",\n",
       "          \"OBJECTID\": 1101,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Red Cap Creek & Camp Creek Floodplain Restoration\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 455203.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.58504416,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -123.1041976,\n",
       "          \"Notes\": \"Funding for this project will be used to improve the understanding of the integrated surface water and groundwater system in the Quartz Valley so that the Quartz Valley Indian Reservation and other water managers can effectively manage their limited wate\",\n",
       "          \"OBJECTID\": 1094,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Quartz Valley Integrated Hydrological Model\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 151901.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.58504416,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -123.1041976,\n",
       "          \"Notes\": \"Funding will be used to enhance the Tribe\\u2019s ability to quickly and efficiently respond to data requests, establish cohesive and structured storage of chemical data and physical water quality data. This project will address a data gap at the mouth of th\",\n",
       "          \"OBJECTID\": 1004,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Karuk Tribe Water Monitoring Program in the Mid Klamath Basin\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 615153.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.58504416,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -123.1041976,\n",
       "          \"Notes\": \"Funding for this project will be to help the Resighini Rancheria replace existing culverts that create public safety concerns and limit access to important coho salmon habitat. On Waukel Creek, the existing 49-foot long, 10-foot diameter culvert will be\",\n",
       "          \"OBJECTID\": 1192,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Waukel Creek and Junior Creek Culvert Replacement\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 173428.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.58504416,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -123.1041976,\n",
       "          \"Notes\": \"Funding for this project will help be used to collect data in the Mid-Klamath Basin for adult spring Chinook population trends at the adult life stage by engaging the local community in a watershed wide volunteer driven surveys and build community suppor\",\n",
       "          \"OBJECTID\": 1003,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Karuk Tribe Spring-Run Chinook salmon Life Cycle Monitoring\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 235043.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.58504416,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -123.1041976,\n",
       "          \"Notes\": \"The Yurok Tribe Fisheries Department (YTFD) has made enormous contributions to the restoration of the Lower Klamath River Basin. This funding will add capacity so that the Tribe can continue to meet and expand its priority fish restoration efforts. The p\",\n",
       "          \"OBJECTID\": 1233,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yurok Tribal Capacity\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 249681.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.58504416,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -123.1041976,\n",
       "          \"Notes\": \"Funding will be used to develop and implement engineered designs to create a passage over a barrier that, once removed, will allow the native salmonids and other species to move upstream. The Highway 96 crossing over Hospital Creek in Hoopa, CA is a comp\",\n",
       "          \"OBJECTID\": 988,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Hospital Creek In-Stream Barrier Removal Design and Build Project\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 202246.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.58504416,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -123.1041976,\n",
       "          \"Notes\": \"Funding will be used to design, plan for, and implement comprehensive stream and floodplain habitat enhancement actions within the Ah Pah Creek watershed. Proposed actions will focus on coordinating with a private timber company to reduce the footprint o\",\n",
       "          \"OBJECTID\": 846,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Ah Pah Creek Stream and Floodplain Habitat\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 160338.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.58504416,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -123.1041976,\n",
       "          \"Notes\": \"Funding for this project will evaluate the feasibility of expanding upon existing Weaver Creek restoration plans with additional scope of work, design, and permitting analysis. Funds will be used to assess bridge and road improvement, recreational trail\",\n",
       "          \"OBJECTID\": 1194,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Weaver Basin Improvement Planning Project\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.104197599582,\n",
       "                41.5850441599916\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 82162.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.792705165654,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -123.378613908732,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1260,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience\",\n",
       "          \"ProjectDes\": \"Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.\",\n",
       "          \"ProjectID\": \"{77BCF125-9368-496B-9D82-0A54E0C310CB}\",\n",
       "          \"ProjectTit\": \"Relocation, Managed Retreat, and Protect-in-Place Coordinator - Karuk Tribe\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.378613908732,\n",
       "                41.792705165654\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior and Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service and the Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 608259.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.81385444,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -121.631693,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1433,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Complete initial planning for a restoration effort that will reduce encroaching juniper, remove invasive vegetation, and reseed native plants in the Lower Klamath River Basin in partnership with the Modoc National Forest. Project will result in a plan th\",\n",
       "          \"ProjectID\": \"80984\",\n",
       "          \"ProjectTit\": \"Shapa'sh Landscape Restoration Project (CA)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.631693002841,\n",
       "                41.8138544352664\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 200000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.19840978,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -121.8023177,\n",
       "          \"Notes\": \"Upper Klamath Lake (UKL) is the primary habitat for the endangered Lost River sucker and shortnose sucker. The Sprague and Williamson rivers are a major source of nutrient loading to UKL. Reduction of nutrient loading to UKL, particularly phosphorus has\",\n",
       "          \"OBJECTID\": 1203,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Williamson River Delta Preserve (WRDP) Phosphorus Capture Potential\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1198378.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.19840978,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -121.8023177,\n",
       "          \"Notes\": \"The Pit Tag coalition is a collaborative effort that will develop a basin wide fish tracking infrastructure in order to monitor the success of restoration efforts in the Klamath Basin. A comprehensive PIT infrastructure and integrated upper and lower bas\",\n",
       "          \"OBJECTID\": 1007,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Klamath River Pit Tag Coalition Infrastructure Development Project\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 903075.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.19840978,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -121.8023177,\n",
       "          \"Notes\": \"Funding for this project will be used to develop a master plan to restore, develop and expand wetlands to the Keno Reach of the Klamath River. Following dam removal on the Klamath River, salmon and steelhead are expected to return to the Upper Klamath Ba\",\n",
       "          \"OBJECTID\": 970,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Fringe Wetland Restoration Master Plan for The Keno Reach of the Klamath River\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 875061.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.19840978,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -121.8023177,\n",
       "          \"Notes\": \"The Klamath Tribes have successfully increased their endangered Lost River and shortnose sucker rearing program, adding additional ponds, raising fish from eggs, conducting staff professional development, and continuing to develop a systematic approach t\",\n",
       "          \"OBJECTID\": 1010,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Klamath Tribes Sucker Rearing program expansion\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 147117.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.19840978,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -121.8023177,\n",
       "          \"Notes\": \"This funding will be used to test and refine predictive models for annelid hosts in the Klamath River hydroelectric reach, which will inform and improve management decisions in the Klamath Basin. High annelid host densities, which are linked to fish dise\",\n",
       "          \"OBJECTID\": 929,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Development of models for predicting annelid hosts in the Klamath River Hydroelectric Reach\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 913786.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.19840978,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -121.8023177,\n",
       "          \"Notes\": \"Funding will be used to help the Klamath Tribes jumpstart the return of salmon to the Upper Klamath Basin. The Klamath Tribes have not had access to native Klamath River salmon fisheries for more than 100 years. This funding will help the Tribe institute\",\n",
       "          \"OBJECTID\": 1009,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Klamath Tribes Salmon Reintroduction program\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 231714.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.19840978,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -121.8023177,\n",
       "          \"Notes\": \"Funding for this project will be used to implement Low-Tech Process-Based Restoration techniques (which include Beaver Dam Analogs, Post Assisted Woody Structures, and other similar structures) throughout the Sprague River Watershed in order to reduce se\",\n",
       "          \"OBJECTID\": 1145,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Sprague Watershed Low-Tech Process-Based Restoration Collaboration\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 807086.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.19840978,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -121.8023177,\n",
       "          \"Notes\": \"Funding will be deployed for habitat restoration within the Bootleg Fire Area. An assessment of stream conditions and identification of necessary restoration throughout the Klamath Tribes Treaty Boundary area will commence with an emphasis on the ability\",\n",
       "          \"OBJECTID\": 901,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Climate Change Resiliency Stream Restoration and Post-Bootleg Fire Stream Stabilization and Restoration\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2668147.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.19840978,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -121.8023177,\n",
       "          \"Notes\": \"Funding for this project will be used for the construction of four pumping stations, two each in both Lower Klamath National Wildlife Refuge and Tule Lake National Wildlife Refuge. Together, these pumping stations will improve water supply reliability an\",\n",
       "          \"OBJECTID\": 993,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Improving Wetland Habitat through Irrigation Efficiencies on Lower Klamath and Tule Lake National Wildlife Refuges\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.19840978,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -121.8023177,\n",
       "          \"Notes\": \"Funds for this project will be used to achieve site surveys, geomorphic assessment, hydrology and hydraulics analysis, engineering design drawings, environmental compliance, and development of a pre- and post-project monitoring plan. The Upper Williamson\",\n",
       "          \"OBJECTID\": 1114,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Restoration of the Upper Williamson River including Rocky Ford Ranch\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 150000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.19840978,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -121.8023177,\n",
       "          \"Notes\": \"Funding will be used for project engineering designs and project implementation. Funds will also be used to develop a post-project monitoring plan. Barkley Springs is the largest of six spring complexes on the east side of Upper Klamath Lake (UKL). Histo\",\n",
       "          \"OBJECTID\": 1113,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Restoration of the Barkley Springs Complex\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 50000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.19840978,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -121.8023177,\n",
       "          \"Notes\": \"Funding is for the Klamath Tribes to monitor Lost River sucker spawning and success of Reclamation-funded projects that were designed to enhance sucker spawning sites. A population of Lost River suckers spawn exclusively at eastern shoreline springs in U\",\n",
       "          \"OBJECTID\": 1169,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Upper Klamath Lake Shoreline Sucker Spawning Habitat\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 10000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.19840978,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -121.8023177,\n",
       "          \"Notes\": \"The infrastructure investment into the hatchery\\u2019s expansion will increase rearing capacity and help prevent the extinction of two federally listed species, the Lost River and shortnose suckers (C\\u2019waam and Koptu). These fish are found only in the Klam\",\n",
       "          \"OBJECTID\": 966,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Expansion of the Klamath Falls National Fish Hatchery\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 225576.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.19840978,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -121.8023177,\n",
       "          \"Notes\": \"Funding for this project place large wood into the Williamson River to address limiting factors that affect spawning and juvenile rearing habitat of native fish. The project goals include augmenting spawning habitat and increasing juvenile redband trout\",\n",
       "          \"OBJECTID\": 1024,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Ecosystem - Klamath Basin\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Lower Williamson River Bothwell Property Spawning Gravel Augmentation and Large Wood Placement Project\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/pressreleases/historic-funding-president-bidens-bipartisan-infrastructure-law-headed-klamath-basin\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.802317699959,\n",
       "                42.1984097801162\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 7192667.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.46321804,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -122.5701136,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 434,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Reduce the threats of fire exclusion and conifer encroachment in oak savanna habitat through restoration actions in the Upper Rogue Watershed, Jackson County, Oregon. Project will help stabilize populations of oak-prairie dependent wildlife species, stew\",\n",
       "          \"ProjectID\": \"77537\",\n",
       "          \"ProjectTit\": \"Reducing Threats to Imperiled Oak Savannah and Woodland Ecosystems in the Upper Rogue Watershed (OR)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.570113599769,\n",
       "                42.4632180399\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.37524313,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -122.9183378,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 862,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Bear Creek Fish Passage Barriers Removal\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.918337800435,\n",
       "                42.3752431300752\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.68638,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -121.65,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1173,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Van Brimmer Ditch Company, Van Brimmer Falvey Road Piping Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.649999999984,\n",
       "                42.6863800002367\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 200000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.25316986,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -123.8310759,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 202,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Place log and boulder structures within approximately 1 mile of Tioga Creek to increase complexity, improve rearing and spawning habitat, and create edge habitat for high velocity refuge\",\n",
       "          \"ProjectID\": \"050XX02OR3322\",\n",
       "          \"ProjectTit\": \"Tioga Creek Fish habitat Improvements\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.831075900259,\n",
       "                43.2531698600447\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.85249222,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -123.3848948,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 807,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The 76-acre Formosa Mine Site is located on Silver Butte in Douglas County, Oregon. This abandoned mine discharges millions of gallons of acid rock drainage and toxic metals into the upper reaches of the Middle Creek and South Fork Middle Creek watershed\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"FORMOSA MINE\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.384894799842,\n",
       "                42.8524922201994\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 75000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.26444564,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -124.0689359,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 198,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Replacement of 2 barrier culverts.  Once the project is implemented, it will allow fish access to approximately 1.02 miles of high-quality, low gradient fish habitat.\",\n",
       "          \"ProjectID\": \"050XX02OR1622\",\n",
       "          \"ProjectTit\": \"Woodward Creek Watershed Habitat Improvement\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -124.068935900437,\n",
       "                43.2644456401105\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 3406521.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 43.3889191,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -124.2653775,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1180,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Waite Ranch Tidal Wetland Restoration Project\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -124.265377499695,\n",
       "                43.3889191001183\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 42.40472549,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -124.4191817,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1135,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Sixes Riverbank Restoration and Estuary Enhancement\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -124.419181700361,\n",
       "                42.4047254900808\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 80000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.2069,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -124.1328,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 209,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Removal of invasive weeds improves the persistence of native species.\",\n",
       "          \"ProjectID\": \"050XX06CA1822\",\n",
       "          \"ProjectTit\": \"Invasive Weeds Treatment King Range NCA\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -124.132799999611,\n",
       "                40.2069000000825\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 80000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.80203333,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -124.1076833,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 959,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Eradicating Invasive Plants to Support Native Species in the Kings Range Conservation Area in California\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -124.1076833001,\n",
       "                40.8020333301823\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 275000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.556,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -122.483,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 190,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project is close to the city of Redding, CA and the project area is used for recreation. The goal is to reduce hazards from fire killed trees and reduce the build up of wildfire fuels from dead, falling trees.\",\n",
       "          \"ProjectID\": \"050XX02CA3622\",\n",
       "          \"ProjectTit\": \"Carr Fire Trail and Cultural Restoration\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.482999999708,\n",
       "                40.5560000000257\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.28256703,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -122.1545035,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 189,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The project will construct approximately 5 miles of riparian fencing to control livestock grazing and protect habitat for ESA listed fishes.\",\n",
       "          \"ProjectID\": \"050XX02CA2822\",\n",
       "          \"ProjectTit\": \"Payne's Creek Riparian Restoration\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.154503499774,\n",
       "                40.2825670302545\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 547853.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 40.3392,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -123.9052,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 191,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Restore and connect climate-resilient cold-water habitat in the Eel River by suppressing non-native predatory pikeminnow.\",\n",
       "          \"ProjectID\": \"050XX02CA4522\",\n",
       "          \"ProjectTit\": \"Eel River Climate Resilience Refugia Protection\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.905199999652,\n",
       "                40.3392000003068\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 10000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.8122,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -121.6106,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 187,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Reduce wildfire fuels adjacent to the wildland urban interface (WUI). The project site is adjacent to the community of Paradise, California and within the Camp fire burn area. Large amounts of dead trees from the severe fire are falling and causing a fir\",\n",
       "          \"ProjectID\": \"050XX02CA0122\",\n",
       "          \"ProjectTit\": \"Coutolenc Hazardous Fuels Removal\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.610600000319,\n",
       "                39.8121999997117\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 3000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.59814,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -122.392,\n",
       "          \"Notes\": \"The Stony Gorge spillway gates are in poor condition which, according to the most recent 2021 PFR, \\u201c\\u2026impacts their operability and reliability and puts the dam at risk\\u2026\\u201d and warranted the issuance of a Category 1. Funding is provided for a planni\",\n",
       "          \"OBJECTID\": 1066,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Orland\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.392000000266,\n",
       "                39.5981400000803\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1270299.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.8145618,\n",
       "          \"LatLongTyp\": \"Round Valley Indian Tribes\",\n",
       "          \"Long\": -123.2487823,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 686,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Tribal Priority Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"The Round Valley Indian Tribes will support building tribal capacity to engage in the decommissioning process and dam removal at the Potter Valley Project on the Eel River. The river is a historic tribal source of livelihood, sustenance, and connection t\",\n",
       "          \"ProjectID\": \"NOAA_004\",\n",
       "          \"ProjectTit\": \"Potter Valley Project on the Eel River\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.248782299757,\n",
       "                39.8145617997209\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 39.26316756,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -121.62205839,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1384,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Remove the existing Sunset Weir, a 10-foot tall boulder weir in the Feather River, and modify the appurtenant pumps to allow for unimpeded passage for threatened salmon, steelhead, and sturgeon. Project will contribute to conservation and climate resilie\",\n",
       "          \"ProjectID\": \"81139\",\n",
       "          \"ProjectTit\": \"Expanding Salmon Habitat Connectivity on the Feather River (CA)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.622058391755,\n",
       "                39.263167556418\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.91,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -121.792,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 999,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Irrigation Efficiency Upgrades and Water Savings SCADA and Automated Water Delivery Systems\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4247\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.792000000051,\n",
       "                38.9099999996611\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 6934655.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.58,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -122.988,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1056,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water Recycling\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"North Bay Reuse Program: Phase 2 Program\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4296\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.988000000152,\n",
       "                38.5799999996869\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1986672.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.70750498,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -122.9028134,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 33,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The Tribe will implement a pilot project identified in their 2016 climate adaptation plan related to the Dry Creek Rancheria-owned vineyard properties. The project is also funded in part through Tribal Climate Resilence (TCR) annual appropriations.\",\n",
       "          \"ProjectID\": \"{3FE603FA-0EEC-45EB-A4CA-1C4E2414F70F}\",\n",
       "          \"ProjectTit\": \"Flood-MAR Pilot Project and Alexander Reach Climate Resiliency Plan\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.902813400461,\n",
       "                38.7075049824807\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 15000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.71295846,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -121.6524093,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 452,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Develop designs and engage stakeholders for the restoration of historic floodplains and tidal marsh in the Yolo Bypass of the Sacramento River in California. Project will advance plans for a new sustainable floodway management regime using infrastructure\",\n",
       "          \"ProjectID\": \"78045\",\n",
       "          \"ProjectTit\": \"Floodplain and Tidal Wetland Restoration Design in the Yolo Bypass of the Sacramento River (CA)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.652409300441,\n",
       "                38.7129584596709\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 594079.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.51059667,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -122.7910502,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1272,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The project proposes development of a vulnerability assessment, data analysis and gathering, and a water resources climate adaptation plan for an off rancheria campground property along the Russian River. Water resource actions to be addressed in the pla\",\n",
       "          \"ProjectID\": \"[DOI - 024|594079|Dry Creek Ranch]\",\n",
       "          \"ProjectTit\": \"Alexander Valley RV Park and Campground Water Resource Climate Adaptation Plan\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.791050199683,\n",
       "                38.5105966702712\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 3000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.26996,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -121.933,\n",
       "          \"Notes\": \"The purpose of the project is to conduct seismic upgrades and risk reductions to the 3\\u2010mile\\u2010long Terminal Check portion of the Putah South Canal (PSC). The Terminal Check portion of the PSC crosses 2\\u2010active earthquake faults, the Concord \\u2013 Green\",\n",
       "          \"OBJECTID\": 1138,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Solano\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.933000000034,\n",
       "                38.2699599998081\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior and Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service and the Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 1000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.5233264,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -123.23546398,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1377,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Engage scientists, engineers and consultants to assess the current state of red abalone populations in Northern California, plan for the restoration of abalone in wild habitat, and co-design abalone production infrastructure on Tribal and partner propert\",\n",
       "          \"ProjectID\": \"80253\",\n",
       "          \"ProjectTit\": \"Tribal-led Restoration Alliance to Restore Red Abalone in Northern California\\u2019s Kelp Forest\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -123.23546397617,\n",
       "                38.5233264001821\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1531635.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.22349279,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -122.2662548,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 914,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Creating Long-Term Water Supply Resiliency for the Communities of Ukiah Valley and the Upper Russian River\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.266254799671,\n",
       "                38.2234927900893\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.93696588,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -122.5183081,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1011,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Lagunitas Creek Stream Channel Restoration Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.518308099592,\n",
       "                37.9369658799834\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 9949795.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.7973098,\n",
       "          \"LatLongTyp\": \"California Trout Office\",\n",
       "          \"Long\": -122.402747,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 698,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"California Trout will plan and design the removal of a rockfall barrier and obsolete fishway in Big Chico Creek. The project will reconnect access to more than 8 miles of high-quality habitat for Central Valley Spring Run Chinook and Central Valley steel\",\n",
       "          \"ProjectID\": \"NOAA_016\",\n",
       "          \"ProjectTit\": \"Removal of a rockfall barrier and obsolete fishway in Big Chico Creek\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.40274699966,\n",
       "                37.7973098002349\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 3257851.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.7973098,\n",
       "          \"LatLongTyp\": \"California Trout Office\",\n",
       "          \"Long\": -122.402747,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 697,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"California Trout will remove and replace a bridge on the Santa Margarita River. The new, 575-foot bridge will be sized to accommodate a 500-year flood event, increasing community climate resilience. The new bridge will also provide access to 12 miles of\",\n",
       "          \"ProjectID\": \"NOAA_015\",\n",
       "          \"ProjectTit\": \"Replacement of a bridge on the Santa Margarita River\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.40274699966,\n",
       "                37.7973098002349\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 293267.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.79517325,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -122.40278437,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1445,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Implement a multistate Pollinator Steward Certification program to foster community engagement in conservation, and provide technical assistance to private landowners in priority Monarch Butterfly Working Land for Wildlife locations. Project will target\",\n",
       "          \"ProjectID\": \"79878\",\n",
       "          \"ProjectTit\": \"Project Wingspan: Monarch Butterfly Pollinator Steward Certification Program (IL, IN, OH)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"M\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.402784369575,\n",
       "                37.7951732465537\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 6222830.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.84262273,\n",
       "          \"LatLongTyp\": \"Trout Unlimited, CA\",\n",
       "          \"Long\": -122.2879822,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 700,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"Trout Unlimited will support the removal of nine barriers on the Eel, Noyo, Navarro, and Big Rivers by constructing seven projects and designing two additional projects. The work will benefit endangered Central California Coast coho salmon (a NOAA Specie\",\n",
       "          \"ProjectID\": \"NOAA_018\",\n",
       "          \"ProjectTit\": \"Removal of nine barriers in California\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.287982199633,\n",
       "                37.8426227299413\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 45000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.66879801,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -121.8714753,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1081,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Pleasanton, Pleasanton Eco-Friendly Lawn Conversion Rebate Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.871475299811,\n",
       "                37.668798009743\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.59896173,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -122.3980166,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1031,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Millbrae, Drought-Tolerant Landscaping\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.398016599833,\n",
       "                37.5989617298029\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 12867875.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.43,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -122.129,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1071,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water Recycling\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Palo Alto Advanced Water Purification System\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4296\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.129000000074,\n",
       "                37.4300000001553\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.05619,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -122.002,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1130,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"San Lorenzo Valley Water District, Water Meter Replacement Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -122.002000000351,\n",
       "                37.0561899998112\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 20925000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.986,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -121.949,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1091,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water Recycling\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Pure Water Soquel: Groundwater Replenishment and Seawater Intrusion Prevention Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4296\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.948999999561,\n",
       "                36.9859999999253\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.80167814,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -121.7881411,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1029,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"MBARI Cooperative Agreement\",\n",
       "          \"ProjectWeb\": \"https://www.usgs.gov/news/national-news-release/bipartisan-infrastructure-law-investments-combine-science-and-technology\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.788141099898,\n",
       "                36.8016781396653\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.65763278,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -121.6087347,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1126,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Salinas River Arundo Eradication Project Phase V\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.608734699836,\n",
       "                36.6576327797869\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 10316822.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.57,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -121.819,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 965,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water Recycling\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Expand Pure Water Monterey Groundwater Replenishment Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4296\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -121.818999999589,\n",
       "                36.5699999999405\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 9310095.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.375,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -120.86,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1188,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water Recycling\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Water Reclamation Facility Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4296\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.860000000224,\n",
       "                35.374999999638\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 14124000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.141,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -120.644,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 892,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water Recycling\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Central Coast Blue\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4296\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.644000000326,\n",
       "                35.1410000002915\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.49,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -119.145,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 883,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Calloway Canal Lining\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4247\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.145000000318,\n",
       "                35.4899999997368\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"Department-Wide Programs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.44,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -119.076,\n",
       "          \"Notes\": \"This project's exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 8 wells\",\n",
       "          \"OBJECTID\": 1278,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Orphaned Well Site Plugging, Remediation, And Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 006||Bakersfield Fie]\",\n",
       "          \"ProjectTit\": \"Bakersfield Field Office BLM Lands\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.076000000001,\n",
       "                35.4400000000009\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 61903.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.34265,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -118.73,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1134,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Shafter-Wasco Irrigation District, Energy Efficiency Improvement to Kimberlina Recharge Facility\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -118.730000000131,\n",
       "                35.3426499997629\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.41,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -118.509,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 858,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Automated Metering Infrastructure Project (Phase 1)\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4247\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -118.50899999982,\n",
       "                34.4099999998269\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 9659990.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.404,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -119.527,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 887,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water Recycling\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Carpinteria Advanced Purification Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4296\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.526999999572,\n",
       "                34.4040000002838\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Commerce\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2185330.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.51310456,\n",
       "          \"LatLongTyp\": \"Jalama Creek\",\n",
       "          \"Long\": -120.4790496,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 699,\n",
       "          \"ParentProg\": \"NOAA BIL OHC\",\n",
       "          \"ProgramNam\": \"Restoring Fish Passage through Barrier Removal Grants\",\n",
       "          \"ProjectDes\": \"The Nature Conservancy will address two barriers on Jalama Creek that are high priority for Southern California steelhead. They will completely remove a weir at one site. At a second site, they will build a roughened channel to address passage at Jalama\",\n",
       "          \"ProjectID\": \"NOAA_017\",\n",
       "          \"ProjectTit\": \"Jalama Creek restoration\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Proposed for Funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.479049599735,\n",
       "                34.5131045598971\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.2783352,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -119.2931676,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1127,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"San Buenaventura, Expanding Turf Removal Rebate\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.293167599563,\n",
       "                34.2783352001482\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 14026650.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.278,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -119.27,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1175,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water Recycling\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Ventura Water Pure Program\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4296\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.269999999877,\n",
       "                34.2779999999953\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"Department-Wide Programs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.97,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -119.991,\n",
       "          \"Notes\": \"This project's exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 2 wells\",\n",
       "          \"OBJECTID\": 1286,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Orphaned Well Site Plugging, Remediation, And Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 032||Channel Islands]\",\n",
       "          \"ProjectTit\": \"Channel Islands National Park\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.991000000218,\n",
       "                33.9700000001205\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 9941533.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.22,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -117.309,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1089,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water Recycling\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Pure Water Oceanside Program\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4296\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.309000000286,\n",
       "                33.2199999996921\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 17826952.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.067,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -117.246,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1062,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water Recycling\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"North San Diego Water Reuse Coalition Regional Recycled Water Program: 2020 Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4296\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.245999999567,\n",
       "                33.0669999996671\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 358160.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.36648928,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -117.0689192,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1285,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The Pala Band of Mission Indians (PBMI) Planet Pala Information Campaign for Climate Resilience (Planet Pala ICCR) is a hands-on climate adaptation and hazard mitigation program that addresses vulnerabilities identified in the Tribe\\u2019s Climate Change Vu\",\n",
       "          \"ProjectID\": \"[DOI - 022|358160|Pala Band of Mi]\",\n",
       "          \"ProjectTit\": \"California Wildfire, Water, and Health Intertribal Resilience Data Development Project\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.068919200333,\n",
       "                33.3664892796759\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 224539.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.36520484,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -117.07651193,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 6,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"This project will develop and analyze wildfire-related illness and water supply datasets to help inform and advance multipleTribes\\u2019 climate vulnerability assessments and adaptation planning, decision-making, and monitoring efforts.\",\n",
       "          \"ProjectID\": \"{2E4DB6E2-DB1B-484F-A25F-9F039EFE2A37}\",\n",
       "          \"ProjectTit\": \"California Wildfire, Water, and Health Intertribal Resilience Data Development Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.076511932693,\n",
       "                33.3652048413216\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 358160.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.36520484,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -117.07651193,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 56,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The Planet Pala Information Campaign for Climate Resilience is a hands-on climate adaptation and hazard mitigation program that addresses vulnerabilities identified in the Tribe\\u2019s Climate Change Vulnerability Assessment and Hazard Mitigation Plan.\",\n",
       "          \"ProjectID\": \"{5BF3190B-CB42-4442-A957-70F04B008D21}\",\n",
       "          \"ProjectTit\": \"Planet Pala Information Campaign for Climate Resilience\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.076511932693,\n",
       "                33.3652048413216\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 7928615.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.581,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -117.63,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1129,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water Recycling\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"San Juan Watershed Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4296\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.629999999885,\n",
       "                33.5810000000864\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.74520936,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -116.9849977,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 987,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Hemet, Landscape Irrigation Controller Rebate Program\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.984997699854,\n",
       "                33.7452093601569\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 10000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.76,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -117.184,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1093,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water Recycling\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Purified Water Replenishment Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4296\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.18399999983,\n",
       "                33.7599999997332\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.87,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -117.566,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 841,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Advanced Metering Infrastructure Program\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4247\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.565999999982,\n",
       "                33.8700000003548\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 12245625.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.67,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -117.819,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1156,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water Recycling\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Syphon Reservoir Improvement Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4296\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.819000000245,\n",
       "                33.6699999996789\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 15478307.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.83,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -118.159,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 980,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water Recycling\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Groundwater Reliability Improvement Program Recycled Water Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4296\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -118.158999999619,\n",
       "                33.8299999997626\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.82877795,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -117.9361393,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 849,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Anaheim, Central Anaheim Smart Irrigation Controller Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.936139299995,\n",
       "                33.8287779502521\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.05,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -118.236,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1103,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Regional Public Agency Turf Replacement Program\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4247\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -118.235999999699,\n",
       "                34.0500000001135\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.0522342,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -118.2436849,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 915,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Crescenta Valley Water District, Water Meter Enhancement Advanced Metering Infrastructure Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -118.243684900105,\n",
       "                34.0522341998743\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 10199637.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.136,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -118.702,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1090,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water Recycling\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Pure Water Project Las Virgenes-Triunfo\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4296\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -118.701999999612,\n",
       "                34.1360000000661\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 12275000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.01,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -117.529,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1002,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water Recycling\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Joint IEUA-JCSD Recycled Water Intertie Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4296\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.528999999617,\n",
       "                34.0100000002769\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.98428297,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -117.3518284,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1201,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Western Municipal Water District, Drought-Tolerant Landscape Transformation for March Field Air Museum Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.351828399572,\n",
       "                33.9842829700144\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.06981719,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -117.2769503,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 852,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Anza Creek Aquatic and Riparian Habitat Restoration Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.276950300143,\n",
       "                34.069817189831\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.1107726,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -117.3842395,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 899,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"City 3A Groundwater Well Treatment Facility Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.384239500039,\n",
       "                34.1107725997143\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.11,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -117.37,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 840,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Advanced Metering Infrastructure Implementation Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4247\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.369999999941,\n",
       "                34.1100000003467\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 50000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.04927033,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -116.7511187,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 208,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Whitewater Canyon Tamarisk Eradication. Invasive species removal in ACEC, Wilderness, Wild and Scenic River Corridor within the Sand to Snow National Monument. Project would maintain initial fuels treatment that removed invasive species that posed signif\",\n",
       "          \"ProjectID\": \"050XX06CA1222\",\n",
       "          \"ProjectTit\": \"Sand to Snow National Monument Reslience\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.751118699739,\n",
       "                34.0492703299211\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 8267112.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.26,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -116.815,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1109,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water Recycling\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Replenish Big Bear Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4296\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.814999999854,\n",
       "                34.2600000000071\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.24925903,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -116.8974884,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 866,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Big Bear Lake, Pontell Hydropneumatic System Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.897488399995,\n",
       "                34.2492590303704\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1600000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.24500208,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -116.9297607,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1205,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Wolf Reservoir Boosters and Pipeline Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.92976069997,\n",
       "                34.2450020800217\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"<Null>\",\n",
       "          \"FundingAmo\": 1000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.16803793,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -114.27731418,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 11,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Irrigation and Power Systems\",\n",
       "          \"ProjectDes\": \"Provides electrical service to approximately 4,200 customers, through 8 substations and 463 miles of power line.\",\n",
       "          \"ProjectID\": \"{1466C5A3-4AC6-4C30-9944-EBF7780934E4}\",\n",
       "          \"ProjectTit\": \"Colorado River Agency Electrical Serivices\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.277314183229,\n",
       "                34.1680379274084\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1850000.0,\n",
       "          \"ImageLink\": \"https://dwpdst.doi.gov/power/BIL_Funding/ColoradoRiverHeadgates.jpg\",\n",
       "          \"Lat\": 34.07010813,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -114.32531121,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 12,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Irrigation and Power Systems\",\n",
       "          \"ProjectDes\": \"The Colorado River Indian Irrigation Project provides irrigation water to over 79,500 acres, 100% Trust lands, with an estimated direct harvest benefit of $120 million.\",\n",
       "          \"ProjectID\": \"{EC1B80A3-73C1-46B9-92DA-A8CF711490CD}\",\n",
       "          \"ProjectTit\": \"Colorado River Irrigation Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.325311210182,\n",
       "                34.0701081293447\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 8975640.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.74364,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -115.994,\n",
       "          \"Notes\": \"CVWD's entire distribution system off of the Coachella Canal is buried pipeline underground. The district has been proactive in identifying and prioritizing capital improvement projects to replace box diversions and underground pipelines that service the\",\n",
       "          \"OBJECTID\": 1225,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yuma Area Projects - Irrigation Lateral 123.45-1.3 and 2.8 Box Replacement\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.994000000225,\n",
       "                33.7436399999514\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 5732250.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.74364,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -115.994,\n",
       "          \"Notes\": \"CVWD's entire distribution system off of the Coachella Canal is buried pipeline underground. The district has been proactive in identifying and prioritizing capital improvement projects to replace box diversions and underground pipelines that service the\",\n",
       "          \"OBJECTID\": 1219,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yuma Area Projects - Irrigation Lateral 101.3 Replacement\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.994000000225,\n",
       "                33.7436399999514\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 6448650.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.74364,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -115.994,\n",
       "          \"Notes\": \"CVWD's entire distribution system off of the Coachella Canal is buried pipeline underground. The district has been proactive in identifying and prioritizing capital improvement projects to replace box diversions and underground pipelines that service the\",\n",
       "          \"OBJECTID\": 1220,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yuma Area Projects - Irrigation Lateral 102.3 Replacement\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.994000000225,\n",
       "                33.7436399999514\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1469400.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.74364,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -115.994,\n",
       "          \"Notes\": \"CVWD's entire distribution system off of the Coachella Canal is buried pipeline underground. The district has been proactive in identifying and prioritizing capital improvement projects to replace box diversions and underground pipelines that service the\",\n",
       "          \"OBJECTID\": 1221,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yuma Area Projects - Irrigation Lateral 119.64-2.6 Replacement\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.994000000225,\n",
       "                33.7436399999514\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 10607000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.74364,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -115.994,\n",
       "          \"Notes\": \"CVWD's entire distribution system off of the Coachella Canal is buried pipeline underground. The district has been proactive in identifying and prioritizing capital improvement projects to replace box diversions and underground pipelines that service the\",\n",
       "          \"OBJECTID\": 1228,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yuma Area Projects - Irrigation Lateral 99.8-0.51-3.0 Replacement\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.994000000225,\n",
       "                33.7436399999514\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 4195225.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.74364,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -115.994,\n",
       "          \"Notes\": \"CVWD's entire distribution system off of the Coachella Canal is buried pipeline underground. The district has been proactive in identifying and prioritizing capital improvement projects to replace box diversions and underground pipelines that service the\",\n",
       "          \"OBJECTID\": 1227,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yuma Area Projects - Irrigation Lateral 2.2 Box Replacement\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.994000000225,\n",
       "                33.7436399999514\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 9231950.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.74364,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -115.994,\n",
       "          \"Notes\": \"CVWD's entire distribution system off of the Coachella Canal is buried pipeline underground. The district has been proactive in identifying and prioritizing capital improvement projects to replace box diversions and underground pipelines that service the\",\n",
       "          \"OBJECTID\": 1222,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yuma Area Projects - Irrigation Lateral 119.64-7.5 Replacement\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.994000000225,\n",
       "                33.7436399999514\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 8173450.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.74364,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -115.994,\n",
       "          \"Notes\": \"CVWD's entire distribution system off of the Coachella Canal is buried pipeline underground. The district has been proactive in identifying and prioritizing capital improvement projects to replace box diversions and underground pipelines that service the\",\n",
       "          \"OBJECTID\": 1226,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yuma Area Projects - Irrigation Lateral 123.45 1.3-2.8 Replacement\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.994000000225,\n",
       "                33.7436399999514\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1707340.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.74364,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -115.994,\n",
       "          \"Notes\": \"CVWD's entire distribution system off of the Coachella Canal is buried pipeline underground. The district has been proactive in identifying and prioritizing capital improvement projects to replace box diversions and underground pipelines that service the\",\n",
       "          \"OBJECTID\": 1223,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yuma Area Projects - Irrigation Lateral 123.45-1.3-2.2 Phase 2 Replacement\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.994000000225,\n",
       "                33.7436399999514\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 4390520.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.74364,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -115.994,\n",
       "          \"Notes\": \"CVWD's entire distribution system off of the Coachella Canal is buried pipeline underground. The district has been proactive in identifying and prioritizing capital improvement projects to replace box diversions and underground pipelines that service the\",\n",
       "          \"OBJECTID\": 1224,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yuma Area Projects - Irrigation Lateral 123.45-1.3-3.2 RT\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.994000000225,\n",
       "                33.7436399999514\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.79152838,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -116.5213849,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 921,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Desert Water Agency, Desert Water Agency Grass Removal Program\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.521384900045,\n",
       "                33.7915283797859\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 950000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.82167802,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -116.5223118,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 239,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project will increase the availability of native seed resources for restoration by establishing native seed collection teams to meet habitat restoration objectives in the Mojave Desert using the science-based Seeds of Success protocols, and this pro\",\n",
       "          \"ProjectID\": \"050XX09MU5022\",\n",
       "          \"ProjectTit\": \"Mojave Ecoregional Seed Collection and Production\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.522311799721,\n",
       "                33.8216780201282\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 12276517.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.67,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -116.166,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1189,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water Recycling\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Water Reclamation Plant 10 (WRP-10) Non-Potable Water System\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4296\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.166000000077,\n",
       "                33.6699999996789\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.09427495,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -115.9394319,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 211,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Invasive tamarisk established in San Sebastian Marsh negatively impact natural ecosystem functioning, native plant communities, and wildlife habitat, especially impacting species of conservation concern including endangered Desert Pupfish. Invasive tamar\",\n",
       "          \"ProjectID\": \"050XX06CA2522\",\n",
       "          \"ProjectTit\": \"San Sebastian Marsh Tamarisk Removal\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.939431900275,\n",
       "                33.0942749500698\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 5957539.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.03951,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -115.365,\n",
       "          \"Notes\": \"Project is an Imperial Dam project that was identified as a significant need with a significant cost to underfunded California users of Colorado Water. In the current state, the desilting basins at Imperial Dam are minimally functional, leaving excess se\",\n",
       "          \"OBJECTID\": 1212,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yuma Area Projects - desilting\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.365000000305,\n",
       "                33.0395100001165\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1368111.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.03951,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -115.365,\n",
       "          \"Notes\": \"Project is an Imperial Dam project with minimal design and permitting requirements, and is operated to deliver Colorado River water in southern California. Funding is provided for implementation.\",\n",
       "          \"OBJECTID\": 1211,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yuma Area Projects - CA\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.365000000305,\n",
       "                33.0395100001165\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.03951,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -115.365,\n",
       "          \"Notes\": \"Much like YMIDD, BWD has a manually operated system that needs to be put on SCADA to realize efficiencies in water operation.  This project would fund the evaluation, design, and implementation of SCADA on major checks and turnouts on the system. Funding\",\n",
       "          \"OBJECTID\": 1210,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yuma Area Projects - BWD\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.365000000305,\n",
       "                33.0395100001165\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 75000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.03951,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -115.365,\n",
       "          \"Notes\": \"The distribution system that serves Bard Water District (BWD) in the Reservation Division is past its design life and is inefficient. A  history of being underfunded has left a multitude of large capital projects without adequate funding in reserves to f\",\n",
       "          \"OBJECTID\": 1209,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yuma Area Projects - Bard\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.365000000305,\n",
       "                33.0395100001165\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 637172.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.03951,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -115.365,\n",
       "          \"Notes\": \"This is a shovel ready project related to Imperial Dam and the All-American Canal (AAC) to refurbish check gates at PK. PK is the last diversion off the AAC and the Colorado River in order to deliver water to Mexico at the Northerly International Boundar\",\n",
       "          \"OBJECTID\": 1208,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yuma Area Projects - AAC\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.365000000305,\n",
       "                33.0395100001165\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 200000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.03951,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -115.365,\n",
       "          \"Notes\": \"This project is proposed by BWD to replace the maintenance shop with a more modern and efficient facility. Funding is provided for implementation.\",\n",
       "          \"OBJECTID\": 1229,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yuma Area Projects - Maintenance Building\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.365000000305,\n",
       "                33.0395100001165\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 7500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.03951,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -115.365,\n",
       "          \"Notes\": \"The Mid-Canal Storage project will provide critically needed in line storage on the Coachella Canal, which services Coachella Valley Water District (CVWD), Imperial Irrigation District, and benefits parties including San Luis Rey Bands and The Metropolit\",\n",
       "          \"OBJECTID\": 1230,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yuma Area Projects - mid-canal\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.365000000305,\n",
       "                33.0395100001165\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 22000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.02515728,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -112.0669392,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1271,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Indian Water Rights Settlements\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 028|22000000|Ak-Chin Indian ]\",\n",
       "          \"ProjectTit\": \"Ak-Chin Indian Water Rights Settlement Operations, Maintenance & Replacement\\u202f\\u00a0\\u00a0\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/bipartisan-infrastructure-law-supports-580-million-investment-fulfill-indian-water\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.066939199957,\n",
       "                33.0251572798693\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 35000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.13458,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -111.7949131,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1311,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Indian Water Rights Settlements\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 029|35000000|Gila River Indi]\",\n",
       "          \"ProjectTit\": \"Gila River Indian Community - Pima Maricopa Irrigation Project\\u202f\\u00a0\\u00a0\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/bipartisan-infrastructure-law-supports-580-million-investment-fulfill-indian-water\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.794913100267,\n",
       "                33.1345799996473\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.44605588,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -111.9512871,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1124,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Roosevelt Watershed Protection and Forest Thinning Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.951287099788,\n",
       "                33.4460558798296\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.43450824,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -112.070159,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1028,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Mayer Domestic Water Improvement District, Water Meter Upgrade and Radio Read Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.070158999989,\n",
       "                33.4345082403409\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.3703197,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -112.5837766,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 875,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Buckeye Water Conservation and Drainage District, Installation of Relief Drainage and Automated Gate System on Lateral 44 Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.583776600039,\n",
       "                33.3703197000118\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Bureau of Reclamation\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 50000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.99597,\n",
       "          \"LatLongTyp\": \"Lower Colorado Basin Region\",\n",
       "          \"Long\": -111.91435,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 248,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Increase Reclamation\\u2019s biocontrol efforts. Identify locations where biocontrol would be useful as part of an IPM approach for eradication. One of the first projects could focus on Arundo biocontrol as it is widely distributed in the Reclamation Lower C\",\n",
       "          \"ProjectID\": \"070XX06MU0222\",\n",
       "          \"ProjectTit\": \"Biocontrol to Improve Invasive Plant Eradication\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.914350000358,\n",
       "                33.9959699997644\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 44120.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.77278161,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -112.4454328,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 897,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Chino Valley Water Demand Rate Study to Analyze, Develop and Deploy New Rate Structures\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.445432799773,\n",
       "                34.7727816098236\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.84137,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -116.178,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1102,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": \"Watershed revegetation and restoration to remedy detrimental affects from historic hard rock mining operations\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Red Mountain Wash Restoration\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.178000000171,\n",
       "                34.8413700000306\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.6828,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -115.4054,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 210,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"removal of invasive species from fragile and important desert springs in an effort to improve landscape and ecosystem function.\",\n",
       "          \"ProjectID\": \"050XX06CA2422\",\n",
       "          \"ProjectTit\": \"Mojave Springs Restoration and Maintenance Plan\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.405400000053,\n",
       "                34.6827999999707\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.1030764,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -114.5873367,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 879,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Bullhead City, Water Meter Conversion Metering Project Reclamation Funding\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.587336699988,\n",
       "                35.1030763997423\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Bureau of Reclamation\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 250000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.1853,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -114.5636,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 251,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The Arizona portion of the Colorado River Heritage Trail provides recreation amenities to underserved communities.  The Colorado River Heritage Trail as a whole continues to see increased public use.  Additional drainage features and incorporation of a v\",\n",
       "          \"ProjectID\": \"070XX07AZ0522\",\n",
       "          \"ProjectTit\": \"Colorado River Heritage Trail Improvements\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.563599999602,\n",
       "                35.1852999999746\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"<Null>\",\n",
       "          \"FundingAmo\": 5000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.2369054457021,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": 36.2369054457021,\n",
       "          \"Notes\": \"$5 million for Planning Grants awarded over multiple years\",\n",
       "          \"OBJECTID\": 1248,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Community Relocation\",\n",
       "          \"ProjectDes\": \"Community-driven relocation, managed retreat, and protect-in-place coordinator awards are designed to support Tribes with limited technical staffing capacity to hire a full time position to support these efforts.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Community Driven Relocation Demonstration Project - Havasupai Tribe\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.689111375795,\n",
       "                36.2369054457021\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.17424165,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -115.1477265,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1018,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Las Vegas Wash Riparian Restoration Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.147726500152,\n",
       "                36.1742416500346\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.16994042,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -115.2409348,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1038,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Moapa Valley Water District, Water Meter and Data Collection System Upgrade\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.240934800208,\n",
       "                36.1699404203553\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 95000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.16994042,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -115.2409348,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1144,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Southern Nevada Water Authority, Water Efficient Technologies Program Cooling System Upgrade Incentives\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.240934800208,\n",
       "                36.1699404203553\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.21519,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -115.014,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1178,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Virgin Valley Water District, Water Meter and Data Collection Upgrade\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -115.014000000022,\n",
       "                36.2151900002609\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 8500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.1464673,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -114.41414,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1014,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Colorado River Endangered Species Recovery and Conservation Programs\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Lake Mead State Fish Hatchery Water Intake System\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4314\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.414140000446,\n",
       "                36.1464672997295\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.71393729,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -116.234683,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 212,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Removal of invasive plant species, including tamarisk and Russian Olive, from critical riparian habitats. This will improve critical habitat for ESA listed birds.\",\n",
       "          \"ProjectID\": \"050XX06CA2622\",\n",
       "          \"ProjectTit\": \"Desert Riparian Restoration for ESA listed birds\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.234683000201,\n",
       "                35.7139372900102\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior and Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service and the Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 2782952.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.03105376,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -118.71365212,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1374,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Conduct wildfire resilience and post-fire restoration activities including hazard tree removal, ladder fuel reductions, thinning, cultural and prescribed burning, slash disposal, reforestation, and site stabilization on 2,600 acres of land. Project will\",\n",
       "          \"ProjectID\": \"79833\",\n",
       "          \"ProjectTit\": \"Wildfire Resilience and Reforestation in Parker Peak Giant Sequoia Grove (CA)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -118.713652124418,\n",
       "                36.031053764652\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 150000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 964,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending (Or Other) For National Revegetation Strategy\",\n",
       "          \"ProjectDes\": \"COLLECTION, PRODUCTION: This project will identify new Joshua tree habitat under future climate scenarios, burned over climate refugia with potential for Joshua tree augmentation, mitigate risks at these habitats, collect seed, propagate plants and outpl\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Expand Joshua Tree Source Materials to Mitigate Climate Change Impacts\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 99750.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 920,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Del Puerto Water District, Groundwater Well Remote Telemetry Program\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 882,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Direct Federal Spending (Or Other) For National Revegetation Strategy\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"California Seed Collection and Seed Production\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 209000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 903,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": \"The project will permanently close two shafts and three adits currently open and unprotected from visitor entry at Joshua Tree National Park.  Mobilize materials and equipment by helicopter.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Close and Secure 5 Abandoned Mine Hazards at Joshua Tree National Park\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 958,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Eradicating Invasive Plants to Support Desert Riparian Restoration\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 5000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 878,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Building Groundwater Reliability and Resiliency: Regional Well Installation and Water Quality Treatment Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 956,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Eradicating Invasive Plants to Protect Desert Springs at Mojave Springs in California\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1315083.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1006,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Kimberlina Pipeline Conveyance Improvement Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 976,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Goleta Water District Airport Well Treatment Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 240000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 994,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending (Or Other) For National Revegetation Strategy\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Increased Native Seed Production to Restore Native Grasslands in 14 California National Parks\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 955,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Eradicating Invasive Plants to Promote Habitat Restoration in the San Felipe Creek Watershed in California\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 888,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Carter-Bybee Recharge Basin Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 50000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 950,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Eradicating Invasive Plants in White Water Canyon to Support Restoration in Sand to Snow National Monument in California\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1202,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Westlands Water District, 7-1 Pumping Plant Metering Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1473621.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1083,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Portola Redwoods State Park Drought Resiliency Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1353519.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 880,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Cactus Basins Connector Pipeline Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1142,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Southeast Recharge Facility and Conveyance Improvements\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 850,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Anderson-Cottonwood Irrigation District, Water Conservation and Efficiency Conversion to Pipeline Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 600000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1148,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Stockton East Water District Aquifer Storage and Recovery Well\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1069,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Palmdale Water District, Water Use Efficiency Rebate Program\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1147,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Stockton-East Water District, Eight Mile Dam Automation Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 342000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1115,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending (Or Other) For National Revegetation Strategy\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Restoring California Grasslands at 14 National Parks with Native Seed Collection and Curation\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 25000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": \"The San Luis and Delta-Mendota Authority (Authority, in close coordination with Reclamation, is pursuing the B.F. Sisk Dam Raise and Reservoir expansion Project (Project) and prepared the Feasibility Study and supplemental Environmental Impact Statement\",\n",
       "          \"OBJECTID\": 859,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water & Groundwater Storage, And Conveyance\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"B.F. Sisk Dam Raise and Reservoir Expansion Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/bil/docs/spendplan-2022/Reclamation-BIL-Spend-Plan-Storage-Addendum-09-30-2022.pdf\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 860,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Bard Water District, Supervisory Control and Data Acquisition Installation Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 57753.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1163,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Turlock Irrigation District, Lateral 6 Water Control Structure Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2352759.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1164,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Turnipseed Water Bank Phase VI\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1054,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Nigiri Multi-benefit Floodplain Restoration Project\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1141,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"South Tahoe Public Utility District, Washoan and Acoma Operational Efficiency Improvement Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 30000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": \"A 1.5 million acre-foot off-stream storage reservoir in the Sacramento River system located in the Coast range mountain we of Maxwell, CA. The reservoir would utilize existing facilities pumping from the Sacramento River to fill, create two new regulatin\",\n",
       "          \"OBJECTID\": 1059,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water & Groundwater Storage, And Conveyance\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"North of Delta Off Stream Storage (NODOS or Sites)\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/bil/docs/spendplan-2022/Reclamation-BIL-Spend-Plan-Storage-Addendum-09-30-2022.pdf\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 5000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1120,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Reuse Produced Water Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1079,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Phase I - Lateral #4 Expansion Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 460891.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1063,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"North West Service Area Conjunctive Use Groundwater Recharge Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 845,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"AEWSD Drought Recovery Wells and Conjunctive Use Modeling Tool\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 82000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": \"The proposed project efficiently integrates new facilities (115,000 acre-feet of additional storage capacity and new conveyance facilities) with existing facilities (three intakes in the Delta and various regional pumping facilities) to allow Delta water\",\n",
       "          \"OBJECTID\": 1022,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water & Groundwater Storage, And Conveyance\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Los Vaqueros Expansion Phase II\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/bil/docs/spendplan-2022/Reclamation-BIL-Spend-Plan-Storage-Addendum-09-30-2022.pdf\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1131,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"San Luis Water District, Relift Canal and Third Lift Canal Monitoring\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 5000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.3754883,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -119.2720108,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1125,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"S Wells Per- & Polyfluoroalkyl Substances Treatment & Disinfection Facilities\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.272010799588,\n",
       "                36.3754883000092\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.05833333,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -120.8685833,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1040,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Dam Safety Program\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Modification Of B.F. Sisk Dam\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4142\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.868583300356,\n",
       "                37.0583333300084\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Park Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 240000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.769924,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -121.52641,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 290,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"PRODUCTION: Effective restoration requires locally adapted and regionally grown native plant materials. This project will support 14 National Parks in California for nursery operations and regional production capacity for seed amplification to restore na\",\n",
       "          \"ProjectID\": \"100XX09CA2422\",\n",
       "          \"ProjectTit\": \"Increase native seed production for 14 CA parks\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"14\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.240938999953,\n",
       "                32.6722259997996\n",
       "              ],\n",
       "              [\n",
       "                -120.095419999961,\n",
       "                33.9663719997635\n",
       "              ],\n",
       "              [\n",
       "                -118.734609999659,\n",
       "                34.0923519996931\n",
       "              ],\n",
       "              [\n",
       "                -121.17114100036,\n",
       "                36.48625099992\n",
       "              ],\n",
       "              [\n",
       "                -118.772718999887,\n",
       "                36.564720999905\n",
       "              ],\n",
       "              [\n",
       "                -119.085095000282,\n",
       "                37.6251259997248\n",
       "              ],\n",
       "              [\n",
       "                -119.516587999915,\n",
       "                37.8405480001599\n",
       "              ],\n",
       "              [\n",
       "                -122.51775200021,\n",
       "                37.8499270003215\n",
       "              ],\n",
       "              [\n",
       "                -122.132207999837,\n",
       "                37.991361000132\n",
       "              ],\n",
       "              [\n",
       "                -122.917612000313,\n",
       "                38.0705320000274\n",
       "              ],\n",
       "              [\n",
       "                -121.404335999861,\n",
       "                40.4913839996807\n",
       "              ],\n",
       "              [\n",
       "                -122.32621199991,\n",
       "                40.8273000002039\n",
       "              ],\n",
       "              [\n",
       "                -124.050501000265,\n",
       "                41.7680750003051\n",
       "              ],\n",
       "              [\n",
       "                -121.526409999689,\n",
       "                41.7699239999519\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Park Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 342000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 41.769924,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -121.52641,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 291,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"COLLECTION: Ecoregional collaboration from seed to seed is critical to sustain NPS grassland resources in California from impairment in the face of climate change. This project will collect and curate seed to support native plant materials development an\",\n",
       "          \"ProjectID\": \"100XX09CA2722\",\n",
       "          \"ProjectTit\": \"Collect and curate native seed for 14 CA parks\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"14\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.240938999953,\n",
       "                32.6722259997996\n",
       "              ],\n",
       "              [\n",
       "                -120.095419999961,\n",
       "                33.9663719997635\n",
       "              ],\n",
       "              [\n",
       "                -118.734609999659,\n",
       "                34.0923519996931\n",
       "              ],\n",
       "              [\n",
       "                -121.17114100036,\n",
       "                36.48625099992\n",
       "              ],\n",
       "              [\n",
       "                -118.772718999887,\n",
       "                36.564720999905\n",
       "              ],\n",
       "              [\n",
       "                -119.085095000282,\n",
       "                37.6251259997248\n",
       "              ],\n",
       "              [\n",
       "                -119.516587999915,\n",
       "                37.8405480001599\n",
       "              ],\n",
       "              [\n",
       "                -122.51775200021,\n",
       "                37.8499270003215\n",
       "              ],\n",
       "              [\n",
       "                -122.132207999837,\n",
       "                37.991361000132\n",
       "              ],\n",
       "              [\n",
       "                -122.917612000313,\n",
       "                38.0705320000274\n",
       "              ],\n",
       "              [\n",
       "                -121.404335999861,\n",
       "                40.4913839996807\n",
       "              ],\n",
       "              [\n",
       "                -122.32621199991,\n",
       "                40.8273000002039\n",
       "              ],\n",
       "              [\n",
       "                -124.050501000265,\n",
       "                41.7680750003051\n",
       "              ],\n",
       "              [\n",
       "                -121.526409999689,\n",
       "                41.7699239999519\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.65669778,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -120.9943469,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 719,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Modesto Ground Water Contamination site is located in Modesto, California. A dry cleaning facility contaminated soil and groundwater with tetrachloroethylene (PCE). Following construction of an interim remedy, operation and maintenance activities and\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"MODESTO GROUND WATER CONTAMINATION\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.994346900245,\n",
       "                37.6566977798356\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 83030.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.20459,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -120.554,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1172,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Utica Water and Power Authority, Lower Utica Canal Lining and Gaging Stations Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -120.554000000069,\n",
       "                38.2045900003293\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 250000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.0541552920001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -119.045902646,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 373,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project will enhance vegetation communities in the sagebrush ecosystem  and protect/restore wetlands and mesic habitats. Activities to be funded under this proposal include removing and replacing older fencing and replacing with wildlife friendly fe\",\n",
       "          \"ProjectID\": \"SAGE20230058\",\n",
       "          \"ProjectTit\": \"Bi-State Sagebrush Ecosystem Enhancement project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -119.045902646195,\n",
       "                38.0541552919159\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 82000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.9731664280001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -118.925959603,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 378,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The Conway and Mattly Ranches were purchased by Mono County, California for their high conservation, cultural, and historic resource values. The Eastern Sierra Land Trust holds a Conservation Easement on both ranches to permanently protect these values.\",\n",
       "          \"ProjectID\": \"SAGE20230063\",\n",
       "          \"ProjectTit\": \"Conway Ranch Wet Meadow Enhancement Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -118.925959602934,\n",
       "                37.973166427949\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 150000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.9342093220001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -118.943087957,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 404,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Sage - Steppe Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project will address impacts to meadow habitats that bi-state sage-grouse rely on within the Mono Basin. Currently, there are over 400 wild horses that are well outside their designated wild horse territory, and the current wild horse population is\",\n",
       "          \"ProjectID\": \"SAGE20230089\",\n",
       "          \"ProjectTit\": \"Sage-Grouse Habitat Restoration through Wild Horse Management\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -118.943087957424,\n",
       "                37.9342093220655\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1700000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.64331,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -114.878,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 890,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": \"Three washes have been impacted by historic mining in Caselton, NV.  Restoration will ensure these washes are not only made whole, but made resilient.  It is also a potential site for a solar project involving BLM & The Nature Conservancy.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Caselton Mine & Mill and Impacted Watersheds Restoration\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.877999999554,\n",
       "                37.6433100001269\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 3520000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.2861,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -112.9498,\n",
       "          \"Notes\": \"Partners involved/Community support: NPS, UFSS, Utah DNR, Virgin River Program, Washington Country Water Conservancy District, BLM,\\u00a0Dixie Conservation District,\\u00a0Washington County Farm Bureau, The Nature Conservancy, Town of Springdale, National Wild an\",\n",
       "          \"OBJECTID\": 1245,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"The National Park Service (NPS) owns the uppermost four dams on the Virgin River, a designated Wild and Scenic River. NPS proposes to finalize design of fish passage on all four dams and construct two of the four dam removals and rocky ramp installations\",\n",
       "          \"ProjectID\": \"{db8ffed0-f253-4ff6-8778-cc0238901ae9}\",\n",
       "          \"ProjectTit\": \"Virgin River Fish Passage Initiative in Zion National Park\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/virgin-river-fish-passage-initiative-zion-national-park\",\n",
       "          \"SiteCount\": \"4\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.949799999981,\n",
       "                37.2860999996582\n",
       "              ],\n",
       "              [\n",
       "                -112.963400000208,\n",
       "                37.2372000001163\n",
       "              ],\n",
       "              [\n",
       "                -112.974099999745,\n",
       "                37.2192000000505\n",
       "              ],\n",
       "              [\n",
       "                -112.975899999894,\n",
       "                37.2144999997268\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.2804,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -113.505,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1184,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Washington County Water Conservancy District, Installing Smart Water Meters - Phase 2\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -113.505000000085,\n",
       "                37.2803999997121\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Park Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.246438,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -112.866004,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 273,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project goal is developing Sustainable Visitor Use and Destination Management:  Planning & assessments for watershed protection on NPS and adjacent lands via conservation easements. Easements will also allow for trails connecting a new multi-partner\",\n",
       "          \"ProjectID\": \"100XX07UT1022\",\n",
       "          \"ProjectTit\": \"Restoration and recreation connectivity in ZION\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.866004000435,\n",
       "                37.2464379998563\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 45000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.62602,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -109.805,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1110,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Resilient Recreation Sites\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Restoration Actions to Improve Recreation Opportunities Along the San Juan River, Glen Canyon National Recreation Area\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.805000000401,\n",
       "                37.6260200000289\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Forest Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 300000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.59869565,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -109.75552147,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1387,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Collaborate with the United States Forest Service and utilize the Manti-La Sal National Forests' Land & Resource Management Plan to implement watershed restoration techniques such as fencing, channel and slope manipulation, range improvements, trail stab\",\n",
       "          \"ProjectID\": \"81085\",\n",
       "          \"ProjectTit\": \"Bears Ears National Monument and Manti-La Sal National Forest Watershed Restoration (UT)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.755521465593,\n",
       "                37.5986956532934\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 160000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.76403,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -107.676,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 851,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": \"Restoration of streambanks and wetlands negatively impacted by upstream mining.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Animas Forks - Upper Animas Watershed restoration\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -107.676000000391,\n",
       "                37.7640300001581\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.86440261,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -107.6128627,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 723,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Bonita Peak Mining District site consists of 48 historic mines or mining-related sources where ongoing releases of metal-laden water and sediments are occurring within the Mineral Creek, Cement Creek and Upper Animas River drainages in San Juan Count\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"BONITA PEAK MINING DISTRICT\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -107.612862700265,\n",
       "                37.8644026103179\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 300000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.82128,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -107.3,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1070,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": \"Restoration of Palmetto Gulch in the Upper Lake Fork of the Gunnison River.  The project will remove mine tailings from streambeds downstream of remediated mined sites, contour and restore streambeds and ensure stability for climate resiliency, re-seed w\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Palmetto Gulch Restoration\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -107.299999999836,\n",
       "                37.821279999673\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 25000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.43727429,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -109.008495,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 215,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Removal of invasive vegetation, including tamarisk and russian olive, from sensitive desert and canyon riparian systems.\",\n",
       "          \"ProjectID\": \"050XX06CO3822\",\n",
       "          \"ProjectTit\": \"Dolores County Riparian Restoration\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.008494999631,\n",
       "                37.4372742900442\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.347,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -108.293,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 596,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with irrigation infrastructure and forest stand improvements.  Irrigation infrastructure improvements include analysis of off-farm reservoir\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Mancos Conservation District\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -108.293000000216,\n",
       "                37.3470000003357\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.27166641,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -107.0442746,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1068,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Pagosa Gateway Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -107.044274599934,\n",
       "                37.2716664103417\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 3300000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.25423776,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -107.8773958,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1275,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Indian Water Rights Settlements\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 014|3300000|Animas-La Plata]\",\n",
       "          \"ProjectTit\": \"Animas-La Plata (Colorado Ute) Operations, Maintenance & Replacement\\u202f\\u00a0\\u00a0\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/bipartisan-infrastructure-law-supports-580-million-investment-fulfill-indian-water\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -107.877395800355,\n",
       "                37.2542377597397\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 39114000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.13714388,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -109.5707533,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1341,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Indian Water Rights Settlements\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 024|39114000|Navajo-Utah Wat]\",\n",
       "          \"ProjectTit\": \"Navajo-Utah Water Settlement\\u202f\\u00a0\\u00a0\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/bipartisan-infrastructure-law-supports-580-million-investment-fulfill-indian-water\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.570753300077,\n",
       "                37.1371438803556\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Park Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 45000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.38840764,\n",
       "          \"LatLongTyp\": \"San Juan River, Glen Canyon National Rec Area, AZ\",\n",
       "          \"Long\": -110.842422,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 272,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Campground and Trail Restoration to Improve recreation activities (camping, wildlife observations and photography, fishing access) and visitor safety.\",\n",
       "          \"ProjectID\": \"100XX07UT0622\",\n",
       "          \"ProjectTit\": \"Improve recreation on San Juan River in GLCA\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -110.842421999702,\n",
       "                37.3884076397256\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"Department-Wide Programs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.39,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -110.842,\n",
       "          \"Notes\": \"This project's exact funding amount was not provided by the DOI, but the press release noted that it is paying for funding an inventory and assessment of the wells present in the park.\",\n",
       "          \"OBJECTID\": 1312,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Orphaned Well Site Plugging, Remediation, And Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 014||Glen Canyon Nat]\",\n",
       "          \"ProjectTit\": \"Glen Canyon National Recreation Area\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -110.841999999928,\n",
       "                37.3899999997141\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Geological Survey\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 600000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.19241,\n",
       "          \"LatLongTyp\": \"Colorado River Basin\",\n",
       "          \"Long\": -110.68578,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 262,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The goal of this project is to create a tool for use by managers and decision-makers that allows for the analysis of defined mine lands to identify potential hazards (e.g., toxic metals, holding ponds, waste pile slopes, etc.), risks to vulnerable commun\",\n",
       "          \"ProjectID\": \"080XX08US1122\",\n",
       "          \"ProjectTit\": \"Support for Safe Restoration of Mined Lands\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -110.685780000393,\n",
       "                36.1924100001098\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 8720000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.86654122,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -110.5689296,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 36,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Safety of Dams, Water Sanitation, And Other Facilities\",\n",
       "          \"ProjectDes\": \"The project will connect three BIA PWSs to the regional water supply delivery system \\u201cHopi Arsenic Mitigation Project\\u201d (HAMP), reduce concentrations of arsenic in drinking water supply, and provide superior quality drinking water to Hopi communities.\",\n",
       "          \"ProjectID\": \"{24B1F4EC-CEAD-4F71-A572-2D046E6BC23B}\",\n",
       "          \"ProjectTit\": \"Hopi Arsenic Management Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -110.568929599737,\n",
       "                35.8665412199385\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 399953.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.68060559,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -109.05261059,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 49,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"This project will support the Tribe's implementation strategy project goals in accordance with the Climate Adaptation Plan of the Navajo Nation, and will serve as the next step in addressing climate change effects.\",\n",
       "          \"ProjectID\": \"{388941C5-5D5A-4669-A91B-ECCE8F204AA2}\",\n",
       "          \"ProjectTit\": \"Navajo Nation Climate Change Program\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.052610588599,\n",
       "                35.6806055936599\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 205245.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.680573,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -109.0525929,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 48,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Indian Water Rights Settlements\",\n",
       "          \"ProjectDes\": \"This agreement provides 81,500 acre-feet of water to Navajo residents in Utah, resolves claims to water rights, and guarantees they will not lose water rights that are not in use. Eight Navajo Utah communities will directly benefit.\",\n",
       "          \"ProjectID\": \"{23BE1536-AECE-407F-93C0-8D418F8B2EDD}\",\n",
       "          \"ProjectTit\": \"Navajo-Utah BIA Water Rights Settlement Act\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.052592899873,\n",
       "                35.6805730001085\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 399953.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.67930754,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -109.0469345,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1342,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"This category will help continue CCP\\u2019s efforts by sponsoring implementation strategy project goals in accordance with the Climate Adaptation Plan of the Navajo Nation (CAP). This category award will serve as the next step in addressing climate change e\",\n",
       "          \"ProjectID\": \"[DOI - 022|399953|Navajo Nation D]\",\n",
       "          \"ProjectTit\": \"Navajo Nation Department of Fish and Wildlife Climate Change Program\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.046934499933,\n",
       "                35.6793075401485\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 4000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.50034243,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -108.16572762,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1383,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Conserve 80,000 acre feet of water, increase ecosystem resilience through implementation of monitoring and adaptive management plans, and expand outreach within the Jicarilla Apache Nation and local community partners around water conservation and manage\",\n",
       "          \"ProjectID\": \"81135\",\n",
       "          \"ProjectTit\": \"Water Resource Management for Fish Habitat Improvement in the San Juan River (NM)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -108.165727615128,\n",
       "                36.500342426719\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 950000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.87415128,\n",
       "          \"LatLongTyp\": \"Mundo Lake, NM\",\n",
       "          \"Long\": -106.9287255,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 243,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project proposes the establishment of an all-weather road to the lake and campsites replacing two corroding culverts and increasing road drainage. As well as improving campsites with picnic tables, fire \\r\\nrings, grill boxes, graveled parking areas,\",\n",
       "          \"ProjectID\": \"060XX07NM0522\",\n",
       "          \"ProjectTit\": \"Mundo Lake Recreational Improvement Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -106.928725499697,\n",
       "                36.8741512797142\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 151120.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.870626,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -105.289143,\n",
       "          \"Notes\": \"Partners involved/Community support: Carson National Forest, New Mexico DGF\",\n",
       "          \"OBJECTID\": 120,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"This infrastructure project and will serve to fulfill the requirements of the Justice 40 initiative. Four road-stream crossings (culverts)  in the Rio Costilla watershed in the Valle Vidal unit of the Carson National Forest have been identified as aquati\",\n",
       "          \"ProjectID\": \"{c3e0ffe6-f28b-49cc-ba5f-482a4bfeb1ba}\",\n",
       "          \"ProjectTit\": \"Carson National Forest Valle Vidal Culvert Replacement Project\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/carson-national-forest-valle-vidal-culvert-replacement-project\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.289142999819,\n",
       "                36.8706260001766\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 151120.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.840302,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -105.309252,\n",
       "          \"Notes\": \"Partners involved/Community support: Carson National Forest, New Mexico DGF\",\n",
       "          \"OBJECTID\": 117,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"This infrastructure project and will serve to fulfill the requirements of the Justice 40 initiative. Four road-stream crossings (culverts)  in the Rio Costilla watershed in the Valle Vidal unit of the Carson National Forest have been identified as aquati\",\n",
       "          \"ProjectID\": \"{59754108-fc85-4cde-aef5-58b33a2ce06a}\",\n",
       "          \"ProjectTit\": \"Carson National Forest Valle Vidal Culvert Replacement Project\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/carson-national-forest-valle-vidal-culvert-replacement-project\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.309252000355,\n",
       "                36.8403019998878\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 151120.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.804805,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -105.299451,\n",
       "          \"Notes\": \"Partners involved/Community support: Carson National Forest, New Mexico DGF\",\n",
       "          \"OBJECTID\": 118,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"This infrastructure project and will serve to fulfill the requirements of the Justice 40 initiative. Four road-stream crossings (culverts)  in the Rio Costilla watershed in the Valle Vidal unit of the Carson National Forest have been identified as aquati\",\n",
       "          \"ProjectID\": \"{8765cb3b-9c54-4369-bbc0-07eb7733396d}\",\n",
       "          \"ProjectTit\": \"Carson National Forest Valle Vidal Culvert Replacement Project\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/carson-national-forest-valle-vidal-culvert-replacement-project\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.299450999719,\n",
       "                36.8048049999009\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 151120.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.814227,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -105.306102,\n",
       "          \"Notes\": \"Partners involved/Community support: Carson National Forest, New Mexico DGF\",\n",
       "          \"OBJECTID\": 119,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"This infrastructure project and will serve to fulfill the requirements of the Justice 40 initiative. Four road-stream crossings (culverts)  in the Rio Costilla watershed in the Valle Vidal unit of the Carson National Forest have been identified as aquati\",\n",
       "          \"ProjectID\": \"{d1a6c305-7115-4558-99ee-8f0ff4b3ac8f}\",\n",
       "          \"ProjectTit\": \"Carson National Forest Valle Vidal Culvert Replacement Project\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/carson-national-forest-valle-vidal-culvert-replacement-project\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.306102000319,\n",
       "                36.8142269999482\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 4118675.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.97210646,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -106.0895416,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1121,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Riparian and Wildlife Corridor Restoration at Santa Clara Pueblo\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -106.089541599966,\n",
       "                35.972106459816\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 4377500.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.94554085,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -106.100272,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 440,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Perform post-fire and flood riparian and wildlife corridor restoration across Santa Clara Pueblo reservation lands in the Santa Clara Creek Watershed, the lower Rio Santa Cruz, and Rio Grande River. Project will reconnect, protect and restore over 40-mil\",\n",
       "          \"ProjectID\": \"77634\",\n",
       "          \"ProjectTit\": \"Riparian Wildlife Corridor Restoration and Wildfire Recovery at Santa Clara Pueblo (NM)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -106.100272000289,\n",
       "                35.9455408502055\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Park Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 300000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.658997,\n",
       "          \"LatLongTyp\": \"Southwest office Institute for Applied Ecology, NM\",\n",
       "          \"Long\": -105.941224,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 296,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Ecoregional Collaboration, Collection, Production: Increase investment in existing Southwest Seed Partnership with the Institute for Applied Ecology to support the National Seed Strategy and park seed needs throughout the Southwest. Project outcomes incl\",\n",
       "          \"ProjectID\": \"100XX09MU2622\",\n",
       "          \"ProjectTit\": \"Expand Southwest Seed Partnership for IMR parks\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.941224000035,\n",
       "                35.6589969999145\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1099804.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.8890058,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -106.06570996,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 57,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"This project will provide long-and short-term solutions to reduce wildfire risk on and around the Pueblo de San Ildefonso by assessing wildfire risk to target adaptation actions, implementa a community outreach and education program, and more.\",\n",
       "          \"ProjectID\": \"{76F130DA-F400-4C9A-B41D-D7BC0536C839}\",\n",
       "          \"ProjectTit\": \"Preparing the Pueblo de San Ildefonso for Wildfire\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -106.065709960231,\n",
       "                35.8890057981182\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 99990.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.11627035,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -104.5231564,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1146,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Starkville, Improving Water Efficiency Through Smart Water Meters\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -104.523156400416,\n",
       "                37.116270350354\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 25000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.9271,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -105.9032,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 194,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Development of a water catchment to support wildlife such as Pronghorn during a drought.\",\n",
       "          \"ProjectID\": \"050XX02NM0422\",\n",
       "          \"ProjectTit\": \"Taos Pronghorn Ware Catchment\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -105.903200000196,\n",
       "                36.9271000002324\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.42391715,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -106.5984915,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 722,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The 1,400-acre Summitville Mine site is a former gold mine in Rio Grande County, Colorado. Gold mining started in the late 1800s. By 1984, the Summitville Consolidated Mining Corporation Inc. began open pit mining for gold, copper and silver. Mining proc\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"SUMMITVILLE MINE\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -106.5984914999,\n",
       "                37.423917150117\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.17351,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -104.513,\n",
       "          \"Notes\": \"To study and mitigate storage issues caused by sedimentation at Pueblo Reservoir which is causing a continued loss of storage capacity. Funding is provided for a planning study.\",\n",
       "          \"OBJECTID\": 971,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Fryingpan- Arkansas\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -104.513000000203,\n",
       "                38.1735100001351\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 99990.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.06718286,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -103.2227248,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1017,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Las Animas, Improving Water Efficiency Through Smart Water Meters\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -103.222724799729,\n",
       "                38.0671828596688\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.0603,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -96.6378,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 522,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Floodwater Retarding Dam No. 21 is a zoned earth embankment flood water retarding structure. The dam was designed and constructed as a significant hazard potential dam. The dam is currently classified by  as a high hazard potential dam. The proposed work\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Upper Walnut (NS) FRD 21\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -96.6378000001598,\n",
       "                38.0602999999069\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.92686503,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -95.40434885,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 741,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"Iola, Kansas was the home of several zinc and lead smelting plants during the early 1900\\u2019s.\\u00a0The United Zinc and East Iola smelters were located on the east side of town. The Lanyon smelters were located on the west edge of town. These plants were demo\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"FORMER UNITED ZINC & ASSOCIATED SMELTERS\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -95.4043488495882,\n",
       "                37.9268650301968\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 38.189597,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -91.944158,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 760,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Vienna Wells superfund site consists of three contaminated public drinking water wells and the source area, a former hat factory. The site property is a 7.9-acre parcel of land that begins at the southeast corner of the 10th Street and Chestnut Stree\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"VIENNA WELLS\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -91.944158000213,\n",
       "                38.1895970002559\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.93262278,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -94.36018258,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 755,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Newton County Mine Tailings Superfund site encompasses over 600 square miles of Newton County\\u00a0and a portion of Lawrence County. The Site is part of the Tri-State Mining District\\u00a0(TSMD)\\u00a0of Missouri, Kansas, and Oklahoma, formerly one of the richest\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"NEWTON COUNTY MINE TAILINGS\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -94.3601825803061,\n",
       "                36.932622780056\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.96553333,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -94.81563663,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 806,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Tar Creek Superfund Site is located in Ottawa County, Oklahoma. The Site itself has no clearly defined boundaries, but consists of areas within Ottawa County impacted by historical mining wastes. The Site is part of the larger Tri-State Mining Distri\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"TAR CREEK (OTTAWA COUNTY)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -94.8156366300749,\n",
       "                36.9655333299409\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.08781562,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -94.7133598,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 740,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Cherokee County Superfund site is a former mining area in southeast Kansas, part of a larger regional mining area known as the Tri-State Mining District. It covers about 115 square miles. Over 100 years of widespread lead and zinc mining created pile\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"CHEROKEE COUNTY\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -94.7133598003943,\n",
       "                37.0878156203292\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 37.09035727,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -94.5217492,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 752,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Oronogo-Duenweg Mining Belt Superfund site is part of the Tri\\u2010State Mining District where mining, milling, and smelting of lead and zinc ore began in the mid\\u20101800s and continued for more than 100 years. The site consists of numerous mine waste ar\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"ORONOGO-DUENWEG MINING BELT\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -94.521749199699,\n",
       "                37.0903572700561\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 638420.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.79142191,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -94.86765233,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1424,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Train and support leaders from low-income communities, and nine federally recognized Tribal Nations, to develop landscape-level proposals for restoring woodland and tallgrass prairie ecosystems in northeast Oklahoma\\u2019s Neosho River Watershed. Project wi\",\n",
       "          \"ProjectID\": \"80742\",\n",
       "          \"ProjectTit\": \"Restoring Tallgrass Prairie Ecosystems  in Oklahoma\\u2019s Neosho River Watershed\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -94.867652328842,\n",
       "                36.7914219134902\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 3934122.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.98562174,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -93.67782251,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1391,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Collaborate with partners and landowners to remove four aquatic organism passage barriers to reconnect 434 miles of War Eagle Creek, restore 5,500 linear feet of streambanks, create 4 acres of wetlands, install instream habitat structures, establish publ\",\n",
       "          \"ProjectID\": \"80304\",\n",
       "          \"ProjectTit\": \"War Eagle Creek Collaborative Restoration Initiative (AR)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -93.6778225060846,\n",
       "                35.9856217366794\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior and Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service and the U.S. Forest Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 1499971.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.60260542,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -93.61244558,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1420,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Restore and maintain 4,023 acres of glades and open woodlands through invasive species removal, vegetation management, and prescribed fire across the Ozark and Mark Twain National Forests in Arkansas and Missouri. Project will enhance habitat for over 10\",\n",
       "          \"ProjectID\": \"80290\",\n",
       "          \"ProjectTit\": \"Glade and Woodland Restoration in Ozark and Mark Twain National Forests (AR, MO)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"3\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -93.612445577497,\n",
       "                36.6026054160864\n",
       "              ],\n",
       "              [\n",
       "                -94.3612560077818,\n",
       "                35.6831314023526\n",
       "              ],\n",
       "              [\n",
       "                -92.2739596866776,\n",
       "                36.0576702290516\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1921439.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.73538662,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -93.42960112,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 425,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Identify, map, restore, and manage endangered river cane ecosystems within the historic homelands of the United Keetoowah Band through the Keetoowah River Cane Conservation Program. Project will provide new opportunities for Tribal members to access outd\",\n",
       "          \"ProjectID\": \"77197\",\n",
       "          \"ProjectTit\": \"River Cane Ecosystem Conservation and Connection to Keetoowah Traditional Practices (AR, OK)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -93.4296011200264,\n",
       "                35.7353866201526\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 99000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.1786181,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -94.57247146,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1200,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"West Siloam Springs, Water Distribution System Advanced Metering Infrastructure Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -94.5724714601024,\n",
       "                36.1786181000268\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.84124181,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -96.38076292,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 804,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The 140 to 150-acre Wilcox Oil Company site is located in Bristow, Oklahoma, and includes the inactive and abandoned Lorraine and Wilcox Oil Refineries. The property was used as a crude oil refinery from approximately 1915 to 1963. Wilcox Oil and Gas Com\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"WILCOX OIL COMPANY\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -96.3807629198058,\n",
       "                35.8412418099005\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 4830000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 36.70230796,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -101.3445087,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 439,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Support the Playa Lakes Joint Venture in work with five land trusts to advance grassland conservation across more than 250,000 acres of the Southern High Plains. Project will enable partners to deliver conservation and shared best practices according to\",\n",
       "          \"ProjectID\": \"77631\",\n",
       "          \"ProjectTit\": \"Southern High Plains Grassland Habitat Protection, Restoration, and Enhancement (CO, KS, NE, NM, OK, TX)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -101.344508700193,\n",
       "                36.7023079599724\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 517000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 44.95704299,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -113.4467335,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 223,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"a.\\tProject supports protection of cultural and historic resources, enhancement of habitats, recreational opportunities, access and scenic qualities of sensitive public lands and resources.\\r\\r\\nMove, direct, or change visitor uses impacting threatened, enda\",\n",
       "          \"ProjectID\": \"050XX07MU4422\",\n",
       "          \"ProjectTit\": \"Mitigate Impacts to Sensitive BLM Lands\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"7\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.0834807397329,\n",
       "                26.9482318700042\n",
       "              ],\n",
       "              [\n",
       "                -119.956988000406,\n",
       "                40.4202956801169\n",
       "              ],\n",
       "              [\n",
       "                -113.642575100284,\n",
       "                42.0643802699101\n",
       "              ],\n",
       "              [\n",
       "                -110.869521599947,\n",
       "                42.418777710294\n",
       "              ],\n",
       "              [\n",
       "                -115.671322999602,\n",
       "                42.6920903901279\n",
       "              ],\n",
       "              [\n",
       "                -103.741303000084,\n",
       "                44.3007097299862\n",
       "              ],\n",
       "              [\n",
       "                -113.446733500178,\n",
       "                44.9570429901249\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.6422,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -99.339,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 627,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bLugert-Altus Irrigation District located in Southern Greer and Central Jackson County Oklahoma delivers irrigation water from Lake Lugert Altus in Greer County via channel system to supply irrigation water to about 45,000 acres of cropland. In additio\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Lugert Altus Irrigation District\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -99.3389999998832,\n",
       "                34.6422000001496\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.898331,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -98.193339,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 805,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The 160-acre Oklahoma Refining Co. site is located in Cyril, Oklahoma. A refinery operated by several different owners was located on site until 1984.\\u00a0Site operations contaminated soil, sediment, surface water and groundwater with polycyclic aromatic hy\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"OKLAHOMA REFINING CO.\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -98.1933390002579,\n",
       "                34.8983309999912\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.7164,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -98.405,\n",
       "          \"Notes\": \"Project Lat/Long was incorrectly listed. Longitudes was positive. Lat/Long fields updated with negative longitude and manually moved to presumed correct location.\",\n",
       "          \"OBJECTID\": 601,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A preliminary investigation feasibility report (PIFR) will be prepared to determine if WFPO can be used to assist with flooding in the Cache Creek/Medicine Creek watersheds. Agricultural and residential areas have been experiencing serious and worsening\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Medicine Creek - Lower Cache Creek Flood Study\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -98.4049999998914,\n",
       "                34.7164000001735\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.22,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -97.44,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1055,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Norman Utilities Authority Advanced Metering Infrastructure Implementation Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4247\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -97.4400000000308,\n",
       "                35.2200000003662\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 34340.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.5835495,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -97.5084381,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 913,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Corral Kreek Water District, Advance Metering Infrastructure Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -97.5084380996457,\n",
       "                35.5835495001384\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 249427.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.3013281,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -96.9245339,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 29,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration\",\n",
       "          \"ProjectDes\": \"Eradicate invasive species from Tribal lands\",\n",
       "          \"ProjectID\": \"{30A9935A-F703-4ECC-B135-A05C3A45B8F4}\",\n",
       "          \"ProjectTit\": \"Eastern Red Cedar Eradication\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -96.9245338997899,\n",
       "                35.301328099745\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"Department-Wide Programs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.54,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -95.927,\n",
       "          \"Notes\": \"This project's exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 24 wells\",\n",
       "          \"OBJECTID\": 1297,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Orphaned Well Site Plugging, Remediation, And Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 026||Deep Fork Natio]\",\n",
       "          \"ProjectTit\": \"Deep Fork National Wildlife Refuge\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -95.9269999997632,\n",
       "                35.5400000002231\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.1486,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -92.5533,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 552,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bThe City of Menifee requests assistance to conduct a PIFR for a possible PL-566 project in the Rocky Cypress Creek-Arkansas River Watershed and the Lower Cadron Creek Watershed. The city is experiencing flooding that impacts safety, comfort, and quali\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"City of Manifee\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -92.5532999996668,\n",
       "                35.1485999999844\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.8825,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -95.33576,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 477,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"MPS No. 7M no longer meets current safety criteria or performance standard for a high hazard potential dam. Funds will be used to maintain present level of flood control benefits and bring the dam to compliance standards. The dam serves 5,230 users as th\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Fourche Maline 7M\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -95.3357600000922,\n",
       "                34.8824999999272\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 212420.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.77340611,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -96.67820762,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 79,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"This project aims to develop and conduct vulnerability assessments that will advance the Chickasaw Nation\\u2019s capacity for both adaptation planning and resilience by focusing on climate change-related exposure within six key economic centers.\",\n",
       "          \"ProjectID\": \"{F64586C1-50D9-46A8-8813-844EFBCC4E51}\",\n",
       "          \"ProjectTit\": \"Tribal Facility Climate Vulnerability Assessments - Chickasaw Nation\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -96.6782076239096,\n",
       "                34.7734061132761\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 85149.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.93335946,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -96.42953118,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 881,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Calera, Updating Analog Water Meters with Efficient Smart Meters\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -96.4295311800746,\n",
       "                33.9333594603721\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.2302,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -92.0023,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 553,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bThe City of Pine Bluff requests assistance to conduct the PIFR, Planning, Design, and Construction for a PL-566 project in 9 sub-watersheds: Bayou Bartholomew Headwaters, Caney Creek-Caney Bayou, Caney Creek-Arkansas River, Plum Bayou-Arkansas River,\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"City of Pine Bluff\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -92.0022999999102,\n",
       "                34.2302000002839\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.6135,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -93.8153,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 549,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bThe City of Fulton requests assistance to conduct a Preliminary Investigation and Feasibility Report for a possible PL-566 project in the Bois d\\u2019Arc Creek \\u2013 Red River Watershed. The City of Fulton is reportedly experiencing flooding within the cit\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"City of Fulton\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -93.8152999998365,\n",
       "                33.6135000000115\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.408331,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -94.053339,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 823,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Texarkana Wood Preserving Company (TWPC) is a 26-acre wood-treating site located at 1001 Lubbock Street in Texarkana, Texas. Since the early 1900s, the Site used creosote and pentachlorophenol (PCP) as the source material for wood preserving operatio\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"TEXARKANA WOOD PRESERVING CO.\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -94.0533390001155,\n",
       "                33.4083309996404\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.5846,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -92.8343,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 541,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bThe City of Camden requests assistance to conduct a PIFR, Planning, Design, and Construction project in the Freeo Creek-Ouachita River & North Bayou-Two Bayou Watersheds. The city is experiencing flooding that impacts safety, comfort, and quality of l\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"City of Camden\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -92.8342999995509,\n",
       "                33.5846000000395\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.205,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -92.676,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 546,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bThe City of El Dorado requests assistance to conduct a PIFR, Planning, Design, and Construction for a possible PL-566 project in six 12-digit HUC sub-watersheds located within the Hibank Creek-Bayou de Loutre, Little Cornie Bayou, and Haynes Creek-Sma\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"City of El Dorado\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -92.6760000003825,\n",
       "                33.2050000001046\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.227,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -93.572,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 538,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bThe Cities of Stamps and Lewisville request assistance to conduct a PIFR, Planning, Design, and Construction project in the Lake Erling-Bodeau Creek watershed. The cities are experienced flooding that impacts the safety, comfort, and quality of life.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Cities of Stamps and Lewisville\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -93.5719999999264,\n",
       "                33.2269999997342\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.362775,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -97.680374,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 463,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Big Sandy 26 provides flood damage reduction to Bronte, Texas and the surrounding community of  Wise County, Texas. Now classified as a high hazard potential dam due to development downstream, BIL REhab funds will be used to bring the dam to meet current\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Big Sandy 26\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -97.6803740002109,\n",
       "                33.3627750003256\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.59623778,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -102.4187364,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 826,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The site consists of groundwater plumes in the Ogallala Aquifer extending for about 1.5 miles along State Road 114. The Ogallala Aquifer is the only source of high-quality drinking water in the site area.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"STATE ROAD 114 GROUNDWATER PLUME\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -102.418736399654,\n",
       "                33.5962377801409\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.38066532,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -104.5221245,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 792,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The 550-acre McGaffey and Main Groundwater Plume site is located in Roswell, New Mexico. The site includes locations where several dry cleaners operated from 1956 to 1963. These operations contaminated soil and soil vapor, indoor air, and groundwater wit\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"MCGAFFEY AND MAIN GROUNDWATER PLUME\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -104.522124500259,\n",
       "                33.3806653200027\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 249826.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.34237255,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -106.5277699,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1309,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The Pueblo of Santa Ana (Pueblo), proposes to conduct Phase II of a three-phase effort to develop an Adaptation Management Plan (Plan) to help the Pueblo mitigate and overcome the impacts of expected future extreme droughts to its resources, and, ultimat\",\n",
       "          \"ProjectID\": \"[DOI - 022|249826|Pueblo of Santa]\",\n",
       "          \"ProjectTit\": \"Extreme Drought Adaptation Planning: Phases I and II, Data Analysis for Resilient Land Management\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/president-bidens-bipartisan-infrastructure-law-supports-45-million-investment-build\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -106.527769899901,\n",
       "                35.3423725498482\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 249826.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.34370569,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -106.53071001,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 32,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Climate Resilience - Adaptation Planning\",\n",
       "          \"ProjectDes\": \"The Tribe will conduct Phase II of a three-phase effort to develop an Adaptation Management Plan to mitigate and overcome the impacts of expected future extreme droughts to its resources, and, ultimately, to its cultural persistence.\",\n",
       "          \"ProjectID\": \"{2AB36694-F352-4DDA-974D-E49234431E77}\",\n",
       "          \"ProjectTit\": \"Extreme Drought Adaptation Planning: Phases 1 and II, Data Analysis for Resilient Land Management\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -106.530710014859,\n",
       "                35.3437056907814\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 160000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.36027,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -103.682845,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 938,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Rural Water Projects\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Eastern New Mexico Rural Water System\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4152\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -103.682845000019,\n",
       "                35.3602699997518\n",
       "              ],\n",
       "              [\n",
       "                -106.108375500346,\n",
       "                34.4213637997036\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.4213638,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -106.1083755,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1037,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": \"This project will mitigate three abandoned mine hazards at New River Gorge National Park and Preserve.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Mitigate Safety Risks to Visitors at Abandoned Sulfur Mine Site, Valles Caldera National Preserve\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -106.108375500346,\n",
       "                34.4213637997036\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 12000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.4213638,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -106.1083755,\n",
       "          \"Notes\": \"$12 million for the Jicarilla Apache Rural Water System in New Mexico to support progress toward water treatment plant upgrades.\",\n",
       "          \"OBJECTID\": 1001,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Rural Water Projects\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Jicarilla Apache Rural Water System\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-delivers-728-million-historic-investments-address-western\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -106.108375500346,\n",
       "                34.4213637997036\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1464685.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.4213638,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -106.1083755,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1104,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Regions of New Mexico with Acequia Water Distribution Systems: Tools to Adapt to Water Scarcity and Guide Implementation of Strategies to Increase Acequia Community and Water Resilience\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -106.108375500346,\n",
       "                34.4213637997036\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 94710.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.4213638,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -106.1083755,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 942,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Elephant Butte Irrigation District, Leasburg Canal Gate Actuators and Metering Station\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -106.108375500346,\n",
       "                34.4213637997036\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 950000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.4213638,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -106.1083755,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 944,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Resilient Recreation Sites\",\n",
       "          \"ProjectDes\": \"Project will increase the depth of the lake as the lake becomes more eutrophic due to changing climate.  Improvements include road to the lake and campsites, drainage surrounding campgrounds, and increasing road drainage and improving campsites.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Enbom Lake Recreational Improvement Project\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -106.108375500346,\n",
       "                34.4213637997036\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 89000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.4213638,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -106.1083755,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 925,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": \"Develop a reclamation plan for an abandoned sulfur mine site at Valles Caldera National Preserve.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Develop Reclamation Plan to Restore Abandoned Mine Site, Valles Caldera National Preserve\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -106.108375500346,\n",
       "                34.4213637997036\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 3000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.4213638,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -106.1083755,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1128,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Colorado River Endangered Species Recovery and Conservation Programs\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"San Juan River Basin Recovery Implementation Program\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4374\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -106.108375500346,\n",
       "                34.4213637997036\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 300000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.4213638,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -106.1083755,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1112,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Restoration of Cooke's Peak, Flourite Ridge and New Placers Watersheds\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -106.108375500346,\n",
       "                34.4213637997036\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.155778,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -107.843889,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 793,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Grants Chlorinated Solvents site is located in Grants, Cibola County, New Mexico. The site consists of a 20-acre, 100-foot-deep groundwater plume that extends about 1,000 feet from the source. An operating dry cleaning facility, no longer a source is\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"GRANTS CHLORINATED SOLVENTS\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -107.843888999584,\n",
       "                35.1557779998842\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior and Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service and the Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 4000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.48790229,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -106.90345043,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1381,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Implement and design wildlife-highway mitigation structures along a 5 mile stretch of high-volume roadway, including upgrading 69 miles of fencing, and removing 3,000 acres of woody encroachment. Project will facilitate movements and restore important ha\",\n",
       "          \"ProjectID\": \"80856\",\n",
       "          \"ProjectTit\": \"Landscape Scale Restoration for Large Mammal Species in a Regional Wildlife Corridor (NM)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -106.903450433489,\n",
       "                35.4879022901367\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 5000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.52430909,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -108.7331735,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 934,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Drought Resiliency Ground Water Well\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -108.733173500389,\n",
       "                35.5243090903598\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.54697936,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -108.8045036,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1340,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Indian Water Rights Settlements\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 024|2000000|Navajo-Gallup W]\",\n",
       "          \"ProjectTit\": \"Navajo-Gallup Water Supply Operations, Maintenance & Replacement\\u202f\\u00a0\\u00a0\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/bipartisan-infrastructure-law-supports-580-million-investment-fulfill-indian-water\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -108.804503600297,\n",
       "                35.5469793603187\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 1000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.95227001,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -111.6694225,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1373,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Establish wildlife corridors for pronghorn, elk, deer, and other wildlife by upgrading fencing and developing overpasses on two interstates with a high number of wildlife-vehicle collisions in Arizona. This project will build off findings from past studi\",\n",
       "          \"ProjectID\": \"79727\",\n",
       "          \"ProjectTit\": \"Reconnecting Wildlife Corridors along Two Northern Arizona Interstates\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.669422501088,\n",
       "                34.9522700119119\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Forest Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 1404660.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.86913945,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -111.55849478,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1429,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Recruit and field two specialized six-person crews to perform invasive species management and watershed improvement projects on the Coconino National Forest in Arizona. Project will remove and treat invasive species on 1,000 acres and will deliver 15 mil\",\n",
       "          \"ProjectID\": \"80893\",\n",
       "          \"ProjectTit\": \"Deployment of Invasive Species and Watershed Improvement Crews in Coconino National Forest (AZ)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.558494781135,\n",
       "                34.8691394462028\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.46011224,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -110.1200931,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1158,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Taylor, Water Meter Replacement - Phase 2\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -110.120093100001,\n",
       "                34.4601122398777\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 5000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.2932129,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -111.6646423,\n",
       "          \"Notes\": \"Funding would provide the Federal cost-share for conducting the Verde River Sedimentation Feasibility Study, which would identify alternatives to restore a minimum of 46,000 acre-feet of water storage lost due to sediment accumulation at Horse Reservoir,\",\n",
       "          \"OBJECTID\": 1176,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water & Groundwater Storage, And Conveyance\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Verde River Sedimentation Feasibility Study\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/bil/docs/spendplan-2022/Reclamation-BIL-Spend-Plan-Storage-Addendum-09-30-2022.pdf\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.664642299559,\n",
       "                34.293212900202\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.2932129,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -111.6646423,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1072,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Paloma Irrigation and Drainage District, Automated Control Gates Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.664642299559,\n",
       "                34.293212900202\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 23000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.2932129,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -111.6646423,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 857,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": \"Inform the closure plan for abandoned mineral lands at Organ Pipe Cactus National Monument.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Assess Wildlife and Develop Recommendations for Hazardous Mines at Organ Pipe Cactus National Monument\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.664642299559,\n",
       "                34.293212900202\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 181000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.2932129,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -111.6646423,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1035,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": \"Eliminate safety hazards at four Abandoned Mineral Land sites within the Tucson Mountain District at Saguaro National Park and restore to pre-existing conditions.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Mitigate 25 Mine Hazards at Saguaro National Park\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.664642299559,\n",
       "                34.293212900202\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 250000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.2932129,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -111.6646423,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 931,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Resilient Recreation Sites\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Drainage Along Colorado River Heritage Trail System\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.664642299559,\n",
       "                34.293212900202\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 89000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.2932129,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -111.6646423,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1026,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Maricopa-Stanfield Irrigation and Drainage District, Santa Rosa Canal Lateral WC Turnout Gate Replacement Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.664642299559,\n",
       "                34.293212900202\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 101000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.2932129,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -111.6646423,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 839,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": \"<Null>\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Active Restoration of 25 Mine Hazards at Organ Pipe Cactus National Monument\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.664642299559,\n",
       "                34.293212900202\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 30000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.2932129,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -111.6646423,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 962,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Eradicating Invasive Species to Improve Habitat in Las Cienegas National Conservation Area in Arizona\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.664642299559,\n",
       "                34.293212900202\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 5000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.2932129,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -111.6646423,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1042,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"MSIDD Drought Resiliency Water Augmentation Program, Phase 2A Central Zone Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.664642299559,\n",
       "                34.293212900202\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 20000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.2932129,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -111.6646423,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 910,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Conduct Engineering Evaluation/Cost Analysis Sampling and Analysis Plan at Last Chance Mine, Grand Canyon National Park\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.664642299559,\n",
       "                34.293212900202\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.03,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -110.49,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 615,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bFunds will be used to complete a PIFR for a potential WFPO project within the Cibecue Wash watershed with the White Mountain Apache Tribe (WMAT) . The tribe has expressed an interest in pursuing a WFPO project to address agricultural water management\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Cibecue Wash\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -110.489999999562,\n",
       "                34.0300000003298\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 109106.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.8369944,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -109.9642664,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 83,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Indian Water Rights Settlements\",\n",
       "          \"ProjectDes\": \"The Quantification Act authorizes the design and construction of a dam and storage reservoir, pumping plant, distribution system and water treatment facilities, and settles water rights in Arizona.\",\n",
       "          \"ProjectID\": \"{F98310BE-4562-45C6-8F56-BA67654D7A31}\",\n",
       "          \"ProjectTit\": \"White Mountain Apache Tribe BIA Water Rights Quantification Act\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.964266399965,\n",
       "                33.8369943999756\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior and Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service and the Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 333789.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.7906469,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -109.98847236,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1410,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Address environmental and cultural harms at Fort Apache to create a master plan for re-Indigenizing the 300 acres of rivers, farmlands, grasslands, and woodlands at Fort Apache. Project will produce a shovel-ready plan, conduct six site visits, six focus\",\n",
       "          \"ProjectID\": \"79566\",\n",
       "          \"ProjectTit\": \"Ecocultural Regeneration Planning for Fort Apache and Theodore Roosevelt School National Historic Landmark (AZ)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.988472364085,\n",
       "                33.7906468962607\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 2310000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.7647,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -109.381,\n",
       "          \"Notes\": \"Partners involved/Community support: White Mountain Apache Tribe, USFS, Arizona GFD\",\n",
       "          \"OBJECTID\": 107,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"To achieve recovery and delist the Apache Trout, this project will remove 7 barriers and replace 6 culverts. Structural barriers will be removed on Flash, Squaw, Hayground, Home, Stinky, and Little Diamond creeks.  Culverts will be replaced on Paradise a\",\n",
       "          \"ProjectID\": \"{1c32c22e-60d7-40e1-bab5-0696d2956de6}\",\n",
       "          \"ProjectTit\": \"Apache Trout Recovery Fish Passage Infrastructure Project\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/apache-trout-recovery-fish-passage-infrastructure-project\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.381000000368,\n",
       "                33.7646999999012\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 2310000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.7742,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -109.3839,\n",
       "          \"Notes\": \"Partners involved/Community support: White Mountain Apache Tribe, USFS, Arizona GFD\",\n",
       "          \"OBJECTID\": 115,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"To achieve recovery and delist the Apache Trout, this project will remove 7 barriers and replace 6 culverts. Structural barriers will be removed on Flash, Squaw, Hayground, Home, Stinky, and Little Diamond creeks.  Culverts will be replaced on Paradise a\",\n",
       "          \"ProjectID\": \"{2eb09a09-f11c-44bd-a185-66166ceb4a33}\",\n",
       "          \"ProjectTit\": \"Apache Trout Recovery Fish Passage Infrastructure Project\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/apache-trout-recovery-fish-passage-infrastructure-project\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.383900000158,\n",
       "                33.7742000001864\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 2310000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.8544,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -109.4574,\n",
       "          \"Notes\": \"Partners involved/Community support: White Mountain Apache Tribe, USFS, Arizona GFD\",\n",
       "          \"OBJECTID\": 103,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"To achieve recovery and delist the Apache Trout, this project will remove 7 barriers and replace 6 culverts. Structural barriers will be removed on Flash, Squaw, Hayground, Home, Stinky, and Little Diamond creeks.  Culverts will be replaced on Paradise a\",\n",
       "          \"ProjectID\": \"{4bfcdeab-d0d7-4fb7-8699-2f21ffb1d047}\",\n",
       "          \"ProjectTit\": \"Apache Trout Recovery Fish Passage Infrastructure Project\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/apache-trout-recovery-fish-passage-infrastructure-project\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.457400000398,\n",
       "                33.8543999997568\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 2310000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.8105,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -109.4235,\n",
       "          \"Notes\": \"Partners involved/Community support: White Mountain Apache Tribe, USFS, Arizona GFD\",\n",
       "          \"OBJECTID\": 106,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"To achieve recovery and delist the Apache Trout, this project will remove 7 barriers and replace 6 culverts. Structural barriers will be removed on Flash, Squaw, Hayground, Home, Stinky, and Little Diamond creeks.  Culverts will be replaced on Paradise a\",\n",
       "          \"ProjectID\": \"{ba954a17-9ecb-464b-bd19-98e1d81663d8}\",\n",
       "          \"ProjectTit\": \"Apache Trout Recovery Fish Passage Infrastructure Project\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/apache-trout-recovery-fish-passage-infrastructure-project\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.42349999984,\n",
       "                33.8104999999681\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 2310000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.7958,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -109.6243,\n",
       "          \"Notes\": \"Partners involved/Community support: White Mountain Apache Tribe, USFS, Arizona GFD\",\n",
       "          \"OBJECTID\": 105,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"To achieve recovery and delist the Apache Trout, this project will remove 7 barriers and replace 6 culverts. Structural barriers will be removed on Flash, Squaw, Hayground, Home, Stinky, and Little Diamond creeks.  Culverts will be replaced on Paradise a\",\n",
       "          \"ProjectID\": \"{93552dfe-0cd6-4cf8-96bd-0e92a4e944fb}\",\n",
       "          \"ProjectTit\": \"Apache Trout Recovery Fish Passage Infrastructure Project\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/apache-trout-recovery-fish-passage-infrastructure-project\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.624300000278,\n",
       "                33.7958000002953\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 2310000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.7923,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -109.6399,\n",
       "          \"Notes\": \"Partners involved/Community support: White Mountain Apache Tribe, USFS, Arizona GFD\",\n",
       "          \"OBJECTID\": 104,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"To achieve recovery and delist the Apache Trout, this project will remove 7 barriers and replace 6 culverts. Structural barriers will be removed on Flash, Squaw, Hayground, Home, Stinky, and Little Diamond creeks.  Culverts will be replaced on Paradise a\",\n",
       "          \"ProjectID\": \"{759b5329-73f7-483e-b28e-bd74579f6314}\",\n",
       "          \"ProjectTit\": \"Apache Trout Recovery Fish Passage Infrastructure Project\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/apache-trout-recovery-fish-passage-infrastructure-project\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.639899999772,\n",
       "                33.7922999997488\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 2310000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.9504,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -109.7248,\n",
       "          \"Notes\": \"Partners involved/Community support: White Mountain Apache Tribe, USFS, Arizona GFD\",\n",
       "          \"OBJECTID\": 108,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"To achieve recovery and delist the Apache Trout, this project will remove 7 barriers and replace 6 culverts. Structural barriers will be removed on Flash, Squaw, Hayground, Home, Stinky, and Little Diamond creeks.  Culverts will be replaced on Paradise a\",\n",
       "          \"ProjectID\": \"{6e0fd10d-2d5d-499a-9634-bd9ab63b98e3}\",\n",
       "          \"ProjectTit\": \"Apache Trout Recovery Fish Passage Infrastructure Project\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/apache-trout-recovery-fish-passage-infrastructure-project\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.724800000056,\n",
       "                33.9503999998078\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 2310000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.9504,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -109.7248,\n",
       "          \"Notes\": \"Partners involved/Community support: White Mountain Apache Tribe, USFS, Arizona GFD\",\n",
       "          \"OBJECTID\": 111,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"To achieve recovery and delist the Apache Trout, this project will remove 7 barriers and replace 6 culverts. Structural barriers will be removed on Flash, Squaw, Hayground, Home, Stinky, and Little Diamond creeks.  Culverts will be replaced on Paradise a\",\n",
       "          \"ProjectID\": \"{554edfda-fab3-4cd0-bddf-9c0a9a2c2bea}\",\n",
       "          \"ProjectTit\": \"Apache Trout Recovery Fish Passage Infrastructure Project\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/apache-trout-recovery-fish-passage-infrastructure-project\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.724800000056,\n",
       "                33.9503999998078\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 2310000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.9444,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -109.6401,\n",
       "          \"Notes\": \"Partners involved/Community support: White Mountain Apache Tribe, USFS, Arizona GFD\",\n",
       "          \"OBJECTID\": 109,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"To achieve recovery and delist the Apache Trout, this project will remove 7 barriers and replace 6 culverts. Structural barriers will be removed on Flash, Squaw, Hayground, Home, Stinky, and Little Diamond creeks.  Culverts will be replaced on Paradise a\",\n",
       "          \"ProjectID\": \"{255ee856-2185-4052-90e2-62f11a391604}\",\n",
       "          \"ProjectTit\": \"Apache Trout Recovery Fish Passage Infrastructure Project\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/apache-trout-recovery-fish-passage-infrastructure-project\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.640099999788,\n",
       "                33.9444000003471\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 2310000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.9346,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -109.6332,\n",
       "          \"Notes\": \"Partners involved/Community support: White Mountain Apache Tribe, USFS, Arizona GFD\",\n",
       "          \"OBJECTID\": 110,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"To achieve recovery and delist the Apache Trout, this project will remove 7 barriers and replace 6 culverts. Structural barriers will be removed on Flash, Squaw, Hayground, Home, Stinky, and Little Diamond creeks.  Culverts will be replaced on Paradise a\",\n",
       "          \"ProjectID\": \"{17701c9e-307a-4439-870b-b8d8bb8bcf42}\",\n",
       "          \"ProjectTit\": \"Apache Trout Recovery Fish Passage Infrastructure Project\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/apache-trout-recovery-fish-passage-infrastructure-project\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.633199999667,\n",
       "                33.9345999999276\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 2310000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.8926,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -109.5081,\n",
       "          \"Notes\": \"Partners involved/Community support: White Mountain Apache Tribe, USFS, Arizona GFD\",\n",
       "          \"OBJECTID\": 112,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"To achieve recovery and delist the Apache Trout, this project will remove 7 barriers and replace 6 culverts. Structural barriers will be removed on Flash, Squaw, Hayground, Home, Stinky, and Little Diamond creeks.  Culverts will be replaced on Paradise a\",\n",
       "          \"ProjectID\": \"{997d76f8-8ab0-445f-980b-3b28bf84d4a2}\",\n",
       "          \"ProjectTit\": \"Apache Trout Recovery Fish Passage Infrastructure Project\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/apache-trout-recovery-fish-passage-infrastructure-project\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.508099999651,\n",
       "                33.8926000000084\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 2310000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.8858,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -109.5135,\n",
       "          \"Notes\": \"Partners involved/Community support: White Mountain Apache Tribe, USFS, Arizona GFD\",\n",
       "          \"OBJECTID\": 114,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"To achieve recovery and delist the Apache Trout, this project will remove 7 barriers and replace 6 culverts. Structural barriers will be removed on Flash, Squaw, Hayground, Home, Stinky, and Little Diamond creeks.  Culverts will be replaced on Paradise a\",\n",
       "          \"ProjectID\": \"{25e20ff9-3450-4c5f-b323-dbd1a727dedb}\",\n",
       "          \"ProjectTit\": \"Apache Trout Recovery Fish Passage Infrastructure Project\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/apache-trout-recovery-fish-passage-infrastructure-project\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.513500000097,\n",
       "                33.8858000001632\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 2310000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.8884,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -109.5138,\n",
       "          \"Notes\": \"Partners involved/Community support: White Mountain Apache Tribe, USFS, Arizona GFD\",\n",
       "          \"OBJECTID\": 113,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"To achieve recovery and delist the Apache Trout, this project will remove 7 barriers and replace 6 culverts. Structural barriers will be removed on Flash, Squaw, Hayground, Home, Stinky, and Little Diamond creeks.  Culverts will be replaced on Paradise a\",\n",
       "          \"ProjectID\": \"{5772b133-6c9a-4002-b5c8-597692a42c1c}\",\n",
       "          \"ProjectTit\": \"Apache Trout Recovery Fish Passage Infrastructure Project\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/apache-trout-recovery-fish-passage-infrastructure-project\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.513799999673,\n",
       "                33.8883999997406\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 2500000.0,\n",
       "          \"ImageLink\": \"https://dwpdst.doi.gov/power/BIL_Funding/BootlegAndCooley.jpg\",\n",
       "          \"Lat\": 34.02763533,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -109.62121057,\n",
       "          \"Notes\": \"$2.5M-design for all A1, Bootleg, Cooley, and Davis Dams\",\n",
       "          \"OBJECTID\": 1,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Safety of Dams, Water Sanitation, And Other Facilities\",\n",
       "          \"ProjectDes\": \"Dam rehabilitation will address various embankment and spillway issues at the four dams resulting in improved safety to population at risk (PAR) of an estimated 700 people.\",\n",
       "          \"ProjectID\": \"{241D4A4F-1ECB-4768-A0D6-6CB742F2F4D6}\",\n",
       "          \"ProjectTit\": \"A-1 Dam\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.621210572743,\n",
       "                34.0276353273699\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 2500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.99357462,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -109.75858224,\n",
       "          \"Notes\": \"$2.5M-design for all A1, Bootleg, Cooley, and Davis Dams\",\n",
       "          \"OBJECTID\": 26,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Safety of Dams, Water Sanitation, And Other Facilities\",\n",
       "          \"ProjectDes\": \"Dam rehabilitation will address various embankment and spillway issues at the four dams resulting in improved safety to population at risk (PAR) of an estimated 700 people.\",\n",
       "          \"ProjectID\": \"{497F4F1E-82E2-4FEE-8E20-A3E557818FC1}\",\n",
       "          \"ProjectTit\": \"Davis Dam\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.758582244955,\n",
       "                33.9935746184064\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 2500000.0,\n",
       "          \"ImageLink\": \"https://dwpdst.doi.gov/power/BIL_Funding/BootlegAndCooley.jpg\",\n",
       "          \"Lat\": 34.076,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -109.9304,\n",
       "          \"Notes\": \"$2.5M-design for all A1, Bootleg, Cooley, and Davis Dams\",\n",
       "          \"OBJECTID\": 4,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Safety of Dams, Water Sanitation, And Other Facilities\",\n",
       "          \"ProjectDes\": \"Dam rehabilitation will address various embankment and spillway issues at the four dams resulting in improved safety to population at risk (PAR) of an estimated 700 people.\",\n",
       "          \"ProjectID\": \"{09575548-01F0-45EC-A7BB-65AC13A0D890}\",\n",
       "          \"ProjectTit\": \"Bootleg Dam\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.930399999992,\n",
       "                34.0759999999975\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 2500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.07030532,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -109.91881063,\n",
       "          \"Notes\": \"$2.5M-design for all A1, Bootleg, Cooley, and Davis Dams\",\n",
       "          \"OBJECTID\": 25,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Safety of Dams, Water Sanitation, And Other Facilities\",\n",
       "          \"ProjectDes\": \"Dam rehabilitation will address various embankment and spillway issues at the four dams resulting in improved safety to population at risk (PAR) of an estimated 700 people.\",\n",
       "          \"ProjectID\": \"{193C670E-5F03-4F4F-A888-D7EBBC7CA00F}\",\n",
       "          \"ProjectTit\": \"Cooley Dam\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.918810633289,\n",
       "                34.0703053162108\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 34.099517,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -106.901239,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 794,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The New Mexico Environment Department (NMED) is the process of revising the, Remedial Design documents for the treatment of groundwater contamination. NMED is currently conducting sampling groundwater in the area.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"EAGLE PICHER CAREFREE BATTERY\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -106.901239000449,\n",
       "                34.0995169998269\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 300000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 35.25386961,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -106.1731561,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 235,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Restoration and revegetation of three watersheds that are heavily impacted by historic mining and milling operations.  Removal of invasive weeds and non-native vegetation, re-contouring incised streambeds, mitigating mine tailings and planting native see\",\n",
       "          \"ProjectID\": \"050XX08NM3822\",\n",
       "          \"ProjectTit\": \"Cooke's Peak, Flourite Ridge & New Placer\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"3\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -107.727859200059,\n",
       "                32.3876752901582\n",
       "              ],\n",
       "              [\n",
       "                -107.729203100385,\n",
       "                32.5496370996462\n",
       "              ],\n",
       "              [\n",
       "                -106.173156100299,\n",
       "                35.2538696101452\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 430740.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.7362,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -109.0332,\n",
       "          \"Notes\": \"Partners involved/Community support: Gila National Forest, Apache-Sitgreaves National Forest, New Mexico Environment Department, FHWA, Desert Fish Habitat Partnership, New Mexico DGF\",\n",
       "          \"OBJECTID\": 1239,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"This is an infrastructure project and will serve to fulfill the requirements of the Justice 40 initiative. Motorized Trail 63 in the Gila National Forest crosses Dry Blue Creek 8 times and NFS Road 8153A crosses Pace Creek leading to a degradation of loa\",\n",
       "          \"ProjectID\": \"{36453aa4-879c-4282-a803-53ed4746f873}\",\n",
       "          \"ProjectTit\": \"Gila National Forest Fish Passage Project\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/gila-national-forest-fish-passage-project\",\n",
       "          \"SiteCount\": \"12\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -109.033200000349,\n",
       "                33.7361999997161\n",
       "              ],\n",
       "              [\n",
       "                -108.9976000001,\n",
       "                33.7634999999219\n",
       "              ],\n",
       "              [\n",
       "                -108.999000000215,\n",
       "                33.7624000002417\n",
       "              ],\n",
       "              [\n",
       "                -109.001699999989,\n",
       "                33.7602000003508\n",
       "              ],\n",
       "              [\n",
       "                -109.003799999714,\n",
       "                33.7556999998079\n",
       "              ],\n",
       "              [\n",
       "                -109.006599999946,\n",
       "                33.7534999997447\n",
       "              ],\n",
       "              [\n",
       "                -109.030699999693,\n",
       "                33.7376999999652\n",
       "              ],\n",
       "              [\n",
       "                -108.997099999609,\n",
       "                33.7640999997715\n",
       "              ],\n",
       "              [\n",
       "                -109.026399999787,\n",
       "                33.7422999996841\n",
       "              ],\n",
       "              [\n",
       "                -109.017700000414,\n",
       "                33.7490000000621\n",
       "              ],\n",
       "              [\n",
       "                -109.006999999979,\n",
       "                33.7531999998436\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 240000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.1304,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -110.1014,\n",
       "          \"Notes\": \"Partners involved/Community support: San Carlos Apache Tribe, Arizona GFD\",\n",
       "          \"OBJECTID\": 116,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"The Bylas Springs Complex infrastructure project is on tribal land and would refurbish degraded and broken infrastructure supporting fish habitat and connectivity at several adjacent springs. The Bylas Springs Complex provides valuable habitat for a hist\",\n",
       "          \"ProjectID\": \"{10dbbe56-1dc2-483e-8d5a-76afc66356af}\",\n",
       "          \"ProjectTit\": \"Bylas Springs Habitat Expansion and Barrier Removal\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/bylas-springs-habitat-expansion-and-barrier-removal\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -110.101399999762,\n",
       "                33.1303999996378\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.28125943,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -110.2982357,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1362,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Indian Water Rights Settlements\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 024|1500000|San Carlos Apac]\",\n",
       "          \"ProjectTit\": \"San Carlos Apache Tribe (Distribution System)\\u202f\\u00a0\\u00a0\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/bipartisan-infrastructure-law-supports-580-million-investment-fulfill-indian-water\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -110.298235699816,\n",
       "                33.281259430185\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 18225000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 33.00546723,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -111.5232064,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1277,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Indian Water Rights Settlements\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 029|18225000|AZ Water Settle]\",\n",
       "          \"ProjectTit\": \"AZ Water Settlements Act Implementation - San Carlos Irrigation Project Rehabilitation\\u202f\\u00a0\\u00a0\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/bipartisan-infrastructure-law-supports-580-million-investment-fulfill-indian-water\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.523206400169,\n",
       "                33.005467229841\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.76265312,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -111.5726791,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 891,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Central Arizona Irrigation and Drainage District, Automated Control Gate Installation - Phase 1A\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.572679100419,\n",
       "                32.762653119735\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 40000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.25041475,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -110.9239568,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 995,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Increasing Rainwater Harvesting Capacity in Low-Income Neighborhoods\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4395\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -110.923956800439,\n",
       "                32.250414750078\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 30000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 31.75480798,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -110.5836204,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 207,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Eradication of bullfrogs to improve habitat and conserve T&E species.\",\n",
       "          \"ProjectID\": \"050XX06AZ0722\",\n",
       "          \"ProjectTit\": \"Las Cienegas NCA Bullfrog Eradication\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -110.583620399958,\n",
       "                31.754807979655\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Defense\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 1050000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 31.63269834,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -110.16675699,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1418,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Protect and restore groundwater essential for sustaining 43 miles of the U.S. Bureau of Land Management\\u2019s San Pedro Riparian National Conservation Area in the Fort Huachuca Sentinel Landscape. Project will coordinate hydrologic and ecological modeling\",\n",
       "          \"ProjectID\": \"80194\",\n",
       "          \"ProjectTit\": \"Adaptive Management of Water Resources in the Fort Huachuca Sentinel Landscape (AZ)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -110.166756989343,\n",
       "                31.6326983370999\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 31.59,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -106.23,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1122,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Riverside Canal Concrete Lining Project (Phase IV)\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4247\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -106.230000000274,\n",
       "                31.5899999999657\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 94346.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 31.04188899,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -104.8353793,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1174,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Van Horn, Water Meters and Automation for Increased System-Wide Water Use Efficiency\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -104.835379300039,\n",
       "                31.0418889896608\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 3500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 30.75939915,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -102.55353459,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1402,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Collaborate with partners to restore riparian and grassland ecosystems in priority conservation areas of the Chihuahuan Desert in Texas and New Mexico. Project will benefit several species including the yellow-billed cuckoo, Zone-tailed hawk, and other g\",\n",
       "          \"ProjectID\": \"80977\",\n",
       "          \"ProjectTit\": \"Integrated Grassland and Stream Restoration in the Chihuahuan Desert Ecosystem (NM,TX)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -102.553534593511,\n",
       "                30.7593991532937\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"Department-Wide Programs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 31.92,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -104.884,\n",
       "          \"Notes\": \"This project's exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 2 wells\",\n",
       "          \"OBJECTID\": 1313,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Orphaned Well Site Plugging, Remediation, And Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 022||Guadalupe Mount]\",\n",
       "          \"ProjectTit\": \"Guadalupe Mountains National Park\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -104.884000000344,\n",
       "                31.9200000000461\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 20000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 31.773,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -106.438,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 842,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water Recycling\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Advanced Water Purification Facility\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4296\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -106.438000000409,\n",
       "                31.7729999999299\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 31.76857,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -106.235,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 941,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"El Paso County Water Improvement District No. 1, Montoya Laterals System Concrete Lining Project Phase III\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -106.23499999979,\n",
       "                31.7685700001943\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 31.656072,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -96.931933,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 512,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Tehuacana Creek FRS No. 21 is a single purpose FRS that was designed in 1963 and built by the Natural Resources Conservation Service (NRCS) in 1965 as a low hazard dam and is located approximately 2.3 miles east of Axtell and 15 miles northeast of Waco i\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Tehuacana Creek Site 21\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -96.9319330002901,\n",
       "                31.6560719998063\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.734167,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -96.273889,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 822,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The 4-acre Van Der Horst USA Corporation site is located in Terrell, Texas. A chromium and iron electroplating facility operated at the site from the 1950s until 2006. Plating operations generated spent kerosene, wastewater treatment sludge and chromium-\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"VAN DER HORST USA CORPORATION\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -96.2738890002862,\n",
       "                32.7341670001394\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.549469,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -96.417445,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 489,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Historical floods in the past 67 years since FRS No. 9 and FRS No. 10 were constructed have caused the auxiliary spillways to function on at least four occasions on FRS No. 9 and more than ten occasions on FRS 10. These FRSs were constructed as low hazar\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Lower East Fork Laterals Site 10\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -96.4174450001037,\n",
       "                32.5494689997184\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.558725,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -96.394349,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 488,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Historical floods in the past 67 years since FRS No. 9 and FRS No. 10 were constructed have caused the auxiliary spillways to function on at least four occasions on FRS No. 9 and more than ten occasions on FRS 10. These FRSs were constructed as low hazar\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Lower East Fork Laterals 9\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -96.3943489997386,\n",
       "                32.5587249999188\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.908333,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -92.252944,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 743,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The United States Environmental Protection Agency (EPA) and the Louisiana Department of Environmental Quality (LDEQ) have been evaluating implementing a new cleanup strategy at the Marion Pressure Treating Company. Superfund site (MPTC Site) located in M\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"MARION PRESSURE TREATING\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -92.2529440003559,\n",
       "                32.9083329997646\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"Department-Wide Programs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.92,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -92.075,\n",
       "          \"Notes\": \"This project's exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 59 wells\",\n",
       "          \"OBJECTID\": 1367,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Orphaned Well Site Plugging, Remediation, And Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 014||Upper Ouachita ]\",\n",
       "          \"ProjectTit\": \"Upper Ouachita National Wildlife Refuge\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -92.0750000000839,\n",
       "                32.9200000001831\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"Department-Wide Programs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.62,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -92.213,\n",
       "          \"Notes\": \"This project's exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 68 wells\",\n",
       "          \"OBJECTID\": 1296,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Orphaned Well Site Plugging, Remediation, And Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 026||Darbonne Nation]\",\n",
       "          \"ProjectTit\": \"Darbonne National Wildlife Refuge\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -92.2129999998191,\n",
       "                32.6200000003635\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"Department-Wide Programs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.61,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -92.05,\n",
       "          \"Notes\": \"This project's exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 6 wells\",\n",
       "          \"OBJECTID\": 1280,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Orphaned Well Site Plugging, Remediation, And Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 014||Black Bayou Lak]\",\n",
       "          \"ProjectTit\": \"Black Bayou Lake National Wildlife Refuge\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -92.0499999998129,\n",
       "                32.6100000001698\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 31.91778827,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -92.63384344,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 742,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The 34-acre American Creosote Works, Inc. (Winnfield Plant) site is located in Winnfield, Louisiana. Wood treatment took place on site from 1901 to 1979. The treatment process used creosote and pentachlorophenol (PCP). After the site owner, Dickerson Lum\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"AMERICAN CREOSOTE WORKS, INC. (WINNFIELD PLANT)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -92.6338434403178,\n",
       "                31.9177882696266\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 20000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 31.31737949,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -95.66582817,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1077,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Perform Potential Responsible Party Search Report for Mariscal Mine, Big Bend National Park\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -95.6658281699892,\n",
       "                31.3173794900321\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"Department-Wide Programs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 31.5,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -94.775,\n",
       "          \"Notes\": \"This project's exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 9 wells\",\n",
       "          \"OBJECTID\": 1274,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Orphaned Well Site Plugging, Remediation, And Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 022||Angelina Nation]\",\n",
       "          \"ProjectTit\": \"Angelina National Forest\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -94.774999999708,\n",
       "                31.4999999997112\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"Department-Wide Programs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 31.45,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -93.765,\n",
       "          \"Notes\": \"This project's exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 2 wells\",\n",
       "          \"OBJECTID\": 1361,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Orphaned Well Site Plugging, Remediation, And Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 014||Sabine National]\",\n",
       "          \"ProjectTit\": \"Sabine National Forest\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -93.7649999997189,\n",
       "                31.4500000003232\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 947323.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 31.32728,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -92.7833252,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 894,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Central Wetlands Hydrologic Restoration, Marsh/Swamp Restoration and Planting: Design Phase\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -92.7833252002631,\n",
       "                31.3272799997053\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"Department-Wide Programs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 30.46,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -94.387,\n",
       "          \"Notes\": \"This project's exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 7 wells\",\n",
       "          \"OBJECTID\": 1279,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Orphaned Well Site Plugging, Remediation, And Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 026||Big Thicket Nat]\",\n",
       "          \"ProjectTit\": \"Big Thicket National Preserve\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -94.3869999999577,\n",
       "                30.4599999997148\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 30.577516,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -97.482612,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 515,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Upper Brushy Creek FRS No. 25 is a single purpose FRS that was designed in 1972 and built by the Natural Resources Conservation Service (NRCS) in 1975 as a low hazard dam and is located on Little Mustang Creek, a tributary to South Fork Mustang Creek, ap\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Upper Brushy 25\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -97.4826119996563,\n",
       "                30.5775159997317\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 31.079809,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -97.563318,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 497,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Nolan Creek FRS No. 12 is a single purpose dam that was designed and constructed as a significant hazard dam. FRS No. 12 was constructed in 1970 on an unnamed tributary of South Nolan Creek, a tributary of Nolan Creek, 3 miles east of Nolanville, or 7 mi\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Nolan Creek Site 12\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -97.5633180003394,\n",
       "                31.079808999669\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 430000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 31.4825,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -99.4393,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1105,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending for Revegetation of Mined Lands\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Remove Five Well Pads and Restore Native Vegetation at Padre Island National Seashore\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -99.4392999996446,\n",
       "                31.4824999999166\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 400000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 31.4825,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -99.4393,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1179,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Resilient Recreation Sites\",\n",
       "          \"ProjectDes\": \"This project will create an implementation plan for frontcountry park management to minimize impacts to ecological, biophysical, and cultural resources while maximizing the quality of visitor experiences at locations in the park experiencing high levels\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Visitor Access Planning to Protect Ecosystems and Enhance Visitor Experiences at Guadalupe Mountain National Park\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -99.4392999996446,\n",
       "                31.4824999999166\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 31856.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 31.4825,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -99.4393,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 940,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Edwards Aquifer Authority, Municipal and Industrial Meter Upgrades for Automation\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -99.4392999996446,\n",
       "                31.4824999999166\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 480000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 29.3695,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -100.4916,\n",
       "          \"Notes\": \"Partners involved/Community support: Texas DOT, Texas DPW\",\n",
       "          \"OBJECTID\": 133,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"The current crossing is prone to frequent flooding and washouts.This improved crossing will provide reliable access for many that rely upon the crossing to get into town in an under served rural community. The FM 2804 Pinto Creek crossing is in the middl\",\n",
       "          \"ProjectID\": \"{e8b75058-e7b6-45bf-9112-cfcbc6783719}\",\n",
       "          \"ProjectTit\": \"Pinto Creek Road Crossing Improvement Project\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/pinto-creek-road-crossing-improvement-project\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -100.491599999988,\n",
       "                29.3694999997702\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 29.650999,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -98.277275,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 471,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Comal 4 dam serves the surrounding community of Comal County, Texas and is currently classified as a high hazard potential dam based on the risk of loss of life downstream in the event of a breach. BIL rehab funds will be used to bring the dam to NRCS an\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Comal River 4\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -98.2772750004445,\n",
       "                29.6509989999739\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 29.55074106,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -98.30725587,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1166,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Universal City, Water Meters for More Accurate Real-Time Water Usage Data Collection\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -98.3072558697085,\n",
       "                29.5507410600205\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 29.49506792,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -98.61802439,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 825,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Site is located in the City of Leon Valley, Bexar County, on the northwest side of San Antonio, Texas.\\u00a0 The site is located in a commercial and industrial area of Leon Valley. Residences are located nearby. Two City of Leon Valley public water suppl\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"BANDERA ROAD GROUND WATER PLUME\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -98.6180243896997,\n",
       "                29.495067919939\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 29.857175,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -97.511229,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 490,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Lower Plum Creek Site 28 is an existing floodwater retarding structure located approximately 9.8 miles east of Lockhart and approximately 0.6 miles north of the McMahan Community, Caldwell County, Texas. Site 28 was designed in 1962 and constructed in 19\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Lower Plum 28\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -97.5112289999435,\n",
       "                29.857174999816\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 29.957185,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -97.654271,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 502,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"BIL REHAB funds will be used to extend the service life of the dam, rehabilitate the dam to current NRCS design safety and performance criteria and provide flood damage reduction downstream.\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Plum Creek Site 21\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -97.6542709999251,\n",
       "                29.9571850000194\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 29.868903,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -97.96931,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 521,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Upper San Marcos Floodwater Retarding Structure (FRS) No. 4 was designed and constructed as a high hazard dam with both flood prevention as well as water-based recreation facilities. Due to the recent updates from the NOAA Atlas 14, the increase in proje\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Upper San Marcos Site 5\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -97.9693100002842,\n",
       "                29.8689030000781\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 29.884968,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -98.031858,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 520,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Upper San Marcos Floodwater Retarding Structure (FRS) No. 4 was designed and constructed as a high hazard dam with both flood prevention as well as water-based recreation facilities. Due to the recent updates from the NOAA Atlas 14, the increase in proje\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Upper San Marcos Site 4\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -98.0318580001931,\n",
       "                29.8849679998916\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Defense\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 722792.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 29.80938681,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -98.31210529,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1413,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Enhance partnership capacity for implementing impactful conservation in the Camp Bullis Sentinel Landscape through efforts to develop resources to improve understanding of the Edwards and Trinity aquifers that support the Sentinel Landscape, surrounding\",\n",
       "          \"ProjectID\": \"79804\",\n",
       "          \"ProjectTit\": \"Enhancing Capacity of the Camp Bullis Sentinel Landscape Partnership\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -98.3121052927174,\n",
       "                29.809386810367\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 130000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 29.7538,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -98.8373,\n",
       "          \"Notes\": \"Partners involved/Community support: Texas DPW\",\n",
       "          \"OBJECTID\": 102,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"The project will remove a man-made earthen dam that is in disrepair. The removal will provide restoration to the area and springs that the impoundment currently covers and speed up the opening of the State Natural Area for public use.  The area will prov\",\n",
       "          \"ProjectID\": \"{61237c1e-b41f-49af-8ae3-d03d7a5f1746}\",\n",
       "          \"ProjectTit\": \"Albert and Bessie Kronkosky State Natural Area Dam Removal\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/albert-and-bessie-kronkosky-state-natural-area-dam-removal\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -98.8373000001615,\n",
       "                29.7538000003511\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 29.80721,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -98.790024,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 517,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Upper Cibolo Creek 2 dam  provides flood damage reduction to Kendall County, Texas.  Now classified as a high hazard potential dam due to development downstream, BIL REhab funds will be used to bring the dam to meet current NRCS and state design safety c\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Upper Cibolo Creek 2\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -98.7900239996831,\n",
       "                29.8072099997613\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 458225.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 30.33030985,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -97.70856986,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1442,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Build an understanding of underserved landowners\\u2019 barriers to conservation opportunities, and based on findings, develop a collaborative working relationship with landowners and partners within the Monarch Butterfly and Louisiana Pine snake Working Lan\",\n",
       "          \"ProjectID\": \"80623\",\n",
       "          \"ProjectTit\": \"Providing Equitable Technical Assistance to Increase Texas Landowners\\u2019 Engagement in Conservation\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"M\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -97.708569864903,\n",
       "                30.3303098529695\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 297480.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 29.69818224,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -96.33803968,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1444,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Initiate locally-led efforts to support voluntary working lands conservation to increase and improve habitat within the Monarch Butterfly and Northern Bobwhite Quail Working Lands for Wildlife geographies across a 17 county area of the Texas mid-coast. P\",\n",
       "          \"ProjectID\": \"81001\",\n",
       "          \"ProjectTit\": \"Elevating Working Land for Wildlife Grassland Conservation among Landowners in the Texas Mid-Coast\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"T\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -96.3380396817986,\n",
       "                29.6981822441883\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 29.94239942,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -95.58668911,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 824,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Jones Road Ground Water Plume site is located in the northwest portion of Harris County, Texas.\\u00a0 The source of Site contamination is the former Bell Dry Cleaners facility, which was located within the Cypress Shopping Center at 11600 Jones Road, app\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"JONES ROAD GROUND WATER PLUME\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -95.5866891096393,\n",
       "                29.9423994202752\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": \"Department-Wide Programs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 29.97,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -92.877,\n",
       "          \"Notes\": \"This project's exact funding amount was not provided by the DOI, but the press release noted that it is paying for plugging, remediating, and reclaiming 11 wells\",\n",
       "          \"OBJECTID\": 1330,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Orphaned Well Site Plugging, Remediation, And Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 022||Lacassine Natio]\",\n",
       "          \"ProjectTit\": \"Lacassine National Wildlife Refuge\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-33-million-infrastructure-investment-address\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -92.8769999999383,\n",
       "                29.9700000000018\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 28.814727,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -97.902172,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 476,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Escondido Creek Watershed FRS No. 4 was designed and constructed as a low hazard dam with a single purpose of flood prevention. FRS No. 4 does not meet current dam design and safety requirements. Breach studies indicate that approximately sixty residence\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Escondido Site 4\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -97.9021720000406,\n",
       "                28.8147270001777\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 28.830715,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -97.923212,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 475,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Escondido Creek Watershed FRS No. 12 is a single purpose FRS that was designed and\\nconstructed as a low hazard dam with a single purpose of flood prevention. FRS No. 12 does not meet current dam design and safety requirements and the current classificati\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Escondido Site 12\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -97.9232120001637,\n",
       "                28.830715000246\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 28.778474,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -97.895389,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 474,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Escondido Creek Watershed Floodwater Retarding Structure (FRS) No. 1 was designed and constructed as a low hazard dam with a single purpose of flood prevention. FRS No. 1 was designed and constructed according to low hazard criteria and is now classified\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Escondido Site 1\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -97.8953890000949,\n",
       "                28.778474000377\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 28.778474,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -97.895389,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 516,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Upper Brushy Creek Watershed Floodwater Retarding Dam No. 29 was designed and constructed as a low hazard dam with a single purpose of flood prevention. Breach studies indicate that at least one resident, 3 county roads and State Highway 95 are at risk f\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Upper Brushy Creek 29\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -97.8953890000949,\n",
       "                28.778474000377\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Park Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 29000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 29.095245,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -103.187509,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 285,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Search for evidence to determine liability for contamination by matching wastes found at the site with parties that may have contributed wastes to the site, and/or identify persons responsible for the release of hazardous wastes at the site.\",\n",
       "          \"ProjectID\": \"100XX08TX0322\",\n",
       "          \"ProjectTit\": \"Mariscal Mine Potential Resp. Party Search BIBE\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -103.187508999943,\n",
       "                29.0952449998969\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 8000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 31.91066331,\n",
       "          \"LatLongTyp\": \"Tribe\",\n",
       "          \"Long\": -111.8524536,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1364,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Indian Water Rights Settlements\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": \"[DOI - 024|8000000|So. Arizona Wat]\",\n",
       "          \"ProjectTit\": \"So. Arizona Water Rights Settlement - Farm Extension\\u202f\\u00a0\\u00a0\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/bipartisan-infrastructure-law-supports-580-million-investment-fulfill-indian-water\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.852453599728,\n",
       "                31.9106633102881\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Park Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 101000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.02826566,\n",
       "          \"LatLongTyp\": \"Organ Pipe Cactus National Monument, AZ\",\n",
       "          \"Long\": -112.8321163,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 278,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Remove fencing and backfill 25 high hazard abandoned mineral land features at Organ Pipe Cactus National Monument to restore landscape to pre-disturbed conditions.\",\n",
       "          \"ProjectID\": \"100XX08AZ1222\",\n",
       "          \"ProjectTit\": \"Restoration of 25 Mine Hazards at ORPI\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.83211629961,\n",
       "                32.028265659996\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Bureau of Indian Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1000000.0,\n",
       "          \"ImageLink\": \"https://dwpdst.doi.gov/power/BIL_Funding/CasaGrandeSubstation.jpg\",\n",
       "          \"Lat\": 32.86472761,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -111.77375325,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 73,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Tribal Irrigation and Power Systems\",\n",
       "          \"ProjectDes\": \"SCIP power utility provides electricity to San Carlos Indian Reservation, Gila River Indian Reservation, and to areas in Arizona outside the reservation boundaries. Substation has old equipment that needs to be replaced and relocated.\",\n",
       "          \"ProjectID\": \"{D035631A-8636-45D8-8BE5-9307F2834117}\",\n",
       "          \"ProjectTit\": \"San Carlos Irrigation Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -111.773753249614,\n",
       "                32.8647276116492\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.86,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -112.05,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 637,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bPinal County is interested in completing a watershed plan in the Smith Wash watershed (117,000 acres). The primary concern they hope to address is historic and repeated flood damages to rural infrastructure, crops, and homes. Pinal County will be payi\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"PIFR - Smith Wash\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -112.050000000123,\n",
       "                32.8599999998652\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 772123.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.76951,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -113.906,\n",
       "          \"Notes\": \"Project is an Imperial Dam project that will rectify aging Category 2 RO&M recommendation at the dam, increase efficiency of dam function, and reducing maintenance of aging infrastructure. Funding is provided for implementation.\",\n",
       "          \"OBJECTID\": 1215,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yuma Area Projects - Gila Diversion Motor\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -113.906000000012,\n",
       "                32.7695100003109\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.76951,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -113.906,\n",
       "          \"Notes\": \"The West Main Canal Heading is centrally located in Yuma, Arizona, up against two major roads, a bike path, and low income residential areas. Due to the age of the system and fluctuations in flow, the feature has experienced significant backing up near t\",\n",
       "          \"OBJECTID\": 1231,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yuma Area Projects - WMC\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -113.906000000012,\n",
       "                32.7695100003109\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1044230.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.76951,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -113.906,\n",
       "          \"Notes\": \"Project is an Imperial Dam project with minimal design requirements, minimal permitting requirements, and is operated to facilitate Colorado River water delivery to southern AZ.  Funding is provided for implementation.\",\n",
       "          \"OBJECTID\": 1218,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yuma Area Projects - Gila Imbeds\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -113.906000000012,\n",
       "                32.7695100003109\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 50000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.76951,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -113.906,\n",
       "          \"Notes\": \"Sloughing has been an ongoing issue on the GGMC for over a decade. The O&M road is a the main access to the widely used Mittry Lake area so the traffic on this road far exceeds what was expected in the design of the facility nearly 100 years ago. This pr\",\n",
       "          \"OBJECTID\": 1214,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yuma Area Projects - GGMC\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -113.906000000012,\n",
       "                32.7695100003109\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 250000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.76951,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -113.906,\n",
       "          \"Notes\": \"This project will fund all or part of the replacement of\\u00a0several flumes within our water distribution system.\\u00a0A number of flumes\\u00a0of significant age\\u00a0within our system have been identified as\\u00a0requiring replacement as a result of many years of repairs\",\n",
       "          \"OBJECTID\": 1213,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yuma Area Projects - Flume Replacements\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -113.906000000012,\n",
       "                32.7695100003109\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 2262497.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.76951,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -113.906,\n",
       "          \"Notes\": \"Project is an Imperial Dam project with minimal design requirements, minimal permitting requirements, and facilitates Colorado River water delivery to southern Arizona. Funding is provided for implementation.\",\n",
       "          \"OBJECTID\": 1216,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yuma Area Projects - Gila Gate\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -113.906000000012,\n",
       "                32.7695100003109\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 333000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.76951,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -113.906,\n",
       "          \"Notes\": \"YMIDD serves the larger Yuma mesa area as well as wheels deliveries to a second water district, Unit B. Though Unit B is small, both YMIDD and Unit B have a large amount of water ordered but not diverted (WOND), in part from their system being manually o\",\n",
       "          \"OBJECTID\": 1232,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yuma Area Projects - YMIDD\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -113.906000000012,\n",
       "                32.7695100003109\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 887360.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.76951,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -113.906,\n",
       "          \"Notes\": \"This project is on the Gila Gravity Main Canal (GGMC) which delivers Colorado River water to the greater Yuma area. It is an outstanding and aged recommendation and the wasteway is in very bad condition. Multiple parties contribute to the GGMC maintenanc\",\n",
       "          \"OBJECTID\": 1217,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Aging Infrastructure Account\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Yuma Area Projects - Gila Gravity\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-announces-over-240-million-bipartisan-infrastructure-law\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -113.906000000012,\n",
       "                32.7695100003109\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior and Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service and the Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 5000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.57181032,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -114.80007148,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1394,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Restore 431 acres of native cottonwood, willow, mesquite, and wetland habitat in the floodplain of the Colorado River Delta on the Cocopah Indian Reservation and establish a Tribal youth conservation corps. Project will perform earthwork, install irrigat\",\n",
       "          \"ProjectID\": \"80714\",\n",
       "          \"ProjectTit\": \"Cocopah Colorado River Limitrophe Restoration (AZ)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -114.800071478338,\n",
       "                32.5718103202001\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Bureau of Land Management\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 641000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.6485,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -116.5849,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 192,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Treat vegetation to improve Hermes copper butterfly habitat. Hermes copper is a T&E species. Treatments will also have a fire risk reduction benefit.\",\n",
       "          \"ProjectID\": \"050XX02CA4722\",\n",
       "          \"ProjectTit\": \"Hermes Copper Habitat Enhancement Project\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -116.584900000137,\n",
       "                32.6485000003335\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 28300000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 32.845,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -117.01,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 937,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water Recycling\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"East County Advanced Water Purification Program Phase 2\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4296\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -117.009999999812,\n",
       "                32.844999999813\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 19.6012344,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -155.5211639,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1027,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Maui Landscape Conservation Plan:  Implementation\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -155.521163899773,\n",
       "                19.6012344002972\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 592000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 19.6012344,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -155.5211639,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1154,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Supporting Inter-Bureau Endemic Species Extinction Prevention Efforts: Vector Management for Invasive Mosquitoes\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -155.521163899773,\n",
       "                19.6012344002972\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 6000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 19.6012344,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -155.5211639,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1153,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Supporting Inter-Bureau Endemic Species Extinction Prevention Efforts: Novel Eradication Techniques for Invasive Mosquitoes at Haleakala National Park\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -155.521163899773,\n",
       "                19.6012344002972\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 6500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 19.6012344,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -155.5211639,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 945,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Endemic Species Extinction Prevention - Captive Propagation Facility Construction / Novel Mosquito Management\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -155.521163899773,\n",
       "                19.6012344002972\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 19.6012344,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -155.5211639,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1152,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Direct Federal Spending For Invasives\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Supporting Inter-Bureau Endemic Species Extinction Prevention Efforts: Novel Eradication Techniques for Invasive Mosquitoes\",\n",
       "          \"ProjectWeb\": \"https://doi.gov/priorities/investing-americas-infrastructure/ecosystem-restoration/projects\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -155.521163899773,\n",
       "                19.6012344002972\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Geological Survey\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 592000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 22.5272138,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -154.8486905,\n",
       "          \"Notes\": \"Moved from source coordinates (-154.8486905, 22.5272138, which placed the point in the ocean) to UH Hilo campus inferred from: https://www.usgs.gov/mission-areas/ecosystems/science/bipartisan-infrastructure-law-ecosystem-restoration-activity-6\",\n",
       "          \"OBJECTID\": 253,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Hawaiian honeycreepers face an extinction crisis, largely due to impacts of avian malaria vectored by invasive mosquitoes (Culex quinquefasciatus). Multiple species of honeycreepers have gone extinct and 4 ESA-listed species are critically endangered, wi\",\n",
       "          \"ProjectID\": \"080XX06HI1022\",\n",
       "          \"ProjectTit\": \"Invasive Avian Malaria Vector of HI Bird Response\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -155.085695031253,\n",
       "                19.7000886169833\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 20.0856737,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -155.7171332,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1086,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Protecting Forests for Water Supply Sustainability in Kohala Hawaii Phase 2\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -155.717133199889,\n",
       "                20.0856737003726\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 20.0856737,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -155.718,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1085,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Protecting Forests for Water Supply Sustainability in Kohala Hawaii Phase 1\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -155.717999999578,\n",
       "                20.0856737003726\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Park Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 6000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 20.708333,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -156.0925,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 266,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The project goal is to suppress invasive mosquito populations at a landscape level through biocontrol to reduce avian malaria and prevent the extinction of several federally threatened and endangered native forest bird populations.\",\n",
       "          \"ProjectID\": \"100XX06HI3322\",\n",
       "          \"ProjectTit\": \"Address impacts of Avian Malaria in Hawaii\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -156.092499999559,\n",
       "                20.7083330001126\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Defense\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 250000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 21.3041114,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -157.85644515,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1386,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Coordinate and plan conservation priorities to support capacity building and future action within the anticipated Sentinel Landscape designation in Hawaii. Project will strategically communicate with partners to establish appropriate advisory and impleme\",\n",
       "          \"ProjectID\": \"80961\",\n",
       "          \"ProjectTit\": \"Leveraging Active Conservation Partnerships for Hawaiian Sentinel Landscape Planning (HI)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -157.856445153285,\n",
       "                21.3041113959629\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 6280000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 22.11006566,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -159.58125204,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1416,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Protect multiple species of honeycreeper including the 'akeke'e, 'akikiki, kiwikiu and 'akohekohe, by employing the incompatible insect technique to suppress invasive southern house mosquitos in native forests on Kaua'i and help spread these practices on\",\n",
       "          \"ProjectID\": \"79960\",\n",
       "          \"ProjectTit\": \"Suppression of Invasive Mosquitoes to Prevent Extinction of Four Hawaiian Honeycreepers on Kaua\\u2018i and Maui (HI)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"2\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -159.581252042283,\n",
       "                22.1100656647072\n",
       "              ],\n",
       "              [\n",
       "                -156.280671343596,\n",
       "                20.8069834848184\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 15.17465,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -145.77451,\n",
       "          \"Notes\": \"Manually Moved to Oahu. Coordinates supplied by NRCS put point in ocean hundreds of km SW of islands. True location of project not able to be determined from documention.\",\n",
       "          \"OBJECTID\": 658,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"A supplement to Plan-EIS will be prepared for the final phase of Plan-EIS completed in September 1993. Planning will address flooding, irrigation infrastructure needs, and marine habitat enhancements.  Flooding concerns will consider flood and sediment s\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Supplement to Kagman Watershed Plan-EIS September 1993\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -157.934154365197,\n",
       "                21.3483664671928\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 21.50219005,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -158.004226,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 300,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"The goal of the project is to carryout landscape-scale nonnative, invasive mosquito control (with the goal of eradication) to prevent the extinction of Hawaii's endemic forest birds due to avian malaria transmitted by mosquitoes.\",\n",
       "          \"ProjectID\": \"150XX06HI1022\",\n",
       "          \"ProjectTit\": \"HI Forest Bird Extinction Prevention - Activity 6\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -158.004225999952,\n",
       "                21.5021900497355\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 6500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 22.154339,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -159.614353,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 298,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"This project has two goals to support Hawaiian forest bird extinction prevention.  Construction of additional forest bird captive propagation facilities and landscape-level implementation of a biological control (use of Wolbachia) to reduce the mosquito\",\n",
       "          \"ProjectID\": \"150XX04HI0822\",\n",
       "          \"ProjectTit\": \"HI Forest Bird Extinction Prevention - Activity 4\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"4\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -155.385818000393,\n",
       "                19.515787000022\n",
       "              ],\n",
       "              [\n",
       "                -156.237945999937,\n",
       "                20.7657449996768\n",
       "              ],\n",
       "              [\n",
       "                -156.308773000167,\n",
       "                20.843665000135\n",
       "              ],\n",
       "              [\n",
       "                -159.614353000379,\n",
       "                22.1543390002773\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1715583.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 20.79052347,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -156.3370985,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 447,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Implementation of the first stage of the Maui Landscape Conservation Plan to protect and recover at-risk species on Maui Nui, Hawaii. Project will prevent near-term imminent extinction of target plant species, expand horticultural expertise for propagati\",\n",
       "          \"ProjectID\": \"77794\",\n",
       "          \"ProjectTit\": \"Implementing the Maui Landscape Conservation Plan to Benefit At-Risk Native Species (HI)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -156.33709849984,\n",
       "                20.7905234698778\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 1080244.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 20.79,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -156.33,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1012,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Water Recycling\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Lahaina Water Recycling Project #3: West Maui Recycled Water Expansion\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4296\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -156.329999999888,\n",
       "                20.7900000001781\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 26.349461,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -98.693576,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 501,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Site 5 was constructed under John A. Shuford in 1961. The Olmitos-Garcia Creek WS provides flood protection and recreational benefits to surrounding areas of Starr County. Rehabilitation of this dam is necessary to bring the dam into compliance with NRCS\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Olmitos & Garcias Creek Site 6\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -98.6935760001146,\n",
       "                26.3494610002861\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 26.351505,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -98.686557,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 500,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"Site 5 was constructed under John A. Shuford in 1963. The Olmitos-Garcia Creek WS provides flood protection and recreational benefits to surrounding areas of Starr County. Rehabilitation of this dam is necessary to bring the dam into compliance with NRCS\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Olmitos & Garcias Creek Site 5\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -98.6865570001674,\n",
       "                26.3515049997298\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 26.29886997,\n",
       "          \"LatLongTyp\": \"City\",\n",
       "          \"Long\": -98.16699461,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 939,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Edinburg, Water Accountability Through Efficient Response Project\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -98.1669946100788,\n",
       "                26.298869970167\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 100000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 26.13326,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -97.5182,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 983,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Harlingen Irrigation District Cameron County No.1, Adams Gardens Reservoir Improvements - Phase 2\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/news-release/4402\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -97.5182000002101,\n",
       "                26.1332600001249\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 26.13326,\n",
       "          \"LatLongTyp\": \"County\",\n",
       "          \"Long\": -97.5182,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1080,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Pipeline Improvements and Laguna Atascosa National Wildlife Refuge Water Management Improvements\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -97.5182000002101,\n",
       "                26.1332600001249\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"National Park Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 430000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 27.49164098,\n",
       "          \"LatLongTyp\": \"Padre Island National Seashore\",\n",
       "          \"Long\": -97.2792018,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 286,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Remove five abandoned well pads and their access roads to reclaim the landscape for the benefit of the endangered Northern Aplomado Falcon at Padre Island National Seashore.\",\n",
       "          \"ProjectID\": \"100XX08TX2922\",\n",
       "          \"ProjectTit\": \"Remove and restore one well pad at PAIS\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -97.2792018004303,\n",
       "                27.4916409803138\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Defense\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 1405947.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 27.64244434,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -81.25974421,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1422,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Collaborate with partners to improve the conservation value, viability, and long-term resilience of working lands in the Avon Park Air Force Range Sentinel Landscape by providing technical, financial, and organizational support to private landowners to i\",\n",
       "          \"ProjectID\": \"80416\",\n",
       "          \"ProjectTit\": \"Working Rangelands Resiliency in the Avon Park Air Force Range Sentinel Landscape (FL)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -81.2597442140527,\n",
       "                27.6424443439081\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 1500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 26.95633025,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -81.32674335,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1398,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Pilot payment for ecosystem services program to maintain and enhance habitat for the Florida panther as a critical step in expanding their range and establishing new populations as prioritized in the Florida panther recovery plan. The success of this pil\",\n",
       "          \"ProjectID\": \"80860\",\n",
       "          \"ProjectTit\": \"Building Landowner Participation in the Florida Panther Recovery Efforts (FL)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -81.3267433491264,\n",
       "                26.956330251315\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 25.83194979,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -80.21028332,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 732,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Continental Cleaners\\u00a0Superfund\\u00a0site is located at 798 NW 62nd Street at the intersection of NW 62nd Street and NW 8th Avenue in the Liberty City neighborhood in Miami, Florida. The site is less than an acre in size and features a single-story, 2,40\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"CONTINENTAL CLEANERS\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.2102833203,\n",
       "                25.8319497902498\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 25.92399358,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -80.22061538,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 731,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The 4-acre Anodyne, Inc.\\u00a0Superfund\\u00a0site is located in the Sunshine State Industrial Park, an unincorporated part of Miami-Dade County, Florida near North Miami Beach. The industrial park is located in a mixed residential, commercial and industrial area\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"ANODYNE, INC.\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -80.2206153797786,\n",
       "                25.9239935796978\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 270015.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 26.00680072,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -81.41434887,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 436,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Review and refine of the boundaries of high priority proposed acquisition projects for the Florida Forever program that will increase public access to natural areas, streamline habitat management, benefit at-risk species, and expand habitat connectivity.\",\n",
       "          \"ProjectID\": \"77561\",\n",
       "          \"ProjectTit\": \"Florida Forever: Collaborative Land Protection Planning for Efficiency and Habitat Connectivity\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -81.4143488702306,\n",
       "                26.0068007196484\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 6332664.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 17.966691,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -67.18093073,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 433,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Restore coastal habitat and hydrological connectivity in two shore segments in Cabo Rojo to improve adaptation for sea level rise and reduce threats from coastal erosion and flooding. Project will benefit important shorebird migration stopover habitat fo\",\n",
       "          \"ProjectID\": \"77502\",\n",
       "          \"ProjectTit\": \"Restoring Coastal Habitat and Resilience at Culturally Important Cabo Rojo Salt Flats (PR)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -67.1809307301636,\n",
       "                17.9666909999803\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 18.3974,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -66.9265,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 583,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"\\u200bPuerto Rico's Irrigation Districts (Isabela, Costa Sur and Lajas Valley) were built in the early 1900s as part of the infrastructure development related to the sugar cane agricultural activities and consist of water reservoirs and a channels, mains an\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Isabela Irrigation District\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -66.9265000002154,\n",
       "                18.3974000001918\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 1500000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 18.392722,\n",
       "          \"LatLongTyp\": \"Project centroid\",\n",
       "          \"Long\": -67.150944,\n",
       "          \"Notes\": \"Partners involved/Community support: Caribbean Ecological Services, Protectores de Cuencas, Puerto Rico DNER, University of Puerto Rico at Mayague, Caribbean Coastal Program, Caribbean PFW\",\n",
       "          \"OBJECTID\": 138,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"National Fish Passage Program\",\n",
       "          \"ProjectDes\": \"This project will remove and by pass the dam on the Culebrinas River, opening up 302 miles of riverine habitat for depleted diadromous and catadromous species. It will significantly enhance the water quality at the nearby estuary directly benefitting the\",\n",
       "          \"ProjectID\": \"{a78d8b63-7b37-4e66-b1c9-266a9d289bad}\",\n",
       "          \"ProjectTit\": \"Culebrinas Dam Removal/Bypass\",\n",
       "          \"ProjectWeb\": \"https://www.fws.gov/project/culebrinas-dam-removalbypass\",\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -67.1509440002908,\n",
       "                18.392722000155\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 18.298298,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -67.128581,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 472,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"In the early 1980s NRCS supported the PR government thru the Department of Natural and Environmental Resources (DNER) as sponsor in the construction of two Floodwater Retarding Structure (FRS) along the An\\u0303asco River Watershed, Site 3 (Dague\\u0308y Dam) and\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Daugey Lake\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -67.1285810000447,\n",
       "                18.2982979998786\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 18.296431,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -67.137219,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 456,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed Rehabilitation\",\n",
       "          \"ProjectDes\": \"In the early 1980s NRCS supported the PR government thru the Department of Natural and Environmental Resources (DNER) as sponsor in the construction of two Floodwater Retarding Structure (FRS) along the An\\u0303asco River Watershed, Site 3 (Dague\\u0308y Dam) and\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Ajies\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -67.1372190003909,\n",
       "                18.2964310002965\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Environmental Protection Agency\",\n",
       "          \"AtlasCateg\": \"Environmental Remediation\",\n",
       "          \"Bureau\": null,\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 18.295711,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -66.286206,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 813,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Superfund Clean-Up\",\n",
       "          \"ProjectDes\": \"The Corozal Well site consists of a ground water plume with no identified source(s) of contamination, located in Barrio Palos Blancos, Corozal, a rural residential community in interior north-central Puerto Rico. The site straddles the border between the\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"COROZAL WELL\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -66.2862059996583,\n",
       "                18.2957110002579\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Clean Energy and Power\",\n",
       "          \"Bureau\": \"U.S. Geological Survey\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 805892.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 18.2241917,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -66.4767151,\n",
       "          \"Notes\": \"The resulting data will be used by scientists at the USGS, the University of Puerto Rico at Mayag\\u00fcez, and other groups to better inform knowledge of geologic hazards, such as earthquakes and landslides, and evaluate natural resources as well as other ap\",\n",
       "          \"OBJECTID\": 1025,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Earth Mapping Resources Initiative\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Magnetic and Radiometric Surveys of Puerto Rico\",\n",
       "          \"ProjectWeb\": \"https://www.usgs.gov/news/national-news-release/bipartisan-infrastructure-law-helps-scientists-map-geology-puerto-rico\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -66.476715099627,\n",
       "                18.2241916996166\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 5000000.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 18.2241917,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -66.4767151,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1050,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Nature-based solutions in the Cabo Rojo Salt Flats to enhance public use and foster public engagement and socio-economic development (PR)\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -66.476715099627,\n",
       "                18.2241916996166\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of Agriculture\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Natural Resource Conservation Service\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 18.3569,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -65.0178,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 676,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Watershed and Flood Prevention Operations\",\n",
       "          \"ProjectDes\": \"The Bordeaux Farming Community in Fentress County on St. Thomas, USVI need BIL WFPO funds to implement irrigation water quality and quantity improvements to aid the local agricultural community, and address current insufficient water supply for residents\",\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"West End - Bordeaux Area - St. Thomas Island\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Recommended for funding\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -65.0178000000099,\n",
       "                18.356899999657\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Office of Insular Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 297241.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 18.37320016,\n",
       "          \"LatLongTyp\": \"Savana island, U.S. Virgin Islands\",\n",
       "          \"Long\": -65.07980345,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 311,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Create a habitat for endangered snake by ridding Savana island of invasive rats.\",\n",
       "          \"ProjectID\": \"410XX06VI0422\",\n",
       "          \"ProjectTit\": \"Creating capacity for invasive species eradications in the U.S. Virgin Islands and a new refuge for the endangered Virgin Islands tree boa\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -65.0798034501767,\n",
       "                18.3732001598559\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Water Infrastructure\",\n",
       "          \"Bureau\": \"Bureau of Reclamation\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": null,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 18.03407389,\n",
       "          \"LatLongTyp\": \"Site\",\n",
       "          \"Long\": -66.8554142,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 838,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"WaterSMART Grants\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Accelerating Recovery and Increasing Resiliency of Coastal Wetlands in Punta Tuna Natural Reserve in Maunabo Puerto Rico\",\n",
       "          \"ProjectWeb\": \"https://www.usbr.gov/newsroom/#/news-release/4261\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Funding Information Not Available\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -66.8554141998438,\n",
       "                18.0340738900161\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior and Department of Commerce\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service and the National Oceanic and Atmospheric Administration\",\n",
       "          \"FYFunded\": \"2023\",\n",
       "          \"FundingAmo\": 2109596.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 17.73278472,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -64.76846224,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1431,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Create the first conservation corridor that spans the length of St. Croix by partnering with local organizations and employing a youth green skills corps. Project will expand public access while stemming erosion along 2.11 miles of beach and will use env\",\n",
       "          \"ProjectID\": \"80929\",\n",
       "          \"ProjectTit\": \"Leveraging Public-Private Partnerships to Connect Conserved Lands of the U.S. Virgin Islands\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": \"Awarded-Pending\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -64.7684622407171,\n",
       "                17.7327847152104\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Office of Insular Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 250095.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": 17.73780427,\n",
       "          \"LatLongTyp\": \"St. Croix, U.S. Virgin Islands\",\n",
       "          \"Long\": -64.83600435,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 313,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"1. Construction of a Recreational Pavilion\\n2. Rehabilitation of the North Beach Parking, including improving drainage\\n3. Construct a north beach trail\\n\\nSPNWR) is home to three endangered sea turtle species, one endemic endangered lizard, three endangered\",\n",
       "          \"ProjectID\": \"410XX07VI0622\",\n",
       "          \"ProjectTit\": \"Sandy Point NWR Facility Updates\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -64.836004349888,\n",
       "                17.7378042702368\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"America the Beautiful Challenge Grants\",\n",
       "          \"Bureau\": \"U.S. Fish and Wildlife Service\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 864262.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": -11.05587633,\n",
       "          \"LatLongTyp\": null,\n",
       "          \"Long\": -171.0784383,\n",
       "          \"Notes\": \"FundingAmmount = \\\"TotalAmmount\\\" field in soruce table; ID = Unique Id (EZ Grants ID) is source table\",\n",
       "          \"OBJECTID\": 422,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"America the Beautiful Challenge Grants\",\n",
       "          \"ProjectDes\": \"Engage community stakeholders and collaborate with conservation experts to identify opportunities and build capacity for tropical restoration and invasive species management on Swain\\u2019s Island. Project will create an operational and reforestation plan f\",\n",
       "          \"ProjectID\": \"77137\",\n",
       "          \"ProjectTit\": \"Swains Island Tropical Ecosystem Restoration and Invasive Species Management Planning (AS)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -171.078438300319,\n",
       "                -11.055876329579\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"DOI Office of the Secretary\",\n",
       "          \"FYFunded\": null,\n",
       "          \"FundingAmo\": 864262.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": -14.271,\n",
       "          \"LatLongTyp\": \"State\",\n",
       "          \"Long\": -170.132,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 1155,\n",
       "          \"ParentProg\": null,\n",
       "          \"ProgramNam\": \"Grants For States And Tribes For Voluntary Restoration\",\n",
       "          \"ProjectDes\": null,\n",
       "          \"ProjectID\": null,\n",
       "          \"ProjectTit\": \"Swains Island (AS) Tropical Ecosystem Restoration Planning for Invasive Mammal Eradication and Rainforest Realignment\",\n",
       "          \"ProjectWeb\": \"https://www.doi.gov/pressreleases/biden-harris-administration-joins-national-fish-and-wildlife-foundation-private\",\n",
       "          \"SiteCount\": null,\n",
       "          \"Status\": \"Announced\",\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -170.13199999963,\n",
       "                -14.2710000003061\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        },\n",
       "        {\n",
       "          \"AgencyName\": \"Department of the Interior\",\n",
       "          \"AtlasCateg\": \"Resilience and Ecosystem Restoration\",\n",
       "          \"Bureau\": \"Office of Insular Affairs\",\n",
       "          \"FYFunded\": \"2022\",\n",
       "          \"FundingAmo\": 389025.0,\n",
       "          \"ImageLink\": null,\n",
       "          \"Lat\": -14.33013408,\n",
       "          \"LatLongTyp\": \"Leone village, American Samoa\",\n",
       "          \"Long\": -170.7800495,\n",
       "          \"Notes\": null,\n",
       "          \"OBJECTID\": 315,\n",
       "          \"ParentProg\": \"Bipartisan Infrastructure Law\",\n",
       "          \"ProgramNam\": \"Ecosystem Restoration Program\",\n",
       "          \"ProjectDes\": \"Cleanup the second largest wetland ecosystem in Leone village and replant more than 1,000 mangrove seedlings and riparian tree species to restore its degraded areas of the mangrove rainforests. This project also includes enhancing community climate adapt\",\n",
       "          \"ProjectID\": \"410XX09AS0722\",\n",
       "          \"ProjectTit\": \"Toetu Auomanu Jemima Nafatali Loia Tagoa'I (GIS and database officer)\",\n",
       "          \"ProjectWeb\": null,\n",
       "          \"SiteCount\": \"1\",\n",
       "          \"Status\": null,\n",
       "          \"geometry\": {\n",
       "            \"coordinates\": [\n",
       "              [\n",
       "                -170.780049500089,\n",
       "                -14.3301340799548\n",
       "              ]\n",
       "            ],\n",
       "            \"type\": \"MultiPoint\"\n",
       "          }\n",
       "        }\n",
       "      ],\n",
       "      \"elevationScale\": 0.01,\n",
       "      \"getElevation\": \"@@=FundingAmo\",\n",
       "      \"getFillColor\": [\n",
       "        256,\n",
       "        256,\n",
       "        0,\n",
       "        140\n",
       "      ],\n",
       "      \"getPosition\": \"@@=[Long, Lat]\",\n",
       "      \"id\": \"960eb758-8baa-4d77-9753-bb33170eb19e\",\n",
       "      \"pickable\": true,\n",
       "      \"radius\": 10000\n",
       "    }\n",
       "  ],\n",
       "  \"mapProvider\": \"carto\",\n",
       "  \"mapStyle\": \"https://basemaps.cartocdn.com/gl/positron-gl-style/style.json\",\n",
       "  \"views\": [\n",
       "    {\n",
       "      \"@@type\": \"MapView\",\n",
       "      \"controller\": true\n",
       "    }\n",
       "  ]\n",
       "}"
      ]
     },
     "execution_count": 4,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "\n",
    "\n",
    "column_layer = pdk.Layer(\n",
    "    \"ColumnLayer\",\n",
    "    data=df,\n",
    "    get_position=[\"Long\", \"Lat\"],\n",
    "    get_elevation=\"FundingAmo\",\n",
    "    get_fill_color = [256,256,0, 140],\n",
    "    elevation_scale=.01,\n",
    "    radius=10000,\n",
    "    pickable=True,\n",
    "    auto_highlight=True,\n",
    ")\n",
    "\n",
    "\n",
    "r = pdk.Deck(\n",
    "    column_layer,\n",
    "    initial_view_state = INITIAL_VIEW_STATE,\n",
    "    map_style=pdk.map_styles.CARTO_LIGHT,\n",
    ")\n",
    "\n",
    "r.to_html(\"bil.html\")\n",
    "r"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "id": "74b8cf17-8919-4980-bc70-ee752ce6fe77",
   "metadata": {},
   "outputs": [],
   "source": [
    "import ibis\n",
    "from ibis import _"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "id": "e0b754ab-33ce-4dee-9a1b-50b3c7788b22",
   "metadata": {},
   "outputs": [],
   "source": [
    "IRA = ibis.read_parquet(\"https://data.source.coop/cboettig/conservation-policy/Inflation_Reduction_Act_Projects.parquet\")\n",
    "BIL = ibis.read_parquet(\"https://data.source.coop/cboettig/conservation-policy/bipartisan-infrastructure-law-restoration-projects.parquet\")"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "id": "1224b1ef-c45e-4982-a993-ff5541e7b6cf",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">DatabaseTable: ibis_read_parquet_fdavz6b2ivhazjzj7tfkm3cs7a\n",
       "  OBJECTID        int32\n",
       "  ID              string\n",
       "  AGENCY_NAME     string\n",
       "  BUREAU_NAME     string\n",
       "  PROGRAM_NAME    string\n",
       "  PROJECT_NAME    string\n",
       "  CITY            string\n",
       "  COUNTY          string\n",
       "  STATE_NAME      string\n",
       "  FUNDING         string\n",
       "  TYPE            string\n",
       "  CATEGORY        string\n",
       "  SUBCATEGORY     string\n",
       "  FUNDING_SOURCE  string\n",
       "  STATE_ABBR      string\n",
       "  ADDRESS_GEOCODE string\n",
       "  LATITUDE        float64\n",
       "  LONGITUDE       float64\n",
       "  FUNDING_NUMERIC int32\n",
       "  geometry        binary\n",
       "  geometry_bbox   xmin: float32\n",
       "  ymin: float32\n",
       "  xmax: float32\n",
       "  ymax: float32\n",
       "</pre>\n"
      ],
      "text/plain": [
       "DatabaseTable: ibis_read_parquet_fdavz6b2ivhazjzj7tfkm3cs7a\n",
       "  OBJECTID        int32\n",
       "  ID              string\n",
       "  AGENCY_NAME     string\n",
       "  BUREAU_NAME     string\n",
       "  PROGRAM_NAME    string\n",
       "  PROJECT_NAME    string\n",
       "  CITY            string\n",
       "  COUNTY          string\n",
       "  STATE_NAME      string\n",
       "  FUNDING         string\n",
       "  TYPE            string\n",
       "  CATEGORY        string\n",
       "  SUBCATEGORY     string\n",
       "  FUNDING_SOURCE  string\n",
       "  STATE_ABBR      string\n",
       "  ADDRESS_GEOCODE string\n",
       "  LATITUDE        float64\n",
       "  LONGITUDE       float64\n",
       "  FUNDING_NUMERIC int32\n",
       "  geometry        binary\n",
       "  geometry_bbox   xmin: float32\n",
       "  ymin: float32\n",
       "  xmax: float32\n",
       "  ymax: float32"
      ]
     },
     "execution_count": 7,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "IRA"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 17,
   "id": "0034ee3f-572f-49fa-bd28-205cf2314bdf",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<div>\n",
       "<style scoped>\n",
       "    .dataframe tbody tr th:only-of-type {\n",
       "        vertical-align: middle;\n",
       "    }\n",
       "\n",
       "    .dataframe tbody tr th {\n",
       "        vertical-align: top;\n",
       "    }\n",
       "\n",
       "    .dataframe thead th {\n",
       "        text-align: right;\n",
       "    }\n",
       "</style>\n",
       "<table border=\"1\" class=\"dataframe\">\n",
       "  <thead>\n",
       "    <tr style=\"text-align: right;\">\n",
       "      <th></th>\n",
       "      <th>PROGRAM_NAME</th>\n",
       "      <th>total</th>\n",
       "    </tr>\n",
       "  </thead>\n",
       "  <tbody>\n",
       "    <tr>\n",
       "      <th>0</th>\n",
       "      <td>Urban and Community Forestry Assistance Program</td>\n",
       "      <td>1020780381</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>1</th>\n",
       "      <td>Hazardous Fuels Reduction Projects in Wildland...</td>\n",
       "      <td>553900000</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>2</th>\n",
       "      <td>Drought Mitigation</td>\n",
       "      <td>489609000</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>3</th>\n",
       "      <td>Conservation and Ecosystem Restoration</td>\n",
       "      <td>161040000</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>4</th>\n",
       "      <td>Facilities of the National Oceanic and Atmosph...</td>\n",
       "      <td>108800000</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>5</th>\n",
       "      <td>Climate Pollution Reduction Grants: Planning G...</td>\n",
       "      <td>78000000</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>6</th>\n",
       "      <td>Forest Legacy Program</td>\n",
       "      <td>42630000</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>7</th>\n",
       "      <td>Tribal Climate Resilience</td>\n",
       "      <td>40000000</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>8</th>\n",
       "      <td>Refuge System Resiliency</td>\n",
       "      <td>34750000</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>9</th>\n",
       "      <td>Vegetation and Watershed Management Projects</td>\n",
       "      <td>30800000</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>10</th>\n",
       "      <td>Funding to Address Air Pollution: Fenceline Ai...</td>\n",
       "      <td>26579614</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>11</th>\n",
       "      <td>Conservation and Resilience</td>\n",
       "      <td>24022800</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>12</th>\n",
       "      <td>Investing in Coastal Communities and Climate R...</td>\n",
       "      <td>13064922</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>13</th>\n",
       "      <td>Tribal Climate Resilience: Fish Hatchery Opera...</td>\n",
       "      <td>9562212</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>14</th>\n",
       "      <td>Funding to Address Air Pollution: Clean Air Ac...</td>\n",
       "      <td>5540287</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>15</th>\n",
       "      <td>USGS 3D Elevation Program (3DEP)</td>\n",
       "      <td>93902</td>\n",
       "    </tr>\n",
       "  </tbody>\n",
       "</table>\n",
       "</div>"
      ],
      "text/plain": [
       "                                         PROGRAM_NAME       total\n",
       "0     Urban and Community Forestry Assistance Program  1020780381\n",
       "1   Hazardous Fuels Reduction Projects in Wildland...   553900000\n",
       "2                                  Drought Mitigation   489609000\n",
       "3              Conservation and Ecosystem Restoration   161040000\n",
       "4   Facilities of the National Oceanic and Atmosph...   108800000\n",
       "5   Climate Pollution Reduction Grants: Planning G...    78000000\n",
       "6                               Forest Legacy Program    42630000\n",
       "7                           Tribal Climate Resilience    40000000\n",
       "8                            Refuge System Resiliency    34750000\n",
       "9        Vegetation and Watershed Management Projects    30800000\n",
       "10  Funding to Address Air Pollution: Fenceline Ai...    26579614\n",
       "11                        Conservation and Resilience    24022800\n",
       "12  Investing in Coastal Communities and Climate R...    13064922\n",
       "13  Tribal Climate Resilience: Fish Hatchery Opera...     9562212\n",
       "14  Funding to Address Air Pollution: Clean Air Ac...     5540287\n",
       "15                   USGS 3D Elevation Program (3DEP)       93902"
      ]
     },
     "execution_count": 17,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "IRA.group_by(_.PROGRAM_NAME).agg(total = _.FUNDING_NUMERIC.sum()).order_by(_.total.desc()).to_pandas()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 18,
   "id": "a38c6a55-33cb-4f59-885a-0d295c15d3cc",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<div>\n",
       "<style scoped>\n",
       "    .dataframe tbody tr th:only-of-type {\n",
       "        vertical-align: middle;\n",
       "    }\n",
       "\n",
       "    .dataframe tbody tr th {\n",
       "        vertical-align: top;\n",
       "    }\n",
       "\n",
       "    .dataframe thead th {\n",
       "        text-align: right;\n",
       "    }\n",
       "</style>\n",
       "<table border=\"1\" class=\"dataframe\">\n",
       "  <thead>\n",
       "    <tr style=\"text-align: right;\">\n",
       "      <th></th>\n",
       "      <th>ProgramNam</th>\n",
       "      <th>total</th>\n",
       "    </tr>\n",
       "  </thead>\n",
       "  <tbody>\n",
       "    <tr>\n",
       "      <th>0</th>\n",
       "      <td>Rural Water Projects</td>\n",
       "      <td>428060000</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>1</th>\n",
       "      <td>Indian Water Rights Settlements</td>\n",
       "      <td>334695936</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>2</th>\n",
       "      <td>Water Recycling</td>\n",
       "      <td>310846187</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>3</th>\n",
       "      <td>America the Beautiful Challenge Grants</td>\n",
       "      <td>270201836</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>4</th>\n",
       "      <td>Aging Infrastructure Account</td>\n",
       "      <td>231980383</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>5</th>\n",
       "      <td>Water &amp; Groundwater Storage, And Conveyance</td>\n",
       "      <td>210000000</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>6</th>\n",
       "      <td>Department of Interior Wildfire Management - P...</td>\n",
       "      <td>192666667</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>7</th>\n",
       "      <td>WaterSMART Grants</td>\n",
       "      <td>143913246</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>8</th>\n",
       "      <td>Restoring Fish Passage through Barrier Removal...</td>\n",
       "      <td>140708696</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>9</th>\n",
       "      <td>Ecosystem Restoration Program</td>\n",
       "      <td>135583935</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>10</th>\n",
       "      <td>Tribal Climate Resilience - Community Relocation</td>\n",
       "      <td>115000000</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>11</th>\n",
       "      <td>Dam Safety Program</td>\n",
       "      <td>100000000</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>12</th>\n",
       "      <td>Grants For States And Tribes For Voluntary Res...</td>\n",
       "      <td>84790689</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>13</th>\n",
       "      <td>National Fish Passage Program</td>\n",
       "      <td>72945995</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>14</th>\n",
       "      <td>Wildfire Management - Fuels Management</td>\n",
       "      <td>72666667</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>15</th>\n",
       "      <td>Department of Interior Wildfire Management - B...</td>\n",
       "      <td>72666667</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>16</th>\n",
       "      <td>Safety of Dams, Water Sanitation, And Other Fa...</td>\n",
       "      <td>46630000</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>17</th>\n",
       "      <td>Tribal Climate Resilience - Adaptation Planning</td>\n",
       "      <td>43757161</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>18</th>\n",
       "      <td>Orphaned Well Site Plugging, Remediation, And ...</td>\n",
       "      <td>33000000</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>19</th>\n",
       "      <td>Colorado River Endangered Species Recovery and...</td>\n",
       "      <td>27500000</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>20</th>\n",
       "      <td>Ecosystem - Klamath Basin</td>\n",
       "      <td>26589710</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>21</th>\n",
       "      <td>Restoring Tribal Priority Fish Passage through...</td>\n",
       "      <td>24549097</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>22</th>\n",
       "      <td>Direct Federal Spending for Revegetation of Mi...</td>\n",
       "      <td>18710755</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>23</th>\n",
       "      <td>Sage - Steppe Ecosystem Restoration Program</td>\n",
       "      <td>18573682</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>24</th>\n",
       "      <td>Direct Federal Spending For Invasives</td>\n",
       "      <td>17869735</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>25</th>\n",
       "      <td>Direct Federal Spending (Or Other) For Nationa...</td>\n",
       "      <td>11378475</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>26</th>\n",
       "      <td>Wildfire Management - Joint Fire Science Progr...</td>\n",
       "      <td>10000000</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>27</th>\n",
       "      <td>Tribal Irrigation and Power Systems</td>\n",
       "      <td>9840000</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>28</th>\n",
       "      <td>Ecosystem - Delaware River Basin Conservation Act</td>\n",
       "      <td>4740800</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>29</th>\n",
       "      <td>Direct Federal Spending For Resilient Recreati...</td>\n",
       "      <td>3610672</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>30</th>\n",
       "      <td>Ecosystem - Lake Tahoe</td>\n",
       "      <td>3002588</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>31</th>\n",
       "      <td>Ecosystem Restoration</td>\n",
       "      <td>2625185</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>32</th>\n",
       "      <td>Ecosystem - Sagebrush-Steppe</td>\n",
       "      <td>1527634</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>33</th>\n",
       "      <td>Tribal Climate Resilience</td>\n",
       "      <td>1357744</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>34</th>\n",
       "      <td>Earth Mapping Resources Initiative</td>\n",
       "      <td>805892</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>35</th>\n",
       "      <td>Superfund Clean-Up</td>\n",
       "      <td>None</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>36</th>\n",
       "      <td>Watershed and Flood Prevention Operations</td>\n",
       "      <td>None</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>37</th>\n",
       "      <td>Orphaned Well Site Plugging, Remediation, and ...</td>\n",
       "      <td>None</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>38</th>\n",
       "      <td>Watershed Rehabilitation</td>\n",
       "      <td>None</td>\n",
       "    </tr>\n",
       "  </tbody>\n",
       "</table>\n",
       "</div>"
      ],
      "text/plain": [
       "                                           ProgramNam      total\n",
       "0                                Rural Water Projects  428060000\n",
       "1                     Indian Water Rights Settlements  334695936\n",
       "2                                     Water Recycling  310846187\n",
       "3              America the Beautiful Challenge Grants  270201836\n",
       "4                        Aging Infrastructure Account  231980383\n",
       "5         Water & Groundwater Storage, And Conveyance  210000000\n",
       "6   Department of Interior Wildfire Management - P...  192666667\n",
       "7                                   WaterSMART Grants  143913246\n",
       "8   Restoring Fish Passage through Barrier Removal...  140708696\n",
       "9                       Ecosystem Restoration Program  135583935\n",
       "10   Tribal Climate Resilience - Community Relocation  115000000\n",
       "11                                 Dam Safety Program  100000000\n",
       "12  Grants For States And Tribes For Voluntary Res...   84790689\n",
       "13                      National Fish Passage Program   72945995\n",
       "14             Wildfire Management - Fuels Management   72666667\n",
       "15  Department of Interior Wildfire Management - B...   72666667\n",
       "16  Safety of Dams, Water Sanitation, And Other Fa...   46630000\n",
       "17    Tribal Climate Resilience - Adaptation Planning   43757161\n",
       "18  Orphaned Well Site Plugging, Remediation, And ...   33000000\n",
       "19  Colorado River Endangered Species Recovery and...   27500000\n",
       "20                          Ecosystem - Klamath Basin   26589710\n",
       "21  Restoring Tribal Priority Fish Passage through...   24549097\n",
       "22  Direct Federal Spending for Revegetation of Mi...   18710755\n",
       "23        Sage - Steppe Ecosystem Restoration Program   18573682\n",
       "24              Direct Federal Spending For Invasives   17869735\n",
       "25  Direct Federal Spending (Or Other) For Nationa...   11378475\n",
       "26  Wildfire Management - Joint Fire Science Progr...   10000000\n",
       "27                Tribal Irrigation and Power Systems    9840000\n",
       "28  Ecosystem - Delaware River Basin Conservation Act    4740800\n",
       "29  Direct Federal Spending For Resilient Recreati...    3610672\n",
       "30                             Ecosystem - Lake Tahoe    3002588\n",
       "31                              Ecosystem Restoration    2625185\n",
       "32                       Ecosystem - Sagebrush-Steppe    1527634\n",
       "33                          Tribal Climate Resilience    1357744\n",
       "34                 Earth Mapping Resources Initiative     805892\n",
       "35                                 Superfund Clean-Up       None\n",
       "36          Watershed and Flood Prevention Operations       None\n",
       "37  Orphaned Well Site Plugging, Remediation, and ...       None\n",
       "38                           Watershed Rehabilitation       None"
      ]
     },
     "execution_count": 18,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "BIL.group_by(_.ProgramNam).agg(total = _.FundingAmo.sum()).order_by(_.total.desc()).to_pandas()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 12,
   "id": "ff530578-1d9d-46ee-9520-f53f4a96f20b",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<div>\n",
       "<style scoped>\n",
       "    .dataframe tbody tr th:only-of-type {\n",
       "        vertical-align: middle;\n",
       "    }\n",
       "\n",
       "    .dataframe tbody tr th {\n",
       "        vertical-align: top;\n",
       "    }\n",
       "\n",
       "    .dataframe thead th {\n",
       "        text-align: right;\n",
       "    }\n",
       "</style>\n",
       "<table border=\"1\" class=\"dataframe\">\n",
       "  <thead>\n",
       "    <tr style=\"text-align: right;\">\n",
       "      <th></th>\n",
       "      <th>total</th>\n",
       "    </tr>\n",
       "  </thead>\n",
       "  <tbody>\n",
       "    <tr>\n",
       "      <th>0</th>\n",
       "      <td>3222796034</td>\n",
       "    </tr>\n",
       "  </tbody>\n",
       "</table>\n",
       "</div>"
      ],
      "text/plain": [
       "        total\n",
       "0  3222796034"
      ]
     },
     "execution_count": 12,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "BIL.agg(total = _.FundingAmo.sum()).to_pandas()"
   ]
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 3 (ipykernel)",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.10.12"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}
